Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
List account transactions
List transactions for an account.
GET
/
core
/
accounts
/
{accountId}
/
transactions
Copy
Ask AI
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/accounts/{accountId}/transactions \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"transactions": [
{
"id": "623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0",
"origin": {
"amount": "100.00",
"asset": "GBP",
"rate": "47619.04761904762",
"node": {
"type": "account",
"id": "b98e4f0d-a67d-4126-a99d-666f7e0315d9",
"ownerId": "e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a"
}
},
"destination": {
"amount": "0.0021",
"asset": "BTC",
"rate": "0.000021",
"node": {
"type": "account",
"id": "555a99a1-620d-4431-a0ac-b43e1aad2bdc",
"ownerId": "e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a"
}
},
"denomination": {
"amount": "100.00",
"asset": "GBP",
"target": "origin",
"rate": "1"
},
"fees": [],
"status": "completed",
"quotedAt": "2024-07-24T15:02:39Z",
"createdAt": "2024-07-24T15:22:39Z",
"updatedAt": "2024-07-24T15:33:08Z"
}
],
"pagination": {
"first": "https://api.enterprise.uphold.com/core/accounts/555a99a1-620d-4431-a0ac-b43e1aad2bdc/transactions?page=1&perPage=1",
"next": "https://api.enterprise.uphold.com/core/accounts/555a99a1-620d-4431-a0ac-b43e1aad2bdc/transactions?page=2&perPage=1"
}
}
Authorizations
OAuth 2.0 authentication.
Path Parameters
The account id.
Query Parameters
The number of items per page.
Required range:
1 <= x <= 100
Copy
Ask AI
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/accounts/{accountId}/transactions \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"transactions": [
{
"id": "623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0",
"origin": {
"amount": "100.00",
"asset": "GBP",
"rate": "47619.04761904762",
"node": {
"type": "account",
"id": "b98e4f0d-a67d-4126-a99d-666f7e0315d9",
"ownerId": "e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a"
}
},
"destination": {
"amount": "0.0021",
"asset": "BTC",
"rate": "0.000021",
"node": {
"type": "account",
"id": "555a99a1-620d-4431-a0ac-b43e1aad2bdc",
"ownerId": "e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a"
}
},
"denomination": {
"amount": "100.00",
"asset": "GBP",
"target": "origin",
"rate": "1"
},
"fees": [],
"status": "completed",
"quotedAt": "2024-07-24T15:02:39Z",
"createdAt": "2024-07-24T15:22:39Z",
"updatedAt": "2024-07-24T15:33:08Z"
}
],
"pagination": {
"first": "https://api.enterprise.uphold.com/core/accounts/555a99a1-620d-4431-a0ac-b43e1aad2bdc/transactions?page=1&perPage=1",
"next": "https://api.enterprise.uphold.com/core/accounts/555a99a1-620d-4431-a0ac-b43e1aad2bdc/transactions?page=2&perPage=1"
}
}
Assistant
Responses are generated using AI and may contain mistakes.