Get a transaction
Retrieve a specific transaction by its unique identifier.
Path parameters
-
The Company ID given by Fipto.
Format should match the following pattern:
[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}
. -
The Transaction ID given by Fipto.
Format should match the following pattern:
[0-9a-zA-Z]{22}
.
GET
/companies/{company_id}/transactions/{transaction_id}
curl \
-X GET https://api.fipto.app/companies/9de0691c-bc8d-409b-8f40-75d4f45db2f3/transactions/3Qv67yjXEwB9SjmvkuG6Cp
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": {
"type": "payin",
"attributes": {
"wallet": {
"wallet_id": "string",
"wallet_name": "My wallet"
},
"amount": "1000",
"valuations": [
{
"asset": "EUR",
"value": "10.05"
},
{
"asset": "USD",
"value": "12.97"
}
],
"booked_at": "2023-05-04T09:42:00+00:00",
"valued_at": "2023-05-04T09:42:00+00:00",
"created_at": "2023-05-04T09:42:00+00:00",
"source": "string",
"wallet_details": {
"asset": "BTC",
"address": "0x71C*",
"name": "Acme - Payment Project X",
"tag": "string"
},
"status": "returned",
"transaction_id": "string",
"blockchain_data": {
"transaction_hash": "string",
"block_explorer_link": "string"
}
},
"id": "string"
}
}
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": {
"type": "payin",
"attributes": {
"wallet": {
"wallet_id": "string",
"wallet_name": "My wallet"
},
"amount": "1000",
"valuations": [
{
"asset": "EUR",
"value": "10.05"
},
{
"asset": "USD",
"value": "12.97"
}
],
"booked_at": "2025-05-04T09:42:00+00:00",
"valued_at": "2025-05-04T09:42:00+00:00",
"created_at": "2025-05-04T09:42:00+00:00",
"source": "string",
"wallet_details": {
"asset": "BTC",
"address": "0x71C*",
"name": "Acme - Payment Project X",
"tag": "string"
},
"status": "returned",
"transaction_id": "string",
"blockchain_data": {
"transaction_hash": "string",
"block_explorer_link": "string"
}
},
"id": "string"
}
}