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.