Thunes Transactions API
The Transactions API from Thunes — 10 operation(s) for transactions.
The Transactions API from Thunes — 10 operation(s) for transactions.
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/thunes-transactions-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: Thunes Money Transfer Account Management Transactions API
description: 'Real-time cross-border money transfer to bank accounts, mobile wallets,
cash pickup, and cards via the Thunes global payouts network.
'
version: '2.0'
contact:
name: Thunes Developer Portal
url: https://docs.thunes.com/money-transfer/v2/
servers:
- url: https://api.thunes.com/v2/money-transfer
description: Production
- url: https://api-pp.thunes.com/v2/money-transfer
description: Pre-production / Sandbox
security:
- basicAuth: []
tags:
- name: Transactions
paths:
/quotations/{id}/transactions:
post:
tags:
- Transactions
summary: Create transaction from quotation ID
operationId: createTransactionFromQuotation
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'201':
description: Transaction created.
/quotations/ext-{external_id}/transactions:
post:
tags:
- Transactions
summary: Create transaction from external quotation ID
operationId: createTransactionFromExternalQuotation
parameters:
- name: external_id
in: path
required: true
schema:
type: string
responses:
'201':
description: Transaction created.
/transactions/{id}:
get:
tags:
- Transactions
summary: Retrieve transaction by ID
operationId: getTransaction
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Transaction.
/transactions/ext-{external_id}:
get:
tags:
- Transactions
summary: Retrieve transaction by external ID
operationId: getTransactionByExternalId
parameters:
- name: external_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Transaction.
/transactions/{id}/attachments:
get:
tags:
- Transactions
summary: List attachments for a transaction
operationId: listTransactionAttachments
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Attachments.
post:
tags:
- Transactions
summary: Add attachment to a transaction
operationId: addTransactionAttachment
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'201':
description: Attachment added.
/transactions/ext-{external_id}/attachments:
get:
tags:
- Transactions
summary: List attachments by external transaction ID
operationId: listTransactionAttachmentsByExternalId
parameters:
- name: external_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Attachments.
post:
tags:
- Transactions
summary: Add attachment by external transaction ID
operationId: addTransactionAttachmentByExternalId
parameters:
- name: external_id
in: path
required: true
schema:
type: string
responses:
'201':
description: Attachment added.
/transactions/{id}/confirm:
post:
tags:
- Transactions
summary: Confirm a transaction by ID
operationId: confirmTransaction
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Transaction confirmed.
/transactions/ext-{external_id}/confirm:
post:
tags:
- Transactions
summary: Confirm a transaction by external ID
operationId: confirmTransactionByExternalId
parameters:
- name: external_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Transaction confirmed.
/transactions/{id}/cancel:
post:
tags:
- Transactions
summary: Cancel a transaction by ID
operationId: cancelTransaction
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Transaction cancelled.
/transactions/ext-{external_id}/cancel:
post:
tags:
- Transactions
summary: Cancel a transaction by external ID
operationId: cancelTransactionByExternalId
parameters:
- name: external_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Transaction cancelled.
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
description: HTTP Basic Authentication using API key as user-ID and API secret as password.