# Influship YouTube Transcript Fetcher

> Influship YouTube Transcript Fetcher 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 its video ID via real-time scraping

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/youtube/transcript/kwEtOyaFhCA
- 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-51d46f35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rW_OoHOxjMEOJFOwa9d2h

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-51d46f35
```

Example prompt: Can you grab the full transcript of this YouTube video — https://www.youtube.com/watch?v=kwEtOyaFhCA — I want to read what was said without watching it.

## When to prefer this

Use this endpoint when you need to extract the transcript of a YouTube video without using the official YouTube Data API, when you want live/current captions, or when you need a lightweight pay-per-call approach at $0.01 USDC per request without managing API keys.

## Known failure modes

- Video has no captions or auto-generated transcripts available — returns empty or error response
- Invalid or non-existent YouTube video ID — returns 404 or error
- Video is age-restricted or private — scraping blocked, returns error
- YouTube anti-scraping measures triggered — returns 429 or failure
- Network/scraping timeout — slow or failed live fetch

## How this service works

Live YouTube scraping

## Output

Returns the full transcript or captions scraped live from the specified YouTube video, typically as timestamped or plain text of the spoken content 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/api-influship-com-51d46f35/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)
