This documentation provides details about the titankollektiv.de API, including endpoints, request methods, and responses.
GET https://api.titankollektiv.de/webhook/titankollektiv/v3/event/get/active
Returns a list of events with State = 0 (active).
{
"entries": [
{
"id": 1,
"name": "Event Name",
"location": "Event Location",
"day": "25",
"monthString": "Nov",
"year": "2024",
"imageLink": "http://example.com/image.jpg",
"ticketLink": "https://titankollektiv.de/tickets",
"friendlyText": "Nummer: 1 | Event Name in Event Location am 25. Nov 2024"
}
]
}
GET https://api.titankollektiv.de/webhook/titankollektiv/v3/event/get/inactive
Returns a list of events with State = 255 (inactive).
{
"entries": [
{
"id": 2,
"name": "Old Event",
"location": "Old Location",
"day": "12",
"monthString": "Oct",
"year": "2024",
"imageLink": "http://example.com/image.jpg",
"ticketLink": "https://titankollektiv.de/tickets",
"friendlyText": "Nummer: 2 | Old Event in Old Location am 12. Oct 2024"
}
]
}
GET https://api.titankollektiv.de/webhook/titankollektiv/v3/event/get/all
Returns a list of all events.
{
"entries": [
{
"id": 1,
"name": "Event Name",
"location": "Event Location",
"day": "25",
"monthString": "Nov",
"year": "2024",
"imageLink": "http://example.com/image.jpg",
"ticketLink": "https://titankollektiv.de/tickets",
"friendlyText": "Nummer: 1 | Event Name in Event Location am 25. Nov 2024"
},
{
"id": 2,
"name": "Old Event",
"location": "Old Location",
"day": "12",
"monthString": "Oct",
"year": "2024",
"imageLink": "http://example.com/image.jpg",
"ticketLink": "https://titankollektiv.de/tickets",
"friendlyText": "Nummer: 2 | Old Event in Old Location am 12. Oct 2024"
}
]
}