Discover/framer.com API
live

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.

Endpoints
3
Updated
1mo ago
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.
Use it in your codegrab a free API key at signup
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'
All endpoints · 3 totalclick to expand

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.

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": "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.

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,000250 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 www.framer.com.
Related APIs in MarketplaceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.