Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.staging.blackbird.xyz/flynet/v1/locations/{id}/open_hours
const options = {method: 'GET'};fetch('https://api.staging.blackbird.xyz/flynet/v1/locations/{id}/open_hours', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
X-API-Key
curl https://api.staging.blackbird.xyz/flynet/v1/locations/{uuid}/open_hours \ -H "X-API-Key: $API_KEY"
{ "open_hours": [ { "object": "open_hour", "day_of_week": "monday", "open_time": "17:00", "close_time": "23:00" } ] }