# 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-14).

Fetches the live transcript (captions/subtitles) of a YouTube video by its video ID

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/opB7_JXL0LA
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-influship-com-8e1e994c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_izRXOLvUS5xW9r8dWqyI4

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 api-influship-com-8e1e994c
```

Example prompt: Can you grab the full transcript of this YouTube video — opB7_JXL0LA — so I can read through what was said?

## When to prefer this

Use this endpoint when you need the spoken text content of a specific YouTube video by its video ID, especially for summarization, analysis, or indexing pipelines that require live, up-to-date transcript data rather than cached or pre-processed results.

## Known failure modes

- Video ID not found or video does not exist — returns error
- Video has no captions or transcripts available — returns empty or error
- YouTube blocks or rate-limits the scrape — returns scraping failure
- Invalid video ID format — returns validation error
- Video is private or age-restricted — may return access denied

## How this service works

Live YouTube scraping

## Output

Returns the raw transcript text (captions/subtitles) scraped live from the specified YouTube video, containing the spoken dialogue or narration as text segments.

## 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/api-influship-com-8e1e994c/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)
