v1

latestOpenAPI 3.0.02026-07-2691259477.2 KB
accounts

Fetch details for a single account by its unique ID.

The when endpoint is called the following information is provided:

• Provides account information (id, identity, status)

• Provides the Onboarding status

• Profiles linked to this account

• Wallets linked to this profile

Note: When account details are retrieved using GET /accounts/{:id}, only the basic information submitted during account creation (POST /accounts) is returned if the end-user is still in the onboarding process. The full data set, including any submitted documents, becomes accessible once the onboarding is complete—meaning the account status is either ACCEPTED or DENIED

get/accounts/{id}

Path parameters

idstring required

Unique account Id

Response

In the Response when you create an account using POST /accounts/individual a unique Id is created. Us this for this call to get account information on a specific individual account

idstring required
onboardingIdstring required
statusstring required
typestring required
updatedAtstring required
createdAtstring required

Example response

{
  "information": {
    "legalCapacity": {
      "type": "Protected adult",
      "protectionType": "Family Guardianship"
    },
    "financialSupport": {
      "financialSituation": {
        "annualRevenue": "0 - 10K €",
        "estimatedWealth": "0 - 50K €",
        "originOfFunds": {
          "other": "true"
        }
      }
    }
  },
  "legalRepresentative": {
    "legalCapacity": {
      "type": "Protected adult",
      "protectionType": "Family Guardianship"
    },
    "financialSupport": {
      "financialSituation": {
        "annualRevenue": "0 - 10K €",
        "estimatedWealth": "0 - 50K €",
        "originOfFunds": {
          "other": "true"
        }
      }
    }
  },
  "ubos": [
    {
      "legalCapacity": {
        "type": "Protected adult",
        "protectionType": "Family Guardianship"
      },
      "financialSupport": {
        "financialSituation": {
          "annualRevenue": "0 - 10K €",
          "estimatedWealth": "0 - 50K €",
          "originOfFunds": {
            "other": "true"
          }
        }
      }
    }
  ]
}