Slotlist.it Public API
Access public platform data through structured access. No user-identifying data is ever exposed.
https://slotlist.it/api/v1
- UUID:
8-4-4-4-12hex - Snowflake: 17–20 digit numeric
2026-02-11T15:00:00.000Z
- Slot info never exposes personal data
- Only public or unlisted events accessible
{ "error": "Too many requests, please try again later." }
Returns a paginated list of upcoming public events, sorted by start date ascending. Only public events are included. Maximum 20 events per request regardless of the limit parameter.
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | Optional | Number of events to return. Default: 10, max: 20 |
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Event Name",
"start_time": "2026-02-11T15:00:00.000Z",
"game": "Arma 3 | Arma Reforger",
"image": "https://slotlist.it/path/to/image.png" | null,
"slots": {
"total": 64,
"taken": 41,
"free": 23
}
}
]
Fetches public details of a specific event. Only safe, non-sensitive data is returned, no user-identifying information is ever exposed. Only public or unlisted events are accessible.
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Required | Event ID. Must be a valid UUID |
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Event Name",
"game": "Arma 3 | Arma Reforger",
"status": "upcoming | live | concluded",
"visibility": "public | unlisted",
"author": "Author Nickname",
"community": {
"name": "Community Name",
"prefix": "Community Prefix"
},
"image": "https://slotlist.it/path/to/image.png" | null,
"times": {
"start": "2026-02-11T15:00:00.000Z",
"end": "2026-02-11T18:00:00.000Z",
"slotting": "2026-02-10T20:00:00.000Z",
"briefing": "2026-02-11T14:30:00.000Z"
},
"server": {
"teamspeak": {
"address": "ts.slotlist.it",
"port": 1234
},
"gameServer": {
"address": "arma.slotlist.it",
"port": 2302
}
},
"slots_structure": [
{
"name": "Alpha Group",
"faction": "blufor | opfor | independent | civilian | none",
"slots": [
{
"role": "Rifleman",
"difficulty": "easy | moderate | challenging | demanding",
"status": "free | occupied | pending_reservation | reserved_community",
"description": "Optional role description" | null
}
]
}
]
}
Fetches public details of an approved group. Returns general info including name, prefix, member count, and social links. Sensitive member data is never exposed.
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Required | Group ID. Must be a valid UUID |
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Group Name",
"prefix": "Group Prefix",
"description": "Optional group description",
"image": "https://slotlist.it/path/to/image.png" | null,
"members_count": 25,
"website": "https://example.com" | null,
"discord": "https://discord.gg/invite" | null
}
Returns the list of upcoming public events belonging to a specific group, sorted by start date ascending. Only public events are returned, private or internal events are never exposed.
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Required | Group ID. Must be a valid UUID |
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Event Name",
"start_time": "2026-02-11T15:00:00.000Z",
"game": "Arma 3 | Arma Reforger",
"image": "https://slotlist.it/path/to/image.png" | null,
"slots": {
"total": 64,
"taken": 41,
"free": 23
}
}
]