# LiveSpot > LiveSpot is a Swedish event ticket aggregator. Browse and compare tickets for concerts, theater, sports, comedy, and other live experiences across Sweden. LiveSpot collects event listings from Swedish ticket sellers into one searchable site. Available in Swedish and English. Full context (all 180+ city slugs, all venue slugs, usage examples): https://livespot.se/llms-full.txt ## API GET https://livespot.se/api/events Returns JSON with `data` (array of events) and `meta` (pagination info: page, limit, total, totalPages). Each event includes: id, name, slug, url (LiveSpot event page), image_url (LiveSpot CDN), start_date, end_date, city, venue, price_min, price_max, currency, availability, event_status, categories, performers, description_sv, description_en. ### Query parameters | Parameter | Type | Default | Description | |-----------|------|---------|-------------| | q | string | | Free-text search. Supports natural language queries like "concerts in stockholm this weekend". | | city | slug or name | | Filter by city. Accepts slugs (`stockholm`) or case-insensitive names (`Stockholm`, `Göteborg`). See city slugs below. | | category | slug | | Filter by category. Accepts both Swedish and English slugs. | | venue | slug | | Filter by venue slug (lowercase, hyphenated name). | | performer | slug | | Filter by performer slug. | | start_date | YYYY-MM-DD | | Events on or after this date. | | end_date | YYYY-MM-DD | | Events on or before this date. Must be on or after `start_date`. | | limit | integer | 20 | Results per page. Max 100. Default is 20 (approx 60KB). Passing `limit=100` returns ~290KB — only do this if your client can handle large responses. | | page | integer | 1 | Page number (1-indexed). | ### Example ``` GET https://livespot.se/api/events?city=stockholm&category=konsert&start_date=2026-04-01&limit=100 ``` ### Category slugs Both Swedish (canonical) and English slugs are accepted. | Swedish slug | English slug | Description | |-------------|-------------|-------------| | konsert | concert | Live music and concerts | | teater | theatre | Theater, drama, and opera | | musikal | musical | Musical theatre and musicals | | dans | dance | Dance performances and ballet | | humor | comedy | Stand-up and comedy shows | | sport | sports | Football, hockey, and other sporting events | | barn-familj | kids-family | Family-friendly events | | festival | festival | Music and culture festivals | | livepodd | live-podcast | Live podcast recordings | | ovrigt | other | Other events | ### City slugs The most common city slugs: stockholm, goteborg, malmo, uppsala, linkoping, norrkoping, helsingborg, jonkoping, umea, lund, gavle, sundsvall, vasteras, orebro, lulea The full list of 180+ city slugs follows the pattern of lowercase Swedish city names with special characters replaced: a for a-ring, o for o-umlaut, e for e-acute, hyphens for spaces. Examples: `goteborg` (Gothenburg), `malmo` (Malmo), `norrkoping` (Norrkoping). ## Browse pages - All events: https://livespot.se/ - Filtered homepage: https://livespot.se/?city=stockholm&category=konsert&startDate=2026-04-01 - Events by city: https://livespot.se/evenemang/{city} (e.g. https://livespot.se/evenemang/stockholm) - Events by category: https://livespot.se/kategori/{category} (e.g. https://livespot.se/kategori/konsert) - Events by city and category: https://livespot.se/evenemang/{city}/{category} (e.g. https://livespot.se/evenemang/stockholm/konsert) English equivalents use the /en/ prefix: https://livespot.se/en/events/stockholm, https://livespot.se/en/category/concert, https://livespot.se/en/events/stockholm/concert ## About - [About LiveSpot](https://livespot.se/om-oss): What we do and how it works - [Contact](https://livespot.se/kontakt): Get in touch - [Privacy Policy](https://livespot.se/integritetspolicy): How we handle your data - [Terms of Service](https://livespot.se/villkor): Terms and conditions