πŸ“… 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>{
  &quot;success&quot;: true,
  &quot;events&quot;: [
    {
      &quot;id&quot;: 1,
      &quot;title&quot;: &quot;Summer Bus Festival&quot;,
      &quot;description&quot;: &quot;Join us for a weekend of bus driving fun!&quot;,
      &quot;type&quot;: &quot;festival&quot;,
      &quot;host&quot;: &quot;DBus World Team&quot;,
      &quot;start_time&quot;: &quot;2023-07-15T10:00:00Z&quot;,
      &quot;end_time&quot;: &quot;2023-07-16T18:00:00Z&quot;,
      &quot;location&quot;: &quot;Virtual&quot;,
      &quot;capacity&quot;: 100,
      &quot;banner_url&quot;: &quot;https://example.com/banner.jpg&quot;,
      &quot;discord_link&quot;: &quot;https://discord.gg/example&quot;,
      &quot;external_url&quot;: &quot;https://example.com/event&quot;,
      &quot;tags&quot;: [&quot;festival&quot;, &quot;community&quot;]
    }
  ]
}
</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>{
  &quot;success&quot;: true,
  &quot;event&quot;: {
    &quot;id&quot;: 1,
    &quot;title&quot;: &quot;Summer Bus Festival&quot;,
    &quot;description&quot;: &quot;Join us for a weekend of bus driving fun!&quot;,
    &quot;rules&quot;: &quot;No griefing, be respectful&quot;,
    &quot;schedule&quot;: &quot;10:00 - Opening ceremony...&quot;,
    &quot;type&quot;: &quot;festival&quot;,
    &quot;host&quot;: &quot;DBus World Team&quot;,
    &quot;start_time&quot;: &quot;2023-07-15T10:00:00Z&quot;,
    &quot;end_time&quot;: &quot;2023-07-16T18:00:00Z&quot;,
    &quot;location&quot;: &quot;Virtual&quot;,
    &quot;capacity&quot;: 100,
    &quot;banner_url&quot;: &quot;https://example.com/banner.jpg&quot;,
    &quot;discord_link&quot;: &quot;https://discord.gg/example&quot;,
    &quot;external_url&quot;: &quot;https://example.com/event&quot;,
    &quot;required_dlcs&quot;: &quot;All DLCs required&quot;,
    &quot;tags&quot;: [&quot;festival&quot;, &quot;community&quot;]
  }
}
</code>

Error Responses:

  • 404 - Event not found or not public

← Back to API Documentation

● 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.