Skip to content

User Boards

GET /v1/pinterest/user/boards

Fetches a paginated list of boards for a Pinterest user, returning each board's name, url, description, pin_count, follower_count, owner info, cover_images, and created_at. Supports pagination via cursor and a trim option for lighter responses.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
handlestringyesThe username of the user to get boards for. (e.g. broadstbullycom from https://www.pinterest.com/broadstbullycom/)broadstbullycom
trimbooleannoSet to true for a trimmed down version of the responsefalse

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/pinterest/user/boards?handle=broadstbullycom' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({ handle: 'broadstbullycom' });
const res = await fetch(`https://api.scrapecreators.com/v1/pinterest/user/boards?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/pinterest/user/boards',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={'handle': 'broadstbullycom'},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators pinterest user-boards --help

Example Response

json
{
  "success": true,
  "boards": [
    {
      "id": "549580029467577434",
      "url": "https://www.pinterest.com/sharat24k/turkey-recipes/",
      "description": "",
      "follower_count": 292,
      "pin_count": 545,
      "name": "Turkey Recipes",
      "image_cover_hd_url": "https://i.pinimg.com/474x/45/00/df/4500dfc5bc8bbc15137ff9d9abf04cc1.jpg",
      "created_at": "Mon, 17 Feb 2025 02:19:26 +0000"
    }
  ],
  "cursor": "LT41NDk1ODAwMjk0Njc1Njc1O...."
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.