# Pinterest Search via Orthogonal (x402)

> Pinterest Search via Orthogonal (x402) 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-13).

Searches Pinterest for pins, boards, or creators matching a query, with pagination-aware billing that charges only for the first page of a logical search.

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/pinterest/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pinterest-search-via-orthogonal-x402-7c7330b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7J_0uHZ87zHmo4NtVoRBd

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-search-via-orthogonal-x402-7c7330b9
```

Example prompt: Search Pinterest for 'minimalist home office decor' and show me the results — use the trimmed response format to keep things concise.

## When to prefer this

Use this endpoint when you need to programmatically search Pinterest for content, trends, or creators and want cost-efficient pagination (only the first page is billed per logical search). Prefer this over general web scrapers when Pinterest-specific structured data (pins, boards, creators) is needed. It is ideal for trend research, content planning, and influencer discovery workflows.

## Known failure modes

- Invalid or empty query returns no results or an error
- Cursor from a different logical search (changed filters) is rejected or starts a new billable session
- Rate limiting or Pinterest-side blocks may cause failed scrapes
- Malformed cursor causes pagination errors
- Network timeout on slow Pinterest responses

## How this service works

Search 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

A list of Pinterest search results including pins, boards, or creator profiles matching the query. Each result typically includes titles, descriptions, images, and links. When using the trim flag, a condensed subset of fields is returned. Paginated responses include a cursor for fetching the next page.

## 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"
      },
      "query": {
       "type": "string",
       "description": "Search query"
      },
      "cursor": {
       "type": "string",
       "description": "Cursor 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/pinterest-search-via-orthogonal-x402-7c7330b9/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)
