---
title: "Get person"
method: GET
path: "/v2/api/crm/people/{id}"
tags: ["CRM"]
---

# Get person

`GET /v2/api/crm/people/{id}`

Returns a single person by ID.

## Path parameters

- `id` string, required

## Response `200`

Person details

- object
  - `data` CrmPerson — A person in the CRM
    - `id` string — Unique person identifier
    - `name` string, nullable — First name
    - `last_name` string, nullable — Last name
    - `job_title` string, nullable — Job title
    - `website` string, nullable — Website URL
    - `address` string, nullable — Postal address
    - `numbers` string[] — Phone numbers in E.164 format
    - `emails` string[] — Email addresses
    - `company` CrmCompanyRef, nullable — Embedded company reference
      - `id` string — Company ID
      - `name` string — Company name
    - `interactions` integer — Total number of interactions (calls + messages)
    - `last_activity_at` string, date-time, nullable — Timestamp of the last activity
    - `created_at` string, date-time — When the person was created
    - `updated_at` string, date-time — When the person was last updated

## Other responses

- `401` — Invalid or missing API key
- `404` — Resource not found
- `429` — Rate limit exceeded

---

[API](https://skmtc.dev/withallo/apis/allo-api.md) · [All operations](https://skmtc.dev/withallo/apis/allo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withallo/allo-api/revisions/9aab4db82933/schema)
