# Authentication

- Human documentation: https://www.myrepairapp.com/api-docs/authentication
- OpenAPI: https://www.myrepairapp.com/openapi.json
- Last updated: 2026-07-30T23:31:46.810Z

Authentication is required for all API requests. Use your API key in the `X-Api-Key` header to authenticate.

### Example Request

Using cURL:

```
curl -X GET "https://www.myrepairapp.com/v2/customers" \
  -H "X-Api-Key: YOUR_API_KEY"
```

### Example Response:

```
{
  "data": [
    {
      "id": "12345",
      "name": "John Doe",
      "email": "john.doe@example.com",
      "phone": "123-456-7890"
    }
  ]
}
```
