Profiles, posts, reels, comments, highlights, transcripts and hashtag search.
- Endpoints
- 18
- Base price
- 1 cr
- Source
- Provider, with automatic failover
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/instagram/profile | Profile | 1 |
| GET /v1/instagram/posts | Post[] | 1 |
| GET /v1/instagram/post | Post | 1 |
| GET /v1/instagram/comments | Comment[] | 1 |
| GET /v1/instagram/search | SearchResult[] | 1 |
| GET /v1/instagram/linked-profiles | LinkedProfile[] | 10 |
| GET /v1/instagram/reels | Post[] | 1 |
| GET /v1/instagram/tagged | Post[] | 1 |
| GET /v1/instagram/hashtag | Post[] | 1 |
| GET /v1/instagram/trending | Post[] | 1 |
| GET /v1/instagram/transcript | Transcript | 1 |
| GET /v1/instagram/replies | Comment[] | 1 |
| GET /v1/instagram/search/posts | Post[] | 1 |
| GET /v1/instagram/search/profiles | Profile[] | 1 |
| GET /v1/instagram/topic | Post[] | 1 |
| GET /v1/instagram/collections | Collection[] | 1 |
| GET /v1/instagram/collection/posts | Post[] | 1 |
| GET /v1/instagram/track/posts | Post[] | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/instagram/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=natgeo"Posts
1 creditList a profile's recent posts.
| handle | required | Username without the @. |
| 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/instagram/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=natgeo"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/instagram/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/instagram/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=climate tech"Profiles and people
Linked profiles
10 creditsThe same creator's accounts on other platforms, matched through their public links.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/instagram/linked-profiles \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=natgeo"Posts and feeds
Reels and shorts
1 creditA profile's short-form videos: reels, shorts.
| handle | required | Username without the @, or the profile 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/instagram/reels \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=natgeo"Tagged posts
1 creditPosts a profile is tagged in.
| handle | required | Numeric user id or username. |
| 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/instagram/tagged \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=natgeo"Hashtag
1 creditPosts using a hashtag.
| tag | required | Hashtag without the #. |
| 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/instagram/hashtag \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "tag=coffee"Trending
1 creditWhat is trending on the platform right now.
| country | optional | ISO country code, e.g. US. |
| language | optional | Programming language (GitHub). |
| 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/instagram/trending \
-H "Authorization: Bearer $CRAWLFEED_KEY"Comments
Replies
1 creditReplies to one comment.
| post_id | required | The post the comment is on (id or URL). |
| comment_id | required | The comment to read replies to. |
| 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/instagram/replies \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "post_id=<post_id>" \
--data-urlencode "comment_id=<comment_id>"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/instagram/search/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"Search profiles
1 creditProfiles 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/instagram/search/profiles \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"Topic
1 creditPosts the platform curates for a topic, most popular first.
| q | required | A topic, e.g. basketball. |
| 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/instagram/topic \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=basketball"Transcripts and media
Transcript
1 creditThe spoken text of a video, with timings when available.
| id | required | The video or post id, or its URL. |
curl -G https://api.crawlfeed.dev/v1/instagram/transcript \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"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/instagram/collections \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=natgeo"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/instagram/collection/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Music and audio
Posts using a sound
1 creditVideos that use a sound.
| id | required | Sound or audio 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/instagram/track/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.
Comments
1 creditList comments on a post.