Transactions
The Transactions API allows you to initiate transfers, query transaction history, retrieve specific transactions, look up bank details by IBAN, and download account statements.
You must include your Bearer token in the request header.
Retrieves a paginated list of transactions for a specified account within a date range.
Universally Unique Identifier (UUID) as defined by RFC 4122.
e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g
Pattern: ^[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}$
Start date for the filter period (YYYY-MM-DD).
2025-04-01
End date for the filter period (YYYY-MM-DD).
2025-04-27
Number of items to return per page in a paginated response.
15
The current page number for paginated results.
1
Sort direction for the transaction list.
desc
Possible values: Field to sort the transaction list by.
created_at
Possible values: GET /api/v1/transactions?account_uuid=e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g&date_from=2025-04-01&date_to=2025-04-27 HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"account": {
"uuid": "e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g"
},
"transactions": [
{
"uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"parent_transaction_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"status": "processed",
"operation_date": "2025-04-27",
"operation_date_time": "2025-04-27T10:30:00Z",
"operation_date_unix": 1745821800,
"amount": 1234.56,
"currency": "EUR",
"payment_type": "SEPA",
"transaction_type": "payment",
"payment_urgency": "NORMAL",
"payment_details": "Invoice #INV-123 Payment",
"payment_code": "SALARY",
"end_to_end_ident": "E2E-XYZ789",
"direction": "CREDIT",
"document_number": "DOC-456",
"created_at": 1745820000,
"payer": {
"name": "John Doe",
"iban": "DE89 3704 0044 0532 0130 00",
"address": "123 Main St, Anytown",
"country_code": "DE",
"agency_id": "DEUTDEFF",
"agency_name": "Deutsche Bank",
"agency_address": "Taunusanlage 12, Frankfurt",
"ultimate": {
"name": "Ultimate Payer Corp"
}
},
"recipient": {
"name": "Jane Smith",
"iban": "FR76 3000 6000 0112 3456 7890 189",
"address": "456 Oak Ave, Otherville",
"country_code": "FR",
"agency_id": "SOGEFRPP",
"agency_name": "Société Générale",
"agency_address": "29 Boulevard Haussmann, Paris",
"ultimate": {
"name": "Ultimate Recipient Inc"
}
}
}
]
}
Create a new transaction
Universally Unique Identifier (UUID) as defined by RFC 4122.
e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g
Pattern: ^[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}$
A unique identifier for the request. This header can be used for tracking and idempotency control, ensuring the same request is not processed multiple times.
Data required to initiate a new transaction.
The UUID of the source account for the transaction.
d8f7b4a0-6e3c-4b5a-8d1e-2f7c9a8b4e1f
The monetary amount of the transaction. Must be greater than 0 and have a maximum of two decimal places.
199.99
Unstructured payment details or remittance information. Mandatory via validation rules if 'payment_code' is not provided.
Payment for invoice #ABC-123
Structured payment code (e.g., Purpose Code). Mandatory via validation rules if 'payment_details' is not provided.
RENT
Optional End-to-End payment identifier for tracking.
E2E-REF-001
POST /api/v1/transactions?account_uuid=e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 413
{
"account_uuid": "d8f7b4a0-6e3c-4b5a-8d1e-2f7c9a8b4e1f",
"amount": 199.99,
"payer": {
"ultimate": {
"name": "Ultimate Payer Company"
}
},
"recipient": {
"name": "Alice Recipient",
"iban": "GB29 NWBK 6016 1331 9268 19",
"address": "1 Financial Square, London",
"country_code": "GB",
"ultimate": {
"name": "Ultimate Beneficiary Ltd."
}
},
"payment_details": "Payment for invoice #ABC-123",
"payment_code": "RENT",
"end_to_end_ident": "E2E-REF-001"
}
{
"uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"parent_transaction_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"status": "processed",
"operation_date": "2025-04-27",
"operation_date_time": "2025-04-27T10:30:00Z",
"operation_date_unix": 1745821800,
"amount": 1234.56,
"currency": "EUR",
"payment_type": "SEPA",
"transaction_type": "payment",
"payment_urgency": "NORMAL",
"payment_details": "Invoice #INV-123 Payment",
"payment_code": "SALARY",
"end_to_end_ident": "E2E-XYZ789",
"direction": "CREDIT",
"document_number": "DOC-456",
"created_at": 1745820000,
"payer": {
"name": "John Doe",
"iban": "DE89 3704 0044 0532 0130 00",
"address": "123 Main St, Anytown",
"country_code": "DE",
"agency_id": "DEUTDEFF",
"agency_name": "Deutsche Bank",
"agency_address": "Taunusanlage 12, Frankfurt",
"ultimate": {
"name": "Ultimate Payer Corp"
}
},
"recipient": {
"name": "Jane Smith",
"iban": "FR76 3000 6000 0112 3456 7890 189",
"address": "456 Oak Ave, Otherville",
"country_code": "FR",
"agency_id": "SOGEFRPP",
"agency_name": "Société Générale",
"agency_address": "29 Boulevard Haussmann, Paris",
"ultimate": {
"name": "Ultimate Recipient Inc"
}
}
}
Retrieves the details of a specific transaction by its UUID, scoped to an account.
Universally Unique Identifier (UUID) as defined by RFC 4122.
e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g
Pattern: ^[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}$
Universally Unique Identifier (UUID) as defined by RFC 4122.
e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g
Pattern: ^[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}$
GET /api/v1/transactions/{uuid}?account_uuid=e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"parent_transaction_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"status": "processed",
"operation_date": "2025-04-27",
"operation_date_time": "2025-04-27T10:30:00Z",
"operation_date_unix": 1745821800,
"amount": 1234.56,
"currency": "EUR",
"payment_type": "SEPA",
"transaction_type": "payment",
"payment_urgency": "NORMAL",
"payment_details": "Invoice #INV-123 Payment",
"payment_code": "SALARY",
"end_to_end_ident": "E2E-XYZ789",
"direction": "CREDIT",
"document_number": "DOC-456",
"created_at": 1745820000,
"payer": {
"name": "John Doe",
"iban": "DE89 3704 0044 0532 0130 00",
"address": "123 Main St, Anytown",
"country_code": "DE",
"agency_id": "DEUTDEFF",
"agency_name": "Deutsche Bank",
"agency_address": "Taunusanlage 12, Frankfurt",
"ultimate": {
"name": "Ultimate Payer Corp"
}
},
"recipient": {
"name": "Jane Smith",
"iban": "FR76 3000 6000 0112 3456 7890 189",
"address": "456 Oak Ave, Otherville",
"country_code": "FR",
"agency_id": "SOGEFRPP",
"agency_name": "Société Générale",
"agency_address": "29 Boulevard Haussmann, Paris",
"ultimate": {
"name": "Ultimate Recipient Inc"
}
}
}
Retrieves bank details (like BIC, bank name) based on a provided IBAN.
The International Bank Account Number (IBAN) to look up.
LT89370400440532014200
GET /api/v1/transactions/iban-details?iban=LT89370400440532014200 HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"iban": "LT347044060007958239",
"is_valid": true,
"bank_bic": "CBVILT2XXXX",
"bank_name": "AB SEB"
}
Downloads an account statement for the specified period in the requested format. Supported formats:
CSV
XML
PDF
XLSX
Universally Unique Identifier (UUID) as defined by RFC 4122.
e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g
Pattern: ^[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12}$
Start date for the statement period (YYYY-MM-DD).
2025-04-01
End date for the statement period (YYYY-MM-DD).
2025-04-27
The desired file format for the statement.
XLSX
Possible values: PDF Statement File
GET /api/v1/transactions/statements?account_uuid=e1f8a3b1-7d6c-4e9a-9b2e-3f8d1a9c5f2g&date_from=2025-04-01&date_to=2025-04-27&format=XLSX HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
binary
Last updated
Was this helpful?