InsightSocial API
Pinterest

Board

GET
/v1/pinterest/board

Returns the pins on a Pinterest board with text, image URL, author, and save, comment and share counts; include=engagement adds each pin's date and reaction count.

Use it when you have a board URL: about 15 pins a page, cursor for the rest, include=engagement for pin dates. user/boards finds the boards.

Metered: 20–320 credits. We reserve the ceiling when the call starts and charge what it actually used when it finishes.

Re-running the exact same call within 6h is free.

Paginates by cursor — see Pagination.

x-api-key<token>

Your key from the dashboard. It starts with isk_.

In: header

Query Parameters

url*string

Full URL of the Pinterest board

trim?boolean

Set to true for a trimmed down version of the response

cursor?string

Cursor to get the next page of pins. Take it from pagination.next_cursor on the previous response.

include?"engagement"

Set to engagement (one token only) to fill post.published_at and post.engagement.likes (plus any save, comment or share count the board row lacked) on every row in this one call.

Value in

  • "engagement"
limit?integer

Take the top N pins of the page (1 to 15). It is not a page size: next_cursor still advances past the full page, so pins beyond N on this page are not returned by the next page.

Range1 <= value <= 15

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/pinterest/board?url=string"
{  "success": true,  "platform": "instagram",  "endpoint": "/v1/instagram/profile/posts",  "data": {    "items": [      "…"    ],    "dropped": 0  },  "pagination": {    "next_cursor": "is2.eyJwIjoyfQ",    "has_more": true,    "page_size": 12  },  "credits_used": 20,  "credits_remaining": 9980,  "request_id": "req_1a2b3c4d5e6f",  "cached": false,  "idempotent_replay": false,  "charge_reason": "miss",  "free_call": false}