Loading…
GyroX uses cookies that are essential to run the service. With your consent, we also use analytics cookies to improve the product. Privacy Policy
From token-based authentication to resource, work-order, and AI Gateway endpoints—everything you need to integrate the GyroX API fast.
https://api.gyrox.ai/v1All requests are sent over HTTPS, with the version included in the path.
Authenticate with a Bearer token and the X-Tenant-Id header. Issue tokens from your workspace settings.
curl https://api.gyrox.ai/v1/resources \ -H "Authorization: Bearer $GYRO_API_TOKEN" \ -H "X-Tenant-Id: $TENANT_ID"
/resourcesList resource instances, filterable by typeKey and site./resourcesCreate a resource instance (idempotency key recommended)./resources/{id}Return a single resource with properties and dynamic schema./resources/{id}Partially update resource properties (audit subject = ACTOR)./work-ordersList work orders by status and assignee./work-ordersCreate a work order and dispatch it via the action engine./work-orders/{id}/completeComplete a work order (approval gate may apply)./ai/completeRequest an LLM completion via the gateway (unified cost/audit)./ai/searchRun ontology-graph semantic search (GraphRAG).{
"data": [
{
"id": "res_8f3a21",
"resourceType": "ASSET",
"typeKey": "HVAC.CHILLER",
"props": { "capacityRt": 350, "siteId": "SITE-001" }
}
],
"page": { "next": null, "total": 1 }
}