Platform · Social
Pins, boards and pin search.
- Endpoints
- 5
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/pinterest/post | Post | 1 |
| GET /v1/pinterest/search | SearchResult[] | 1 |
| GET /v1/pinterest/search/posts | Post[] | 1 |
| GET /v1/pinterest/collections | Collection[] | 1 |
| GET /v1/pinterest/collection/posts | Post[] | 1 |
Core
Post
1 creditGet a single post by id.
| id | required | The post id on that platform. |
| enrich | optional | arabic: 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
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/pinterest/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=climate tech"Search
Search posts
1 creditPosts matching a keyword.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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 creditA profile's playlists, boards or story highlights.
| handle | required | Username without the @, or the profile URL. |
| cursor | optional | From 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 creditThe posts in a playlist, board, highlight or podcast.
| id | required | Playlist, board, highlight or podcast id, or its URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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.