Endpoint Playground
Test Crawlora's Pinterest pin API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/pinterest/pin/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Pinterest pin id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "52846995624279072",
"url": "https://www.pinterest.com/pin/52846995624279072/",
"title": "Milk Punch Recipe",
"image_url": "https://i.pinimg.com/736x/de/08/76/de08769d89808e1373c95fdb53c1f324.jpg",
"dominant_color": "#6a2f18",
"domain": "Uploaded by user",
"board_name": "EL CAFECITO",
"pinner_username": "patrontequila",
"comment_count": 0,
"repin_count": 1,
"created_at": "Fri, 26 Jun 2026 18:37:28 +0000"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a single Pinterest pin's full detail: title, description, image, board, pinner, comment count, save count, and creation time. Public data sourced from Pinterest's own pin pages.
{
"code": 200,
"msg": "OK",
"data": {
"id": "52846995624279072",
"url": "https://www.pinterest.com/pin/52846995624279072/",
"title": "Milk Punch Recipe",
"image_url": "https://i.pinimg.com/736x/de/08/76/de08769d89808e1373c95fdb53c1f324.jpg",
"dominant_color": "#6a2f18",
"domain": "Uploaded by user",
"board_name": "EL CAFECITO",
"pinner_username": "patrontequila",
"comment_count": 0,
"repin_count": 1,
"created_at": "Fri, 26 Jun 2026 18:37:28 +0000"
}
}curl "https://api.crawlora.net/api/v1/pinterest/pin/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"