# 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 creator (e.g. MrBeast) and returns raw channel metadata

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/channel/MrBeast
- 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-2d83024a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__O2yAZDXw3rb8M6r-eU9P

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-2d83024a
```

Example prompt: Pull the live YouTube channel data for MrBeast — I want their current subscriber count, video count, and any other raw channel stats you can scrape right now.

## When to prefer this

Use this endpoint when you need live, real-time YouTube channel data without being subject to the official YouTube Data API quota limits. Ideal for influencer research, competitor monitoring, or enriching creator profiles with up-to-date subscriber and engagement stats. Prefer this over the YouTube API when you need uncached, fresh data or want to avoid API key management overhead.

## Known failure modes

- Channel handle not found or channel does not exist on YouTube
- YouTube rate limiting or anti-scraping measures temporarily blocking the request
- Payment of $0.01 USDC not completed via x402 protocol, resulting in 402 Payment Required
- Network timeout if YouTube is slow to respond
- Channel may have been deleted or renamed since last crawl

## How this service works

Live YouTube scraping

## Output

Raw scraped YouTube channel data for the specified creator, including live metrics such as subscriber count, total view count, video count, channel description, and other publicly available channel metadata.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "queryParams": {}
 }
}
```

## 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-2d83024a/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)
