Skip to main content
Version: Next

Custodians

Data Model

Custodian

  • identifier (string, required): Unique identifier for the custodian (e.g. nordea-dk).
  • name (string, required): Display name of the custodian.
  • country (string, required): Country code of the custodian.

Endpoints

GET /custodians

info

Not yet available.

List all available custodians.

Examples

200 OK
# Request
GET /api/v2/custodians HTTP/1.1
Accept: application/vnd.api+json
Authorization: Bearer <access token>
Host: platform.aleta.io


# Response
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json

{
"data": [
{
"id": "678e9012f3ab456c78d90123",
"type": "custodian",
"attributes": {
"identifier": "nordea-dk",
"name": "Nordea Bank",
"country": "DK"
}
},
{
"id": "678f0123a4bc567d89e01234",
"type": "custodian",
"attributes": {
"identifier": "danske-bank-dk",
"name": "Danske Bank",
"country": "DK"
}
},
{
"id": "679a2345b6cd789e01f23456",
"type": "custodian",
"attributes": {
"identifier": "saxo-dk",
"name": "Saxo Bank",
"country": "DK"
}
}
]
}