# Tanship PayAI Console — Audio Transcription (x402)

> Tanship PayAI Console — Audio Transcription (x402) is a paid API for AI agents from x402.tanship.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Transcribes audio to text via a payment-gated API endpoint using the x402 micropayment protocol on Base USDC

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/ai/transcribe
- 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/tanship-payai-console-audio-transcription-x402-bf6750ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uYQSPi5hxv9WxVa9fnDav

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 tanship-payai-console-audio-transcription-x402-bf6750ac -d '<json body>'
```

Example prompt: Can you transcribe this audio recording for me? I need the spoken words converted into text — just send it as a POST with the audio content.

## When to prefer this

Choose this endpoint when you need pay-per-use audio transcription with no subscription or API key — ideal for agents that make infrequent transcription calls and want to pay per request in USDC on Base via x402 micropayments. Prefer this over OpenAI Whisper or similar when operating in a crypto-native or x402-enabled payment environment.

## Known failure modes

- Payment failure — insufficient USDC balance or invalid x402 payment header returns 402 Payment Required
- Unsupported audio format returns an error
- Audio file too large or malformed body returns 400 Bad Request
- Network or edge inference timeout returns 5xx error
- Missing required 'input' field returns validation error

## How this service works

Payment-gated AI and browser automation API using the x402 protocol. All /v1/* endpoints require USDC payment on Base (eip155:8453) via x402 v2 exact scheme.

## Output

Returns a text transcription of the submitted audio, converting spoken words into readable text output. The response includes the recognized speech as a text string.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tanship-payai-console-audio-transcription-x402-bf6750ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tanship.dev](https://www.zero.xyz/host/x402.tanship.dev/llms.txt)
