> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flynet.org/llms.txt
> Use this file to discover all available pages before exploring further.

# List location open hours

Returns weekly open hours for a location. This endpoint is not
paginated.

Auth: API key in `X-API-Key`.

## Example

```bash theme={null}
curl https://api.staging.blackbird.xyz/flynet/v1/locations/{uuid}/open_hours \
  -H "X-API-Key: $API_KEY"
```

## Response

```json theme={null}
{
  "open_hours": [
    {
      "object": "open_hour",
      "day_of_week": "monday",
      "open_time": "17:00",
      "close_time": "23:00"
    }
  ]
}
```

Missing days imply the location is closed on that day.
