Skip to main content
GET
/
accounts
/
{id_or_reference}
Retrieve an account
curl --request GET \
  --url https://api.example.com/accounts/{id_or_reference} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "reference": "<string>",
  "status": "active",
  "name": "<string>",
  "bank_payment_reference": "<string>",
  "base_currency": "EUR",
  "funding_currencies": [
    "EUR"
  ],
  "can_deposit": true,
  "can_withdraw": true,
  "can_place_buy_order": true,
  "can_place_sell_order": true,
  "has_deposited": true,
  "has_withdrawn": true,
  "has_placed_buy_order": true,
  "has_placed_sell_order": true,
  "is_primary_owner_mifid_pro": true,
  "created_at": "2023-11-07T05:31:56Z",
  "modified_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id_or_reference
string
required

Response

OK

id
string
required

Unique resource identifier.

reference
string
required
status
enum<string>
required
Available options:
active,
suspended,
closing,
closed
name
string
required
bank_payment_reference
string
required
base_currency
enum<string>
required
Available options:
EUR,
USD,
GBP
funding_currencies
enum<string>[]
required
Available options:
EUR,
USD,
GBP
can_deposit
boolean
required
can_withdraw
boolean
required
can_place_buy_order
boolean
required
can_place_sell_order
boolean
required
has_deposited
boolean
required
has_withdrawn
boolean
required
has_placed_buy_order
boolean
required
has_placed_sell_order
boolean
required
is_primary_owner_mifid_pro
boolean
required
created_at
string<date-time>
required

The timestamp (in ISO-8601 format) of when the resource was created.

modified_at
string<date-time>
required

The timestamp (in ISO-8601 format) of when the resource was last modified.