Introduction
Getting started
Overview
The Liveday API is a REST API that allows you to programmatically manage events, tickets, orders, and venues. All requests and responses use JSON.
Base URL
All API requests should be made to:
https://api.liveday.se/v1
Quick start
1. Get your API key
Sign in to your Liveday dashboard and navigate to Settings > API Keys to generate a new API key.
2. Make your first request
curl -X GET https://api.liveday.se/v1/events \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
3. Check the response
{
"data": [
{
"id": "evt_abc123",
"name": "Summer Festival 2026",
"starts_at": "2026-06-15T18:00:00Z",
"venue": {
"id": "ven_xyz789",
"name": "Stockholm Arena"
}
}
],
"meta": {
"page": 1,
"per_page": 25,
"total": 1
}
}
You should know
All API responses follow a consistent structure with data for the payload and meta for pagination information.