Real-Time Events & Happy Hours API

One API for local events, happy hour specials, and venue data across Michigan, Virginia, and Illinois. Simple REST endpoints, no scraping required.

30 Cities Across 3 States

Michigan

  • Detroit
  • Ann Arbor
  • Grand Rapids
  • Lansing
  • Kalamazoo
  • Flint
  • Traverse City
  • Royal Oak
  • Ferndale
  • Dearborn

Virginia

  • Richmond
  • Virginia Beach
  • Norfolk
  • Arlington
  • Alexandria
  • Charlottesville
  • Roanoke
  • Fredericksburg
  • Williamsburg
  • Newport News

Illinois

  • Chicago
  • Evanston
  • Naperville
  • Oak Park
  • Schaumburg
  • Champaign
  • Peoria
  • Springfield
  • Arlington Heights
  • Rockford

Up and Running in 3 Steps

1

Register

Send a POST to /api/v1/register with your email to create an account.

2

Get Your API Key

You will receive an API key in the response. Include it as a query parameter or header in subsequent requests.

3

Make Requests

Query events, happy hours, and venues. Filter by city, date, category, and more.

API at a Glance

Register for an API key
curl -X POST https://eventaiapi.com/api/v1/register \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'
Search events by city
curl https://eventaiapi.com/api/v1/events?city=detroit \
  -H "X-API-Key: YOUR_API_KEY"
Browse happy hours
curl https://eventaiapi.com/api/v1/happy-hours?city=ann+arbor \
  -H "X-API-Key: YOUR_API_KEY"
List venues
curl https://eventaiapi.com/api/v1/venues?city=richmond \
  -H "X-API-Key: YOUR_API_KEY"

Ready to Build?

Explore the full API reference with interactive examples in the Swagger UI.