Platform · Video & live

Twitch

Channels, recent broadcasts and live status.

Endpoints
4
Base price
1 cr
Source
Provider
EndpointReturnsCredits
GET /v1/twitch/profileProfile1
GET /v1/twitch/postsPost[]1
GET /v1/twitch/liveLiveStream1
GET /v1/twitch/eventsEvent[]1

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/twitch/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: 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 credit

List a profile's recent posts.

GET/v1/twitch/postsPost[]
handlerequiredUsername without the @.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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 credit

Whether a creator is live right now, with viewers and title.

GET/v1/twitch/liveLiveStream
handlerequiredUsername 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 credit

A page's upcoming and past events, or a streamer's schedule.

GET/v1/twitch/eventsEvent[]
handlerequiredUsername without the @, or the profile URL.
cursoroptionalFrom 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.