# 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 of a YouTube video by video ID via real-time scraping

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/7H13rTXdPR4
- 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/influship-youtube-transcript-scraper-7c745f00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h3Of7s8Vsk1-N3PzMjEeR

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-7c745f00
```

Example prompt: Can you get me the full transcript of the YouTube video with ID 7H13rTXdPR4?

## When to prefer this

Use this endpoint when you need the spoken text content of a specific YouTube video identified by its video ID. Prefer this over manual scraping or YouTube Data API when you need live transcript data without API quota constraints and are willing to pay per-call. Best suited for single-video transcript extraction tasks where the video ID is known.

## Known failure modes

- Video ID not found or video does not exist — likely 404 or empty response
- Video has no captions or transcripts available — may return empty or error
- Video is private or age-restricted — scraping may fail
- YouTube anti-scraping measures triggered — request may time out or return error
- Invalid video ID format — malformed request error

## How this service works

Live YouTube scraping

## Output

Returns the spoken transcript or captions from the specified YouTube video, scraped live from YouTube. The response contains the text content of the video as it appears in YouTube's caption/subtitle system.

## 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-7c745f00/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)
