Public API + MCP

Audio intelligence for your applications

Transcription, AI Notes and chat over any audio — accessible from your backend (REST API) or from Claude / ChatGPT / Cursor / Gemini (MCP server). Pay-per-credit, no commitment, data in Europe.

Real Spanish transcription

Universal-3 with diarization, ES↔EN code-switching, LATAM dialects. Quality superior to anglo-centric APIs.

Structured AI Notes

13 templates (minutes, sales, medical, legal, podcast…) with summaries, action items, decisions, mind map.

Chat over your audio

RAG with local BGE-M3 embeddings. Ask your recordings; answers cite timestamps with clickable seek.

REST API quickstart

4 steps to start integrating AudioMap from your backend.

Create an API key

Log into your account and generate a key at https://audiomap.ai/en/dashboard/api-keys

Upload audio for transcription

# Returns 202 with noteId — transcription is async
curl -X POST https://api.audiomap.ai/v1/notes \
  -H "Authorization: Bearer am_live_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "audioUrl": "https://example.com/meeting.mp3",
    "language": "es-ES"
  }'

# 202 Accepted
{
  "noteId": "01J...",
  "status": "processing"
}

Cost: 50 credits per minute of audio. If you exceed your monthly quota, returns 402.

Polling: get the result

curl https://api.audiomap.ai/v1/notes/01J... \
  -H "Authorization: Bearer am_live_xxxxxxxxxxxx"

# 200 OK
{
  "id": "01J...",
  "status": "ready",
  "transcript": { "fullText": "...", "languagesDetected": ["es"] },
  "aiNotes": [{ "summary": "...", "actionItems": [...] }],
  "outline": [{ "startMs": 0, "endMs": 60000, "headline": "..." }]
}

Webhooks (optional)

Pass webhookUrl on upload and AudioMap will call you when transcription completes. Recommended for production async flows.

MCP quickstart

Connect AudioMap to Claude, ChatGPT, Cursor or Gemini in 30 seconds. Your AI client accesses your notes, transcripts and AI Notes directly.

Claude
Compatible
ChatGPT
Compatible
Cursor
Compatible
Gemini CLI
Compatible
OAuth 2.1 (recommended for IA clients)

Claude Desktop, ChatGPT and Cursor discover OAuth automatically from the metadata endpoint. Your users approve consent once and connect with one click — no API key copy-paste.

# Discovery endpoint (RFC 8414)
curl https://api.audiomap.ai/.well-known/oauth-authorization-server

Supported grant types: authorization_code + refresh_token · PKCE S256 · Access token TTL 1h · Refresh 30d · Hard expiry 90d.

Configure your MCP client

{
  "mcpServers": {
    "audiomap": {
      "transport": "streamable-http",
      "url": "https://api.audiomap.ai/mcp/stream",
      "headers": {
        "Authorization": "Bearer am_live_xxxxxxxxxxxx"
      }
    }
  }
}

Paste this into your MCP client's config (Claude Desktop config, Cursor settings, ChatGPT Developer Mode…). Replace am_live_... with your API key.

Ask your AI

Once connected, your AI can use the tools without further config. Examples:

  • "Search my notes for what we said about last month's contract"
  • "Summarize the last client meeting and give me the action items"
  • "At what point in the May 5th audio did we discuss pricing?"

Available tools

All 13 tools are live in production. Write tools deduct credits according to your plan.

ToolPlan
search_notesFree
list_recent_notesFree
get_noteFree
get_transcript_segmentsFree
list_foldersFree
list_highlightsFree
get_outlineFree
upload_audio_urlPro+
wait_for_transcriptionPro+
generate_ai_notesPro+
generate_outlinePro+
replace_in_transcriptPro+

Public demo — no signup

Want to try AudioMap MCP before signing up? Connect the demo endpoint to your AI client and play with a sample dataset. 10 requests per 10 minutes per IP, read-only tools.

{
  "mcpServers": {
    "audiomap-demo": {
      "transport": "streamable-http",
      "url": "https://api.audiomap.ai/mcp/demo"
    }
  }
}

Demo dataset only, no access to your personal library. To access your real audio, sign up and create an API key.

Credits: how they work

Each plan includes monthly credits consumed when using the API or MCP. Read operations are free; AI or ffmpeg operations deduct.

Credits per plan

  • Free (€0)50 / mes
  • Personal (€9)1.000 / mes
  • Pro (€19)5.000 / mes
  • Power (€39)25.000 / mes

Cost per operation

  • Transcribe 1 minute of audio50
  • Generate AI Notes100
  • Generate outline/chapters50
  • 1 chat message10
  • Extract MP3 clip5
  • Search / list / read (always free)0

No overage. When the month's credits run out, calls return 402 until the next cycle or an upgrade. Unused credits don't roll over.

Start integrating in 5 minutes

Create your API key, copy the curl example or the MCP JSON, and start calling. First 50 credits are free.

Create free API key

Need help? [email protected]

Developers — AudioMap API + MCP | Spanish-first audio intelligence · AudioMap