Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_recurring_children=true&page=43
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 22783,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=44",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=42"
    },
    "data": [
        {
            "id": "kulke:68500",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4142489",
                        "en": "https://www.lippu.fi/eventseries/name-4142489"
                    },
                    "price": {
                        "fi": "20-44 €",
                        "en": "20-44 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913050,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:26.114479Z",
                    "last_modified_time": "2026-05-05T10:13:26.114494Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789971.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913050/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:25.955485Z",
            "last_modified_time": "2026-05-05T10:13:26.292652Z",
            "date_published": null,
            "start_time": "2026-11-12T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Michael Mayo (USA) & UMO Helsinki Jazz Orchestra",
                "en": "Michael Mayo (USA) & UMO Helsinki Jazz Orchestra"
            },
            "short_description": {
                "fi": "Kovassa nosteessa oleva laulaja ja säveltäjä Michael Mayo on yksi sukupolvensa johtavista nykyvokalisteista. Mayon kausi UMO Helsinki Jazz Orchestran päävierailijana käynnistyy tästä konsertista! Michael Mayo räätälöi ensimmäistä kohtaamista varten uuden ohjelmiston, jossa hänen suosikkinsa omasta tuotannostaan saavat ylleen upouudet big band -sovitukset.",
                "en": "The acclaimed singer and composer Michael Mayo is one of the leading contemporary vocalists of his generation. The collaboration with the UMO Helsinki Jazz Orchestra and their newly appointed artist-in-residence kicks off with this concert!"
            },
            "description": {
                "fi": "<p>Kovassa nosteessa oleva laulaja ja säveltäjä Michael Mayo on yksi sukupolvensa johtavista nykyvokalisteista. Mayon kausi UMO Helsinki Jazz Orchestran päävierailijana käynnistyy tästä konsertista! Michael Mayo räätälöi ensimmäistä kohtaamista varten uuden ohjelmiston, jossa hänen suosikkinsa omasta tuotannostaan saavat ylleen upouudet big band -sovitukset.</p><p>Yhdysvaltalainen laulaja ja säveltäjä Michael Mayo (s. 1992) on yksi sukupolvensa johtavista nykyvokalisteista, joka on ollut jazzpiirien huulilla ylistystä keränneen debyyttinsä Bones (2021) ja sitä seuranneen, Grammy-ehdokkuuksiakin saaneen albumin Fly (2024) myötä. Hänen musiikkinsa yhdistelee elementtejä jazzista, neo-soulista ja R&B:stä ja hän on tunnettu erityisesti innovatiivisesta, monipuolisesti ääntä käyttävästä laulutyylistään. Mayo oli vasta kolmas vokalisti, joka hyväksyttiin arvostettuun Herbie Hancock Institute of Jazziin. Hän on tehnyt yhteistyötä ja kiertänyt lavoja mm. Hancockin, Jacob Collierin, Gretchen Parlaton ja Nate Smithin kanssa. <br>Päävierailijana hän laajentaa UMO Helsinki Jazz Orchestran repertuaaria ja tuo mukanaan uusia näkökulmia sekä laajasti omia kontaktejaan. Hän suunnittelee vähintään neljä ohjelmistoa kausittain ja esiintyy orkesterin kanssa vähintään kahdesti konserttikaudessa. Mayon kaksivuotinen päävierailijakausi ulottuu syksystä 2026 kevääseen 2028.</p><p>– Olen todella innoissani päästessäni tekemään yhteistyötä UMO Helsinki Jazz Orchestran kanssa. Korvissani on soinut jo pitkään valtavasti musiikkia, jonka herättämisestä henkiin tämän upean kokoonpanon kanssa olen aivan täpinöissäni. Uskon, että yhteistyöstämme tulee jotain ainutlaatuista, ja odotan suurella mielenkiinnolla yhteistä matkaamme, Mayo kommentoi.</p><p>Kapellimestarina <b>Ville Vannemaa</b>.</p><p>Konsertin kesto 2 h, sis. väliajan.</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Video https://youtu.be/qAlPI_rKvE0?si=0h1bnEZqpP4gSWem<br>Spotify https://open.spotify.com/artist/5GPxGRe2IglKP3ZiwwJbP4?si=Bg3pd4cUTaSEZv9cLM0IQQ</p><p><i><b>UMO Helsinki Jazz Orchestra – jazzin urotekoja ja taidonnäytteitä jo vuodesta 1975!</b> UMO Helsinki Jazz Orchestra on ollut yli 50 vuotta suomalaisen jazzin huipulla. Yrjö- ja Emma-palkittu ja Grammy-ehdokkuudellakin noteerattu orkesteri on jakanut lavat maailman suurimpien jazzlegendojen ja kotimaisten tähtien kanssa. Diskografiassa komeilee reilut 60 albumia. Helsinkiläisten oma jazzkaupunginorkesteri konsertoi ympäri Suomen yli 100 keikan ja 35 000 kuulijan vuosivauhdilla. UMOn ydin on uudessa musiikissa, ja yllätyksellinen ohjelmisto taipuu tinkimättömällä otteella jazzista souliin ja klassiseen. www.umohelsinki.fi</i></p>",
                "en": "<p>The acclaimed singer and composer Michael Mayo is one of the leading contemporary vocalists of his generation. The collaboration with the UMO Helsinki Jazz Orchestra and their newly appointed artist-in-residence kicks off with this concert!</p><p>For this first collaboration, Michael Mayo has curated a custom program featuring his personal favourites, reimagined with brand-new big band arrangements.</p><p>American singer and composer Michael Mayo (b. 1992) is one of the leading contemporary vocalists of his generation. He has been prominent in jazz circles since his critically acclaimed debut album Bones (2021) and the follow-up, the Grammy-nominated Fly (2024). In his music, he combines elements of jazz, neo-soul and R&B, and he is particularly known for his innovative and versatile vocal style. Mayo was only the third vocalist accepted into the prestigious Herbie Hancock Institute of Jazz. He has collaborated and performed with, among others, Hancock, Jacob Collier, Gretchen Parlato, and Nate Smith.</p><p>As artist-in-residence, he will expand UMO’s repertoire and bring new perspectives as well as an extensive network of contacts. He will plan at least four programmes each season and perform  with the orchestra at least twice per concert season. Mayo’s two-year term runs from autumn 2026 to spring 2028.</p><p>– I’m genuinely so excited to get the chance to collaborate with the UMO Helsinki Jazz Orchestra. I’ve had so much music swirling in my ears that I’m excited to be able to bring to life such an incredible ensemble. I think we’re gonna have a really special time together, and I look forward to all the music to come, says Mayo.</p><p>Conductor <b>Ville Vannemaa</b>.</p><p>Duration 2 hours, including an intermission.</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><i><b>UMO Helsinki Jazz Orchestra: great achievements and mastery in jazz since 1975!</b> Throughout the decades, UMO has been at the forefront of Finnish jazz. This multi-award-winning ensemble – recipient of the Yrjö and Emma awards and a Grammy nominee – has shared the stage with international jazz legends as well as the brightest stars of the Finnish music scene. With a distinguished discography of over 60 albums, Helsinki’s own \"jazz city orchestra\" performs across Finland, reaching 35,000 listeners through more than 100 concerts annually. At the heart of UMO is a commitment to new music. The orchestra’s versatile repertoire fearlessly pushes boundaries, from jazz and soulful grooves to classical fusion. www.umohelsinki.fi</i></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/53B328CC806D9D4A05E5693518C021DD/Michael_Mayo_USA_UMO_Helsinki_Jazz_Orchestra",
                "en": "http://www.savoyteatteri.fi/en/events/event/53B328CC806D9D4A05E5693518C021DD/Michael_Mayo_USA_UMO_Helsinki_Jazz_Orchestra"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra",
                "en": "UMO Helsinki Jazz Orchestra"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68500/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68526",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913048,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:25.451602Z",
                    "last_modified_time": "2026-05-05T10:13:25.451616Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790403.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913048/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:25.315685Z",
            "last_modified_time": "2026-05-05T10:13:25.608731Z",
            "date_published": null,
            "start_time": "2026-10-26T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "UMO Helsinki Ensemble – Jimmy Giuffre 3 – Lounaskonsertti",
                "en": "UMO Helsinki Ensemble – Jimmy Giuffre 3 – Lunch time concert"
            },
            "short_description": {
                "fi": "Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 8.10. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.",
                "en": "Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 8th October at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions."
            },
            "description": {
                "fi": "<p>Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 8.10. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.</p><p>UMOn puupuhallinspesialisti <b>Max Zenger</b> johdattaa kuulijat amerikkalaisen jazzin omaleimaiseen maailmaan, kun hänen kvartettinsa tulkitsee <b>Jimmy Giuffre 3</b> -yhtyeen ja samannimisen vuonna 1957 julkaistun levyn musiikkia. Zenger astuu itse Giuffren rooliin soittaen baritonisaksofonia ja klarinettia, ja hänen seurassaan lavalle nousevat kitaristi Rene Willman Jim Hallin ja basisti Filemon von Numers Ralph Peñan rooleissa. Erityisen lisän konserttiin tuo rumpali Mikko Hassinen, joka on sovittanut rumpalin osuudet Giuffren musiikkiin tehden triosta kvartetin.</p><p>Giuffren sävellykset hämärtävät rajoja jazzin, bluesin ja amerikkalaisen folk-musiikin välillä. Miltei kokonaan läpisävelletty musiikki sisältää aikakautensa normista poikkeavia harmonisia ja melodisia valintoja. Konsertti tarjoaa rauhallisia ja syvällisiä äänimaisemia, jotka puhuttelevat sekä jazzin että amerikkalaisen roots-musiikin ystäviä.</p><p><b>UMO Helsinki Ensemble</b> on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan. Konsertin ohjelmiston on suunnitellut saksofonisti Max Zenger, joka myös luotsaa ensembleä.</p><p>Kokoonpano:<br>Max Zenger, baritonisaksofoni, klarinetti ja yhtyeenjohto<br>Rene Willman, kitara<br>Filemon von Numers, basso<br>Mikko Hassinen, rummut <br> <br>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon to 8.10. klo 15 alkaen Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus. Max. 2 lippua / asiakas. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p>",
                "en": "<p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 8th October at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p>The woodwind specialist <b>Max Zenger</b> introduces listeners to the unique world of American jazz as his quartet interprets the music of <b>Jimmy Giuffre 3</b> and the album of the same name released in 1957. Zenger himself takes on the role of Giuffre, playing baritone saxophone and clarinet, accompanied on stage by guitarist Rene Willman as Jim Hall and bassist Filemon von Numers as Ralph Peña. Drummer Mikko Hassinen brings a special touch to the concert, having arranged drum parts for Giuffre’s music and expanding the trio into a quartet.</p><p>Giuffre's compositions blur the boundaries between jazz, blues, and American folk music. The music, which is almost entirely through-composed, features harmonic and melodic choices that deviate from the norms of its era. The concert offers peaceful and profound soundscapes that will appeal to fans of both jazz and American roots music.</p><p>The <b>UMO Helsinki Ensemble</b> is a smaller ensemble formed from the UMO Helsinki Jazz Orchestra, whose musicians have extensive careers both with UMO and in their own numerous projects. The concert program has been planned by saxophonist Max Zenger, who also leads the ensemble.</p><p>Line-up:<br>Max Zenger, baritone saxophone, clarinet, and band leader<br>Rene Willman, guitar<br>Filemon von Numers, bass<br>Mikko Hassinen, drums</p><p>Please note! The concert will be held in the Savoy Theatre from 12 noon to 1 pm. The admission is free, but we recommend booking in advance at the Savoy Theatre box office (0 €) or Lippu.fi (3 € commission). Max. 2 tickets per customer. For larger group bookings, please contact the Savoy Theatre. Admission only with pre-booked tickets until 11.50 am, after which remaining seats will be released to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B151EF4461F45341CCD867F8E39E2103/UMO_Helsinki_Ensemble_Jimmy_Giuffre_3",
                "en": "http://www.savoyteatteri.fi/en/events/event/B151EF4461F45341CCD867F8E39E2103/UMO_Helsinki_Ensemble_Jimmy_Giuffre_3"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra",
                "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68520",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4145563",
                        "en": "https://www.lippu.fi/eventseries/name-4145563"
                    },
                    "price": {
                        "fi": "20-44 €",
                        "en": "20-44 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913046,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:24.249167Z",
                    "last_modified_time": "2026-05-05T10:13:24.249190Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790277.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913046/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:24.112562Z",
            "last_modified_time": "2026-05-05T10:13:24.406050Z",
            "date_published": null,
            "start_time": "2026-10-01T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Becca Stevens (USA) & UMO Helsinki Jazz Orchestra",
                "en": "Becca Stevens (USA) & UMO Helsinki Jazz Orchestra"
            },
            "short_description": {
                "fi": "Valmistaudu kokemaan jotain aivan ainutlaatuista, kun genrerajoja pelottomasti rikkova yhdysvaltalaisvisionääri Becca Stevens ja UMO Helsinki Jazz Orchestra kohtaavat Savoy-teatterissa!",
                "en": "Get ready for a truly unique experience as the fearless, genre-defying visionary Becca Stevens joins forces with the UMO Helsinki Jazz Orchestra at the Savoy Theatre!"
            },
            "description": {
                "fi": "<p>Valmistaudu kokemaan jotain aivan ainutlaatuista, kun genrerajoja pelottomasti rikkova yhdysvaltalaisvisionääri Becca Stevens ja UMO Helsinki Jazz Orchestra kohtaavat Savoy-teatterissa!</p><p>Kitaristi, laulaja-lauluntekijä Becca Stevens on musiikillinen voimanpesä, jonka käsissä folk, indie-pop ja jazz-harmonia kietoutuvat maagiseksi ja hypnoottiseksi kokonaisuudeksi. Stevensin intiimit sävellykset ja kerrokselliset rytmit heräävät eloon ennennäkemättömällä tavalla, kun ne saavat ylleen tätä konserttia varten räätälöidyt värikylläiset big band -sovitukset UMOn mestarillisina tulkintoina.</p><p>Olitpa intohimoinen jazzin harrastaja, indiefolkin ystävä tai elämää suurempien musiikkielämysten metsästäjä, tätä iltaa et halua ohittaa!</p><p>Konsertin kesto n. 75 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Spotify https://open.spotify.com/artist/0Sh2X6e3JerGnyEF0vDgbk?si=WCrZ6a-wTLqKPvqsfXEFvA</p><p><i><b>Becca Stevens</b> (s. 1984) on yhdysvaltalainen laulaja-lauluntekijä, kitaristi ja multi-instrumentalisti, joka tunnetaan genrerajoja rikkovasta, tunteisiin vetoavasta tyylistään. Hänen musiikissaan yhdistyvät saumattomasti jazz, folk, pop ja maailmanmusiikki. Stevens on tullut tunnetuksi erityisesti uniikista äänenkäytöstään sekä kyvystään hallita monimutkaisia harmonioita ja rytmejä. Uransa aikana hän on julkaissut useita kriitikoiden ylistämiä albumeita, kuten Regina ja Maple to Paper. Oman Becca Stevens Bandin lisäksi hän on tehnyt laajasti yhteistyötä huippunimien, kuten Jacob Collierin, Snarky Puppyn, Ambrose Akinmuseren ja Brad Mehldaun kanssa. Stevens on ollut Grammy-ehdokkaana kahdesti, mikä vahvistaa hänen asemaansa yhtenä sukupolvensa innovatiivisimmista musiikintekijöistä. www.beccastevens.com</p><p><b>UMO Helsinki Jazz Orchestra – jazzin urotekoja ja taidonnäytteitä jo vuodesta 1975!</b> UMO Helsinki Jazz Orchestra on ollut yli 50 vuotta suomalaisen jazzin huipulla. Yrjö- ja Emma-palkittu ja Grammy-ehdokkuudellakin noteerattu orkesteri on jakanut lavat maailman suurimpien jazzlegendojen ja kotimaisten tähtien kanssa. Diskografiassa komeilee reilut 60 albumia. Helsinkiläisten oma jazzkaupunginorkesteri konsertoi ympäri Suomen yli 100 keikan ja 35 000 kuulijan vuosivauhdilla. UMOn ydin on uudessa musiikissa, ja yllätyksellinen ohjelmisto taipuu tinkimättömällä otteella jazzista souliin ja klassiseen. www.umohelsinki.fi</i></p>",
                "en": "<p>Get ready for a truly unique experience as the fearless, genre-defying visionary Becca Stevens joins forces with the UMO Helsinki Jazz Orchestra at the Savoy Theatre!</p><p>Singer-songwriter and guitarist Becca Stevens is a musical powerhouse. In her hands, folk, indie-pop, and jazz harmonies intertwine into a magical and hypnotic whole. Stevens’ intimate compositions and layered rhythms will come to life like never before, reimagined through vibrant big band arrangements tailored specifically for this concert and brought to the stage by UMO’s masterful interpretation.</p><p>Whether you are a passionate jazz enthusiast, a fan of indie-folk, or a seeker of larger-than-life musical experiences, this is a night you don’t want to miss!</p><p>Duration about 75 min, no intermission.</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><i><b>Becca Stevens</b> (b. 1984) is an American singer-songwriter, guitarist and multi-instrumentalist celebrated for her genre-defying and deeply emotive style. Her music seamlessly weaves together jazz, folk, pop, and world music. Stevens is particularly renowned for her unique vocal delivery and her mastery of complex harmonies and rhythms. Throughout her career, she has released several critically acclaimed albums, including Regina and Maple to Paper. In addition to leading the Becca Stevens Band, she has collaborated extensively with world-class artists such as Jacob Collier, Snarky Puppy, Ambrose Akinmusere, and Brad Mehldau. With two Grammy nominations, Stevens has firmly established herself as one of the most innovative musical creators of her generation. www.beccastevens.com</p><p><b>UMO Helsinki Jazz Orchestra: great achievements and mastery in jazz since 1975!</b> Throughout the decades, UMO has been at the forefront of Finnish jazz. This multi-award-winning ensemble – recipient of the Yrjö and Emma awards and a Grammy nominee – has shared the stage with international jazz legends as well as the brightest stars of the Finnish music scene. With a distinguished discography of over 60 albums, Helsinki’s own \"jazz city orchestra\" performs across Finland, reaching 35,000 listeners through more than 100 concerts annually. At the heart of UMO is a commitment to new music. The orchestra’s versatile repertoire fearlessly pushes boundaries, from jazz and soulful grooves to classical fusion. www.umohelsinki.fi</i></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/14959DEFFDF608A84AEE0A7FE2A60F58/Becca_Stevens_USA_UMO_Helsinki_Jazz_Orchestra",
                "en": "http://www.savoyteatteri.fi/en/events/event/14959DEFFDF608A84AEE0A7FE2A60F58/Becca_Stevens_USA_UMO_Helsinki_Jazz_Orchestra"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra",
                "en": "UMO Helsinki Jazz Orchestra"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68520/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68525",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913041,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:23.244951Z",
                    "last_modified_time": "2026-05-05T10:13:23.244965Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790402.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913041/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:23.061415Z",
            "last_modified_time": "2026-05-05T10:13:23.442445Z",
            "date_published": null,
            "start_time": "2026-09-09T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "UMO Helsinki Jazz Orchestra & Elena Mîndru – Echoes of Broadway – Lounaskonsertti",
                "en": "UMO Helsinki Jazz Orchestra & Elena Mîndru – Echoes of Broadway – Lunch time concert"
            },
            "short_description": {
                "fi": "Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 20.8. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.",
                "en": "Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 20th August at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions."
            },
            "description": {
                "fi": "<p>Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2026! Tämän konsertin ilmaisliput ovat varattavissa to 20.8. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.</p><p>Musikaaliklassikoita ja jazzin huumaa! Echoes of Broadway on jazzlaulaja <b>Elena Mîndrun</b> tohtorikonsertti, jossa Broadway-klassikot heräävät eloon suuren jazzorkesterin tulkitsemana. Taiteellista tohtorintutkintoaan Sibelius-Akatemiassa viimeistelevälle Mîndrulle konsertointi yhdessä <b>UMO Helsinki Jazz Orchestran</b> kanssa on tutkinnon viimeinen taiteellinen osio.</p><p>Tässä konsertissa rakastetut Broadway-klassikot saavat uuden elämän <b>Artturi Röngän</b> ja <b>Sampo Kasurisen</b> uusina big band -sovituksina. Kapellimestarina toimii UMO Helsinki Jazz Orchestran tuore pääkapellimestari <b>Ville Vannemaa</b>.</p><p>Kesto n. 60 min, ei väliaikaa.</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon to 20.8. klo 15 alkaen Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus. Max. 2 lippua / asiakas. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p><p><i><b>Elena Mîndru</b> (s. 1988) edustaa Suomen jazzlaulajien parhaimmistoa. Upeasta esiintymisestään ja improvisaatioistaan tunnettu Mîndru esiintyy säännöllisesti isojen orkestereiden solistina muiden maiden ohella molemmissa kotimaissaan Suomessa ja Romaniassa. Hän on julkaissut omalla nimellään kuusi jazzlevyä, joista uusin, Second Time Around, julkaistaan v. 2026. Säveltäjänäkin kunnostautunut Mîndru on kirjoittanut useita teoksia big bandille, sinfoniaorkesterille ja pienyhtyeille. www.elenamindru.com</p><p><b>UMO Helsinki Jazz Orchestra – jazzin urotekoja ja taidonnäytteitä jo vuodesta 1975!</b> UMO Helsinki Jazz Orchestra on ollut yli 50 vuotta suomalaisen jazzin huipulla. Yrjö- ja Emma-palkittu ja Grammy-ehdokkuudellakin noteerattu orkesteri on jakanut lavat maailman suurimpien jazzlegendojen ja kotimaisten tähtien kanssa. Diskografiassa komeilee reilut 60 albumia. Helsinkiläisten oma jazzkaupunginorkesteri konsertoi ympäri Suomen yli 100 keikan ja 35 000 kuulijan vuosivauhdilla. UMOn ydin on uudessa musiikissa, ja yllätyksellinen ohjelmisto taipuu tinkimättömällä otteella jazzista souliin ja klassiseen. www.umohelsinki.fi </i></p>",
                "en": "<p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2026! The free concert tickets can be reserved from Thursday 20th August at 3 pm at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p>Classic musical hits and jazz frenzy! Echoes of Broadway is jazz singer <b>Elena Mîndru's</b> doctoral concert, in which Broadway classics come to life as interpreted by a large jazz orchestra. For Mîndru, who is completing her doctoral degree in Arts at the Sibelius Academy, the concert with the <b>UMO Helsinki Jazz Orchestra</b> is the final artistic component of her degree.</p><p>In this concert, beloved Broadway classics are brought to life as new big band arrangements by <b>Artturi Rönkä</b> and <b>Sampo Kasurinen</b>. The concert is conducted by <b>Ville Vannemaa</b>, the new chief conductor of the UMO Helsinki Jazz Orchestra.</p><p>Please note! The concert will be held in the Savoy Theatre from 12 noon to 1 pm. The admission is free, but we recommend booking in advance at the Savoy Theatre box office (0 €) or Lippu.fi (3 € commission). Max. 2 tickets per customer. For larger group bookings, please contact the Savoy Theatre. Admission only with pre-booked tickets until 11.50 am, after which remaining seats will be released to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p><p><i><b>Elena Mîndru</b> (b. 1988) is one of the best Finnish jazz singers. Known for her charismatic performances and improvisations, Mîndru regularly performs as a soloist with large orchestras in both her home countries, Finland and Romania, among other countries. She has published six jazz albums under her own name, the latest Second Time Around in 2026. Mîndru has also gained recognition as a composer and has written several works for big band, symphony orchestra and smaller ensembles. www.elenamindru.com</p><p><b>UMO Helsinki Jazz Orchestra: great achievements and mastery in jazz since 1975!</b> Throughout the decades, UMO has been at the forefront of Finnish jazz. This multi-award-winning ensemble – recipient of the Yrjö and Emma awards and a Grammy nominee – has shared the stage with international jazz legends as well as the brightest stars of the Finnish music scene. With a distinguished discography of over 60 albums, Helsinki’s own \"jazz city orchestra\" performs across Finland, reaching 35,000 listeners through more than 100 concerts annually. At the heart of UMO is a commitment to new music. The orchestra’s versatile repertoire fearlessly pushes boundaries, from jazz and soulful grooves to classical fusion. www.umohelsinki.fi</i></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9994C57C96CB541E95DB9D67BBE0CD04/UMO_Helsinki_Jazz_Orchestra_Elena_M_ndru_Echoes_of_Broadway",
                "en": "http://www.savoyteatteri.fi/en/events/event/9994C57C96CB541E95DB9D67BBE0CD04/UMO_Helsinki_Jazz_Orchestra_Elena_M_ndru_Echoes_of_Broadway"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra",
                "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67504",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1837025,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T13:13:55.262101Z",
                    "last_modified_time": "2026-05-04T13:13:55.262117Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781612.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1837025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-04T13:13:55.143380Z",
            "last_modified_time": "2026-05-05T10:13:11.529936Z",
            "date_published": null,
            "start_time": "2026-05-09T08:00:00Z",
            "end_time": "2026-05-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Kuka on sinun eläinoletettusi?",
                "sv": "Annegårdens konstlördag: Vem är ditt förmodade djur?",
                "en": "Annantalo Art Saturday: Who is your supposed animal?"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kuka on sinun eläinoletettusi?</b></p><p>Tämänkertaisessa taidelauantaissa pääset taiteilemaan palapelin palan ja siihen oman kuvan omasta eläinoletetustasi. Työpaja on innoitettu Hans-Peter Shüttin Anima-näyttelystä ja taiteilija itsekin on paikalla kertomassa teoksistaan. Pääset myös käyttämään näyttelyn teoksissa käytettyjä sabluunoita.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon Noora Puranen ja Hans-Peter Shütt.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Vem är ditt förmodade djur?/b><br> <br>Denna konstlördag får du skapa en pusselbit med en bild av ditt egna förmodade djur. Workshopen är inspirerad av Hans-Peter Schütts Anima-utställning och konstnären själv kommer att vara där för att berätta om sina verk.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Noora Puranen och Hans-Peter Shütt<br>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Who is your supposed animal?</b><br> <br>This Art Saturday you will get to create a puzzle piece with a picture of your own supposed animal. The workshop is inspired by Hans-Peter Schütt's Anima exhibition and the artist himself will be present to talk about his works</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led byNoora Puranen and Hans-Peter Shütt<br>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0F49BF90EB097DD14FE8991677342FE7/Annantalon_taidelauantai_Kuka_on_sinun_elainoletettusi_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0F49BF90EB097DD14FE8991677342FE7/Annegardens_konstlordag_Vem_ar_ditt_formodade_djur_",
                "en": "http://www.annantalo.fi/en/events/event/0F49BF90EB097DD14FE8991677342FE7/Annantalo_Art_Saturday_Who_is_your_supposed_animal_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67504/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68612",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/anssi-kela-nummela-25-vuotisjuhlakiertue-savoy-teatteri-21614602/"
                    },
                    "price": {
                        "fi": "39,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1910454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T09:13:30.520702Z",
                    "last_modified_time": "2026-05-05T09:13:30.520716Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791188.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1910454/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T09:13:30.351240Z",
            "last_modified_time": "2026-05-05T09:13:30.696291Z",
            "date_published": null,
            "start_time": "2026-12-02T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Anssi Kela - Nummela 25-vuotisjuhlakiertue"
            },
            "short_description": {
                "fi": "Anssi Kelan vuonna 2001 julkaistu esikoisalbumi Nummela nousi nopeasti sukupolvikokemukseksi ja määritti 2000-luvun alun suomalaista musiikkimaailmaa. Nyt Kela juhlistaa 25-vuotiasta levyä Helsingin juhlaviikoilta käynnistyvällä kiertueella, jonka jälkeen hän jää ensimmäiselle pidemmälle keikkatauolle urallaan."
            },
            "description": {
                "fi": "<p>Anssi Kelan vuonna 2001 julkaistu esikoisalbumi Nummela nousi nopeasti sukupolvikokemukseksi ja määritti 2000-luvun alun suomalaista musiikkimaailmaa. Nyt Kela juhlistaa 25-vuotiasta levyä Helsingin juhlaviikoilta käynnistyvällä kiertueella, jonka jälkeen hän jää ensimmäiselle pidemmälle keikkatauolle urallaan.</p><p><b>Anssi Kela</b> aloittaa Nummela-albumia juhlistavan kiertueensa Helsingin juhlaviikkojen Huvila-teltasta torstaina 27. elokuuta. Kiertue saa jatkoa lauantaina 3. lokakuuta alkaen, jolloin Kela yhtyeineen konsertoi Vihdin Kulttuuritalolla. Siitä kiertue jatkuu loka-marraskuun ajan kulkien läpi Suomen ja päättyen Helsingin Savoy-teatteriin keskiviikkona 2. joulukuuta.</p><p>Kiertueen konserteissa kuullaan kaikki albumin biisit. Mukana ovat niin jo vuosikymmeniä ihmisten elämäntarinoissa mukana kulkeneet hitit kuten <i>Puistossa, Milla, Mikan faijan BMW</i> ja <i>Nummela</i> sekä biisit, joita ei ole livenä kuultu vuosiin. Keikkoja varten rakennetaan lavasteet, jotka vievät Nummela-albumin maailmaan. Välispiikeissä Kela on luvannut kertoa tarinoita biisien tiimoilta</p><p>- <i>Nummela oli aikanaan sukupolvia yhdistävää musiikkia. Tekijälle on todella suuri ilo saada huomata, miten tärkeitä Nummelan kappaleet ovat monille olleet, ja miten ne ovat kulkeneet ihmisten elämissä mukana. Keikoilla niiden merkitys konkretisoituu. Tällä kiertueella on tarkoitus palata vuoteen 2001. Siihen hetkeen, jolloin nämä laulut olivat uusia — ja saatoimme itsekin olla hiukan nuorempia,</i> sanoo Anssi Kela.</p><p>Konsertit ovat kaksiosaisia. Väliajan jälkeen kuullaan hittejä Kelan muilta albumeilta.</p><p>Savoy-teatterin konsertin jälkeen Kela soittaa vielä perinteisen joulun välipäivien esiintymisen Tuusulan Krapin pajalla, minkä jälkeen hän jää uransa ensimmäiselle pidemmälle keikkatauolle. Tauon pituus on toistaiseksi avoin.</p><p><b>Nummela</b><br>Anssi Kelan ensimmäinen albumi, Nummela, julkaistiin maaliskuussa 2001. Se debytoi albumilistan sijalla 14, poukkoili monta viikkoa kärkikymmenikössä, kunnes lopulta kesäkuussa, viisitoista viikkoa julkaisunsa jälkeen, nousi Suomen albumilistan ykköseksi. Nummela pysyi listalla lopulta 57 viikkoa, joista se oli ykkösenä 16 viikkoa. Levy on myynyt viisinkertaista platinaa, yhteensä n. 160 000 kappaletta. Sen yhdeksästä kappaleesta nousi neljä suurta hittiä: ensimmäisenä singlenä julkaistu Mikan faijan BMW, Kaksi sisarta, Puistossa sekä nimikappale Nummela.</p><p>Levyn triplaplatinapainoksen kunniaksi marraskuussa 2001 julkaistiin single Milla, josta tulikin Kelan siihen astisen uran suurin hitti. Single julkaistiin sekä irrallisena levynä että kylkiäisenä Nummelan uudessa painoksessa. Millaa pidetäänkin Suomen äänitehistorian myydyimpänä singlenä: sitä myytiin 10 000 kappaletta itsenäisenä singlenä ja lähes 50 000 osana Nummelaa.</p><p>Albumista julkaistiin myös nuottikirja, joka sisälsi studiopäiväkirjan ja lyhyet esseet kappaleista.</p><p>Nummela-albumin hitit soivat yhä radioissa ja pelkästään Spotifyssä ne ovat keränneet liki 40 miljoonaa striimiä. Albumin biisit ovat Anssi Kelan käsialaa, ja hän myös tuotti levyn suurimmilta osin itse.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/97EA348FBE4652EEA2E87648E8957E89/Anssi_Kela_-_Nummela_25-vuotisjuhlakiertue"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Live Nation Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68612/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3txpzdi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1901782,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T06:14:20.697789Z",
                    "last_modified_time": "2026-05-05T06:14:20.697803Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6aab9315-5bdf-4721-91a2-46cc326ad23f.jpg",
                    "name": "",
                    "cropping": "0,214,3197,3411",
                    "photographer_name": "",
                    "alt_text": "Kuvassa Timo Hännikäinen, Patrick O'Rourke, Tiera Laitinen ja Ian Mac Eochagain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1901782/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-23T09:27:54.381702Z",
            "last_modified_time": "2026-05-05T06:14:46.379232Z",
            "date_published": null,
            "start_time": "2026-05-09T10:00:00Z",
            "end_time": "2026-05-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paneelikeskustelu suomen kielen asemasta",
                "sv": "Paneldiskussion om det finska språkets ställning",
                "en": "Panel discussion on the status of the Finnish language"
            },
            "short_description": {
                "fi": "Suomen Sisu -järjestön vuoden 2026 teemana on kansalliskielen suojelu. Paneelikeskustelu suomalaisuuden päivän johdosta suomen kielen asemasta.",
                "sv": "Paneldiskussion om det finska språkets ställning. Evengemanget hålls på finska.",
                "en": "Panel discussion on the status of the Finnish language. The event will be held in Finnish."
            },
            "description": {
                "fi": "<p>La 9.5. klo 13</p><p>Suomen Sisu -järjestön vuoden 2026 teemana on kansalliskielen suojelu ja järjestö kutsuu tulevan suomalaisuuden päivän johdosta koolle paneelikeskustelun suomen kielen asemasta. Sellon kirjaston lavalla kohtaavat neljä kielenkäyttäjää. He lähestyvät suomen kieltä eri näkökulmista, mutta heitä yhdistää arvostus ja rakkaus suomea kohtaan.</p><p><strong>Timo Hännikäinen</strong> on kirjailija ja suomentaja. Hän on Kiuas Kustannuksen kustannustoimittaja, verkkolehti Sarastuksen päätoimittaja sekä Suomen Sisun II varapuheenjohtaja.</p><p><strong>Patrick O'Rourke </strong>on fennougristi. Hänen tutkimusalaansa ovat liivin kieli ja lounaisitämerensuomalaiset kielet, etymologia ja historiallinen sosiolingvistiikka.</p><p><strong>Ian Mac Eochagáin</strong> (/ian makohagon/) on Lohjalla asuva irlantilaissyntinen kääntäjä ja kirjailija. Hänen esikoiskirjansa 101 finglishismiä – eroon tankeroista (Aviador 2025, 3. painos) kertoo, miten ja miksi suomalaiset firmat käyttävät englantia, joka vain vaikuttaa aidolta englannilta, kuten \"take into use\".</p><p><strong>Tiera Laitinen</strong> on avaruusfysiikasta väitellyt filosofian tohtori ja avaruussäätutkimuksen ryhmäpäällikkö. Hän on Suomalaisuuden Liiton puheenjohtaja. Liitto herättää ja vahvistaa kansallista tietoutta ja ajattelutapaa sekä edistää suomalaista ja erityisesti suomenkielistä kulttuuria.</p>",
                "sv": "<p>Paneldiskussion om det finska språkets ställning. Evengemang hålls på finska.</p>",
                "en": "<p>Panel discussion on the status of the Finnish language. The event will be held in Finnish.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "sv": "Akseli-salen",
                "en": "Akseli Hall"
            },
            "provider": {
                "fi": "Suomen Sisu "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3txpzdi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68672",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1901218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T06:13:14.874904Z",
                    "last_modified_time": "2026-05-05T06:13:14.874918Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791533.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1901218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-05T06:13:14.737894Z",
            "last_modified_time": "2026-05-05T06:13:15.111307Z",
            "date_published": null,
            "start_time": "2026-05-31T10:00:00Z",
            "end_time": "2026-05-31T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Stoan kesäbasaari",
                "sv": "Stoas sommarbasar",
                "en": "Stoa’s Summer Bazaar"
            },
            "short_description": {
                "fi": "Tervetuloa juhlimaan kanssamme kesän alkua ja omaa vapaavalintaista teemaasi – oli se sitten koulujen loppuminen, Eid-juhlan päätös tai jotain aivan muuta!",
                "sv": "Välkommen att fira början av sommaren och ett eget valbart tema med oss – oavsett om det handlar om en skolavslutning, Eid-festens avslutning eller något helt annat!",
                "en": "Join us in celebrating the start of summer and your own occasion of choice – whether it's the end of school, the end of Eid or something else entirely!"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlimaan kanssamme kesän alkua ja omaa vapaavalintaista teemaasi – oli se sitten koulujen loppuminen, Eid-juhlan päätös tai jotain aivan muuta!</p><p>Kesäbasaarissa on tekemistä, elämyksiä ja iloista tunnelmaa koko perheelle. Maksuttomissa työpajoissa pääset puhaltamaan jättisaippuakuplia ja askartelemaan persoonallisia rannekoruja. Tapahtumasta löydät myös paikallisia herkkuja myyviä ruokakojuja sekä koru- ja käsityömyyjiä.</p><p>Jos ei sada, nähdään Stoan aukiolla! Sateella tapahtuma järjestetään Stoan aulassa.</p><p><b>Nonstop-työpajat klo 13–16</b></p><p>- Jättisaippuakuplat: työpajassa pääset kokeilemaan, miten puhalletaan valtavia saippuakuplia!</p><p>- Toivomusrannekorut: työpajassa valmistetaan persoonallisia rannekoruja kierrätetyistä sanoma- ja aikakauslehdistä.</p>",
                "sv": "<p>Välkommen att fira början av sommaren och ett eget valbart tema med oss – oavsett om det handlar om en skolavslutning, Eid-festens avslutning eller något helt annat!</p><p>Sommarbasaren bjuder på sysselsättning, upplevelser och glad stämning för hela familjen. I de avgiftsfria verkstäderna kan du blåsa jättesåpbubblor och pyssla personliga armband. På evenemanget finns också matstånd som säljer lokala delikatesser samt smyckes- och hantverksförsäljare.</p><p>Vi ses på Stoaplanen om det inte regnar! Vid regn ordnas evenemanget i Stoas entréhall.</p><p><b>Nonstop-verkstäder kl. 13–16</b></p><p>- Jättesåpbubblor: i verkstaden kan du pröva hur man blåser enorma såpbubblor!</p><p>- Önskearmband: i verkstaden tillverkar man personliga armband av återvunna tidningar och tidskrifter.</p>",
                "en": "<p>Join us in celebrating the start of summer and your own occasion of choice – whether it's the end of school, the end of Eid or something else entirely!</p><p>The Summer Bazaar will feature activities, experiences and fun for the whole family. You can attend free workshops where you can blow giant soap bubbles and make unique bracelets. You will also find food stalls selling local delicacies, as well as jewellery and craft vendors.</p><p>See you in Stoa Square! If it rains, the event will be held in the Stoa lobby.</p><p><b>Nonstop workshops from 13.00 to 16.00</b></p><p>- Giant soap bubbles: learn how to blow giant soap bubbles!</p><p>- Wish bracelets: make your own unique bracelets from recycled newspapers and magazines.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8D91A9A4744DB55B2C0FA71F865891E4/Stoan_kesabasaari_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8D91A9A4744DB55B2C0FA71F865891E4/Stoas_sommarbasar_",
                "en": "http://www.stoa.fi/en/events/event/8D91A9A4744DB55B2C0FA71F865891E4/Stoa_s_Summer_Bazaar_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68672/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7nts5t4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1901783,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T10:46:00.616441Z",
                    "last_modified_time": "2026-05-04T10:46:00.616455Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6cfeaeaf-399d-497f-aca9-23c610a617af.jpg",
                    "name": "Mika Baumeister/ Unsplash",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kaksi mikrofonia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1901783/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T05:57:59.806251Z",
            "last_modified_time": "2026-05-05T05:57:59.806265Z",
            "date_published": null,
            "start_time": "2026-05-16T09:30:00Z",
            "end_time": "2026-05-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Toivon aalloilla -keskustelutilaisuus"
            },
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan Toivon aalloilla -keskustelutilaisuutta Salonkiin la 16.5. klo 12:30 alkaen."
            },
            "description": {
                "fi": "<p><strong>12.30 Kehitysyhteistyö muutoksessa, Lippulaivan kirjasto, 3. krs</strong></p><p>Millaista kehitysyhteistyötä Suomen Lähetysseurassa tehdään? Mitä kehitysyhteistyöhön kuuluu? Tervetuloa kuulemaan ja keskustelemaan työn saavutuksista sekä haasteista muuttuvassa maailmassa. Paikalla on Lähetysseuran työntekijöitä ja yhteistyökumppanimme Kolumbiasta.&nbsp;</p><p>&nbsp;</p><p><strong>14.30 Tarinoiden taistelu – mihin uskoa valheiden aikakaudella?&nbsp;Lippulaivan kirjasto, 3. krs</strong></p><p>Elämme ajassa, jossa erilaiset tarinat taistelevat huomiostamme ja vaikuttavat siihen, mitä pidämme totena. Disinformaatio leviää tutkitun tiedon rinnalla, ja samalla yhteiskunnallinen ilmapiiri kovenee sekä vastakkainasettelu voimistuu. Mistä löytää toivoa ja mikä kaikki lisää arjen vastustuskykyä näille ilmiöille? Näistä teemoista keskustelevat Suomen Lähetysseuran sukupuolten välisen oikeudenmukaisuuden asiantuntija Päivi Linervo sekä Helsingin yliopiston tutkija Paavo Ahonen. Keskustelua luotsaa Espoonlahden seurakunnan kappalainen, dosentti Niko Huttunen.</p><p><br></p><p><strong>16.00 Varautuminen kriisioloissa Suomessa ja maailmalla,&nbsp;Lippulaivan kirjasto, 3. krs</strong></p><p>Kriiseistä ja varautumisesta keskustelemassa ulko- ja turvallisuuspolitiikan asiantuntija Henri Vanhanen ja Suomen Lähetysseuran turvallisuuspäällikkö Lasse Lampinen. Paneelikeskustelussa mukana myös Espoonlahden seurakunnan kirkkoherra Jukka Lehti. Juonto Heta Kallioranta.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7nts5t4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68583",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-29T10:13:06.352425Z",
                    "last_modified_time": "2026-04-29T10:13:06.352443Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774157.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-29T10:13:06.209661Z",
            "last_modified_time": "2026-05-04T12:14:04.660440Z",
            "date_published": null,
            "start_time": "2026-05-15T13:00:00Z",
            "end_time": "2026-05-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Espan lavan kauden avajaiset – Kajos | Viia | Sounds of South America",
                "sv": "Säsongsöppning på Esplanadestraden – Kajos | Viia | Sounds of South America",
                "en": "Season opening ceremony at Espa Stage – Kajos | Viia | Sounds of South America"
            },
            "short_description": {
                "fi": "Espan lavan avajaiset kajahtavat käyntiin monipuolisella musiikilla. Tahdit liikkuvat nykykansanmusiikista dark-popin melankoliaan ja latinalaisiin rytmeihin!",
                "sv": "Säsongen på Esplanadestraden inleds med mångsidig musik. Rytmerna varierar från modern folkmusik till melankolisk dark-pop och latinamerikanska melodier!",
                "en": "The opening ceremony of the Espa stage will kick off with a great selection of music."
            },
            "description": {
                "fi": "<p>Espan lavan avajaiset kajahtavat käyntiin monipuolisella musiikilla. Tahdit liikkuvat nykykansanmusiikista dark-popin melankoliaan ja latinalaisiin rytmeihin!</p><p>Espan lavan avajaiset käynnistyvät klo 16 Kajoksen myyttisellä ja voimallisella nykykansanmusiikilla. Klo 17 lavan valtaa Viian sinemaattinen dark-pop, ja klo 18 juhlan huipentaa Sounds of South American rytmikäs latinalainen musiikkibuffet.</p><p><b>Päivän ohjelma</b><br>klo 16 Kajos<br>klo 17 Viia<br>klo 18 Sounds of South America</p><p><b>Kajos</b><br>Kajos on väkevä nykykansanmusiikkiyhtye, jonka musiikki innoittuu suomalais-karjalaisesta loitsuperinteestä ja jykevästä luonnonvoimasta. Kajoksen musiikissa alkuvoimainen ja akrobaattinen äänenkäyttö, koskettava sellonsoitto, jylhät biitit ja elokuvalliset äänimaisemat kietovat kuulijan myyttiseen, ajattomaan todellisuuteen. Kajoksen livekokoonpanon muodostavat laulaja-säveltäjä Sini Koskelainen, sellisti Susanna Syrjäläinen ja lyömäsoittaja Oskari Lehtonen.</p><p><b>Viia</b><br>Viia on porilaislähtöinen laulaja-lauluntekijä, joka kirjoittaa englanninkielistä, sinemaattista dark-poppia rockahtavalla vivahteella. Hänen musiikilleen on tunnusomaista tarttuvat melodiat, vahvat kertosäkeet ja voimaannuttava melankolisuus. Viian samaistuttavat lyriikat pureutuvat ihmissuhteiden kipukohtiin ja arkisiin tabuihin – teemoihin, joihin kuulija voi uppoutua.<br>Kaudella 2025 Viia ihastutti Espan lavan Open Stage -sarjassa, ja nyt pääsee hurmaamaan kauden avajaisissa!</p><p><b>Sounds of South America</b><br>Argentiinalaisen Leandro Rocon johtama Sounds of South America esittää perinteistä musiikkia eri puolilta espanjankielistä maailmaa. Nelihenkinen yhtye esittää mm. kolumbialaista cumbiaa, espanjalaista flamencoa sekä uruguaylaista candombea, ja tuo latinalaisen musiikkibuffetinsa nyt Espan lavalle!<br>Leandro Roco - kitara, laulu<br>Fabio de Oliveira - kitara, taustalaulu<br>Humphrey Mubba - basso, taustalaulu<br>Jani Lehtioksa - lyömäsoittimet, taustalaulu</p>",
                "sv": "<p>Säsongen på Esplanadestraden inleds med mångsidig musik. Rytmerna varierar från modern folkmusik till melankolisk dark-pop och latinamerikanska melodier!</p><p>Säsongsöppningen på Esplanadestraden inleds kl. 16 med Kajos mytiska och kraftfulla moderna folkmusik. Kl. 17 tar Viia över scenen med sin cinematiska dark-pop, och kl. 18 kulminerar festen i Sounds of South Americas rytmiska latinamerikanska musikbuffé.</p><p><b>Dagens program</b><br>kl. 16 Kajos<br>kl. 17 Viia<br>kl. 18 Sounds of South America</p><p><b>Kajos</b><br>Kajos spelar kraftfull, modern folkmusik som inspireras av den finländsk-karelska besvärjelsetraditionen och grov naturkraft. Åhöraren lindas in i en mytisk, tidlös verklighet av den akrobatiska röstbehandlingen av primitiv kraft, det gripande cellospelet, de grova rytmerna och de cinematiska ljudlandskapen i Kajos musik. Kajos sammansättning för liveuppträdanden består av sångaren och tonsättaren Sini Koskelainen, cellisten Susanna Syrjäläinen och slagverkaren Oskari Lehtonen.</p><p><b>Viia</b><br>Viia är en sångare och låtskrivare från Björneborg som skriver cinematisk dark-pop på engelska, med en rocknyans. Hennes musik kännetecknas av smittande melodier, kraftfulla refränger och kraftgivande melankoli. Viias texter är lätta att identifiera sig med och de biter sig fast i människorelationers smärtpunkter och vardagliga tabun – teman som åhöraren kan fördjupa sig i.<br>Under säsongen 2025 charmade Viia i Esplanadestradens Open Stage-serie, och får nu tjusa publiken vid säsongsöppningen!</p><p><b>Sounds of South America</b><br>Sounds of South America, som leds av argentinska Leandro Roco, framför traditionell musik från olika håll i den spanskspråkiga världen. Bandet med fyra medlemmar framför bland annat colombiansk cumbia, spansk flamenco samt uruguayansk candombe. Nu tar bandet sin latinamerikanska musikbuffé till Esplanadestraden!</p><p>Leandro Roco – gitarr, sång<br>Fabio de Oliveira – gitarr, bakgrundssång<br>Humphrey Mubba – bas, bakgrundssång<br>Jani Lehtioksa – slagverk, bakgrundssång</p>",
                "en": "<p>The opening ceremony of the Espa stage will kick off with a great selection of music.</p><p>The beats range from contemporary folk music to the melancholy of dark-pop and Latin rhythms!</p><p>The opening ceremony of the Espa stage kicks off at 16.00 with the mythical and powerful contemporary folk music of Kajos. At 17.00 Viia's cinematic dark-pop will take over the stage, and at 18.00 the party will be topped off by Sounds of South America and their rhythm-rich buffet of Latin beats.</p><p><b>Programme of the day</b><br>at 16.00 Kajos<br>at 17.00 Viia<br>at 18.00 Sounds of South America</p><p><b>Kajos</b><br>Kajos is a powerful contemporary folk music band performing music inspired by the Finnish-Karelian incantation traditions and the powerful forces of nature. The primal and acrobatic use of sound in Kajos’s music, combined with the touching cello, rugged beats and cinematic soundscapes, envelop their audiences in a mythical, timeless reality. The live ensemble of Kajos consists of singer-composer Sini Koskelainen, cellist Susanna Syrjäläinen and percussionist Oskari Lehtonen.</p><p><b>Viia</b><br>Viia is a Pori-based singer-songwriter who writes cinematic dark-pop in English and with a rocking twist. Her music is characterised by catchy melodies, strong choruses and an empowering sense of melancholy. Viia's relatable lyrics tackle the painful parts of relationships and everyday taboos – themes that really draw the listener in.</p><p>During the 2025 Espa stage season, Viia wowed audiences in the Open Stage series, and now she's ready to bring her charm to the new season’s opening ceremony!</p><p><b>Sounds of South America</b><br>Sounds of South America, led by Argentinian Leandro Roco, performs traditional music from all over the Spanish-speaking world. The four-piece band performs Colombian cumbia, Spanish flamenco and Uruguayan candombe and many other styles, and will now bring their buffet of Latin music to the Espa stage!</p><p>Leandro Roco - guitar, vocals<br>Fabio de Oliveira - guitar, backing vocals<br>Humphrey Mubba - bass, backing vocals<br>Jani Lehtioksa - percussions, backing vocals</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6DBD9876C7E674E0FDA2FCD13501420E/Espan_lavan_kauden_avajaiset",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6DBD9876C7E674E0FDA2FCD13501420E/Sasongsoppning_pa_Esplanadestraden",
                "en": "http://www.espanlava.fi/en/events/event/6DBD9876C7E674E0FDA2FCD13501420E/Season_opening_ceremony_at_Espa_Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68583/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67421",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537103/",
                        "sv": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537103/",
                        "en": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537103/"
                    },
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1823470,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-17T08:13:24.468915Z",
                    "last_modified_time": "2026-04-17T08:13:24.468929Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781122.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-17T08:13:24.374497Z",
            "last_modified_time": "2026-05-04T12:14:03.420884Z",
            "date_published": null,
            "start_time": "2026-05-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "sv": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "en": "Paholainen pukeutuu Pradaan 2 – Kino Helios"
            },
            "short_description": {
                "fi": "Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus."
            },
            "description": {
                "fi": "<p>Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus.</p><p>Mukana ovat kaikki alkuperäiset päänäyttelijät sekä ohjaaja David Frankel ja käsikirjoittaja Aline Brosh McKenna, ja heidän lisäkseen esiin marssitetaan kokonainen liuta uusia hahmoja mukaan lukien Kenneth Branagh, Simone Ashley, Justin Theroux, Lucy Liu, Patrick Brammall, Caleb Hearon, Helen J. Shen, Pauline Chalamet, B.J. Novak ja Conrad Ricamora. Myös Tracie Thoms ja Tibor Feldman palaavat ensimmäisen elokuvan Lilyn ja Irvin rooleihinsa.</p><p>Elokuvan Paholainen pukeutuu Pradaan 2 on tuottanut Wendy Finerman sekä vastaavina tuottajina toimineet Michael Bederman, Karen Rosenfelt ja McKenna.</p><p>Elokuva saa ensi-iltansa vain elokuvateattereissa 1. toukokuuta 2026.</p><p>Ikäraja: 7<br>Kesto: 120 min<br>Ensi-ilta: 01.05.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/55F326C195CA859F3506B1F41B26D93B/Paholainen_pukeutuu_Pradaan_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/55F326C195CA859F3506B1F41B26D93B/Paholainen_pukeutuu_Pradaan_2",
                "en": "http://www.malmitalo.fi/en/events/event/55F326C195CA859F3506B1F41B26D93B/Paholainen_pukeutuu_Pradaan_2"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67421/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67415",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537101/",
                        "sv": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537101/",
                        "en": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537101/"
                    },
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-18T14:13:16.383907Z",
                    "last_modified_time": "2026-04-18T14:13:16.383924Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781115.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-17T08:13:23.149287Z",
            "last_modified_time": "2026-05-04T12:14:01.466798Z",
            "date_published": null,
            "start_time": "2026-05-06T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "sv": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "en": "Paholainen pukeutuu Pradaan 2 – Kino Helios"
            },
            "short_description": {
                "fi": "Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus."
            },
            "description": {
                "fi": "<p>Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus.</p><p>Mukana ovat kaikki alkuperäiset päänäyttelijät sekä ohjaaja David Frankel ja käsikirjoittaja Aline Brosh McKenna, ja heidän lisäkseen esiin marssitetaan kokonainen liuta uusia hahmoja mukaan lukien Kenneth Branagh, Simone Ashley, Justin Theroux, Lucy Liu, Patrick Brammall, Caleb Hearon, Helen J. Shen, Pauline Chalamet, B.J. Novak ja Conrad Ricamora. Myös Tracie Thoms ja Tibor Feldman palaavat ensimmäisen elokuvan Lilyn ja Irvin rooleihinsa.</p><p>Elokuvan Paholainen pukeutuu Pradaan 2 on tuottanut Wendy Finerman sekä vastaavina tuottajina toimineet Michael Bederman, Karen Rosenfelt ja McKenna.</p><p>Elokuva saa ensi-iltansa vain elokuvateattereissa 1. toukokuuta 2026.</p><p>Ikäraja: 7<br>Kesto: 120 min<br>Ensi-ilta: 01.05.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7CED641BF830F8E591BD6806C15C4D28/Paholainen_pukeutuu_Pradaan_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7CED641BF830F8E591BD6806C15C4D28/Paholainen_pukeutuu_Pradaan_2",
                "en": "http://www.malmitalo.fi/en/events/event/7CED641BF830F8E591BD6806C15C4D28/Paholainen_pukeutuu_Pradaan_2"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67415/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67414",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537100/",
                        "sv": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537100/",
                        "en": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537100/"
                    },
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1823366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-17T07:13:26.556124Z",
                    "last_modified_time": "2026-04-17T07:13:26.556140Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781113.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-17T07:13:26.413584Z",
            "last_modified_time": "2026-05-04T12:14:00.425114Z",
            "date_published": null,
            "start_time": "2026-05-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "sv": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "en": "Paholainen pukeutuu Pradaan 2 – Kino Helios"
            },
            "short_description": {
                "fi": "Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus."
            },
            "description": {
                "fi": "<p>Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus.</p><p>Mukana ovat kaikki alkuperäiset päänäyttelijät sekä ohjaaja David Frankel ja käsikirjoittaja Aline Brosh McKenna, ja heidän lisäkseen esiin marssitetaan kokonainen liuta uusia hahmoja mukaan lukien Kenneth Branagh, Simone Ashley, Justin Theroux, Lucy Liu, Patrick Brammall, Caleb Hearon, Helen J. Shen, Pauline Chalamet, B.J. Novak ja Conrad Ricamora. Myös Tracie Thoms ja Tibor Feldman palaavat ensimmäisen elokuvan Lilyn ja Irvin rooleihinsa.</p><p>Elokuvan Paholainen pukeutuu Pradaan 2 on tuottanut Wendy Finerman sekä vastaavina tuottajina toimineet Michael Bederman, Karen Rosenfelt ja McKenna.</p><p>Elokuva saa ensi-iltansa vain elokuvateattereissa 1. toukokuuta 2026.</p><p>Ikäraja: 7<br>Kesto: 120 min<br>Ensi-ilta: 01.05.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/799C0E06BFBF140BB486DC485A9CF73D/Paholainen_pukeutuu_Pradaan_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/799C0E06BFBF140BB486DC485A9CF73D/Paholainen_pukeutuu_Pradaan_2",
                "en": "http://www.malmitalo.fi/en/events/event/799C0E06BFBF140BB486DC485A9CF73D/Paholainen_pukeutuu_Pradaan_2"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c8b51f00-9191-4fa8-a87e-29f059eae59f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50634/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Millan_kakkukahvit4272848443"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "created_time": "2026-05-04T11:55:44.145008Z",
            "last_modified_time": "2026-05-04T11:55:44.145031Z",
            "date_published": "2026-05-04T11:55:17Z",
            "start_time": "2026-05-25T14:00:00Z",
            "end_time": "2026-05-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Millan kakkukahvit"
            },
            "short_description": {
                "fi": "Kahvia ja kakkua Millan uudessa näyttelyssä!"
            },
            "description": {
                "fi": "<div><p>Tervetuloa juomaan kakkukahveja Millan näyttelyyn!</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Millan näyttelykerho ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c8b51f00-9191-4fa8-a87e-29f059eae59f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7f4vrpi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1833217,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-04T11:40:22.902651Z",
                    "last_modified_time": "2026-05-04T11:40:22.902666Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2d8ad196-a32a-4f89-9b82-15781c01c87d.jpg",
                    "name": "",
                    "cropping": "0,424,2047,2470",
                    "photographer_name": "Tyko Lundberg",
                    "alt_text": "Tussilla piirretty fantasiahahmo.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1833217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-04T11:40:48.618184Z",
            "last_modified_time": "2026-05-04T11:40:48.618200Z",
            "date_published": "2026-05-04T11:35:00Z",
            "start_time": "2026-05-05T05:00:00Z",
            "end_time": "2026-05-29T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Näyttely: Monster Mash ",
                "sv": "Utställning: Monster Mash ",
                "en": "Exhibition: Monster Mash "
            },
            "short_description": {
                "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.",
                "sv": "Välkommen att besöka utställning i Hagalunds bibliotek.",
                "en": "Welcome to visit an art exhibition in Tapiola Library."
            },
            "description": {
                "fi": "<p>Fantasian maailmaan sijoittuvat tussityöt kumpuavat omasta intohimostani piirtämiseen ja fantasian tarjoamista rajattomista mahdollisuuksista. Työt eivät muodosta yhtenäistä kokonaisuutta, vaan ovat itsenäisiä teoksia.</p><p>Luonnostelen ideani ensin lyijykynällä, jonka jälkeen viimeistelen ne tusseja käyttäen. Joskus kuvat syntyvät nopeasti, joskus aihetta joutuu työstämään kauankin.</p><p>Haluan näyttelyn kautta nostaa esille käsin piirretyn työn aidon tunnelman verrattuna digitaalisesti tehtyihin kuvituksiin. Motivaationa käsin tehtyjen töiden esittelyyn toimivat myös viime vuosina valitettavan paljon lisääntyneet tekoälyllä luodut kuvat, jotka vesittävät digitaalisen taiteen mainetta.&nbsp;</p><p>Toivon, että kävijä löytää iloa näyttelyn töistä!&nbsp;</p><p>Tyko Lundberg</p><p>lundbergtyko@gmail.com</p>",
                "sv": "<p>Välkommen att besöka utställning i Hagalunds bibliotek.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Näyttelyparvi",
                "sv": "Utställningsloftet",
                "en": "Exhibition loft"
            },
            "provider": {
                "fi": "Tyko Lundberg",
                "sv": "Tyko Lundberg",
                "en": "Tyko Lundberg"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7f4vrpi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7f4vsjy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1833218,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-04T11:25:59.416726Z",
                    "last_modified_time": "2026-05-04T11:25:59.416741Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2c9c4d87-9577-4159-b6ea-6243c89d3b6d.jpg",
                    "name": "",
                    "cropping": "648,0,4536,3888",
                    "photographer_name": "Hanna-Kaisa Hyvärinen",
                    "alt_text": "Käsin sidottuja kirjoja, joiden kannessa on sorsalintuja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1833218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-04T11:27:16.960322Z",
            "last_modified_time": "2026-05-04T11:27:16.960339Z",
            "date_published": "2026-05-04T11:25:00Z",
            "start_time": "2026-05-05T05:00:00Z",
            "end_time": "2026-05-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Näyttely: Pikkukirjojen maailmat",
                "sv": "Utställning: Pikkukirjojen maailmat",
                "en": "Art exhibition: Pikkukirjojen maailmat"
            },
            "short_description": {
                "fi": "Tervetuloa vierailemaan taidenäyttelyssä Tapiolan kirjastossa.",
                "sv": "Välkommen att besöka  utställning i Hagalund biblioteken.",
                "en": "Welcome to an art exhibition  in Tapiola Library."
            },
            "description": {
                "fi": "<p><strong>Tapiolan kirjaston vitriini 5.5.-30.5. 2026.</strong></p><p>Kirjansidonta on tuonut iloa elämääni jo usean vuoden ajan. Harrastus alkoi työväenopistojen kursseilta. Viime vuosina pienet kirjat ovat alkaneet viehättää. Monet kirjansidonnan tekniikat soveltuvat hyvin niihinkin ja tarvikkeet ja välineet löytyvät askartelua harrastavan kotoa.</p><p>Pikkuhiljaa kasvoi halu toteuttaa kokonaisuuksia, jotka koostuisivat useista pienistä kirjoista. Sain tähän näyttelyyn valmiiksi kolme työtä, joissa kussakin käytin erityyppistä sidontatekniikkaa. Kokonaisuuksien aiheet muotoutuivat tehdessä. Valittu tekniikka ja käytettävissä olevat materiaalit ohjasivat osaltaan ratkaisuja. </p><p>Toivon töideni ilahduttavan monia</p><p>Hanna-Kaisa</p>",
                "sv": "<p>Välkommen att besöka utställning i Hagalunds bibliotek.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Welcome to visit the exhibition at Tapiola Library.</p><p>The exhibition is open during the library’s opening hours.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Näyttelyvitriini",
                "sv": "Utställningsvitrin",
                "en": "Display cabinet"
            },
            "provider": {
                "fi": "Hanna-Kaisa",
                "sv": "Hanna-Kaisa",
                "en": "Hanna-Kaisa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7f4vsjy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnn6ceeyi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6oy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6ze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7y4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cea3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceb4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cechy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cecsy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cec5q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cedii/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceduy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceea4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceelu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbnsq53e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150450,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T07:59:13.420035Z",
                    "last_modified_time": "2024-01-17T07:59:13.420055Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "shakkinappuloita pelilaudalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-02T12:04:10.465231Z",
            "last_modified_time": "2026-05-04T09:54:55.331322Z",
            "date_published": null,
            "start_time": "2026-05-07T14:00:00Z",
            "end_time": "2026-05-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Shakkiklubi",
                "sv": "Schackklubb ",
                "en": "Chess Club"
            },
            "short_description": {
                "fi": "Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. ",
                "sv": "Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.",
                "en": "The club is for players who already know the basics. Guidance available."
            },
            "description": {
                "fi": "<p>Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. Tervetuloa!</p>",
                "sv": "<p><br></p><p>Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.</p>",
                "en": "<p>The club is for players who already know the basics. Guidance available.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Pointti",
                "sv": "Pointti",
                "en": "Pointti"
            },
            "provider": {
                "fi": "Sellon kirjasto",
                "sv": "Sellobiblioteket",
                "en": "Sello Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceeyi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68278",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1721680,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T12:13:56.335869Z",
                    "last_modified_time": "2026-03-24T12:13:56.335890Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786628.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721680/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T12:13:56.219991Z",
            "last_modified_time": "2026-05-04T08:14:04.019825Z",
            "date_published": null,
            "start_time": "2026-08-03T07:00:00Z",
            "end_time": "2026-08-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten kesätaidekerho alakoululaisille – klo 10–14",
                "sv": "Sommarkonstklubb för barn för barn i årskurs 1–6 – klo 10–14",
                "en": "Children’s summer art club for primary school children – klo 10–14"
            },
            "short_description": {
                "fi": "Kaipaatko luovaa tekemistä kesälomalla? Tule Kanneltalon maksuttomaan kesätaidekerhoon!",
                "sv": "Letar du efter något kreativt att göra under sommarlovet? Kom med på Gamlasgårdens avgiftsfria sommarkonstklubb!",
                "en": "Looking for something creative to do during your summer break? Why not join Kanneltalo’s free-of-charge summer art club!"
            },
            "description": {
                "fi": "<p>Kaipaatko luovaa tekemistä kesälomalla? Tule Kanneltalon maksuttomaan kesätaidekerhoon!</p><p>Tervetuloa Kanneltalon maksuttomaan kesätaidekerhoon. Teemat ja tekniikat vaihtelevat kerrasta toiseen. Luvassa on ötököiden tarkkailua ja piirtämistä, vahaliitu- ja tussimaalauskokeiluja sekä ikkunakoristeen ja muovailuvahafantasian tekemistä. Opit myös yksinkertaisen japanilaisen letittämistekniikan.</p><p>Tarjolla on myös pientä välipalaa taidekerhoon osallistuville.</p><p>Taidekerhon non-stop-toiminta on suunniteltu kesälomalla oleville alakouluikäisille, nuoremmat lapset ovat tervetulleita yhdessä aikuisen kanssa.</p><p><b>KESÄTAIDEKERHON VIIKKO-OHJELMA:</b></p><p><b>ma 3.8. Kummallinen kollaasi!</b><br>Leikataan kierrätyskuvakirjoista ja -lehdistä kuvia, ja niitä yhdistämällä luodaan absurdeja ja hauskoja teoksia.</p><p><b>ti 4.8. Mininuket</b><br>Askarellaan uudet ystävät, jotka mahtuvat taskuun! Käytämme puutikkuja ja lankoja.</p><p><b>ke 5.8. Kultainen mosaiikk</b><br>Kierrätysaarteista sommitellaan pienikokoinen mosaiikki. Käytämme kultaista liimaa!</p><p><b>to 6.8. Sabluuna ja tuputus</b><br>Luodaan omat sabluunat ja niiden avulla koristellaan pieni kangaskassi maalia tuputtamalla.</p><p><b>pe 7.8. Kukkien muotokuva</b><br>Piirretään ja maalataan oikeita kukkia hienoja Inktense-kyniä käyttäen.</p><p>Ohjaaja: kuvataiteilija Chloé Mahy-Hulkko<br>Ajankohta: ma-pe 3.–7.8. klo 10–14<br>Paikka: Kannelmäen kirjaston Tempo<br>Opetuskielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>",
                "sv": "<p>Letar du efter något kreativt att göra under sommarlovet? Kom med på Gamlasgårdens avgiftsfria sommarkonstklubb!</p><p>Välkommen på Gamlasgårdens avgiftsfria sommarkonstklubb. Teman och tekniker varierar från gång till gång. Du får studera och teckna småkryp, prova på att måla med vaxkritor och tusch samt skapa fönsterdekorationer och modellerafantasier. Du får också lära dig en enkel japansk flätteknik.<br>Det bjuds också på ett litet mellanmål för alla som deltar i konstklubben.\u2028 <br>Konstklubbens non-stop-verksamhet har planerats för elever i årskurs 1–6 som är på sommarlov, yngre barn är välkomna tillsammans med en vuxen.</p><p><b>SOMMARKONSTKLUBBENS VECKOPROGRAM:</b><br><b>mån 3.8 Ett konstigt collage!</b><br>Vi klipper ut bilder ur gamla bilderböcker och tidningar och skapar absurda och roliga verk med dem.</p><p><b>tis 4.8 Minidockor</b><br>Vi pysslar nya vänner som får plats i fickan! Vi använder träpinnar och garn.</p><p><b>ons 5.8. Gyllene mosaik</b><br>Vi skapar en liten mosaik av återvunna skatter. Vi använder gyllene lim!</p><p><b>tor 6.8 Schablon och stöppling</b><br>Vi skapar egna schabloner och använder dem för att dekorera en liten tygkasse genom att dutta färg.</p><p><b>fre 7.8 Blomsterporträtt</b><br>Vi tecknar och målar riktiga blommor med fina Inktense-pennor.</p><p>Ledare: bildkonstnären Chloé Mahy-Hulkko<br>Tid: mån–fre 3–7.8 kl. 10–14<br>Plats: Tempo i Gamlas bibliotek<br>Undervisningsspråk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>",
                "en": "<p>Looking for something creative to do during your summer break? Why not join Kanneltalo’s free-of-charge summer art club!</p><p>Välkommen på Gamlasgårdens avgiftsfria sommarkonstklubb. Teman och tekniker varierar från gång till gång. Du får studera och teckna småkryp, prova på att måla med vaxkritor och tusch samt skapa fönsterdekorationer och modellerafantasier. Du får också lära dig en enkel japansk flätteknik.<br>Det bjuds också på ett litet mellanmål för alla som deltar i konstklubben.\u2028 <br>Konstklubbens non-stop-verksamhet har planerats för elever i årskurs 1–6 som är på sommarlov, yngre barn är välkomna tillsammans med en vuxen.</p><p><b>SOMMARKONSTKLUBBENS VECKOPROGRAM:</b><br><b>mån 3.8 Ett konstigt collage!</b><br>Vi klipper ut bilder ur gamla bilderböcker och tidningar och skapar absurda och roliga verk med dem.</p><p><b>tis 4.8 Minidockor</b><br>Vi pysslar nya vänner som får plats i fickan! Vi använder träpinnar och garn.</p><p><b>ons 5.8. Gyllene mosaik</b><br>Vi skapar en liten mosaik av återvunna skatter. Vi använder gyllene lim!</p><p><b>tor 6.8 Schablon och stöppling</b><br>Vi skapar egna schabloner och använder dem för att dekorera en liten tygkasse genom att dutta färg.</p><p><b>fre 7.8 Blomsterporträtt</b><br>Vi tecknar och målar riktiga blommor med fina Inktense-pennor.</p><p>Ledare: bildkonstnären Chloé Mahy-Hulkko<br>Tid: mån–fre 3–7.8 kl. 10–14<br>Plats: Tempo i Gamlas bibliotek<br>Undervisningsspråk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A7A5722294361315EA969314470F8B7D/Lasten_kesataidekerho_alakoululaisille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A7A5722294361315EA969314470F8B7D/Sommarkonstklubb_for_barn_for_barn_i_arskurs_1_6",
                "en": "http://www.kanneltalo.fi/en/events/event/A7A5722294361315EA969314470F8B7D/Children_s_summer_art_club_for_primary_school_children"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68278/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7efxw4q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824301,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T07:45:26.625348Z",
                    "last_modified_time": "2026-05-04T07:45:26.625361Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/81527100-e0a3-4563-8e79-5356183ef7b6.png",
                    "name": "",
                    "cropping": "270,0,809,539",
                    "photographer_name": "",
                    "alt_text": "Kuva valtiotieteilijä Katalin Miklóssystä ja maisema Unkarista.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-05-04T07:54:14.685227Z",
            "last_modified_time": "2026-05-04T07:54:14.685244Z",
            "date_published": null,
            "start_time": "2026-05-27T14:00:00Z",
            "end_time": "2026-05-27T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Miten korjataan oikeusvaltio Unkarissa? ",
                "sv": "Hur kan rättsstaten återställas i Ungern?",
                "en": "How can the rule of law be restored in Hungary?"
            },
            "short_description": {
                "fi": "Tulevaisuuden näkymät ja haasteet",
                "sv": "\nFramtidsutsikter och utmaningar",
                "en": "Future prospects and challenges"
            },
            "description": {
                "fi": "<p>Ajankohtaisesta aiheesta on meille kertomassa valtiotieteilijä Katalin Miklóssy</p><p>Katalin Miklóssy on tutkinut poliittista historiaa ja Itä-Eurooppaa. Hänen erikoistumisalueinaan ovat olleet varsinkin kilpailun ja autoritaaristen järjestelmien muutosten tutkimukset etenkin</p><p>Visegrád-ryhmän maissa ja Kaakkois-Euroopassa.</p>",
                "sv": "<p>Statsvetaren Katalin Miklóssy kommer att berätta för oss om detta aktuella ämne. Katalin Miklóssy har forskat i politisk historia och Östeuropa. Hennes specialområden omfattar särskilt studier av konkurrens och förändringar i auktoritära system, särskilt i Visegrád‑länderna och i Sydösteuropa.</p>",
                "en": "<p>We will hear about this timely topic from political scientist Katalin Miklóssy. Katalin Miklóssy has researched political history and Eastern Europe. Her areas of expertise include studies on competition and changes in authoritarian systems, especially in the Visegrád countries and in Southeast Europe.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": ":spoon eläkeläisten keskusliitto",
                "sv": "Centralförbundet för pensionärer i Esbo",
                "en": "Central union for pensioners in Espoo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7efxw4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7efxxzy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824302,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T07:30:06.852349Z",
                    "last_modified_time": "2026-05-04T07:30:06.852371Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f17b9359-d1a5-4531-937a-b146f12d7647.png",
                    "name": "",
                    "cropping": "42,0,470,429",
                    "photographer_name": "",
                    "alt_text": "Piirros kuva kahdesta lapsesta harastamassa capoeiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824302/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-05-04T07:37:06.694818Z",
            "last_modified_time": "2026-05-04T07:37:06.694836Z",
            "date_published": "2026-05-04T07:40:00Z",
            "start_time": "2026-05-09T11:00:00Z",
            "end_time": "2026-05-09T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Capoeira -työpaja lapsille",
                "sv": "Capoeira Workshop för barn",
                "en": "Capoeira Workshop for kids"
            },
            "short_description": {
                "fi": "Capoeira -työpaja lapsille",
                "sv": "Capoeira Workshop för barn",
                "en": "Capoeira Workshop for kids"
            },
            "description": {
                "fi": "<p>Lasten maksuton capoeira työpaja, missä lapset saavat kokeilla capoeiraa, soittaa, ja nauttia yhdessäolosta.</p><p>#helloespoo</p>",
                "sv": "<p>En kostnadsfri capoeira‑workshop för barn, där de får prova på capoeira, spela musik och njuta av att vara tillsammans.</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>A free capoeira workshop for children, where they can try capoeira, play music and enjoy being together.</p><p><br></p><p>#helloespoo</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry",
                "sv": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry",
                "en": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7efxxzy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}