Programmatic access to Memphis live music events. ← Back to calendar
Every request to /api/v1/ requires an official WYXR API key sent as a request header:
X-API-Key: wyxr_your_key_here
Keys are issued by WYXR and are not automatically generated — requests are reviewed before a key is provided. Use the form below to request access.
Tell us a bit about yourself and what you're building. We'll review your request and respond by email.
Returns upcoming live music events in Memphis.
| Parameter | Type | Description |
|---|---|---|
start_date | date | ISO 8601 — filter events on or after this date (e.g. 2026-03-20) |
end_date | date | ISO 8601 — filter events on or before this date |
featured_only | boolean | true to return only editor-featured events |
neighborhood | string | Filter by neighborhood name (exact match) |
venue | string | Filter by venue name (case-insensitive exact match) |
limit | integer | Max results to return (default 100, max 500) |
Returns all known Memphis venues with neighborhood assignments.
Returns distinct neighborhoods with active event counts.
| Field | Type | Description |
|---|---|---|
id | UUID | Unique event identifier |
title | string | Artist or event name |
venue | string | Venue name |
neighborhood | string | Memphis neighborhood (may be null) |
date | date | ISO 8601 date (YYYY-MM-DD) |
start_time | string | Show time (e.g. 8 PM) — may be null |
doors_time | string | Doors time — may be null |
ticket_url | string | Ticketing page URL — may be null |
ticket_price | string | Price string (e.g. $15–$25) — may be null |
image_url | string | Event flyer or artist image — may be null |
description | string | Event description — may be null |
genre | string | Music genre — may be null |
is_featured | boolean | Editor pick |
is_wyxr_presents | boolean | WYXR-presented event |
source | string | Data source (e.g. ticketmaster, manual) |
curl -H "X-API-Key: wyxr_your_key_here" \ "https://concert-calendar-api.onrender.com/api/v1/events?start_date=2026-03-20&limit=10"
[
{
"id": "3f2a1b4c-...",
"title": "The War on Drugs",
"venue": "Minglewood Hall",
"neighborhood": "Midtown",
"date": "2026-04-05",
"start_time": "8 PM",
"ticket_url": "https://...",
"ticket_price": "$30",
"is_featured": true,
...
}
]
None enforced. We're community radio — please be reasonable. If you're polling frequently, consider caching responses. Events are updated twice daily (midnight and noon Central).
Events are scraped from 15+ Memphis venues including Hi Tone, Minglewood Hall, Overton Park Shell, Crosstown Arts, FedExForum, Growlers, Lafayette's Music Room, and more. The calendar has a 6-month lookahead window and is updated automatically at midnight and noon Central.