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

# Get Single Customer

Fetches details for a single customer by ID.

### Authorizations

<ParamField header="X-Shop-API-Key" type="string" required>
  Your Secret API Key (`sk_live_...` or `sk_test_...`) generated from the Developer dashboard. Must be kept secret.
</ParamField>

### Path Parameters

<ParamField path="shopId" type="string" required>
  The unique UUID of the shop.
</ParamField>

<ParamField path="customerId" type="string" required>
  The unique UUID of the customer.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "status": "success",
    "data": {
      "id": "c3b07384-d113-4e4e-9828-4e4e98284e4e",
      "customerFullName": "John Doe",
      "phoneNumber": "08012345678",
      "email": "john@example.com",
      "address": null,
      "createdAt": "2026-06-19T14:30:00.000Z"
    }
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "message": "FORM_VALIDATION_ERROR",
    "code": 400,
    "validationErrors": [
      {
        "path": [
          "customerId"
        ],
        "message": "Invalid uuid"
      }
    ]
  }
  ```
</ResponseExample>
