Skip to main content
GET
/
v1
/
baas
/
entities
/
{entity_id}
Get Entity
curl --request GET \
  --url https://api-sandbox.y.uno/v1/baas/entities/{entity_id}
{
  "id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "account_id": "550e8400-e29b-41d4-a716-446655440000",
  "merchant_entity_id": "merchant_user_12345",
  "national_entity": "INDIVIDUAL",
  "phone": {
    "country_code": "+1",
    "number": "2025551234"
  },
  "address": {
    "address_line_1": "123 Main St",
    "city": "San Francisco",
    "state": "CA",
    "zip_code": "94102",
    "country": "US"
  },
  "entity_detail": {
    "individual": {
      "first_name": "Dee",
      "last_name": "Hock",
      "email": "dee@hock.example",
      "date_of_birth": "1990-01-15"
    }
  },
  "created_at": "2026-02-01T10:00:00Z",
  "updated_at": "2026-02-01T10:00:00Z"
}

Path parameters

entity_id
string
required
The unique identifier of the entity obtained from the Create Entity endpoint.

Response

id
string
Entity identifier.
account_id
string
Merchant’s Yuno account identifier.
merchant_entity_id
string
Merchant’s own identifier for reconciliation.
national_entity
string
INDIVIDUAL or ENTITY.
phone
object
Phone details with country_code and number.
address
object
Address with address_line_1, city, state, zip_code, country.
entity_detail
object
Individual or business details.
created_at
string
ISO 8601 timestamp.
updated_at
string
ISO 8601 timestamp.
{
  "id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "account_id": "550e8400-e29b-41d4-a716-446655440000",
  "merchant_entity_id": "merchant_user_12345",
  "national_entity": "INDIVIDUAL",
  "phone": {
    "country_code": "+1",
    "number": "2025551234"
  },
  "address": {
    "address_line_1": "123 Main St",
    "city": "San Francisco",
    "state": "CA",
    "zip_code": "94102",
    "country": "US"
  },
  "entity_detail": {
    "individual": {
      "first_name": "Dee",
      "last_name": "Hock",
      "email": "dee@hock.example",
      "date_of_birth": "1990-01-15"
    }
  },
  "created_at": "2026-02-01T10:00:00Z",
  "updated_at": "2026-02-01T10:00:00Z"
}