# StableSocial Pinterest Board Scraper

> StableSocial Pinterest Board Scraper is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Fetches posts and metadata from a Pinterest board by URL, with optional pagination and trimmed response support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/pinterest/board
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-pinterest-board-scraper-d5633d95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hqc-kmDWjfBGa1q_vzI6F

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 stablesocial-pinterest-board-scraper-d5633d95 -d '<json body>'
```

Example prompt: Can you scrape the pins from this Pinterest board — https://www.pinterest.com/someuser/myboard/ — and give me a trimmed version of the results?

## When to prefer this

Choose this endpoint when you need to extract post-level data from a specific Pinterest board without setting up OAuth credentials or managing a subscription. It is ideal for one-off or pay-per-use data collection tasks where you already have a Pinterest board URL. It supports pagination for large boards and offers a trimmed response mode for lightweight use cases.

## Known failure modes

- Invalid or inaccessible Pinterest board URL returns an error
- Private or deleted boards cannot be scraped
- Expired or invalid cursor causes pagination failure
- Rate limits or blocks from Pinterest may result in empty or error responses
- Payment failure (402) if USDC balance is insufficient

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of pins from the specified Pinterest board, including post metadata such as images, titles, descriptions, and links. Supports pagination via a cursor field for boards with many pins. If trim is set to true, a condensed version of the response is returned with fewer fields per pin.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "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"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-pinterest-board-scraper-d5633d95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
