# Request and Response Format

- Human documentation: https://www.myrepairapp.com/api-docs/request-response-format
- OpenAPI: https://www.myrepairapp.com/openapi.json
- Last updated: 2026-07-30T23:31:48.908Z

- **Format:** JSON
- **Headers:**
  - Content-Type: application/json
  - X-Api-Key: \<your_api_key\>

### Example Request

```json
{
  "name": "John Doe",
  "email": "john.doe@example.com",
  "phone": "123-456-7890"
}
```

### Example Response

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