---
title: "Get a customer"
method: GET
path: "/v1/customers/{customerId}"
tags: ["Customers"]
---

# Get a customer

`GET /v1/customers/{customerId}`

Retrieve a single customer by their ID, including metadata.

## Path parameters

- `customerId` string, required

## Response `200`

Customer found.

- object
  - `customer` CustomerDetail
    - `customerId` string — Merchant-facing customer slug (e.g., `cus_ab12cd34ef`). Use this as the `{customerId}` path parameter in subsequent calls.
    - `name` string
    - `email` string
    - `document` string
    - `phone` string
    - `externalId` string
    - `isActive` boolean
    - `createdAt` string, date-time
    - `metadata` object
    - `updatedAt` string, date-time

## Other responses

- `401` — Missing or invalid authentication token.
- `404` — Resource not found.

---

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