Live events
DICE API
extractr scrapes the DICE catalogue directly — every city DICE serves, from discovery feeds to full event detail. Search events, pull lineups, track ticket pricing and availability, and resolve venues, artists and promoters, all as flat JSON behind a single API key.
- Endpoints
- 9
- Price
- from 1 credit
- Billing
- charged on success only
What you can pull from DICE
Every endpoint is a single HTTP call with a fixed credit price, metered only on a successful response.
- GET
/dice/discoveryDiscovery feed near a point
3 credits - GET
/dice/get_artistPublic artist profile
2 credits - GET
/dice/get_bundleCustom bundle details
1 credit - GET
/dice/get_citiesList supported cities
1 credit - GET
/dice/get_eventEvent details + ticket pricing
2 credits - GET
/dice/get_lineupEvent lineup
1 credit - GET
/dice/get_promoterPublic promoter profile
2 credits - GET
/dice/list_eventsFiltered event list
2 credits - GET
/dice/searchUnified search
2 credits
Up and running in one call
Sign up, grab a key, and scrape DICE from anywhere that can make an HTTP request. Your first 1,000 credits are on us.
curl "https://api.extractr.dev/dice/get_artist?id=96569" \
-H "x-api-key: ext_live_YOUR_KEY"const res = await fetch("https://api.extractr.dev/dice/get_artist?id=96569", {
headers: { "x-api-key": process.env.EXTRACTR_API_KEY! },
});
const data = await res.json();What developers build with the DICE API
Event discovery products
Power listings, feeds and recommendation features with the full DICE catalogue per city, filtered by date, genre or venue.
Ticket price tracking
Poll event detail to watch price tiers and sell-out state change, and alert your users the moment something moves.
Venue & promoter analytics
Aggregate programming across venues and promoters — who books what, how often, and how it prices.
Artist tooling
Resolve artist profiles and their upcoming shows to keep artist pages, EPKs and tour widgets current.
DICE API FAQ
Is this an official DICE API?
No. DICE does not offer a public developer API — extractr scrapes the public DICE catalogue and normalises it into stable JSON schemas so you can build against it with one API key.
What DICE data can I scrape?
Cities, discovery feeds and event search, full event detail with lineups and ticket pricing, plus venue, artist and promoter profiles.
How much does the DICE API cost?
Endpoints are credit-priced individually (see each endpoint above) and you are only charged on successful 2xx responses. Signup includes 1,000 free credits.
How fresh is the data?
Every request hits DICE live — there is no stale cache layer between you and the upstream catalogue.
Start scraping DICE in the next minute
1,000 free credits on signup — no card required. One key works across every extractr provider.