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.
Get event status in CDS format. All parameters optional.
Required API token.
Status event list.
Bad request. Invalid token or parameters.
GET /events/status HTTP/1.1
Host: v2.curbiq-curb-api.io
Accept: */*
{
"version": "text",
"time_zone": "text",
"last_updated": 1,
"currency": "text",
"author": "text",
"license_url": "text",
"ccds_attributes": {
"type": "text",
"request_type": "text",
"city_id": "text",
"city_name": "text",
"query_parameters": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"pages": {
"page_num": 1
},
"data": {
"status": [
{
"data_source_device_id": "123e4567-e89b-12d3-a456-426614174000",
"data_source_type": "text",
"data_source_operator_id": "123e4567-e89b-12d3-a456-426614174000",
"data_source_operator_name": "text",
"data_source_device_name": "text",
"sensor_status_is_commissioned": true,
"sensor_status_is_online": true
}
]
},
"links": {
"first": "text",
"last": "text",
"prev": "text",
"next": "text"
}
}
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
Last updated