framer.com APIwww.framer.com ↗
Search and browse Framer Marketplace templates via API. Get prices, screenshots, creator info, remix counts, and category filters across thousands of templates.
curl -X GET 'https://api.parse.bot/scraper/67b046ba-e536-479f-ab03-1f21364e774f/search_templates?page=1&query=SaaS' \ -H 'X-API-Key: $PARSE_API_KEY'
Search Framer marketplace templates by keyword query. Returns rich template data including title, description, price, creator info, screenshots, remix count, and relevance ranking. Results are paginated with up to 40 templates per page.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination (starts at 1) |
| type | string | Type filter: template, plugin, section |
| query | string | Search query keyword |
| style | string | Style filter (e.g., minimal, dark, modern) |
| feature | string | Feature filter (e.g., responsive, animated) |
{
"type": "object",
"fields": {
"page": "integer - current page number",
"count": "integer - number of templates returned on this page",
"query": "string - the search query used",
"templates": "array of template objects with id, slug, title, description, price, remixes, creator, screenshots, published_url, and relevance rank",
"total_results": "integer or null - total number of matching templates"
},
"sample": {
"data": {
"page": 1,
"count": 40,
"query": "SaaS",
"templates": [
{
"id": 58486,
"rank": 2.19,
"slug": "saset",
"type": "template",
"price": "Free",
"title": "Saaaset",
"creator": {
"id": 418111,
"city": "bahraich",
"name": "Umar Mirza",
"slug": "umar-mirza",
"avatar": "https://...",
"country": "IN",
"verified": false,
"description": "..."
},
"remixes": 150,
"thumbnail": "https://y4pdgnepgswqffpt.public.blob.vercel-storage.com/templates/58486/saset-uyzs2E7dIOODOE5OQs8UOfk4SKZGlv",
"created_at": "2025-12-03T08:17:02.227Z",
"meta_title": "SaaS-Website, AI SaaS Startup",
"description": "Saaaset, the high-converting SaaS template for Framer...",
"screenshots": [
"https://..."
],
"published_at": "2026-02-17T16:42:02.320Z",
"published_url": "https://saaset.framer.website/",
"conversion_rate": 0.265,
"hover_thumbnail": "https://y4pdgnepgswqffpt.public.blob.vercel-storage.com/templates/58486/saset-O16NP7lZDUigkizhsoxP0pGn4vcyUs"
}
],
"total_results": 985
},
"status": "success"
}
}About the framer.com API
The Framer Marketplace API provides 3 endpoints for searching, listing, and inspecting website templates available on framer.com. The search_templates endpoint returns up to 40 templates per page with fields like price, remix count, creator details, and screenshots. Whether you're building a template discovery tool or cataloging design trends, the API surfaces structured data on portfolios, SaaS sites, landing pages, and more.
Endpoints and Response Data
The search_templates endpoint accepts a query keyword along with optional filters for type (template, plugin, or section), style (e.g., minimal, dark, modern), and feature (e.g., responsive, animated). Each result includes the template's id, slug, title, description, price, remixes, creator, screenshots, published_url, and a relevance ranking. Pagination is controlled via the page parameter, with up to 40 results returned per page and a total_results field indicating the full match count.
Browsing by Category
The list_templates endpoint lets you page through the full marketplace or filter by category slug. Verified category values include personal, business, blog, ecommerce, landing-page, technology, and portfolio. Response objects include meta_title, remixes, published_url, and screenshots alongside standard identity fields. This endpoint is suited for building category-scoped directories or monitoring which templates are currently featured or trending.
Template Detail Lookup
The get_template endpoint accepts a slug (for example, pentos, xtract, or salix) and returns a full detail object including duplicate_url, thumbnail, breadcrumbs, creator name, and status. It also returns a related_templates array containing other templates from the same creator, which is useful for building creator-scoped recommendation flows or attributing design work to specific authors.
- Build a Framer template search engine filtered by style (minimal, dark) and feature (animated, responsive)
- Track remix counts over time to identify trending or popular templates across categories
- Aggregate template pricing data to analyze free vs. paid template distribution on the marketplace
- Generate a creator portfolio page by fetching related_templates for a specific author via get_template
- Populate a curated landing-page or SaaS template directory using the list_templates category filter
- Monitor new template additions in a specific category by paginating list_templates regularly
- Compare template metadata (meta_title, description, screenshots) for competitive design research
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.