π Events APIs_
The Events APIs provide access to public event information, including upcoming events and detailed event data. All events returned are public and active.
Overview
The Events APIs provide access to public event information, including upcoming events and detailed event data. All events returned are public and active.
Endpoints
Get Public Events
Endpoint: GET /events
Retrieves a list of upcoming public events.
Parameters: None
Response:
<code>{
"success": true,
"events": [
{
"id": 1,
"title": "Summer Bus Festival",
"description": "Join us for a weekend of bus driving fun!",
"type": "festival",
"host": "DBus World Team",
"start_time": "2023-07-15T10:00:00Z",
"end_time": "2023-07-16T18:00:00Z",
"location": "Virtual",
"capacity": 100,
"banner_url": "https://example.com/banner.jpg",
"discord_link": "https://discord.gg/example",
"external_url": "https://example.com/event",
"tags": ["festival", "community"]
}
]
}
</code>Get Event Details
Endpoint: GET /events/{eventId}
Retrieves detailed information about a specific public event.
Parameters:
eventId(path) - The event's ID
Response:
<code>{
"success": true,
"event": {
"id": 1,
"title": "Summer Bus Festival",
"description": "Join us for a weekend of bus driving fun!",
"rules": "No griefing, be respectful",
"schedule": "10:00 - Opening ceremony...",
"type": "festival",
"host": "DBus World Team",
"start_time": "2023-07-15T10:00:00Z",
"end_time": "2023-07-16T18:00:00Z",
"location": "Virtual",
"capacity": 100,
"banner_url": "https://example.com/banner.jpg",
"discord_link": "https://discord.gg/example",
"external_url": "https://example.com/event",
"required_dlcs": "All DLCs required",
"tags": ["festival", "community"]
}
}
</code>Error Responses:
404- Event not found or not public
β API Status: Operational |
β Version: v2.1.0 |
β Last updated: Sep 2, 2025
dbus-api:~ $
API Documentation: All API documentation is provided in English for consistency and technical accuracy. This approach saves valuable work for translators.