/api/v1/safety-scoreResolve an address (or TABC id) to a single venue safety score.
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
| address | body / query | string | POST: required · GET: optional | Free-form street address. Minimum 5 characters; must geocode within 50m of a scored TABC venue. |
| tabc_id | query (GET only) | uuid | GET: optional | Direct lookup by stable TABC venue id. Skips geocoding entirely. |
Request
# By address (POST)
curl -X POST https://atlastap.deltakinetics.io/api/v1/safety-score \
-H "X-AtlasTAP-Key: sk_live_..." \
-H "Content-Type: application/json" \
-d '{"address": "1600 Smith St, Houston, TX 77002"}'
# By TABC id (GET)
curl https://atlastap.deltakinetics.io/api/v1/safety-score?tabc_id=8c4f...e21a \
-H "X-AtlasTAP-Key: sk_live_..."Response (200)
{
"score": 87,
"tier": "B",
"tabc_id": "8c4f...e21a",
"trade_name": "Example Bar & Grill",
"venue_category": "bar_premise",
"address_matched": "1600 Smith St, Houston, TX 77002",
"zip": "77002",
"latitude": 29.7589,
"longitude": -95.3677,
"distance_m": 12.4,
"factor_breakdown": {
"bar_premise_at_address_365d": 0,
"excess_violent_150m_365d": -1.2,
"excess_assault_150m_365d": -0.8,
"excess_nighttime_150m_180d": 0.3,
"zip_baseline": 78
},
"computed_at": "2026-04-19T03:07:00.000Z",
"version": "v2",
"api_credits_remaining": 9999
}Credits: 1 credit per call