Platform · Social
X
Profiles, tweets, replies, communities and video transcripts.
- Endpoints
- 8
- Base price
- 1 cr
- Source
- Provider, with automatic failover
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/x/profile | Profile | 1 |
| GET /v1/x/posts | Post[] | 1 |
| GET /v1/x/post | Post | 1 |
| GET /v1/x/comments | Comment[] | 1 |
| GET /v1/x/linked-profiles | LinkedProfile[] | 10 |
| GET /v1/x/transcript | Transcript | 1 |
| GET /v1/x/community | Profile | 1 |
| GET /v1/x/community/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/x/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nasa"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/x/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nasa"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/x/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"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/x/linked-profiles \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nasa"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/x/transcript \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Communities
Community
1 creditA community (subreddit, group) as a profile.
| id | required | Community name or URL. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/x/community \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"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/x/community/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.