# StableSocial Pinterest Search

> StableSocial Pinterest Search 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).

Search Pinterest for pins and content by keyword, returning paginated results via a pay-per-request API.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/pinterest/search
- 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-search-c99abc96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NrL1cqPrnKmeryUhWhwo1

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-search-c99abc96 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need to search Pinterest content without managing OAuth credentials or subscriptions. It is ideal for one-off or low-volume searches where pay-per-request pricing ($0.06/call) is more cost-effective than a monthly subscription. Prefer this over direct Pinterest API access when you want to avoid API key management or when building lightweight agents that need occasional Pinterest data.

## Known failure modes

- Empty or invalid query string returns an error
- Expired or invalid cursor causes pagination failure
- No results found for obscure or very niche queries
- Rate limiting or payment failure if USDC balance is insufficient
- Pinterest anti-scraping measures may intermittently cause empty or partial results

## 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 Pinterest pins matching the search query, including pin metadata such as titles, descriptions, images, and links. When trim is true, a reduced subset of fields is returned. A pagination cursor is included to fetch the next page of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Search query"
  },
  "cursor": {
   "type": "string",
   "description": "Cursor"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-pinterest-search-c99abc96/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)
