One API for local events, happy hour specials, and venue data across Michigan, Virginia, and Illinois. Simple REST endpoints, no scraping required.
Send a POST to /api/v1/register with your email to create an account.
You will receive an API key in the response. Include it as a query parameter or header in subsequent requests.
Query events, happy hours, and venues. Filter by city, date, category, and more.
curl -X POST https://eventaiapi.com/api/v1/register \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com"}'
curl https://eventaiapi.com/api/v1/events?city=detroit \
-H "X-API-Key: YOUR_API_KEY"
curl https://eventaiapi.com/api/v1/happy-hours?city=ann+arbor \
-H "X-API-Key: YOUR_API_KEY"
curl https://eventaiapi.com/api/v1/venues?city=richmond \
-H "X-API-Key: YOUR_API_KEY"
Explore the full API reference with interactive examples in the Swagger UI.