---
title: "Get contact by ID"
method: GET
path: "/v1/contacts/{id}"
tags: ["Contacts"]
---

# Get contact by ID

`GET /v1/contacts/{id}`

Retrieves a specific contact by its UUID. Returns the contact even if soft-deleted (deletedAt will be populated).

## Path parameters

- `id` string, uuid, required — Contact UUID

## Response `200`

Contact retrieved successfully

- Contact
  - `id` string, uuid, required — Unique contact identifier
  - `workspaceId` string, uuid, required — Workspace ID that owns this contact
  - `contactListId` string, uuid, nullable, required — Contact list ID (null if not in a list)
  - `firstName` string, nullable, required — Contact first name
  - `lastName` string, nullable, required — Contact last name
  - `email` string, email, nullable, required — Contact email address
  - `phone` string, nullable, required — Contact phone number
  - `createdAt` string, date-time, required — Contact creation timestamp
  - `updatedAt` string, date-time, required — Contact last update timestamp
  - `deletedAt` string, date-time, nullable, required — Soft delete timestamp (null if active)

## Other responses

- `400` — Invalid contact ID format
- `401` — Missing or invalid API key
- `403` — API key does not have access to this contact
- `404` — Contact not found

---

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