Endpoint Playground
Test Crawlora's Pinterest user pins 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/user/<username>/pins" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | Pinterest username |
{
"code": 200,
"msg": "OK",
"data": {
"username": "patrontequila",
"pins": [
{
"id": "52846995624312550",
"url": "https://www.pinterest.com/pin/52846995624312550/",
"title": "Summer freshness, stirred. Enjoy a PATRÓN® Strawberry Margarita.",
"description": "Discover a fresh flavorful sip for the hot weather. Find recipe here.",
"image_url": "https://i.pinimg.com/736x/ee/06/7d/ee067d96fc479b935075a9eefb309c87.jpg",
"dominant_color": "#ffffff",
"domain": "patrontequila.com",
"link": "https://www.patrontequila.com/cocktails/patron-silver/strawberry-margarita.html",
"board_name": "Summer Cocktails",
"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 page of a Pinterest user's own pins: title, description, image, board, and pinner for each. Public data sourced from Pinterest's own profile pages.
{
"code": 200,
"msg": "OK",
"data": {
"username": "patrontequila",
"pins": [
{
"id": "52846995624312550",
"url": "https://www.pinterest.com/pin/52846995624312550/",
"title": "Summer freshness, stirred. Enjoy a PATRÓN® Strawberry Margarita.",
"description": "Discover a fresh flavorful sip for the hot weather. Find recipe here.",
"image_url": "https://i.pinimg.com/736x/ee/06/7d/ee067d96fc479b935075a9eefb309c87.jpg",
"dominant_color": "#ffffff",
"domain": "patrontequila.com",
"link": "https://www.patrontequila.com/cocktails/patron-silver/strawberry-margarita.html",
"board_name": "Summer Cocktails",
"pinner_username": "patrontequila"
}
]
}
}curl "https://api.crawlora.net/api/v1/pinterest/user/<username>/pins" \
-H "x-api-key: $CRAWLORA_API_KEY"