Skip to main content
GET
/
api
/
services
/
account-information
/
{id}
Get account information
curl --request GET \
  --url https://api.eu1.hellgate.cloud/api/services/account-information/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
  "created_at": "2026-06-22T09:59:56Z",
  "data": [
    {
      "financial_institution": "Demo Bank",
      "user_identity": {
        "full_name": "John Doe",
        "date_of_birth": "1976-01-01",
        "social_security_number": "197601011234"
      },
      "accounts": [
        {
          "id": "ee7ddbd178494220bb184791783f4f63",
          "name": "Personal account",
          "account_number": "DE69370400440532013000",
          "account_type": "checking",
          "currency_code": "EUR",
          "identifiers": {
            "iban": {
              "iban": "DE69370400440532013000",
              "bban": "370400440532013000",
              "bic": "COBADEFFXXX"
            }
          },
          "parties": [
            {
              "identity": {
                "name": "John Doe"
              },
              "role": "holder"
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

An Account Information–scoped OAuth2 access token obtained from the platform Authentication API. Send it as a bearer token on every request.

Path Parameters

id
string<uuid>
required

The account information ID from the completed event.

Response

The account information record.

The verified account information record. An account check returns exactly one financial institution and one account. Some fields are market-dependent.

id
string<uuid>
required
Example:

"a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d"

created_at
string<date-time>
required
Example:

"2026-06-22T09:59:56Z"

data
object[]
required