# Furnimesh — 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 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.

**Category:** Developer Tools | **Website:** [furnimesh.com/](https://furnimesh.com/) | **Docs:** [parse.bot/marketplace/cd9d55de-938d-45d0-b3d8-9e72a0c7dfdd/furnimesh-com-api](https://parse.bot/marketplace/cd9d55de-938d-45d0-b3d8-9e72a0c7dfdd/furnimesh-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-furnimesh-com-api-cd9d55de/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_model

Retrieve full details for a specific 3D furniture model by its library path. Returns the model name, full description, category hierarchy, thumbnail, available file formats with sizes, polygon/vertex counts, material info, and keywords.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_path` | string | Yes | Path to the model within the library (category/subcategory/slug). Obtainable from search_models or list_models url field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-furnimesh-com-api-cd9d55de/get_model \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_path":"<string>"}'
```

### list_models

Browse 3D furniture models by category with pagination. Supports top-level categories and subcategories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category path to browse. Top-level: seating, sofas, tables, beds, storage, lighting, bathroom, decor, kitchen, architecture, appliances, other. Subcategories appended with slash. |
| `page` | integer | No | Page number for pagination. |

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

### search_models

Full-text search across FurniMesh 3D furniture model library. Returns matching models with title, available formats, download count, and image URL. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query for furniture 3D models. |

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