curl --request GET \
--url https://api.getbreezyapp.com/v1/equipment \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getbreezyapp.com/v1/equipment"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getbreezyapp.com/v1/equipment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "11111111-1111-4111-8111-000000004101",
"location_id": "11111111-1111-4111-8111-000000001107",
"hvac_system": {
"id": "11111111-1111-4111-8111-000000004102",
"name": "Downstairs"
},
"equipment_type": "AIR_CONDITIONER",
"status": "IN_SERVICE",
"condition": "FAIR",
"manufacturer": "Example Equipment",
"model_number": "AC-36",
"serial_number": "EXAMPLE-001",
"description": "Outdoor condenser",
"dimensions": "36 × 36 × 40 inches",
"manufacturing_date": "2014-01-01",
"installation": {
"date": "2014-06-15",
"party": "EXTERNAL"
},
"estimated_end_of_life_date": "2029-06-15",
"average_life_expectancy_years": 15,
"manufacturer_warranty": {
"start_date": "2014-06-15",
"end_date": "2024-06-15",
"terms": "Recorded ten-year limited parts warranty"
},
"labor_warranty": {
"start_date": null,
"end_date": null,
"terms": null
},
"created_at": null,
"updated_at": "2026-09-08T19:00:00Z"
}
],
"pagination": {
"next_cursor": null
},
"meta": {
"request_id": "11111111-1111-4111-8111-000000009999",
"generated_at": "2026-09-08T19:00:00Z",
"timezone": "America/Los_Angeles"
}
}{
"error": {
"code": "INVALID_REQUEST",
"message": "end_date must be later than start_date",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "A valid API key is required",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "METHOD_NOT_ALLOWED",
"message": "This resource supports GET",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Request limit exceeded",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Unable to complete request",
"request_id": "example-request",
"details": []
}
}Page equipment
Installed items at owned locations, with recorded condition, lifecycle dates, warranty terms, and optional same-location HVAC grouping. All operational statuses are included by default. No inferred age, warranty eligibility, or item service history. Orders by id ascending. List and detail return the same complete representation. updated_since covers parent-row saves only.
curl --request GET \
--url https://api.getbreezyapp.com/v1/equipment \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getbreezyapp.com/v1/equipment"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getbreezyapp.com/v1/equipment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "11111111-1111-4111-8111-000000004101",
"location_id": "11111111-1111-4111-8111-000000001107",
"hvac_system": {
"id": "11111111-1111-4111-8111-000000004102",
"name": "Downstairs"
},
"equipment_type": "AIR_CONDITIONER",
"status": "IN_SERVICE",
"condition": "FAIR",
"manufacturer": "Example Equipment",
"model_number": "AC-36",
"serial_number": "EXAMPLE-001",
"description": "Outdoor condenser",
"dimensions": "36 × 36 × 40 inches",
"manufacturing_date": "2014-01-01",
"installation": {
"date": "2014-06-15",
"party": "EXTERNAL"
},
"estimated_end_of_life_date": "2029-06-15",
"average_life_expectancy_years": 15,
"manufacturer_warranty": {
"start_date": "2014-06-15",
"end_date": "2024-06-15",
"terms": "Recorded ten-year limited parts warranty"
},
"labor_warranty": {
"start_date": null,
"end_date": null,
"terms": null
},
"created_at": null,
"updated_at": "2026-09-08T19:00:00Z"
}
],
"pagination": {
"next_cursor": null
},
"meta": {
"request_id": "11111111-1111-4111-8111-000000009999",
"generated_at": "2026-09-08T19:00:00Z",
"timezone": "America/Los_Angeles"
}
}{
"error": {
"code": "INVALID_REQUEST",
"message": "end_date must be later than start_date",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "A valid API key is required",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "METHOD_NOT_ALLOWED",
"message": "This resource supports GET",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Request limit exceeded",
"request_id": "example-request",
"details": []
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Unable to complete request",
"request_id": "example-request",
"details": []
}
}Authorizations
Existing Breezy API key. Grants all published reads in its associated company. No app permission scopes.
Query Parameters
Maximum parent records or report rows. Complete children are always included.
1 <= x <= 100Repeat the original filters; any valid page size may continue. Foreign-company, tampered or mismatched cursors return INVALID_CURSOR.
1Repeat ids for a bounded ID set. Valid foreign or missing IDs contribute no list rows.
1 - 100 elementsInclusive creation instant.
Exclusive creation instant.
Inclusive parent-record updated_at filter only; not a complete change feed.
Any owned account association at the equipment location, including archived associations.
11111