# SocialFetch Pinterest Pin Search

> SocialFetch Pinterest Pin Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-13).

Search public Pinterest pins by keyword and return matching pin results with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/pinterest/search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-pinterest-pin-search-f1d76248
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d1-AFblspvuHQZhjwTXvS

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 socialfetch-pinterest-pin-search-f1d76248
```

Example prompt: Search Pinterest for public pins about 'Scandinavian interior design' and show me what comes up — keep the response compact.

## When to prefer this

Use this endpoint when you need to programmatically search public Pinterest content by keyword — ideal for content research, trend discovery, mood board building, or aggregating visual inspiration. Prefer this over manual scraping or Pinterest's official API when you need a lightweight, pay-per-call integration without OAuth setup.

## Known failure modes

- Empty query string returns a validation error (minLength:1 not met)
- Query exceeding 512 characters is rejected
- Invalid or expired pagination cursor returns an error or empty results
- No matching pins found returns an empty result set
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Search public Pinterest pins by keyword.

## Output

A list of public Pinterest pins matching the search query, including pin metadata (image, title, description, URL, etc.), with an opaque cursor for fetching the next page of results. If trim=true, a reduced set of fields is returned per pin.

## 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",
     "required": [
      "query"
     ],
     "properties": {
      "trim": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, returns a smaller response with fewer fields."
      },
      "query": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1,
       "description": "Search query text for Pinterest pins."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor returned by a previous response."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-pinterest-pin-search-f1d76248/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
