# Pinterest Pin API (https://www.socialcrawl.dev/platforms/pinterest/pin) > Returns detailed information about a specific Pinterest pin including the title, description, image URL, save count, comment count, author info, and board details. TL;DR: `GET /v1/pinterest/pin` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the Pinterest pin | | `trim` | no | Set to true for a trimmed down version of the response | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/pinterest/pin?url=https%3A%2F%2Fwww.pinterest.com%2Fpin%2F1234567890%2F" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a Pinterest pin's details with an API? Send a GET request to /v1/pinterest/pin with the full pin URL in the url parameter. SocialCrawl returns title, description, image URL, save count, comments, author, board info, and the external link the pin points to. ### What fields does GET /v1/pinterest/pin return? The response includes pin id, title, description, image URL at multiple resolutions, save count, comment count, author info, board details, the outbound link, and created timestamp — all in a unified schema. ### Does the endpoint return video pins? Yes. Video pins return the same core fields plus video URL, thumbnail, and playback metadata. Everything lives under the same content.media structure used by TikTok, Instagram, and YouTube endpoints. ### Can I trim the Pinterest pin response? Yes. Pass trim=true and the endpoint returns a compact payload with only the essential fields. Useful for embedding Pinterest pins at scale or building lean dashboards that display a pin summary. ### How much does the Pinterest Pin API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required — enough to pull around 100 Pinterest pin records before paying anything. See the full Pinterest API: https://www.socialcrawl.dev/platforms/pinterest ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to fetch a Pinterest pin's details with an API - What does the SocialCrawl Pinterest Pin API return?