# 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, last successful call 2026-08-14).

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

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/7otgeJXailY
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-14
- Success rate: 89% of calls made through Zero
- Rating: 3.8 / 5 from 5 reviews
- Activations on Zero: 22
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-youtube-transcript-scraper-c0929e71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B8W0kiaPnSOcYaElFnn5Z

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

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

## When to prefer this

Use this endpoint when you need to extract the spoken text or captions from a specific YouTube video identified by its video ID, especially when you need live/real-time transcript data rather than cached results. Prefer this over YouTube Data API when you need raw transcript text without OAuth or quota limits.

## Known failure modes

- Video ID does not exist — 404 or empty response
- Video has no captions or transcript available — empty or error response
- YouTube blocks the scrape — timeout or upstream error
- Invalid video ID format — validation error
- Payment not processed — 402 Payment Required

## How this service works

Live YouTube scraping

## Output

The full text transcript of the specified YouTube video, scraped live from YouTube, returned as structured text content representing the spoken words and captions in the video.

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