YouTube
Channels, videos, shorts, playlists, community posts, lives and transcripts.
- Endpoints
- 18
- Base price
- 1 cr
- Source
- Official API + provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/youtube/profile | Profile | 1 |
| GET /v1/youtube/posts | Post[] | 1 |
| GET /v1/youtube/post | Post | 1 |
| GET /v1/youtube/comments | Comment[] | 1 |
| GET /v1/youtube/search | SearchResult[] | 1 |
| GET /v1/youtube/linked-profiles | LinkedProfile[] | 10 |
| GET /v1/youtube/reels | Post[] | 1 |
| GET /v1/youtube/live/videos | Post[] | 1 |
| GET /v1/youtube/hashtag | Post[] | 1 |
| GET /v1/youtube/trending | Post[] | 1 |
| GET /v1/youtube/transcript | Transcript | 1 |
| GET /v1/youtube/search/posts | Post[] | 1 |
| GET /v1/youtube/search/suggestions | Suggestion[] | 1 |
| GET /v1/youtube/collections | Collection[] | 1 |
| GET /v1/youtube/collection | Collection | 1 |
| GET /v1/youtube/collection/posts | Post[] | 1 |
| GET /v1/youtube/community/posts | Post[] | 1 |
| GET /v1/youtube/community/post | 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/youtube/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=MrBeast"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/youtube/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=MrBeast"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/youtube/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/youtube/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/youtube/linked-profiles \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=MrBeast"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/youtube/reels \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=MrBeast"Live videos
1 creditA channel's live and past live streams.
| 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/youtube/live/videos \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=MrBeast"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/youtube/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/youtube/trending \
-H "Authorization: Bearer $CRAWLFEED_KEY"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/youtube/search/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"Search suggestions
1 creditWhat the search box suggests as someone types: terms, and on YouTube, channels.
| q | required | The start of a search. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/youtube/search/suggestions \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"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/youtube/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/youtube/collections \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=MrBeast"Collection
1 creditOne playlist, album or podcast.
| id | required | Playlist, album or podcast id, or its URL. |
curl -G https://api.crawlfeed.dev/v1/youtube/collection \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"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/youtube/collection/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Communities
Community posts
1 creditPosts in a community, or a channel’s community tab.
| id | required | Community name or URL, or a YouTube channel handle. |
| 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/youtube/community/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Community post
1 creditOne community-tab post.
| id | required | The post URL. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/youtube/community/post \
-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.