# Influship YouTube Channel Transcripts API

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

Fetches live-scraped transcripts from a specified YouTube channel (e.g. MrBeast) via the Influship platform

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/channel-transcripts/MrBeast
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-youtube-channel-transcripts-api-bec7eaeb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-cn2wZeQjgRfa8z0K3wz-

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-youtube-channel-transcripts-api-bec7eaeb
```

Example prompt: Can you pull the live transcripts from MrBeast's YouTube channel so I can analyze what topics and phrases he covers most frequently in his videos?

## When to prefer this

Use this endpoint when you need live, up-to-date transcript data from a specific YouTube channel by creator name, especially for influencer research, content analysis, or NLP tasks. Prefer this over static datasets when freshness matters or when researching popular creators like MrBeast.

## Known failure modes

- Channel not found or invalid channel handle returns an error
- YouTube rate limiting or blocking may cause scraping failure
- Transcripts unavailable for channels with disabled captions
- Payment not processed (x402 payment required at $0.03 USDC per call)
- Network timeout if YouTube is slow to respond

## How this service works

Live YouTube scraping

## Output

Raw transcript text scraped live from the specified YouTube channel's videos, including spoken dialogue and captions from the creator's content

## 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-youtube-channel-transcripts-api-bec7eaeb/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)
