WYXR 91.7 FM

Memphis Concert Calendar API

Programmatic access to Memphis live music events. ← Back to calendar

https://concert-calendar-api.onrender.com/api/v1/

Authentication

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.

⚠️ Keep your key private. If you believe it has been compromised, email contact@wyxr.org to revoke it.

Request an API Key

Tell us a bit about yourself and what you're building. We'll review your request and respond by email.

✓ Request received! We'll review it and follow up at the email you provided. This usually takes a day or two.

Endpoints

GET /events

Returns upcoming live music events in Memphis.

ParameterTypeDescription
start_datedateISO 8601 — filter events on or after this date (e.g. 2026-03-20)
end_datedateISO 8601 — filter events on or before this date
featured_onlybooleantrue to return only editor-featured events
neighborhoodstringFilter by neighborhood name (exact match)
venuestringFilter by venue name (case-insensitive exact match)
limitintegerMax results to return (default 100, max 500)
GET /venues

Returns all known Memphis venues with neighborhood assignments.

GET /neighborhoods

Returns distinct neighborhoods with active event counts.

Event Object

FieldTypeDescription
idUUIDUnique event identifier
titlestringArtist or event name
venuestringVenue name
neighborhoodstringMemphis neighborhood (may be null)
datedateISO 8601 date (YYYY-MM-DD)
start_timestringShow time (e.g. 8 PM) — may be null
doors_timestringDoors time — may be null
ticket_urlstringTicketing page URL — may be null
ticket_pricestringPrice string (e.g. $15–$25) — may be null
image_urlstringEvent flyer or artist image — may be null
descriptionstringEvent description — may be null
genrestringMusic genre — may be null
is_featuredbooleanEditor pick
is_wyxr_presentsbooleanWYXR-presented event
sourcestringData source (e.g. ticketmaster, manual)

Example

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,
    ...
  }
]

Rate Limits

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).

Data Coverage

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.