# Orthogonal Pinterest Board Scraper

> Orthogonal Pinterest Board Scraper 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).

Scrapes a Pinterest board by URL and returns its pins and metadata, with cursor-based pagination at zero cost for continuation pages.

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/pinterest/board
- 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/orthogonal-pinterest-board-scraper-d92d5624
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WyFujqQglTgHsDaVBJ_Z3

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 orthogonal-pinterest-board-scraper-d92d5624
```

Example prompt: Can you scrape the Pinterest board at https://www.pinterest.com/designinspiration/modern-minimalist-interiors/ and get me all the pins, paginating through all pages?

## When to prefer this

Use this endpoint when you need to extract pins and metadata from a specific Pinterest board by URL, especially when full pagination is required. The zero-cost continuation billing model makes it economical to retrieve large boards in full. Prefer this over generic web scrapers when structured Pinterest board data is the goal.

## Known failure modes

- Invalid or private Pinterest board URL returns an error or empty result
- Expired or invalid cursor causes pagination failure
- Rate limiting or Pinterest blocking may return an error
- Changing query parameters mid-pagination starts a new billable request
- Missing required 'url' query parameter returns a validation error

## How this service works

Board Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a list of pins from the Pinterest board including pin metadata (images, titles, descriptions, links), board-level metadata, and a cursor for fetching the next page of results. Also includes a billing requestId to use as parentRequestId for zero-cost pagination continuations.

## 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": {
      "url": {
       "type": "string",
       "description": "The URL of the board to get"
      },
      "trim": {
       "type": "boolean",
       "description": "Set to true for a trimmed down version of the response"
      },
      "cursor": {
       "type": "string",
       "description": "The cursor to get the next page of results For later cursor pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-pinterest-board-scraper-d92d5624/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)
