# Pinterest — 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 Pinterest for pins matching your query and instantly access detailed information about each result, including images, creator profiles, and board details. Find the newest and most relevant pins across all of Pinterest's content in one convenient interface.

**Category:** Social Media | **Website:** [pinterest.com/](https://pinterest.com/) | **Docs:** [parse.bot/marketplace/c3912169-1fb1-4a6f-a7aa-4505a0120758/pinterest-com-api](https://parse.bot/marketplace/c3912169-1fb1-4a6f-a7aa-4505a0120758/pinterest-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-pinterest-com-api-c3912169/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_pin

Retrieve detailed information about a specific Pinterest pin by its numeric ID or full pin URL. Returns pin metadata including title, description, image, pinner/author details (username, full name, profile URL), board info, engagement counts (saves, comments, repins, shares), creation date, source link, and domain. One API call per pin.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pin` | string | Yes | Pinterest pin ID (numeric, e.g. '620441286183808599') or full pin URL (e.g. 'https://www.pinterest.com/pin/620441286183808599/'). |

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

### search_pins

Full-text search over Pinterest pins. Returns pins matching the query with metadata including title, description, image, pinner, board, and creation date. Results are auto-iterated via bookmark-based pagination. Each pin includes its source domain and external link when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bookmark` | string | No | Pagination bookmark from a previous response's next_bookmark field. Omit for first page. |
| `query` | string | Yes | Search query for Pinterest pins (e.g. 'home decor', 'cats', 'travel'). |

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