Endpoint Playground
Test Crawlora's Pinterest user 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>" \
-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",
"full_name": "Patrón Tequila",
"about": "Official Instagram for Patrón Tequila. Find cocktail recipes, entertaining ideas, and more.",
"website_url": "http://patrontequila.com",
"follower_count": 11311,
"following_count": 61,
"pin_count": 372,
"board_count": 23,
"avatar_url": "https://i.pinimg.com/140x140_RS/f4/11/b3/f411b3d14f20e013fbf6433a6947524f.jpg"
}
}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 user's public profile: display name, bio, website, avatar, and follower/following/pin/board counts. Public data sourced from Pinterest's own profile pages.
{
"code": 200,
"msg": "OK",
"data": {
"username": "patrontequila",
"full_name": "Patrón Tequila",
"about": "Official Instagram for Patrón Tequila. Find cocktail recipes, entertaining ideas, and more.",
"website_url": "http://patrontequila.com",
"follower_count": 11311,
"following_count": 61,
"pin_count": 372,
"board_count": 23,
"avatar_url": "https://i.pinimg.com/140x140_RS/f4/11/b3/f411b3d14f20e013fbf6433a6947524f.jpg"
}
}curl "https://api.crawlora.net/api/v1/pinterest/user/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"