# Influship YouTube Transcript Scraper

> Influship YouTube Transcript 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).

Fetches the live transcript of a YouTube video by its video ID

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/0PHUk7Ov7C0
- 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-youtube-transcript-scraper-e09d39c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z4-PaNFlZUakJLzgCMpvS

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-transcript-scraper-e09d39c3
```

Example prompt: Can you get me the full transcript of this YouTube video: youtube.com/watch?v=0PHUk7Ov7C0?

## When to prefer this

Use this endpoint when you need the spoken transcript of a specific YouTube video identified by its video ID, especially for influencer research, content analysis, quote extraction, or summarization tasks. Prefer this over manual caption downloads when you need programmatic, on-demand access to YouTube transcripts within an automated agent workflow.

## Known failure modes

- Video has no captions or auto-generated subtitles available — returns empty or error
- Invalid or non-existent YouTube video ID — returns 404 or error response
- Video is private or age-restricted and transcript cannot be accessed — returns access error
- Payment not processed (x402 protocol) — returns 402 Payment Required
- Rate limiting or scraping block from YouTube — returns timeout or error

## How this service works

Live YouTube scraping

## Output

Returns the spoken transcript text of the specified YouTube video, extracted live from YouTube's captions or subtitle data for that video ID.

## 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-transcript-scraper-e09d39c3/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)
