Platform · Social

Pinterest

Pins, boards and pin search.

Endpoints
5
Base price
1 cr
Source
Provider

Core

Post

1 credit

Get a single post by id.

GET/v1/pinterest/postPost
idrequiredThe post id on that platform.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/pinterest/post \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Search

Search posts

1 credit

Posts matching a keyword.

GET/v1/pinterest/search/postsPost[]
qrequiredWhat to search for.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/pinterest/search/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "q=coffee"

Transcripts and media

Collections

1 credit

A profile's playlists, boards or story highlights.

GET/v1/pinterest/collectionsCollection[]
handlerequiredUsername without the @, or the profile URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
curl -G https://api.crawlfeed.dev/v1/pinterest/collections \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=nasa"

Collection posts

1 credit

The posts in a playlist, board, highlight or podcast.

GET/v1/pinterest/collection/postsPost[]
idrequiredPlaylist, board, highlight or podcast id, or its URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/pinterest/collection/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.