# Orthogonal Twitch Profile Scraper

> Orthogonal Twitch Profile Scraper is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches public profile data for a Twitch streamer by their handle

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/twitch/profile
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-twitch-profile-scraper-85143652
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mdSEbQQFrjk6xOL2DjcIb

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 orthogonal-twitch-profile-scraper-85143652
```

Example prompt: Can you pull up the public Twitch profile for the streamer with handle 'shroud'?

## When to prefer this

Use this endpoint when you need quick programmatic access to public Twitch creator profiles without setting up a Twitch API OAuth application. Ideal for one-off lookups, influencer research pipelines, or agent workflows that need Twitch data alongside other social platform profiles available on the same host.

## Known failure modes

- Invalid or non-existent Twitch handle returns empty or error response
- Twitch account suspended or banned may return no results
- Rate limiting or Twitch platform changes may cause scrape failures
- Payment of 0.02 USDC required per call; missing payment returns 402 error

## How this service works

Twitch

## Output

Returns public Twitch profile data for the specified handle, likely including channel name, bio, follower count, stream status, profile image, and other publicly visible creator metadata.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "handle": {
       "type": "string",
       "description": "Twitch handle"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-twitch-profile-scraper-85143652/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
