# MakerWorld — 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 discover 3D models on MakerWorld.com. Browse paginated listings or retrieve comprehensive details about specific designs, including titles, preview images, tags, creator info, print profiles, and filament requirements.

**Category:** Marketplaces | **Website:** [makerworld.com/en](https://makerworld.com/en) | **Docs:** [parse.bot/marketplace/33f377db-62f0-4553-a0c4-2628de20be67/makerworld-com-api](https://parse.bot/marketplace/33f377db-62f0-4553-a0c4-2628de20be67/makerworld-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-makerworld-com-api-33f377db/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_filament_weights

Get filament weight information for a list of MakerWorld model IDs. Returns the total weight in grams and full print profile details for each model. Useful for batch-querying filament requirements across multiple models.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `design_ids` | string | Yes | Comma-separated list of model design IDs (e.g., '655976,1239342'). Each ID can be numeric or include a slug (e.g., '655976-improved-crystal-dragon'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-makerworld-com-api-33f377db/get_filament_weights \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"design_ids":"<string>"}'
```

### get_model_detail

Get detailed information for a specific 3D model, including full description, print profiles with filament weight breakdowns (type, grams, meters, color), all images, tags, and creator info. The design_id can be a numeric string or include a slug suffix.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `design_id` | string | Yes | Model design ID. Numeric string (e.g., '655976') or ID with slug (e.g., '655976-improved-crystal-dragon'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-makerworld-com-api-33f377db/get_model_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"design_id":"<string>"}'
```

### get_model_photos

Get photos/images for a list of MakerWorld model IDs. Returns all available product images for each model in a batch request.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `design_ids` | string | Yes | Comma-separated list of model design IDs (e.g., '655976,1239342'). Each ID can be numeric or include a slug (e.g., '655976-improved-crystal-dragon'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-makerworld-com-api-33f377db/get_model_photos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"design_ids":"<string>"}'
```

### search_models

Search for 3D models on MakerWorld by keyword. Returns paginated listings with title, images, tags, creator info, and stats such as downloads, likes, and prints. An empty keyword returns trending/popular models. Pagination is offset-based; each page returns up to `limit` items starting from `offset`.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword (e.g., 'dragon', 'vase'). Empty string returns trending/popular models. |
| `limit` | integer | No | Number of results per page (max 50). |
| `offset` | integer | No | Pagination offset (number of results to skip). |
| `order_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-makerworld-com-api-33f377db/search_models \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","limit":"<integer>","offset":"<integer>","order_by":"<string>"}'
```
