Authentication
Updated Sep 12, 2026
1744 views
API Documentation
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"
}
]
}