Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/nabla-transcription-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Nabla Core Authentication Transcription API
description: 'Nabla provides ambient AI for clinicians. The Core API supports
transcription (synchronous, asynchronous, and WebSocket) of medical
encounters. The Server API issues OAuth 2.0 access tokens via JWT
client credentials, and the User API exchanges per-user JWT tokens
so that client applications can call the Core API on behalf of a
Copilot user.
'
version: '1.0'
servers:
- url: https://api.nabla.com
description: Nabla production API
security:
- bearerAuth: []
tags:
- name: Transcription
description: Medical-grade speech-to-text endpoints.
paths:
/server/transcribe:
post:
tags:
- Transcription
summary: Transcribe a short audio file (synchronous)
description: 'Synchronous transcription of recorded audio up to 10 minutes in
length. Returns the transcript inline.
'
operationId: serverTranscribe
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
required:
- audio
properties:
audio:
type: string
format: binary
language:
type: string
responses:
'200':
description: Transcript payload.
content:
application/json:
schema:
type: object
/server/transcribe-async:
post:
tags:
- Transcription
summary: Submit an audio file for asynchronous transcription
description: 'Submit recorded audio (up to 60 minutes) for asynchronous
transcription. Results are delivered via callback or polled by
identifier.
'
operationId: serverTranscribeAsync
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
required:
- audio
properties:
audio:
type: string
format: binary
callback_url:
type: string
format: uri
language:
type: string
responses:
'202':
description: Transcription job accepted.
content:
application/json:
schema:
type: object
properties:
job_id:
type: string
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: OAuth 2.0 access token (Server API) or JWT access token (User API).