Get Event Type and Genre Lookup
GET /api/event/type-genre-lookup{optional query parameters}
The GET /api/event/type-genre-lookup endpoint provides the complete list of available event types and genres used by the event API.
The response contains the event type and genre definitions grouped by language. This allows clients to build localized filters, navigation elements, and user interfaces without maintaining their own event type and genre mappings.
The identifiers returned by this endpoint can be used with the corresponding filter parameters of the GET /api/events endpoint.
The endpoint does not require any query parameters.
Examples:
Sample JSON Response
{
"service": "Uranus API",
"api_version": "1.0",
"response_type": "get-event-type-genre-lookup",
"status": 200,
"timestamp": "2026-08-05T07:48:17Z",
"metadata": {
"response_time_ms": 192
},
"data": {
"da": {
"types": {
"1": {
"name": "Koncert",
"genres": {
"1001": "Elektronisk musik",
"1002": "Rock",
"1003": "Jazz",
"1004": "Metal",
...
}
}
}
},
"de": {
...
}
}
}