REAL-TIME ROAD INTELLIGENCE API

Road intelligence
your systems can trust.

Detect possible gaps between declared road data and observed road conditions through one standardized API.

Verify road state

Compare declared road information with observed signals in real time.

Detect information gaps

Surface possible unreported closures and road-state conflicts.

Consume standardized events

Access structured road intelligence through a simple API.

CONNECTING ROAD STATEWaiting for stream - 0 live events
Possible Unreported Closure
Halleck Street
Detected 2 min ago

Quickstart

Make your first API request in less than 5 minutes.

1

Get your API key

Enter your company and work email to receive your API key.

2

Set your API key

Export your API key as an environment variable.

bash
export VERYTIS_API_KEY="vt_live_your_key_here"
3

Request active discrepancies

Use the discrepancies endpoint to retrieve active road-state events near a location.

bash
curl "https://verytis.com/api/v1/discrepancies?latitude=37.8&longitude=-122.45&radius=5000&status=active" \
  -H "Authorization: Bearer $VERYTIS_API_KEY"
4

Inspect the response

Review the response structure and key fields.

json
{
  "data": [
    {
      "id": "disc_4829",
      "type": "possible_unreported_closure",
      "status": "active",
      "road_name": "Halleck Street",
      "latitude": 37.801,
      "longitude": -122.456,
      "declared_state": "unknown",
      "observed_state": "possibly_blocked",
      "confidence": 0.91,
      "summary": "Possible road-state information gap detected"
    }
  ]
}
5

Retrieve full evidence

Get detailed evidence for any discrepancy.