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-authentication-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 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: Authentication
description: OAuth and JWT token endpoints.
paths:
/oauth/token:
post:
tags:
- Authentication
summary: Issue a server access token (OAuth 2.0 client credentials)
description: 'Exchange a JWT client assertion (RS256) for an OAuth 2.0 access
token used to authenticate Server API requests. Tokens typically
expire in one hour.
'
operationId: oauthToken
security: []
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
required:
- grant_type
- client_assertion_type
- client_assertion
properties:
grant_type:
type: string
enum:
- client_credentials
client_assertion_type:
type: string
enum:
- urn:ietf:params:oauth:client-assertion-type:jwt-bearer
client_assertion:
type: string
scope:
type: string
responses:
'200':
description: Access token issued.
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
token_type:
type: string
expires_in:
type: integer
'401':
description: Invalid client assertion.
/jwt/authenticate/{user_id}:
post:
tags:
- Authentication
summary: Issue per-user access and refresh tokens
description: 'Server-to-server endpoint that mints access and refresh tokens
scoped to a single Copilot user, allowing a client application
to act on behalf of that user when calling the Core API.
'
operationId: jwtAuthenticate
parameters:
- in: path
name: user_id
required: true
schema:
type: string
responses:
'200':
description: User tokens issued.
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
refresh_token:
type: string
expires_in:
type: integer
/jwt/refresh:
post:
tags:
- Authentication
summary: Refresh a user access token
operationId: jwtRefresh
security: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- refresh_token
properties:
refresh_token:
type: string
responses:
'200':
description: New access token issued.
content:
application/json:
schema:
type: object
properties:
access_token:
type: string
expires_in:
type: integer
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: OAuth 2.0 access token (Server API) or JWT access token (User API).