Skip to content
New Venue Data

Quick Start

Get your first license records in under 5 minutes. You'll need an API key — grab one from the dashboard.

1. Make your first request

Pick your language — every example hits the same endpoint.

curl -G "https://api.newvenuedata.com/v1/licenses" \
  -H "Authorization: Bearer ls_live_xxxxxxxxxxxxxxxx" \
  --data-urlencode "county=Miami-Dade" \
  --data-urlencode "license_type=SRX" \
  --data-urlencode "event_type=new_filing" \
  --data-urlencode "limit=25"

2. Parse the response

json
{
  "data": [
    {
      "id": "lic_01HZ8XQ9P2WKRN4M5YJVD3B",
      "licenseNumber": "BEV-2024-0045821",
      "licenseType": "BEV",
      "status": "approved",
      "businessName": "The Copper Still Bar & Kitchen",
      "address": { "street": "142 NW 2nd Ave", "city": "Miami", "county": "Miami-Dade", "state": "FL", "zip": "33128" },
      "filedDate": "2024-12-03",
      "eventType": "new_filing",
      "eventTimestamp": "2024-12-03T09:14:22Z"
    }
  ],
  "pagination": { "cursor": "cur_eyJpZCI6Im...", "hasMore": true, "total": 412, "limit": 5 }
}

3. Set up a webhook (optional)

Instead of polling, register a webhook endpoint to receive events the moment new records appear. See the Webhooks guide for setup instructions.

Was this page helpful?