Booking API test
Create an interpreter booking through the public API with the same II mandatory fields as production — customer, client, consumer, location, languages, notification email, references, and requirements. Enter your API key to load Boostlingo lookups, then submit to POST /api/bookings.
Request JSON
{
"interpreterType": "Telephone",
"languageFrom": "",
"languageTo": "",
"scheduledAt": "2026-06-19T11:00:00.000Z",
"bookedAt": "2026-06-18T11:35:59.375Z",
"durationMinutes": 60
}Response
Submit a booking to see the API response.
Equivalent cURL
curl -X POST 'https://translateuk-test-api.azurewebsites.net/api/bookings' \
-H 'Content-Type: application/json' \
-H 'x-api-key: <YOUR_API_KEY>' \
-d '{
"interpreterType": "Telephone",
"languageFrom": "",
"languageTo": "",
"scheduledAt": "2026-06-19T11:00:00.000Z",
"bookedAt": "2026-06-18T11:35:59.375Z",
"durationMinutes": 60
}'