# SecondEyes AI Transcribe-Extract

> SecondEyes AI Transcribe-Extract is a paid API for AI agents from secondeyesai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Converts any public audio, podcast, video, or PDF URL into a validated transcript with summary, ranked key points, and grounded Q&A

## Facts

- Endpoint: GET https://secondeyesai.com/api/bar/x402/transcribe
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/secondeyesai-com-231c6249
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gH7IX-ezbBw0nACd7epmn

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 secondeyesai-com-231c6249
```

Example prompt: Can you transcribe this podcast episode at https://example.com/episode42.mp3 and give me a summary, the top key points, and answer the question 'What are the main takeaways about AI regulation?'

## When to prefer this

Choose this endpoint when you need both a raw transcript AND its semantic meaning (summary, key points, Q&A) from a single call, with built-in deterministic validation guaranteeing the output is schema-conformant and meaning is grounded in the source — not hallucinated. Prefer over generic transcription APIs when evidence-only attestation and self-validated quality matter, or when the source is a podcast, voice note, PDF, or video URL rather than an uploaded file.

## Known failure modes

- URL is not publicly accessible — returns error indicating inaccessible resource
- Audio/video format not supported or cannot be decoded — returns decode error
- PDF is encrypted or scanned image-only with no extractable text — returns extraction failure
- Content too short or silent — words-per-minute validation fails
- Network timeout fetching remote URL — returns fetch error
- Q&A answer not grounded in transcript — validation blocks response and returns grounding error

## How this service works

transcribe-extract: turn any public audio, voice note, podcast, PDF, or video URL into a transcript plus its meaning — summary, ranked key points, and grounded Q&A. Deterministically validated (schema, words/min, no decode loop, meaning grounded in transcript) before it is served; evidence-only attestation, never a claim of accuracy.

## Output

Returns a validated transcript of the media or document, a prose summary, a ranked list of key points, and grounded Q&A answers derived solely from the transcript content — all deterministically validated for schema conformance, words-per-minute plausibility, and meaning grounded in the transcript before being served.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "qa": [
   {
    "answer": "On-chain reputation and buyer-reach are keyed to a single payTo; splitting fragments the signal.",
    "question": "Why keep one wallet?"
   }
  ],
  "tool": "transcribe-extract",
  "summary": "A 30-minute interview on agent payment rails and why settlement reputation compounds.",
  "language": "en",
  "key_points": [
   "x402 indexes individual routes, not sites",
   "Distinct-buyer signal compounds on one wallet",
   "Recency tax: surfaces drop after 30 days without settlement"
  ],
  "media_kind": "audio",
  "transcript": "Welcome back to the show. Today we are talking aboutÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦",
  "attestation": {
   "schema": "second-eye/transcription-attestation/v1",
   "signature": "hmac-sha256:ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦",
   "validated": [
    "schema-valid structured output",
    "words/min in range (164)",
    "no repetition loop",
    "meaning grounded in transcript"
   ],
   "disclaimer": "Evidence-only. Validates structure, plausibility, and grounding ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â NOT factual accuracy of the transcript."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/secondeyesai-com-231c6249/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from secondeyesai.com](https://www.zero.xyz/host/secondeyesai.com/llms.txt)
