# 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 video ID via real-time scraping

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/S143_JtCtV8
- 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-390a10ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Efe34IQiEmR3kKUO929QV

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-390a10ae
```

Example prompt: Can you grab the transcript of YouTube video S143_JtCtV8 so I can summarize what was said in it?

## When to prefer this

Use this endpoint when you need to programmatically fetch the transcript of a specific YouTube video by its video ID in real time without managing YouTube API quotas or OAuth credentials. It is best suited for one-off transcript extractions for summarization, analysis, or content repurposing workflows.

## Known failure modes

- Video has no captions or transcripts available — returns empty or error
- Invalid or non-existent video ID — returns 404 or error response
- Video is private or age-restricted, blocking scraping access
- YouTube anti-scraping measures may cause intermittent failures
- Rate limiting if too many requests are made in quick succession

## How this service works

Live YouTube scraping

## Output

Returns the scraped transcript of the specified YouTube video, including the spoken text content (and potentially timestamped caption segments) extracted live from YouTube's captions 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-390a10ae/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)
