Endpoint Playground
Test Crawlora's Pinterest board 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/board/<username>/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | Pinterest username that owns the board | |
| slug (path) | string | Yes | Board URL slug, from the board's own /{username}/{slug}/ URL |
{
"code": 200,
"msg": "OK",
"data": {
"id": "52847064316842646",
"url": "/patrontequila/el-cafecito/",
"name": "EL CAFECITO",
"cover_image_url": "https://i.pinimg.com/200x150/4b/92/d4/4b92d41f01669ea16371351e138a8f12.jpg",
"pin_count": 6,
"follower_count": 10372,
"privacy": "public",
"owner_username": "patrontequila",
"pins": [
{
"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"
}
]
}
}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 Pinterest board's metadata (name, description, cover image, pin/follower counts, owner) plus a page of pins from that board. Public data sourced from Pinterest's own board pages.
{
"code": 200,
"msg": "OK",
"data": {
"id": "52847064316842646",
"url": "/patrontequila/el-cafecito/",
"name": "EL CAFECITO",
"cover_image_url": "https://i.pinimg.com/200x150/4b/92/d4/4b92d41f01669ea16371351e138a8f12.jpg",
"pin_count": 6,
"follower_count": 10372,
"privacy": "public",
"owner_username": "patrontequila",
"pins": [
{
"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"
}
]
}
}curl "https://api.crawlora.net/api/v1/pinterest/board/<username>/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"