# Influship Live YouTube Channel Scraper

> Influship Live YouTube Channel Scraper is a paid API for AI agents from api.influship.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scrapes live YouTube channel data for a given channel handle, returning raw profile and content metadata

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/channel/TheKingsHand1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-live-youtube-channel-scraper-d9b8fe45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hTNZd8vEVN4nGGr_fLnod

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 influship-live-youtube-channel-scraper-d9b8fe45
```

Example prompt: Can you pull the live YouTube channel data for TheKingsHand1 — I need their current subscriber count, video stats, and profile details?

## When to prefer this

Use this endpoint when you need live, real-time YouTube channel data without going through the official YouTube Data API quota system, or when you need raw scraped data for a specific channel handle as part of influencer discovery, vetting, or enrichment workflows. Prefer this over the YouTube API if you need to avoid API key management or quota constraints.

## Known failure modes

- Channel handle not found or does not exist — returns error or empty result
- YouTube rate limiting or anti-scraping measures block the request
- Payment not processed or x402 payment header missing — returns 402 Payment Required
- Channel is private or restricted — data unavailable
- Temporary scraping failure due to YouTube page structure changes

## How this service works

Live YouTube scraping

## Output

Raw scraped YouTube channel data including profile information, subscriber counts, video metadata, channel statistics, and other publicly available channel details for the specified YouTube channel handle.

## 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"
    },
    "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/influship-live-youtube-channel-scraper-d9b8fe45/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.influship.com](https://www.zero.xyz/host/api.influship.com/llms.txt)
