# Dick Blick — 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 Dick Blick's catalog of art supplies with advanced filtering and sorting options, plus get autocomplete suggestions as you type. Find exactly what you need with pagination support to explore their full product inventory.

**Category:** E-commerce | **Website:** [www.dickblick.com/](https://www.dickblick.com/) | **Docs:** [parse.bot/marketplace/e7b1e1f9-6771-4ec7-9f7c-3dd061c872a8/dickblick-com-api](https://parse.bot/marketplace/e7b1e1f9-6771-4ec7-9f7c-3dd061c872a8/dickblick-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-dickblick-com-api-e7b1e1f9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_suggestions

Autocomplete endpoint for search-as-you-type. Given a partial query, returns a suggested completion (with token info) and a list of alternative full search terms. Useful for building search UIs or discovering related queries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search query to get suggestions for (e.g., 'waterco', 'bru', 'acry') |

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

### search_products

Full-text search across Dick Blick's art supplies catalog. Returns product listings with pricing, ratings, and availability. Supports sorting by relevance, popularity, price, or name. Facets (brand and category counts) are included for filter discovery. Paginated; each product carries a price range reflecting its SKU variants.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Filter by brand name (e.g., 'Golden', 'Princeton', 'Liquitex'). Exact match against brand facet values. |
| `category` | string | No | Filter by category (e.g., 'Acrylic Paint', 'Brushes and Painting Tools'). Exact match against category facet values. |
| `page` | integer | No | Page number for pagination |
| `per_page` | integer | No | Results per page (1-100) |
| `query` | string | Yes | Search query (e.g., 'acrylic paint', 'brushes', 'prismacolor pencils') |
| `sort` | string | No | Sort order for results |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dickblick-com-api-e7b1e1f9/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category":"<string>","page":"<integer>","per_page":"<integer>","query":"<string>","sort":"<string>"}'
```
