# Blenderkit — 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 BlenderKit's extensive library of 3D models, materials, scenes, HDRs, and brushes, complete with detailed asset information and category browsing. Retrieve intelligent search suggestions and explore organized collections to discover assets across any creative domain.

**Category:** Marketplaces | **Website:** [www.blenderkit.com/](https://www.blenderkit.com/) | **Docs:** [parse.bot/marketplace/1eaf1d01-17ec-4bc1-a43b-7fc0968c2f63/blenderkit-com-api](https://parse.bot/marketplace/1eaf1d01-17ec-4bc1-a43b-7fc0968c2f63/blenderkit-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-blenderkit-com-api-1eaf1d01/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_asset_detail

Get detailed information about a specific BlenderKit asset including description, file size, polygon count, tags, author, and license. Requires the asset_uuid obtained from search_assets results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `asset_uuid` | string | Yes | The asset UUID (from search_assets results[*].asset_uuid) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blenderkit-com-api-1eaf1d01/get_asset_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"asset_uuid":"<string>"}'
```

### get_categories

Get category information and metadata for a given asset type, including asset counts, descriptions, and thumbnail URLs. Returns the top-level category node for the requested asset type with cumulative counts across all subcategories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `asset_type` | string | No | Asset type to get categories for |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blenderkit-com-api-1eaf1d01/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"asset_type":"<string>"}'
```

### search_assets

Search BlenderKit for 3D assets (models, materials, scenes, HDRs, brushes). Returns paginated results with asset summaries including names, UUIDs, thumbnails, and plan info. Supports keyword search, category filtering, and various sort orders. Each page returns up to 24 results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `asset_type` | string | No | Asset type to search |
| `category` | string | No | Filter by category slug (e.g., 'chair', 'furniture', 'wood') |
| `page` | integer | No | Page number for pagination (starts at 1) |
| `query` | string | No | Search keywords (e.g., 'chair', 'wood planks', 'modern kitchen') |
| `sort` | string | No | Sort order for results |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blenderkit-com-api-1eaf1d01/search_assets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"asset_type":"<string>","category":"<string>","page":"<integer>","query":"<string>","sort":"<string>"}'
```

### search_suggestions

Get autocomplete search suggestions for a partial query string. Returns up to 15 alphabetically sorted suggestions useful for building search interfaces.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search term for autocomplete (e.g., 'cha' returns 'chair', 'chain', etc.) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blenderkit-com-api-1eaf1d01/search_suggestions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
