Search restaurants
GET/api/v1/restaurants/search
Name or street search — the typeahead endpoint. Best matches first.
Parameters
| Name | Type | Description |
|---|---|---|
| q * | string | Name or address fragment, 2–120 chars. |
| limit | integer | Max results, 1–25 (default 10). |
Response — the `data` object
| Field | Type | Description |
|---|---|---|
| camis | string | DOHMH permit number — the establishment's id. |
| name | string | Doing-business-as name. |
| address | string | Street address (borough is its own field). |
| borough | string | Borough. |
| zip | string | null | ZIP code. |
| cuisine | string | null | Cuisine description. |
| grade | string | null | Posted grade: A|B|C|Z|P|N (Z/P = pending, N = not yet graded). |
| score | integer | null | Latest inspection score — LOWER is better; 0–13 is the A band. |
| closed | boolean | Currently marked closed by the Health Department. |
| riskLevel | LOW | MODERATE | HIGH | SEVERE | LOW | MODERATE | HIGH | SEVERE. |
| riskScore | integer | 0–100, higher is worse. |
| lastInspectedAt | string | null | Most recent inspection. |
| latitude | number | null | |
| longitude | number | null | |
| openViolations | integer | Items open right now (latest-cycle citations). |
curl "https://www.dailydog.ai/api/v1/restaurants/search?q=example" \
-H "Authorization: Bearer dd_test_d23d83e5ee04c87b1fee30680033c31aa0ef7985"{
"data": [
{
"camis": "90000001",
"name": "THE GILDED SPOON",
"address": "12 TEST STREET",
"borough": "Manhattan",
"zip": "10001",
"cuisine": "French",
"grade": "A",
"score": 9,
"closed": false,
"riskLevel": "LOW",
"riskScore": 4,
"lastInspectedAt": "2026-05-01",
"latitude": 40.75,
"longitude": -73.99,
"openViolations": 1
}
]
}