# Blender Market — 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.

> Browse and search Blender Market (Superhive) to discover 3D assets, add-ons, and creator tools. Access detailed product information, reviews, FAQs, documentation, and creator profiles. Filter by category, sort results, and explore current sales.

**Category:** Marketplaces | **Website:** [blendermarket.com/](https://blendermarket.com/) | **Docs:** [parse.bot/marketplace/3828b2d2-7922-441b-b1eb-ea5dd491cf90/blendermarket-com-api](https://parse.bot/marketplace/3828b2d2-7922-441b-b1eb-ea5dd491cf90/blendermarket-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-blendermarket-com-api-3828b2d2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_creator_profile

Get a creator's profile and their products. Returns the creator's username, display name, website, and their product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Creator username (e.g. 'artell'). Obtainable from product listings via the creator_slug field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blendermarket-com-api-3828b2d2/get_creator_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### get_popular_products

Get popular products from the homepage. Returns the current list of featured/popular products as a single page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blendermarket-com-api-3828b2d2/get_popular_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_detail

Get full details for a product by its slug. Returns the product name, description (HTML), price tiers, creator info, metadata, and stats. The description field contains the full product page content as HTML.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product slug (e.g. 'auto-rig-pro'). Obtainable from list_products, search_products, or other listing endpoints via the slug field. |

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

### get_product_documentation

Get documentation for a product by its slug. Returns the documentation content as HTML. Some products may have minimal documentation consisting only of external links, or null if no documentation is available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product slug (e.g. 'botaniq-trees'). Obtainable from list_products or search_products results. |

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

### get_product_faq

Get FAQ entries for a product by its slug. Returns a list of question-answer pairs. Some products may have no FAQ entries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product slug (e.g. 'botaniq-trees'). Obtainable from list_products or search_products results. |

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

### get_product_reviews

Get reviews for a product by its slug. Returns a list of user reviews with ratings, text, and any creator replies. Returns the most recent reviews as a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product slug (e.g. 'auto-rig-pro'). Obtainable from list_products or search_products results. |

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

### list_products

List products with pagination. Returns paginated product listings from the marketplace. Supports optional filters for price, rating, license, sale status, and sort order.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `license_filter` | string | No | License type filter value. |
| `on_sale` | string | No | Set to '1' to filter products currently on sale. |
| `page` | integer | No | Page number for pagination. |
| `price_filter` | string | No | Price range filter value. |
| `rating_filter` | string | No | Rating filter value. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blendermarket-com-api-3828b2d2/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"license_filter":"<string>","on_sale":"<string>","page":"<integer>","price_filter":"<string>","rating_filter":"<string>","sort":"<string>"}'
```

### list_products_by_category

List products in a specific category by category slug. Returns paginated results for the given category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category slug (e.g. 'addons', 'models'). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blendermarket-com-api-3828b2d2/list_products_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","page":"<integer>"}'
```

### list_sale_products

List products currently on sale with pagination. Returns products filtered by sale status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blendermarket-com-api-3828b2d2/list_sale_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_products

Search for products by keyword. Returns matching products from the marketplace. Optionally filter by category ID.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID to filter search results by. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blendermarket-com-api-3828b2d2/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","page":"<integer>","query":"<string>"}'
```
