# Pinterest User Boards Lookup

> Pinterest User Boards Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves the list of boards for a given Pinterest user by their username handle

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/pinterest/user/boards
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pinterest-user-boards-lookup-5c8952eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7RqpV0ORUfm7euURzaYXn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability pinterest-user-boards-lookup-5c8952eb
```

Example prompt: Can you pull all the boards from the Pinterest account 'broadstbullycom' — I want to see what collections they have?

## When to prefer this

Choose this endpoint when you need to programmatically retrieve a Pinterest user's boards without direct Pinterest API credentials. Ideal for social media research, influencer analysis, competitor audits, or content mapping workflows where Pinterest API access is unavailable or cumbersome. Best for single-user board lookups rather than bulk or paginated content scraping.

## Known failure modes

- Invalid or non-existent Pinterest handle returns empty result or error
- Pinterest account is private or deactivated, resulting in no boards returned
- Rate limiting or scraping blocks by Pinterest may cause failures
- Missing required 'handle' query parameter results in a bad request error
- Network timeout if Pinterest pages are slow to load

## How this service works

User Boards

## Output

Returns a list of boards associated with the specified Pinterest user, including board names and metadata. When trim=true, returns a condensed version of the response with fewer fields per board.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "Set to true for a trimmed down version of the response"
      },
      "handle": {
       "type": "string",
       "description": "The username of the user to get boards for. (e.g. broadstbullycom from https://www.pinterest.com/broadstbullycom/)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pinterest-user-boards-lookup-5c8952eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
