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

Get event status in CDS format. All parameters optional.

Query parameters
curbiq_tokenstringRequired

Required API token.

curb_area_idstring · uuidOptional
curb_zone_idstring · uuidOptional
curb_space_idstring · uuidOptional
response_sizeintegerOptional
page_numintegerOptional
Responses
200

Status event list.

application/json
get
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