Skip to main content
GET
/
v1
/
baas
/
accounts
/
{account_id}
Get Account
curl --request GET \
  --url https://api-sandbox.y.uno/v1/baas/accounts/{account_id}
{
  "id": "acc_770e8400-e29b-41d4-a716-446655440000",
  "entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "currency": "USD",
  "country": "US",
  "account_details": {
    "account_number": "1234567890",
    "routing_number": "021000021"
  },
  "status": "ACTIVE",
  "created_at": "2026-02-01T15:00:00Z",
  "updated_at": "2026-02-01T15:00:00Z"
}

Path parameters

account_id
string
required
The BaaS account identifier.

Response

Returns the account object with the same schema as the Create Account response.
{
  "id": "acc_770e8400-e29b-41d4-a716-446655440000",
  "entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "currency": "USD",
  "country": "US",
  "account_details": {
    "account_number": "1234567890",
    "routing_number": "021000021"
  },
  "status": "ACTIVE",
  "created_at": "2026-02-01T15:00:00Z",
  "updated_at": "2026-02-01T15:00:00Z"
}