Discover/Framer API
live

Framer APIframer.com

Search and browse Framer Marketplace templates via API. Get prices, screenshots, creator info, remix counts, and category filters across thousands of templates.

Endpoint health
monitored
get_template
list_templates
search_templates
0/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Framer 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.

Try it
Page number for pagination (starts at 1)
Type filter: template, plugin, section
Search query keyword
Style filter (e.g., minimal, dark, modern)
Feature filter (e.g., responsive, animated)
api.parse.bot/scraper/67b046ba-e536-479f-ab03-1f21364e774f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/67b046ba-e536-479f-ab03-1f21364e774f/search_templates?page=1&type=template&query=portfolio' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace framer-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Framer Marketplace SDK — search, browse, and inspect templates."""
from parse_apis.framer_marketplace_templates_api import Framer, Category, TemplateType, TemplateNotFound

client = Framer()

# Search for SaaS templates — limit caps total items fetched.
for template in client.templates.search(query="SaaS", type=TemplateType.TEMPLATE, limit=3):
    print(template.title, template.price, template.remixes)

# Browse a category with .list()
for template in client.templates.list(category=Category.PORTFOLIO, limit=3):
    print(template.title, template.slug, template.creator.name if template.creator else "Unknown")

# Drill into one template by slug for full details
detail = client.templates.get(slug="pentos")
print(detail.title, detail.price, detail.category, detail.creator_name)
for crumb in (detail.breadcrumbs or []):
    print(crumb.name, crumb.url)

# Typed error handling for a missing template
try:
    client.templates.get(slug="nonexistent-template-xyz-999")
except TemplateNotFound as exc:
    print(f"Template not found: {exc.slug}")

print("exercised: templates.search / templates.list / templates.get / TemplateNotFound")
All endpoints · 3 totalmissing one? ·

Full-text search over Framer marketplace templates. query matches title, description, and metadata; results are ranked by relevance. Paginates with up to 40 templates per page. Filters by type (template, plugin, section), style, and feature are optional. Returns total_results count when available.

Input
ParamTypeDescription
pageintegerPage number for pagination (starts at 1)
typestringType filter: template, plugin, section
querystringSearch query keyword
stylestringStyle filter (e.g., minimal, dark, modern)
featurestringFeature filter (e.g., responsive, animated)
Response
{
  "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": "portfolio",
      "templates": [
        {
          "id": 62601,
          "rank": 2.04,
          "slug": "iris-walker",
          "type": "template",
          "price": "Free",
          "title": "Portfolioz",
          "creator": {
            "id": 418111,
            "city": "bahraich",
            "name": "Umar Mirza",
            "slug": "umar-mirza",
            "avatar": "https://example.com/avatar.jpg",
            "country": "IN",
            "verified": false,
            "description": "I'm a Framer Expert..."
          },
          "remixes": 1155,
          "thumbnail": "https://example.com/thumb.avif",
          "created_at": "2026-04-16T08:54:12.449Z",
          "meta_title": "Personal Portfolio Resume Portfoli",
          "description": "Iris Walker is a personal Portfolio & Landing Page Template...",
          "screenshots": [
            "https://example.com/ss1.avif"
          ],
          "published_at": "2026-05-04T14:12:22.670Z",
          "published_url": "https://portfolioz.framer.ai/",
          "conversion_rate": 0.25,
          "hover_thumbnail": "https://example.com/hover.avif"
        }
      ],
      "total_results": 1873
    },
    "status": "success"
  }
}

About the Framer API

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.

Reliability & maintenance

The Framer API is a managed, monitored endpoint for framer.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when framer.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official framer.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Latest check
0/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Framer have an official developer API for its marketplace?+
Framer does not publish a documented public API for browsing or querying its marketplace templates. The Parse API fills that gap by exposing structured template data through the search_templates, list_templates, and get_template endpoints.
What does get_template return that list_templates does not?+
get_template returns deeper per-template fields including duplicate_url, thumbnail, breadcrumbs, status, and a related_templates array of other templates from the same creator. The list_templates endpoint returns lighter objects suited for browsing — id, slug, price, screenshots, and remixes — without creator-scoped relationships or status metadata.
Can I filter search_templates by both style and feature at the same time?+
Yes. The search_templates endpoint accepts style and feature as independent optional parameters alongside query and type, so you can combine them in a single request. For example, querying for style=dark and feature=animated will constrain results to templates matching both filters.
Does the API return user reviews or ratings for templates?+
Not currently. The API exposes remix counts as a proxy for popularity, along with price, screenshots, and creator details, but does not include user reviews or star ratings. You can fork this API on Parse and revise it to add a review-focused endpoint if that data becomes available on the source.
How fresh is the template data, and are unpublished or draft templates included?+
The API reflects the publicly visible state of the Framer Marketplace. Draft or unlisted templates that are not publicly accessible on framer.com are not included in responses. Template status is surfaced in the get_template response via the status field, so you can filter out any non-live entries in your application.
Page content last updated . Spec covers 3 endpoints from framer.com.
Related APIs in MarketplaceSee all →
n8n Templates API
Search and discover n8n workflow templates from the official repository, then retrieve complete details including workflow JSON, analytics, and similar recommendations. Find pre-built solutions for your automation needs or browse templates by creator and category.
elements.envato.com API
Search and browse millions of creative assets from Envato Elements, including stock photos, videos, music, fonts, and templates across all categories. Get detailed information about specific items, pricing plans, and discover new content through keyword search and category browsing.
themewagon.com API
Discover and browse thousands of website themes and templates from ThemeWagon, with the ability to search by category, framework, or tag, and view detailed information like ratings, download counts, and user reviews. Filter results to find free or premium themes, explore editor's picks, and stay updated with the latest and most popular designs.
flippa.com API
Search and browse digital assets like websites, domains, and SaaS businesses listed on Flippa's marketplace, with detailed filtering by country and listing details. Access comprehensive information on thousands of digital business listings to find investment opportunities or monitor the market.
sketchfab.com API
Search and browse 3D models on Sketchfab, including filtering by category, license, animation, and downloadability. Retrieve detailed model metadata, creator profiles, collections, thumbnails, tags, and viewer configuration options.
furnimesh.com API
Browse and download free 3D furniture models from FurniMesh's extensive library by searching for specific items or exploring curated collections. Access detailed model information and instantly integrate high-quality furniture assets into your design projects.
fresha.com API
Search for beauty and wellness businesses, view detailed venue information like services and pricing, and browse the help center's knowledge base articles and categories. Find exactly what you need across Fresha's marketplace with powerful filtering and category options.
furniture.com API
Search and browse Furniture.com's product catalog by keywords, then narrow results using filters like color, material, style, type, and brand. Sort by price or ratings and navigate through results with pagination to find the perfect furniture for your needs.