# SociaVault Twitch User Videos

> SociaVault Twitch User Videos is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Fetches a paginated list of videos for a given Twitch user handle via the SociaVault social data proxy, paid per call with x402.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitch/user/videos
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sociavault-twitch-user-videos-de89c018
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EaRFgayd2B-ZDkpvvJIjn

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 sociavault-twitch-user-videos-de89c018
```

Example prompt: Can you pull the list of videos from Twitch user 'shroud', sorted by most recent, using SociaVault?

## When to prefer this

Use this endpoint when you need to programmatically retrieve a Twitch user's video library (VODs, clips, broadcasts) by handle, especially when you want sorting or filtering control and are operating in an x402 micropayment context via SociaVault's proxy layer.

## Known failure modes

- Invalid or unknown Twitch handle returns empty data or error
- Missing handle parameter causes bad request
- Invalid cursor causes pagination failure or empty result
- Rate limit or payment failure (x402) returns 402 Payment Required
- Twitch account is banned or suspended — no videos returned
- Invalid sort_by or filter_by values may be ignored or cause an error

## How this service works

SociaVault API proxy — twitch-user-videos. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

Returns a JSON object with a 'data' field containing video records for the specified Twitch user, a 'success' boolean, and the 'sociavault' provider identifier. May include a cursor for paginating through additional results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string"
  },
  "handle": {
   "type": "string"
  },
  "sort_by": {
   "type": "string"
  },
  "filter_by": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sociavault-twitch-user-videos-de89c018/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from social.gedx402.com](https://www.zero.xyz/host/social.gedx402.com/llms.txt)
