Endpoint Playground
Test Crawlora's Pinterest idea 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/ideas/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Pinterest ideas category id. See GET /pinterest/categories for the full list. |
{
"code": 200,
"msg": "OK",
"data": {
"id": "925056443165",
"name": "Animals",
"description": "Animals are the best. Boost your mood with funny cat memes, or learn everything you need to know about caring for the family pet.",
"follower_count": 138678383,
"pins": [
{
"id": "97531148175959884",
"url": "https://www.pinterest.com/pin/97531148175959884/",
"title": "world otter day",
"description": "otters",
"image_url": "https://i.pinimg.com/474x/11/1a/26/111a261d48f2ddb20e427ccc1692665b.jpg",
"dominant_color": "#888b7e",
"domain": "Uploaded by user",
"board_name": "animals + insects",
"pinner_username": "bellamwelsh"
}
]
}
}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 one "Ideas" category's metadata (name, description, follower count) plus a page of pins from that category's feed. Public data sourced from Pinterest's own ideas category pages.
{
"code": 200,
"msg": "OK",
"data": {
"id": "925056443165",
"name": "Animals",
"description": "Animals are the best. Boost your mood with funny cat memes, or learn everything you need to know about caring for the family pet.",
"follower_count": 138678383,
"pins": [
{
"id": "97531148175959884",
"url": "https://www.pinterest.com/pin/97531148175959884/",
"title": "world otter day",
"description": "otters",
"image_url": "https://i.pinimg.com/474x/11/1a/26/111a261d48f2ddb20e427ccc1692665b.jpg",
"dominant_color": "#888b7e",
"domain": "Uploaded by user",
"board_name": "animals + insects",
"pinner_username": "bellamwelsh"
}
]
}
}curl "https://api.crawlora.net/api/v1/pinterest/ideas/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"