Board ID
Find the Board ID you want pins sent to
Pinterest web URLs don't contain the numeric Board ID, they show the slug (/mike/my-art-board/). Fastest way to get the real ID is a one-line API call.
Run this in a browser or with curl, substituting your token:
curl -H "Authorization: Bearer {ACCESS_TOKEN}" \
https://api.pinterest.com/v5/boards
Response:
{
"items": [
{ "id": "987654321098765432", "name": "My Art Board", ... },
{ "id": "987654321098765431", "name": "Seasonal Drops", ... }
]
}
Copy the id of the board you want, that's the Board ID.
If you have more than 25 boards, the response is paginated with a bookmark field. Add ?bookmark={value} to keep going.