# SocialFetch Pinterest Pin Fetcher

> SocialFetch Pinterest Pin Fetcher 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).

Fetches metadata and content for a public Pinterest pin by its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/pinterest/pins
- 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-fetcher-194a6ea4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EooTzH254nPvW31fSvnKo

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-fetcher-194a6ea4
```

Example prompt: Can you grab the details for this Pinterest pin — https://www.pinterest.com/pin/123456789012345678/ — and tell me the title, description, and image?

## When to prefer this

Use this endpoint when you need to programmatically retrieve metadata and content from a specific public Pinterest pin given its URL. Ideal for agents ingesting Pinterest content for analysis, display, or enrichment pipelines without requiring Pinterest API credentials.

## Known failure modes

- Invalid or non-public Pinterest pin URL returns an error
- Pin has been deleted or made private — returns not found or access denied
- Malformed URL parameter causes validation error
- Rate limiting or payment failure (402) if credits are exhausted
- Pinterest rate limits or blocks the fetch attempt

## How this service works

Fetch a public Pinterest pin by URL.

## Output

Returns structured data about the specified Pinterest pin, including title, description, image URL, author, and other pin-level metadata. With trim=true, returns a smaller subset of fields.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Link to the Pinterest pin."
      },
      "trim": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, returns a smaller response with fewer fields."
      }
     }
    }
   },
   "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-fetcher-194a6ea4/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)
