Platform · Video & live
Twitch
Channels, recent broadcasts and live status.
- Endpoints
- 4
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/twitch/profile | Profile | 1 |
| GET /v1/twitch/posts | Post[] | 1 |
| GET /v1/twitch/live | LiveStream | 1 |
| GET /v1/twitch/events | Event[] | 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/twitch/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=shroud"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/twitch/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=shroud"Profiles and people
Live
1 creditWhether a creator is live right now, with viewers and title.
| handle | required | Username without the @, or the profile URL. |
curl -G https://api.crawlfeed.dev/v1/twitch/live \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=shroud"Events
Events
1 creditA page's upcoming and past events, or a streamer's schedule.
| 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/twitch/events \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=shroud"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.