Last updated: 14 May 2025 | Change log
Request your account details for a single account or all accounts under an entity.
Important
Make yourself familiar with our API Principles to ensure a resilient integration.
Ready to integrate? Use our API Reference and set your headers.
There are two ways you can retrieve the details of your account:
- by account number or
 - by entity
 
GET  https://try.access.worldpay.com/accounts/{accountNumber}
| Field Name | Description | Data Type/Format | Length | Validation Criteria | 
|---|---|---|---|---|
accountNumber | The account number. | String | 16 | Alphanumeric only. Special characters are restricted. | 
{
  "entity": "111155",
  "accounts": [
    {
      "accountNumber": "1111550000000044",
      "accountName": "PLN account",
      "currency": "PLN",
      "clearedBalance": 1418.64,
      "unclearedBalance": 0,
      "balance": 1418.64
    }
  ]
}entitystring or null
Unique ID given during the on-boarding process.
accountsArray of objects or null(Account)
Collection of the account details
Check out our API reference for the error code schema.
GET  https://try.access.worldpay.com/accounts/?entity={entity}
| Field Name | Description | Data Type/Format | Min-Max Length | 
|---|---|---|---|
entity | Unique ID given to you during the onboarding process. | String | 1-32 | 
{
  "entity": "111155",
  "accounts": [
    {
      "accountNumber": "1111550000000044",
      "accountName": "PLN account",
      "currency": "PLN",
      "clearedBalance": 1418.64,
      "unclearedBalance": 0,
      "balance": 1418.64
    },
    {
      "accountNumber": "1111550000000045",
      "accountName": "EUR account",
      "currency": "EUR",
      "clearedBalance": 9997.01,
      "unclearedBalance": 0,
      "balance": 9997.01
    },
    {
      "accountNumber": "1111550000000046",
      "accountName": "USD account",
      "currency": "USD",
      "clearedBalance": 2235.11,
      "unclearedBalance": 0,
      "balance": 2235.11
    }
  ]
}entitystring or null
Unique ID given during the on-boarding process.
accountsArray of objects or null(Account)
Collection of the account details
Check out our API reference for the full error code schema.