Verytis API
Access standardized road-state intelligence and detect possible gaps between declared road data and observed road conditions.
First Request
curl
curl "https://verytis.com/api/v1/discrepancies?latitude=37.8&longitude=-122.45&radius=5000" \
-H "Authorization: Bearer $VERYTIS_API_KEY"Response
json
{
"data": [
{
"id": "disc_4829",
"type": "possible_unreported_closure",
"status": "active",
"location": {
"road_name": "Halleck Street",
"latitude": 37.801,
"longitude": -122.456
},
"declared_state": "unknown",
"observed_state": "possibly_blocked",
"confidence": 0.91,
"severity": 4,
"summary": "Possible road-state information gap detected",
"first_detected_at": "2026-07-13T07:00:00Z",
"last_detected_at": "2026-07-13T07:02:00Z"
}
],
"pagination": {
"next_cursor": null
},
"meta": {
"request_id": "req_1a2b3c4d"
}
}What is Verytis?
Verytis combines public road data and observed road signals to surface possible road-state information gaps through a standardized API.
When the physical road no longer matches its declared digital state, Verytis creates a discrepancy — a structured, explainable event that your systems can consume.
Core Endpoints
| Endpoint | Purpose |
|---|---|
| GET /v1/discrepancies | Retrieve active or historical road-state discrepancies |
| GET /v1/road-state | Inferred current road state near a coordinate |
| GET /v1/events | Normalized road events from configured sources |
| GET /v1/evidence/:id | Structured discrepancy evidence |
| GET /v1/sources | Source health and freshness |