> ## Documentation Index
> Fetch the complete documentation index at: https://dev.chargily.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a customer

> Retrieves all the information of an already-existing customer by providing it's unique identifier (ID).

## Path parameters

<ParamField path="id" type="string">
  The ID of the customer.
</ParamField>

## Returns

If a valid ID is provided, it returns a customer object.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "01hj0p5s3ygy2mx1czg2wzcc4x",
    "entity": "customer",
    "livemode": false,
    "name": "Hocine Saad",
    "email": null,
    "phone": null,
    "address": {
      "country": "Algeria",
      "state": "Tizi-Ouzou",
      "address": "123 Main Street"
    },
    "metadata": null,
    "created_at": 1702977791,
    "updated_at": 1702977791
  }
  ```
</ResponseExample>
