# Artlist — 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 millions of stock footage clips on Artlist.io by category and sort preferences, including AI-generated content options. Quickly find the perfect video clips for your projects with powerful filtering capabilities to narrow down results by your specific needs.

**Category:** Streaming Video | **Website:** [artlist.io/](https://artlist.io/) | **Docs:** [parse.bot/marketplace/eecf9ccd-8d65-4788-8520-0e7764a0f87a/artlist-io-api](https://parse.bot/marketplace/eecf9ccd-8d65-4788-8520-0e7764a0f87a/artlist-io-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-artlist-io-api-eecf9ccd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_stock_footage

Search stock footage clips by keyword with optional category filtering and sort order. Returns paginated results (approximately 24 clips per page) with metadata including resolution, duration, filmmaker, and available formats. When no query is provided, returns browse results in the selected sort order. The total_exact field indicates total matching clips available for pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Comma-separated category keys or numeric IDs to filter results. Category keys include video themes (e.g. 'nature_landscapes', 'business', 'travel', 'urban'), shot types (e.g. 'close_up', 'aerial', 'macro'), and people filters (e.g. 'no_people', 'male', 'female'). Multiple categories can be combined with commas. |
| `include_ai` | boolean | No | Whether to include AI-generated content in results. |
| `page` | integer | No | Page number for pagination, starting at 1. |
| `query` | string | No | Search keywords (e.g. 'nature', 'ocean waves', 'city'). When omitted, returns browse results. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-artlist-io-api-eecf9ccd/search_stock_footage \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","include_ai":"<boolean>","page":"<integer>","query":"<string>","sort":"<string>"}'
```
