Airtm API Keys API
The API Keys API from Airtm — 3 operation(s) for api keys.
The API Keys API from Airtm — 3 operation(s) for api keys.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/airtm-api-keys-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Airtm Enterprise API V2 API Keys API
version: 1.155.0
description: '# Introduction
The Airtm Enterprise API enables organizations to send and receive payments globally through a simple REST API.'
contact:
name: Airtm Enterprise
email: enterprise@airtm.com
url: https://www.airtm.com
servers:
- url: https://api.enterprise.airtm.com/v2
- url: https://api.stg.enterprise.airtm.com/v2
tags:
- name: API Keys
paths:
/api-keys:
post:
operationId: CreateApiKey
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/ApiKey'
default:
description: Error
content:
application/json:
schema:
properties:
code:
type: string
description: 'Machine-friendly error code
See the API error code catalog in the documentation for the endpoint surface you are using.'
example: '415096'
message:
type: string
description: Human-readable error message
example: Invalid email address
data:
$ref: '#/components/schemas/Record_string.unknown_'
description: Additional data related to the error
example:
email: invalid@address
required:
- code
- message
type: object
description: Endpoint to create new api keys for your account.
summary: Create api keys
tags:
- API Keys
security:
- basicAuth: []
parameters: []
get:
operationId: ListApiKeys
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/Paginated_ApiKey_'
default:
description: Error
content:
application/json:
schema:
properties:
code:
type: string
description: 'Machine-friendly error code
See the API error code catalog in the documentation for the endpoint surface you are using.'
example: '415096'
message:
type: string
description: Human-readable error message
example: Invalid email address
data:
$ref: '#/components/schemas/Record_string.unknown_'
description: Additional data related to the error
example:
email: invalid@address
required:
- code
- message
type: object
description: Endpoint to list all api keys associated with your account.
summary: List api keys
tags:
- API Keys
security:
- basicAuth: []
parameters:
- description: Gets results before the specified cursor.
in: query
name: before
required: false
schema:
type: string
- description: Gets results after the specified cursor.
in: query
name: after
required: false
schema:
type: string
- description: The maximum number of items to fetch.
in: query
name: perPage
required: false
schema:
default: 100
format: int32
type: integer
minimum: 10
maximum: 1000
/api-keys/{id}:
delete:
operationId: RevokeApiKey
responses:
'204':
description: No content
default:
description: Error
content:
application/json:
schema:
properties:
code:
type: string
description: 'Machine-friendly error code
See the API error code catalog in the documentation for the endpoint surface you are using.'
example: '415096'
message:
type: string
description: Human-readable error message
example: Invalid email address
data:
$ref: '#/components/schemas/Record_string.unknown_'
description: Additional data related to the error
example:
email: invalid@address
required:
- code
- message
type: object
description: Revoke an existing API key.
summary: Revoke an API key
tags:
- API Keys
security:
- basicAuth: []
parameters:
- description: The API key id.
in: path
name: id
required: true
schema:
type: string
/api-keys/{id}/allowed-ips:
post:
operationId: ToggleAllowedIp
responses:
'200':
description: Ok
content:
application/json:
schema:
items:
$ref: '#/components/schemas/IpItem'
type: array
default:
description: Error
content:
application/json:
schema:
properties:
code:
type: string
description: 'Machine-friendly error code
See the API error code catalog in the documentation for the endpoint surface you are using.'
example: '415096'
message:
type: string
description: Human-readable error message
example: Invalid email address
data:
$ref: '#/components/schemas/Record_string.unknown_'
description: Additional data related to the error
example:
email: invalid@address
required:
- code
- message
type: object
description: 'Toggle an IPv4 address on this API key''s allowlist. If the IP is already
allowed, it is removed; otherwise it is added. Returns the resulting
allowlist.'
summary: Toggle an allowed IP for an API key
tags:
- API Keys
security:
- basicAuth: []
parameters:
- description: The API key id.
in: path
name: id
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/IpItem'
components:
schemas:
Paginated_ApiKey_:
description: Represents a paginated collection of items.
properties:
items:
items:
$ref: '#/components/schemas/ApiKey'
type: array
description: The items in the current page.
startCursor:
type: string
description: The cursor for the first item in the current page.
endCursor:
type: string
description: The cursor for the last item in the current page.
required:
- items
type: object
additionalProperties: false
IpItem:
properties:
ip:
type: string
label:
type: string
required:
- ip
type: object
additionalProperties: false
ApiKey:
properties:
deletedAt:
type: string
createdAt:
type: string
allowedIps:
items:
properties:
label:
type: string
ip:
type: string
required:
- ip
type: object
type: array
secret:
type: string
enterpriseId:
type: string
id:
type: string
required:
- createdAt
- secret
- enterpriseId
- id
type: object
Record_string.unknown_:
properties: {}
additionalProperties: {}
type: object
description: Construct a type with a set of properties K of type T
securitySchemes:
basicAuth:
type: http
scheme: basic
x-tagGroups:
- name: Payout Operations
tags:
- Payouts
- Bulk Payouts
- Users
- name: Payin Operations
tags:
- Payins
- name: Account
tags:
- Me
- Deposits
- Reports
- name: Direct Withdrawal
tags:
- External Bank Account
- External Crypto Account
- Withdrawals
- name: Webhooks
tags:
- Webhooks