---
title: "Get detailed person information"
method: GET
path: "/v1/person/{person_id}"
tags: ["v1"]
---

# Get detailed person information

`GET /v1/person/{person_id}`

## Path parameters

- `person_id` string, uuid, required

## Response `200`

Successfully retrieved person data

- Person
  - `id` string, required — Unique person identifier. Example: cc78ab54-d958-49b8-bae7-2f6c0c308837
  - `first_name` string, required — First name of the person.
  - `last_name` string, required — Last name of the person.
  - `date_of_birth` string, date, nullable, required — Date of birth of the person. Format: ISO 8601 (YYYY-MM-DD) Example: "1990-01-01"
  - `age` integer, nullable, required — Age of the person.
  - `city` string, required — City of the person.
  - `management_positions` PersonManagementPosition[], required — Management positions of the person.
    - `register_id` string, required — Register ID of the company. Example: DE-HRB-F1103-267645
    - `company_name` string, required — Name of the company. Example: "Descartes Technologies GmbH"
    - `role` string, required — Role of the person in the company. Example: "DIRECTOR"
    - `start_date` string, date, required — Date when the person started the management position. Format: ISO 8601 (YYYY-MM-DD) Example: "2022-01-01"
    - `end_date` string, date — Date when the person ended the management position. Format: ISO 8601 (YYYY-MM-DD) Example: "2023-01-01"

## Other responses

- `400` — Bad Request - Invalid parameters provided
- `401` — Unauthorized - Authentication required
- `402` — Payment Required - Insufficient credits for this request
- `404` — Not Found - Person ID doesn't exist
- `429` — Too Many Requests - Rate limit exceeded
- `500` — Internal Server Error - An error occurred while processing the request

---

[API](https://skmtc.net/oregister/apis/openregister-api.md) · [All operations](https://skmtc.net/oregister/apis/openregister-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oregister/openregister-api/versions/d1fcaf6d6ca0/schema)
