# SocialFetch Twitch Channel Schedule

> SocialFetch Twitch Channel Schedule is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Retrieve the upcoming stream schedule for a Twitch channel by its handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/twitch/profiles/:handle/schedule
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-twitch-channel-schedule-bf945f55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GSeijli4tulI1ptmmgzsY

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-twitch-channel-schedule-bf945f55
```

Example prompt: What's the stream schedule for the Twitch channel @pokimane? I want to know what days and times she's planning to go live.

## When to prefer this

Use this endpoint when you need structured schedule data for a specific Twitch channel, especially when building tools that track streamer availability, notify users of upcoming streams, or aggregate streaming calendars. Prefer this over scraping Twitch directly since it abstracts away authentication and delivers schedule data in a clean format.

## Known failure modes

- Handle not found or does not exist on Twitch — returns 404 or empty result
- Channel exists but has no schedule set — returns empty schedule
- Handle too long or invalid format — validation error
- Rate limit exceeded — 429 response
- Payment failure via x402 — 402 response requiring payment

## How this service works

Get the stream schedule for a Twitch channel by handle.

## Output

Returns the stream schedule for the specified Twitch channel, including upcoming broadcast segments, days, times, titles, and any recurring schedule information published by the creator.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 64,
       "minLength": 1,
       "description": "Twitch handle to look up, with or without a leading @."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-twitch-channel-schedule-bf945f55/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
