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

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/NdU6UdUKaYc
- 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-9e2d54de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4BvB4Fl2wqt34t6XRcpfF

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-9e2d54de
```

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

## When to prefer this

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

## Known failure modes

- Video has no captions or auto-generated transcript available — returns empty or error
- Invalid or non-existent YouTube video ID — returns 404 or error response
- Video is age-restricted or private — scraping may fail
- YouTube anti-scraping measures block the request — returns error
- Payment of $0.01 USDC not completed — returns 402 Payment Required

## How this service works

Live YouTube scraping

## Output

The agent receives the full spoken transcript/captions text of the specified YouTube video, scraped live from YouTube at the time of the request.

## 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-9e2d54de/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)
