> For the complete documentation index, see [llms.txt](https://curbiq.gitbook.io/curbiq-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://curbiq.gitbook.io/curbiq-api-documentation/events/events_status.md).

# Status

Event status is a real-time status update related to curbside infrastructure within a defined Curb Zone or Curb Area. Rather than describing curbside activities like parking or loading, this status specifically captures the operational status of devices installed at the curb — including sensors, cameras, meters, and other monitoring equipment. These events track whether devices are commissioned, online, or experiencing issues such as communication loss.

## Query Event Status

> Get event status in CDS format. All parameters optional.

```json
{"openapi":"3.1.0","info":{"title":"CurbIQ API","version":"1.0.0"},"servers":[{"url":"https://v2.curbiq-curb-api.io","description":"CurbIQ's Curb API (v1)"}],"paths":{"/events/status":{"get":{"operationId":"getEventsStatus","summary":"Query Event Status","description":"Get event status in CDS format. All parameters optional.","parameters":[{"name":"curbiq_token","in":"query","required":true,"schema":{"type":"string"},"description":"Required API token."},{"name":"curb_area_id","in":"query","schema":{"type":"string","format":"uuid"}},{"name":"curb_zone_id","in":"query","schema":{"type":"string","format":"uuid"}},{"name":"curb_space_id","in":"query","schema":{"type":"string","format":"uuid"}},{"name":"response_size","in":"query","schema":{"type":"integer"}},{"name":"page_num","in":"query","schema":{"type":"integer"}}],"responses":{"200":{"description":"Status event list.","content":{"application/json":{"schema":{"type":"object","properties":{"version":{"type":"string"},"time_zone":{"type":"string"},"last_updated":{"type":"integer"},"currency":{"type":"string"},"author":{"type":"string"},"license_url":{"type":"string","nullable":true},"ccds_attributes":{"type":"object","properties":{"type":{"type":"string"},"request_type":{"type":"string"},"city_id":{"type":"string"},"city_name":{"type":"string"},"query_parameters":{"type":"object","additionalProperties":true}}},"pages":{"$ref":"#/components/schemas/PaginationInfo"},"data":{"type":"object","properties":{"status":{"type":"array","items":{"type":"object","properties":{"data_source_device_id":{"type":"string","format":"uuid"},"data_source_type":{"type":"string"},"data_source_operator_id":{"type":"string","format":"uuid"},"data_source_operator_name":{"type":"string"},"data_source_device_name":{"type":"string"},"sensor_status_is_commissioned":{"type":"boolean"},"sensor_status_is_online":{"type":"boolean"}}}}}},"links":{"type":"object","properties":{"first":{"type":"string"},"last":{"type":"string"},"prev":{"type":"string","nullable":true},"next":{"type":"string"}}}}}}}},"400":{"description":"Bad request. Invalid token or parameters."}},"tags":["events"]}}},"components":{"schemas":{"PaginationInfo":{"type":"object","properties":{"page_num":{"type":"integer","description":"The page number for paginated responses. Responses must be fetched in multiple API requests when the total size of query results exceeds the response size. The file name in the format \"aggregates_{PAGE_NUM}_of_{TOTAL_PAGES}.csv\" indicates the current and total pages."}}}}}}
```

**Note:** Custom response limits have been placed to manage query operations/system loads and response time.

* If a curb\_zone\_id is not specified: end\_time - start\_time should not exceed one day
* If a curb\_zone\_id is specified: end\_time - start\_time should not exceed three months


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://curbiq.gitbook.io/curbiq-api-documentation/events/events_status.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
