# Framer — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse thousands of website templates from the Framer Marketplace to find designs for portfolios, SaaS sites, agencies, and more. Get detailed information about specific templates to help you choose the perfect design before creating your site on Framer.

**Category:** Marketplaces | **Website:** [www.framer.com/](https://www.framer.com/) | **Docs:** [parse.bot/marketplace/7b8d94c2-ada6-4f79-b4c7-f9927427d920/framer-com-api](https://parse.bot/marketplace/7b8d94c2-ada6-4f79-b4c7-f9927427d920/framer-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-framer-com-api-7b8d94c2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_template

Get detailed information about a specific Framer marketplace template by its slug. Returns template details including price, screenshots, category, creator name, description, status, breadcrumbs, and related templates from the same creator. The response is a flat object with all template fields at the top level.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Template slug identifier (e.g., 'fuel', 'majd', 'mondragon') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-framer-com-api-7b8d94c2/get_template \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_templates

List Framer marketplace templates with pagination, optionally filtered by category. Returns featured/trending templates with up to 40 per page. Omitting category returns all templates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug to filter by. Verified values: personal, business, blog, ecommerce, landing-page, technology, portfolio. Omitting returns all categories. |
| `page` | integer | No | Page number for pagination (starts at 1) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-framer-com-api-7b8d94c2/list_templates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### search_templates

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `feature` | string | No | Feature filter (e.g., responsive, animated) |
| `page` | integer | No | Page number for pagination (starts at 1) |
| `query` | string | No | Search query keyword |
| `style` | string | No | Style filter (e.g., minimal, dark, modern) |
| `type` | string | No | Type filter: template, plugin, section |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-framer-com-api-7b8d94c2/search_templates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"feature":"<string>","page":"<integer>","query":"<string>","style":"<string>","type":"<string>"}'
```
