List all events
GEThttps://my.vatsim.net/api/v2/events/latest
Returns a list of all current and upcoming events.
Request
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
data object[]
{
"data": [
{
"id": 1,
"type": "Event",
"name": "Example Event",
"link": "https://my.vatsim.net/events/example-event",
"organisers": [
{
"region": "AMAS",
"division": "USA",
"subdivision": null,
"organised_by_vatsim": false
}
],
"airports": [
{
"icao": "KJFK"
}
],
"routes": [
{
"departure": "KJFK",
"arrival": "KATL",
"route": "RBV Q430 BYRDD J48 MOL FLASK OZZZI1"
}
],
"start_time": "1970-01-01T00:00:00.000000Z",
"end_time": "1970-01-01T06:00:00.000000Z",
"short_description": "Fly with us tonight!",
"description": "Fly with us tonight!",
"banner": "https://vatsim-my.nyc3.digitaloceanspaces.com/events/JpjoYKp6CRcz4V1wvdlMnQHiAtYOmT2p3DevEA7j.png"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://my.vatsim.net/api/v2/events/latest' \
-H 'Accept: application/json'
ResponseClear