# Au 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.

> Retrieve the latest pins created directly by any Pinterest user to see their original content and creative collections in real-time. Browse through a user's newest uploads without relying on search results to discover their most recent pins.

**Category:** Social Media | **Website:** [au.pinterest.com/heidibyrne_](https://au.pinterest.com/heidibyrne_) | **Docs:** [parse.bot/marketplace/fa0641dd-2e82-4771-82c3-27e36f5b818e/au-pinterest-com-api](https://parse.bot/marketplace/fa0641dd-2e82-4771-82c3-27e36f5b818e/au-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-au-pinterest-com-api-fa0641dd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_user_created_pins

Retrieves pins created (uploaded/authored) by the specified Pinterest user, ordered newest first. Each pin includes its image, title, creation date, engagement stats, and board. Results are auto-iterated across pages; no cursor param to pass.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of pins to return. |
| `username` | string | Yes | Pinterest username (e.g. 'heidibyrne_'). A leading '@' is stripped automatically. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-au-pinterest-com-api-fa0641dd/get_user_created_pins \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","username":"<string>"}'
```
