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=27
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 22739,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=28",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=26"
    },
    "data": [
        {
            "id": "espoo_le:agpe7jefie",
            "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: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/yso:p10727/?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: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:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?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": 2212521,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-22T11:43:32.771529Z",
                    "last_modified_time": "2026-05-22T11:43:32.771541Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d9cc918c-238f-46b9-b6e1-b8d4b409c603.png",
                    "name": "",
                    "cropping": "0,0,980,980",
                    "photographer_name": "",
                    "alt_text": "kuvassa kansanedustajat Jarno Limnelle ja Mia Laiho, sekä tapahtuman ajankohta tekstinä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2212521/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-22T11:48:42.740427Z",
            "last_modified_time": "2026-05-22T11:48:42.740439Z",
            "date_published": null,
            "start_time": "2026-05-28T15:00:00Z",
            "end_time": "2026-05-28T16: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": "Ajankohtainen turvallisuusilta",
                "sv": "Aktuell säkerhetskväll (På Finska) ",
                "en": "Security Evening (in Finnish)"
            },
            "short_description": {
                "fi": "Kokoomuksen järjestämä keskustelutilaisuus",
                "sv": "Diskussionstillfälle ordnat av Samlingspartiet",
                "en": "Discussion event organized by the National Coalition Party"
            },
            "description": {
                "fi": "<p>Kokoomuksen järjestämä keskustelutilaisuus: Ajankohtainen turvallisuusilta, Ison Omenan kirjastossa torstaina 28.5. kello 18-19. Järjestämässä kansanedustajat Jarno Limnell ja Mia laiho. Tilaisuudessa mukana Venäjä-asiantuntija Hanna Smith &amp; pelastusjohtaja Veli-Pekka Ihamäki.</p>",
                "sv": "<p>Diskussionstillfälle ordnat av Samlingspartiet: Aktuell säkerhetskväll, på Iso Omena bibliotek torsdagen den 28 maj kl. 18–19.</p><p>Arrangeras av riksdagsledamöterna Jarno Limnell och Mia Laiho.</p><p>I programmet medverkar Rysslandsexperten Hanna Smith och räddningschef Veli‑Pekka Ihamäki.</p>",
                "en": "<p>Discussion event organized by the National Coalition Party: Current Security Evening, at Iso Omena Library on Thursday 28 May, 18:00–19:00.</p><p>Organized by Members of Parliament Jarno Limnell and Mia Laiho.</p><p>The event features Russia expert Hanna Smith and Rescue Chief Veli‑Pekka Ihamäki.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jefie/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpe7jef24",
            "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:p1808/?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:p4354/?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": 2212522,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-22T11:29:31.926744Z",
                    "last_modified_time": "2026-05-22T11:29:31.926759Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/22dcdbb1-1a60-4bcc-82a5-b012b14c3e2c.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Dan ja Claudia Zanes",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2212522/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-22T11:29:46.116626Z",
            "last_modified_time": "2026-05-22T11:29:46.116639Z",
            "date_published": null,
            "start_time": "2026-08-23T11:00:00Z",
            "end_time": "2026-08-23T12: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": "Dan&Claudia Zanes -  roots-folk-jazz konsertti",
                "sv": "Dan&Claudia Zanes  -roots-folk-jazz konsert",
                "en": "Dan&Claudia Zanes -roots-folk-jazz concert"
            },
            "short_description": {
                "fi": "Grammy palkittu roots-rokkari ja lastenmusiikki legenda Dan Zanes jazz-vokalisti puolisonsa Claudia Zanesin kanssa konsertoivat Sellon kirjastossa.",
                "sv": "Den Grammybelönade rootsrockaren och barnmusiklegenden Dan Zanes uppträder tillsammans med sin fru, jazzsångerskan Claudia Zanes, på Sello-biblioteket.",
                "en": "Grammy Award-winning roots rocker and children’s music legend Dan Zanes, along with his wife, jazz vocalist Claudia Zanes, will perform at the Sello Library."
            },
            "description": {
                "fi": "<p><strong>Grammy palkittu DAN+CLAUDIA ZANES (USA-HTI)</strong></p><p><strong>-Kaikkien ikäpolvien yhteinen elämäniloinen roots-folk-jazz konsertti!&nbsp;</strong></p><p><strong>&nbsp;</strong></p><p><strong>Su 23.8 '26 klo14</strong></p><p><strong>&nbsp;</strong></p><p>Grammy palkittu roots-rokkari ja lastenmusiikki legenda Dan Zanes upean jazz-vokalisti ja musiikkiterapeutti puolisonsa Claudia Zanesin kanssa konsertoivat Suomen ja Baltian kiertueellaan Sellon kirjastossa Espoossa! Luvassa lämminhenkinen iltapäivä täynnä sukupolvirajoja ylittävää jazz mausteista akustista roots-folkkia ja haitilaista yhteisöllistä elämäniloa! Ainutlaatuinen tilaisuus päästä jammailemaan yhdessä kaiken ikäisessä seurassa ja kansainvälisten huippumuusikoiden kanssa roots, folk ja jazz klassikoita ja mukaansatempaavia originaaleja!</p><p>&nbsp;</p><p>Dan on pitkän uransa aikana tullut tunnetuksi INXS ja ZZ Topin kanssa kiertäneen The Del Fuegos bändin lisäksi modernin amerikkalaisen koko perheen musiikin pioneerina, kiertäen ympäri maailmaa monikulttuurisen “Dan Zanes and the Friends” kokoonpanon kanssa, ja työskennellen yhdessä mm. Lou Reedin, Nick Caven, Suzanne Vegan, Sheryl Crown, Angelique Kidjon ja Grateful Deadin Bob Weirin ja monien muiden musiikki maailman huippunimien kanssa. Musiikin lisäksi Dan on aktiivinen tasa-arvon ja sosiaalisen oikeudenmukaisuuden puolestapuhuja, ja toimii monessa eri yhteisöllisyyttä edistävässä anti-rastisisessa järjestössä.&nbsp;</p><p>&nbsp;</p><p>Claudialla on juuret syvällä haitilaisessa perinteessä, josta nousee hänen ihana kykynsä nähdä musiikki kaikille kuuluvana luonnollisena ilmaisutapana. Tämä mutkaton asenne saa musiikin virtaamaan hänen lävitseen vapaana ja valloittavan tarttuvana, esiintyy hän sitten isoilla jazz-festivaali lavoilla ympäri maailmaa, tai sairaaloissa tai kouluissa terapeutin roolissa. Hän on leikkisä improvisoija, jonka kaunis ääni ja hurmaava energia tuntuu kumpuavan sielun syvyyksistä asti.</p><p>&nbsp;</p><p>Pariskunta on tehnyt musiikkia yhdessä siitä päivästä lähtien, kun he tapasivat toisensa vuonna 2016, omistautuen yhdistämään ja voimaannuttamaan ihmisiä ympäri maailmaa musiikin välityksellä. Dan ja Claudia tekevät työtä myös aistiystävällisten musiikkielämysten puolesta. Konsertteihin ovat erityisen tervetulleita myös erityisryhmiin kuuluvat lapset ja aikuiset.</p><p>&nbsp;</p><p>Vapaa pääsy. Konserttia tukee Espoon kaupungin kulttuuritoimi.</p><p>&nbsp;</p><p>www.danandclaudia.com</p>",
                "sv": "<p><strong>Grammy-belönade DAN+CLAUDIA ZANES (USA-HTI)</strong></p><p><br></p><p><strong>– En livsbejakande roots-folk-jazzkonsert för alla åldrar!&nbsp;</strong></p><p><br></p><p><strong>Sö 23 aug 2026 kl. 14</strong></p><p><br></p><p>&nbsp;</p><p><br></p><p>Den Grammybelönade rootsrockaren och barnmusiklegenden Dan Zanes uppträder tillsammans med sin fantastiska jazzsångerska och musikterapeut till hustru, Claudia Zanes, på Sello-biblioteket i Espoo under sin turné i Finland och Baltikum! Det blir en varm och hjärtlig eftermiddag fylld av generationsöverskridande, jazzkryddad akustisk roots-folk och haitisk gemenskap och livsglädje! Ett unikt tillfälle att få jamma tillsammans med människor i alla åldrar och internationella toppmusiker till roots-, folk- och jazzklassiker samt medryckande originalkompositioner!</p><p><br></p><p>Fri entré. Konserten stöds av Espoo stads kulturförvaltning.</p><p><br></p><p>&nbsp;</p><p><br></p>",
                "en": "<p><strong>Grammy Award-winning DAN+CLAUDIA ZANES (USA-HTI)</strong></p><p><strong>-A joyful roots-folk-jazz concert for all generations!&nbsp;</strong></p><p><br></p><p><strong> Sun 23rd August at 2pm</strong></p><p> </p><p> Grammy award-winning roots-rocker and children's music legend Dan Zanes with his wonderful jazz vocalist and music therapist wife Claudia Zanes will perform in Sello library in Espoo on their summer tour of Finland and Sweden! A warm-hearted afternoon full of acoustic family-friendly roots-folk and Haitian communal joy of life is in the air! Kids, godparents, grandmas and grandpas -come to jam together with the international superstars!</p><p><br></p><p> During his long career, Dan has become known as the front man of The Del Fuegos band, and even more so as a pioneer of modern American family music, touring around the world with the multicultural “Dan Zanes and the Friends”, and working with many top names such as Lou Reed, Nick Cave, Suzanne Vega, Sheryl Crown, Angelique Kidjo and Grateful Dead's Bob Weir. In addition to music, Dan is actively involved in various projects for equality and social justice.</p><p><br></p><p> Claudia has deep roots in the Haitian musical tradition, which gives rise to her wonderful ability to see music as a natural form of expression that belongs to everyone. This attitude makes the music flow through her freely and charmingly infectious, whether she is performing on large jazz festival stages around the world, or in hospitals or schools as a therapist.</p><p><br></p><p> The couple has been making music together since the day they met in 2016, dedicating themselves to connecting and empowering people around the world through music. Dan and Claudia also work for sensory-friendly music experiences. Children and adults with special needs are also especially welcome at the concerts.</p><p>&nbsp;</p><p>Free entry. The concert is supported by Espoo City Culture.</p><p>&nbsp;</p><p>www.danandclaudia.com</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": {
                "fi": "BraveHeart Agency",
                "sv": "BraveHeart Agency",
                "en": "BraveHeart Agency"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jef24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpe63aojq",
            "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:p1808/?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": 2210519,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-22T11:14:41.541765Z",
                    "last_modified_time": "2026-05-22T11:14:41.541778Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/06294f51-6e74-48c9-b933-f297fa3a9c48.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Jonne Grans ja Matti Pulkki",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2210519/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-22T11:14:51.130997Z",
            "last_modified_time": "2026-05-22T11:14:51.131014Z",
            "date_published": null,
            "start_time": "2026-06-15T12:00:00Z",
            "end_time": "2026-06-15T13: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": "Kahden maailman välissä - musiikkia kitaralle ja harmonikalle",
                "sv": "Mellan två världar – musik för gitarr och dragspel",
                "en": "Between Two Worlds - Music for Guitar and Accordion"
            },
            "short_description": {
                "fi": "Konsertti on osa Jonne Gransin ja Matti Pulkin Mundus\naequalis -albumin (Alba Records) levynjulkaisukiertuetta.",
                "sv": "Konserten ingår i Jonne Grans och Matti Pulks turné i samband med lanseringen av albumet Mundus\naequalis (Alba Records).",
                "en": "The concert is part of Jonne Grans and Matti Pulkki’s Mundus\naequalis album (Alba Records) release tour."
            },
            "description": {
                "fi": "<p><strong>Ma 15.6. klo 15</strong></p><p><strong>Kahden maailman välissä - musiikkia kitaralle ja harmonikalle</strong></p><p><strong>Jonne Grans &amp; Matti Pulkki</strong></p><p><br></p><p>Tule kuulemaan kahta suomalaisille rakasta soitinta</p><p>vaihtelevissa ja ennakkoluulottomissa rooleissa</p><p>konsertissa, jossa klassinen ja kansallisromanttinen</p><p>repertuaari yhdistyy saumattomasti uuteen musiikkiin.</p><p>Ohjelma sisältää musiikkia säveltäjiltä: Palmgren,</p><p>Tarnanen, Brouwer &amp; Klami.</p><p><br></p><p>Konsertti on osa <strong>Jonne Gransin </strong>ja <strong>Matti Pulkin</strong> <strong>Mundus</strong></p><p><strong>aequalis -albumin </strong>(Alba Records) levynjulkaisukiertuetta.</p><p>Levyä on saatavilla konsertissa 20 € hintaan.</p>",
                "sv": "<p><strong>Mån 15 juni kl. 15</strong></p><p><strong>Mellan två världar – musik för gitarr och dragspel</strong></p><p><strong>Jonne Grans &amp; Matti Pulkki</strong></p><p><br></p><p><br></p><p>Kom och lyssna på två instrument som är kära för finländarna</p><p>i varierande och fördomsfria roller i en konsert där klassisk och nationellromantisk repertoar smälter samman sömlöst med ny musik.</p><p>Programmet innehåller musik av kompositörerna Palmgren, Tarnanen, Brouwer &amp; Klami.</p><p><br></p><p>Konserten är en del av Jonne Grans och Matti Pulkis skivturné för albumet Mundus aequalis (Alba Records). Skivan finns att köpa på konserten för 20 €.</p>",
                "en": "<p><strong>Mon, June 15 at 3:00 p.m.</strong></p><p><strong>Between Two Worlds – Music for Guitar and Accordion</strong></p><p><strong>Jonne Grans &amp; Matti Pulkki</strong></p><p><br></p><p>Come hear two instruments beloved by Finns in varied and unconventional roles in a concert where classical and national romantic repertoire seamlessly blends with new music. The program features music by composers: Palmgren, Tarnanen, Brouwer &amp; Klami.</p><p><br></p><p>The concert is part of Jonne Grans and Matti Pulkki’s Mundus </p><p>aequalis album (Alba Records) release tour. The album will be available at the concert for €20.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Akseli",
                "sv": "Akseli",
                "en": "Akseli"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe63aojq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpdwczzam",
            "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:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": 2201327,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-18T11:28:25.458015Z",
                    "last_modified_time": "2026-05-18T11:58:26.335006Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/df8ea468-bdf6-42c7-b9d4-b9df17262a5e.png",
                    "name": "Anja Snellman: Shelter in the Woods II",
                    "cropping": "116,0,784,669",
                    "photographer_name": "",
                    "alt_text": "Anja Snellman: Shelter in the Woods II",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-18T11:51:06.368115Z",
            "last_modified_time": "2026-05-22T08:24:36.167590Z",
            "date_published": "2026-05-18T11:14:00Z",
            "start_time": "2026-06-07T07:00:00Z",
            "end_time": "2026-06-26T15: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": "Anja Snellman: Turva (taidenäyttely)",
                "sv": "Anja Snellman: Skydd (konstutställning)",
                "en": "Anja Snellman: Shelter (art exhibition)"
            },
            "short_description": {
                "fi": "Maalauksia, joissa lähestytään näyttelyn turvapaikkateemaa taiteilijan luontokokemusten kautta.",
                "sv": "Målningar som belyser utställningens tema Skydd genom konstnärens naturupplevelser. ",
                "en": "Paintings that explore the exhibition’s theme of shelter through the artist’s experiences of nature."
            },
            "description": {
                "fi": "<p>\"Näyttelyni teema on turvapaikka. Aikamme on turvaton monella tavoin. Siksi tarvitsemme tilaa missä voimme kokea turvaa. Olen lähestynyt teemaa luontokokemuksieni kautta. Maalaaminen on minulle intuitiivinen prosessi, sen kautta avautuu henkilökohtainen hengähdystila, jossa kokemani luonto muuttuu sisäiseksi maisemaksi.</p><p>Luonnon syklisyys ja vuodenaikojen vaihtelu on ollut pitkään teemana taiteessani. Munatempera tuntuu luontevalta materiaalilta minulle sen orgaanisuuden ja pehmeyden takia.</p><p>Valmistuin 1995 Taidekoulu Maasta ja olen sen jälkeen maalannut, tehnyt maa- ja ympäristötaidetta sekä tekstiilitaidetta.\"</p><p><strong>Anja Snellman</strong></p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p><p><br></p><p><br></p><p><br></p><p><br></p>\n<strong>Anja Snellman </strong><p><strong>Taideopinnot</strong></p><ul><li>2013-2015 Tekstiiliartesaani, Axxell</li><li>1989-95 Taidekoulu Maa</li><li>1988-89 Västra Nylands Folkhögskola, taidelinja</li></ul><p><strong>Kurssit ja lisäkoulutukset</strong></p><ul><li>2024-25 Kriittinen korkeakoulu, taidekoulu perjantai ryhmä</li><li>2023 Kuvataiteen avoin työpaja. Pekka Halosen Akatemia</li><li>2002 Luomu Taide Symposiumi, Kankaanpään taidekoulu</li><li>2001 Arkit ja Objektit, Tallin Arkki, Helsinki</li><li>2000-2001 Kide projekti, Turun yliopiston, täydennyskoulutuskeskus, Halikon käsi- ja taideteollisuusoppilaitos, Salon taidemuseo Veturitalli</li></ul><p><strong>Yhteisnäyttelyt</strong></p><ul><li>2025 Fluid Imagination, A+ galleria, Helsinki</li><li>2025 Kärsimys, Konttorin Galleria, Hämeenlinna</li><li>2007 Näkökulmia, Kuparipaja, Fiskars</li><li>2006 Sato, Makasiini, Fiskars</li><li>2005 Voimat, Makasiini, Fiskars</li><li>2003 Viiden visiitti, Espoon kulttuurikeskus</li><li>1996 Eros ja Psykhe, Porvoon taidetehdas</li><li>1995 Naisten Nauru, Turun kulttuurikeskus</li></ul><p><strong>Ryhmänäyttelyt</strong></p><ul><li>2026 Yö Fest vol 6, Yö Galleria, Helsinki</li><li>2025 Yö Fest vol 5, Yö Galleria, Helsinki</li><li>2025 Tämä Hetki,Taidekeskus Väinölä, Varkaus</li><li>2015 Textiili Artesaanien loppunäyttely, Kulttuurikeskus Karelia, Tammisaari</li><li>2011 Vihreä Valo, Galleria Kantti, Fiskars</li><li>2007 Kivinokka ympäristötaidenäyttely, Hki</li><li>2005 Kivinokka ympäristötaidenäyttely, Hki</li><li>2004 Fiskarsin Ruukin joulukalenteri, poikkitaiteellinen tapahtuma, Fiskars</li><li>2004 Kannusillanmäen ympäristötaidenäyttely, Espoo</li><li>2004 Kivinokka ympäristötaidenäyttely, Hki</li><li>2003 Kivinokka ympäristötaidenäyttely, Hki</li><li>2002 Art Goes camping, Auroran kenttä, Hki</li><li>2001 Kideon, 19 omakuvaa,Salon taidemuseo Veturitalli</li><li>2001 Art Goes Camping, Auroran kenttä, Hki</li><li>1996 Salamaa, monivuotinen taidepuutarha, Annantalon taidekeskus,</li><li>yhteistyössä Virpi Ojasen kanssa</li><li>1996 Flux Aura. ympäristötaidetapahtuma Aurajoen varrella, Turku</li><li>1995 Metsän sielu, Tullikamarin pakkahuone, Tampere</li><li>1995 Kahlaamo, yhdeksän nuorta taiteilijaa vanhassa puutalossa, Hki</li><li>1994 Kerrostumaa, Taidekoulu Maan neljännen vuosikurssin loppunäyttely, maataideteos KUUMAA sekä perunan nosto- ja perunavaali tapahtuma lapsille Taiteiden yössä, Annantalon taidekeskus, Hki</li></ul><p><strong>Yksityisnäyttelyt</strong></p><ul><li>2025 Verso-Grodd, Knipnäs Hyvän Olon keskus, Tammisaari</li><li>2025 Keväthuuma, Blossom Point, Helsinki</li><li>2024 Emo- Urmoder,Galleria Perspektiivi, Tammisaari</li><li>2022 Tempera maalauksia, Art Story, Inkoo</li><li>2003 Metsän Keho, Galleria Jangva, Hki</li><li>2002 Temperamaalauksia,Galleria Perspektiivi, Tammisaari</li><li>1997 Temperamaalauksia, Promenadigalleria, Hyvinkää</li><li>1996 Julia ja Romeo, Galleria Ulla, Hki</li><li>1995 Sydänmaa, yksivuotinen taidepuutarha sekä satuseikkailu lapsille Taiteiden yössä, Annantalon taidekeskus, Hki</li><li>2024- Taiteilijayhdistys Yö</li><li>2004-2008 Fiskarsin taiteilijoiden, käsityöläisten ja muotoilijoiden osuuskunta</li><li>1994-2008, 2025- Taidemaalariliitto</li><li>1998-2000 Kirkkonummen taideyhdistys</li><li>1996-1999 Porvoon taideyhdistys</li></ul>",
                "sv": "<p>Målningar som belyser utställningens tema Skydd genom konstnärens naturupplevelser.&nbsp;</p><p><strong>Anja Snellman</strong> tog examen från konstskolan Maa 1995 och har sedan dess ägnat sig åt måleri, jordkonst och miljökonst samt textilkonst.</p><p>Konstutställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>Paintings that explore the exhibition’s theme of asylum through the artist’s experiences of nature.</p><p><strong>Anja Snellman</strong> graduated from the Art School Maa in 1995 and has since been painting and creating land art, environmental art, and textile art.</p><p>The art exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://anjasnellman.net/",
                "sv": "https://anjasnellman.net/sv",
                "en": "https://anjasnellman.net/en"
            },
            "location_extra_info": {
                "fi": "Galleria Anna",
                "sv": "Galleri Anna",
                "en": "Gallery Anna"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpdwczzam/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68180",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?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:p39492/?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": 1532266,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-05T13:13:16.854391Z",
                    "last_modified_time": "2026-03-05T13:13:16.854405Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780744.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1532266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-05T13:13:16.714990Z",
            "last_modified_time": "2026-05-22T08:13:35.918577Z",
            "date_published": null,
            "start_time": "2026-05-23T13:00:00Z",
            "end_time": "2026-05-23T17: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": "Idän kyläjuhla – Absoluuttinen nollapiste | Rebekka Holi",
                "sv": "Idän kyläjuhla – Absoluuttinen nollapiste | Rebekka Holi",
                "en": "Idän kyläjuhla – Absoluuttinen nollapiste | Rebekka Holi"
            },
            "short_description": {
                "fi": "Keväinen klassikko Idän kyläjuhla täyttää taas Stoan aukion!",
                "sv": "Vårklassikern Idän kyläjuhla är tillbaka på Stoa Torg!",
                "en": "The spring classic Idän kyläjuhla (Village Festival) is back in Stoa Square!"
            },
            "description": {
                "fi": "<p>Keväinen klassikko Idän kyläjuhla täyttää taas Stoan aukion!</p><p>Toukokuinen lauantai tarjoaa herkullisen musiikkikattauksen, taidetta ja tekemistä, Eliökuntalaisten niityn avajaiset sekä tietenkin hyväntuulista hengailua. Ota mukaan kaverit, perhe ja piknik-henkeä - ihana Itä-Helsinki toivottaa juuri sinut tervetulleeksi luomaan juhlatunnelmaa!<br> <br><b>Aikataulu:</b><br>klo 16.15 Big Wolf Company: Three Sisters<br>klo 17.00 Rebekka Holi<br>klo 17.45 Big Wolf Company: Three Sisters<br>klo 18.30 Absoluuttinen nollapiste</p><p><b> Absoluuttinen nollapiste</b> on pitkän linjan suomalainen yhtye, joka nousi tunnetuksi omintakeisella musiikillaan. Bändiä kutsutaankin parhaaksi suomenkieliseksi proge-pop –bändiksi. Absoluuttinen Nollapiste julkaisee myös uuden albumin ”Magneettipohjoinen” vuoden 2026 aikana.</p><p><b> Rebekka Holi</b> on helsinkiläinen laulaja-lauluntekijä, jonka musiikissa sekoittuu niin herkkä folk, leikkisä tarinankerronta kuin rouhea räimekin. Artisti on vakiinnuttanut paikkansa Suomen indiemusiikin kentällä.</p><p><b> Big Wolf Company (Viro) </b><br>Big Wolf Company on Viron ensimmäinen ammattimainen nykysirkusryhmä. Baltian maiden suurista naisista kertovassa Three Sisters -esityksessä ilma-akrobatia, käsilläseisonta ja akrotanssi yhdistyvät nokkelaan komediaan, maustettuna yhteiskunnallisella kritiikillä ja eeppisillä tanssiosuuksilla. <br>Tekijät ja esiintyjät: Alise Bokaldere (LV), Grete Gross (EE), Lizeth Wolk (EE), Taiteellinen dialogi: Ghia Fieandt (FI), Noora Pasanen (FI), Outside Eye: Kati Kivitar (EE)</p><p>Tapahtuman juontajana loistaa taiteilija ja kulttuurityöntekijä <b> Caroline Suinner</b>!</p><p>Lisäksi erilaisia <b>työpajoja Stoan aukiolla klo 16-19.</b></p><p>Eliökuntalaisten monumentin <b>Pyrografia-työpajat</b><br>Stoan niitylle rakentuu lahopuuteos, joka merkitsee kokoontumispaikkaa monimuotoiselle eliökunnalle. Veistos muodostuu koivunrungoista sekä puukiekoista, joihin työpajassa polttopiirretään erilaisia eliöiden jälkiä sekä sanoja Eliökuntalaisten manifestista (kirjoittanut Anni Kytömäki). Tule ja jätä oma jälkesi monumenttiin. Ohjaaja: taiteilija Petra Martinez<br> <br><b>Villit paperikukat!</b><br>Pajassa luodaan fantastisen värikkäitä paperikukkia kevään ja Idän kyläjuhlan kunniaksi. Ohjaaja: Chloé Mahy-Hulkko<br> <br><b>Mainiot muistikirjat</b><br>Työpaja on runojen raapustelijoille, luonnon luonnostelijoille ja mietteiden merkitsijöille. Työpajassa tehdään taskuun mahtuva muistikirja, jonka sivujen täytyttyä kansien väliin voi vaihtaa uudet paperit. Työpaja soveltuu yli kymmenvuotiaille. Ohjaaja: Greta Salonen<br> <br><b>Postikortti pölyttäjälle</b><br>Pääset maalaamaan postikortin pölyttäjähyönteisille. Biohajoavaan maaliin ripotellaan Suomen luonnon pölyttäjäkasvien siemeniä. Lopulta kortin voi haudata maahan jolloin siitä kasvaa pieni pala kukkaniittyä! Ohjaajat: Seikkailutaidekoulun Verna Kuntsi ja Satu Sipilä<br>  <br><b>Unelmien kesäkirja</b><br>Kesän kynnyksellä on juuri oikea hetki pysähtyä haaveilemaan tulevaisuuden muistoista, parhaista piilopaikoista ja kohtaamisista kesän kanssa. Unelmien kesäkirjan sivut kutsuvat nauttimaan kesäisen kaupungin kokemusherkuista sana- ja kuvataiteellisten puuhien avulla. Ohjaaja: Jenni Vilander</p><p>Itäkeskuksen kirjaston pisteellä saat tutustua <b>japanilaiseen kalligrafiaan</b>. Pisteellä on lainattavissa myös monikielistä kirjallisuutta ja kesälukemista.</p><p>Tapahtuma on samalla myös avajaiset <b>Eliökuntalaisten niitylle</b>. Stoan aukion viereen syntyvälle uudelle viheralueelle on kylvetty niittysiemeniä ja istutettu monivuotista kasvillisuutta.</p><p>Stoan galleriassa on esillä Puhos – Itähelsinkiläisestä ostarista kulttuurien keitaaksi -näyttely. Hankkeen tekijät <b> Sami Mannerheimo</b>, <b> Joonas Kervinen</b> ja <b> Angela Musse</b> ovat <b> Muttaqi Khan</b>in haastateltavina klo 17.45-18.30. Tekijät paikalla klo 16-19.</p><p><b>Kahvila Stoasta</b> saatavilla virvokkeita ja pientä purtavaa.</p>",
                "sv": "<p>Vårklassikern Idän kyläjuhla är tillbaka på Stoa Torg!</p><p>En lördag i maj bjuds det på ett läckert urval av musik, konst och aktiviteter i olika former, och naturligtvis också trevlig samvaro. Ta med dig vännerna, familjen och ett gott picknickhumör – det underbara östra Helsingfors hälsar just dig varmt välkommen!</p><p><b>Tidtabell:</b><br>kl. 16.15 Big Wolf Company: Three Sisters<br>kl. 17.00 Rebekka Holi<br>kl. 17.45 Big Wolf Company: Three Sisters<br>kl. 18.30 Absoluuttinen nollapiste</p><p><b>Absoluuttinen nollapiste</b> är ett finländskt band som har lång historia och som blev känt med sin unika musik. Bandet kallas det bästa finskspråkiga proge-pop-bandet. Absoluuttinen Nollapiste kommer också att släppa ett nytt album, ”Magneettipohjoinen”, under 2026.</p><p><b>Rebekka Holi</b> är en sångare och låtskrivare från Helsingfors. Hennes musik förenar såväl känslofull folk, lekfull berättarkonst som grovt dån. Artisten har etablerat sin plats på indiemusikfältet i Finland. Holi, som uppträder med inlevelse och på ett personligt sätt, är också känd för sina insiktsfulla kompositioner och humoristiska texter.</p><p><b>Big Wolf Company (Estland)</b><br>Big Wolf Company är den första professionella nycirkusgruppen i Estland. Three Sisters-föreställningen, som berättar om mäktiga kvinnor i de baltiska länderna, kombinerar luftakrobatik, handstående och akrodans med smart komedi, smaksatt med samhällskritik och episka dansdelar.<br>Författare och artister: Alise Bokaldere (LV), Grete Gross (EE), Lizeth Wolk (EE)<br>Konstnärlig dialog: Ghia Fieandt (FI), Noora Pasanen (FI)<br>Outside eye: Kati Kivitar (EE)</p><p>Evenemangets programledare är konstnären och kulturarbetaren Caroline Suinner!<br>På Stoaplanen ordnas dessutom olika verkstäder kl. 16–19.</p><p>På byafesten Idän kyläjuhla firas öppningsceremonin för Eliökuntalaisten niitty (ängen för alla levande). På det nya grönområdet bredvid Stoaplanen sås under våren ängsfrön, planteras mångåriga växter samt placeras murkna träd, som erbjuder livsmiljöer för många slags insekter. Landskapsgestaltningen av området är en del av VårStad-projektet Omvandla gräsplaner till ängar.</p><p>Kaféet Kahvila Stoa serverar läskedrycker och delikatesser under evenemanget.</p><p>Språk: flerspråkig<br>Fritt inträde!</p>",
                "en": "<p>The spring classic Idän kyläjuhla (Village Festival) is back in Stoa Square!</p><p>Come along on a Saturday in May to enjoy a delicious spread of music, arts and crafts in many forms and, of course, good-humoured hanging out. Bring your friends and family along with some picnic spirit – the wonderful East Helsinki would like to offer a heartfelt welcome to you!</p><p><b>Schedule:</b><br>16.15 Big Wolf Company: Three Sisters<br>17.00 Rebekka Holi<br>17.45 Big Wolf Company: Three Sisters<br>18.30 Absoluuttinen nollapiste</p><p><b>Absoluuttinen nollapiste</b> is a long-standing Finnish band that rose to fame playing their original music. The band has been dubbed the best Finnish-language progressive pop band. Absoluuttinen Nollapiste will also be releasing a new album Magneettipohjoinen during 2026.</p><p><b>Rebekka Holi</b> is a singer-songwriter from Helsinki whose music mixes delicate folk, playful storytelling and unfiltered rock. The artist has established herself in the Finnish indie music scene. Holi, who has a lively and personal presence, is also known for her insightful compositions and humorous lyrics.</p><p><b>Big Wolf Company (Estonia)</b><br>Big Wolf Company is the first professional contemporary circus group in Estonia. The Three Sisters, about the great women of the Baltic countries, combines aerial acrobatics, handstands and acrobatic dance with witty comedy in addition to a pinch of social criticism and epic dance sequences.<br>Creators and performers: Alise Bokaldere (LV), Grete Gross (EE), Lizeth Wolk (EE)<br>Artistic dialogue: Ghia Fieandt (FI), Noora Pasanen (FI)<br>Outside Eye: Kati Kivitar (EE)</p><p>The event will be hosted by artist and cultural worker Caroline Suinner!</p><p>In addition to this, there will be various workshops in Stoa square from 16.00 to 19.00.</p><p>The Eastern village festival will celebrate the opening of the meadow of the Living World. In the spring, the new green space next to Stoa square will be planted with meadow seeds and perennial vegetation, and decaying trees will be introduced to the area to provide habitats for a wide range of insects. The landscaping of the area is part of the ‘Lawn areas into meadows’ Omastadi project.</p><p>Refreshments and treats will be available at Café Stoa during the event.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6DE394B567870095CEAE7F7BB42C9F7E/Idan_kylajuhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/6DE394B567870095CEAE7F7BB42C9F7E/Idan_kylajuhla",
                "en": "http://www.stoa.fi/en/events/event/6DE394B567870095CEAE7F7BB42C9F7E/Idan_kylajuhla"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68180/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68566",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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/artist/gaala-podcast/gaala-liveshow-4148310/"
                    },
                    "price": {
                        "fi": "35 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201301,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T16:13:31.720627Z",
                    "last_modified_time": "2026-05-13T16:13:31.720659Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791074.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T16:13:31.585260Z",
            "last_modified_time": "2026-05-21T11:13:55.707095Z",
            "date_published": null,
            "start_time": "2026-11-04T17: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": "Gaala Liveshow – Loppuunmyyty! / Sold out!"
            },
            "short_description": null,
            "description": {
                "fi": "<p>Huippusuosittu Gaala-podcast nousee Savoy-teatterin näyttämölle koko illan liveshow’lla, joka juhlistaa elämää ja ystävyyttä! Show’n tähtinä säkenöivät rakastetut ystävykset Hennariikka Laaksola, Thelma Siberg ja Valtteri Lehtinen. Illan aikana kuullaan hersyvimmät keskustelut kiusallisista tilanteista tunteikkaimpiin hetkiin. Tyylilleen uskollisesti Gaala jakaa palkintoja mitä yllättävimmissä kategorioissa, ja saattaapa joku yleisön joukostakin päätyä pystin saajaksi!</p><p>Kunniavieraana lavalle nousee Gaala-podcastin arvoisa alkuperäisjäsen – Amelie Blauberg!</p><p>Tervetuloa nauttimaan illasta, rakas kutsuvieras! Elämä on Gaala!</p><p>Gaala on Podimon kuunnelluimpiin ohjelmiin lukeutuva lifestylepodcast, joka on jo vuosien ajan viihdyttänyt kuulijoitaan juhlistaen arjen glamouria.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 45 min, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C38A4AE450B16D89D05666D8F47C9271/Gaala_Liveshow"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "All Day Entertainment Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68566/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68372",
            "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/eventseries/name-4129898"
                    },
                    "price": {
                        "fi": "17-57 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1818671,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-15T09:14:18.963808Z",
                    "last_modified_time": "2026-04-15T09:14:18.963837Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787848.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1818671/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-15T09:14:18.815959Z",
            "last_modified_time": "2026-05-21T11:13:53.646572Z",
            "date_published": null,
            "start_time": "2026-09-03T16:30: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": "Savoy WORLD: The Future Was Today - Elokuvallinen tangoelämys"
            },
            "short_description": {
                "fi": "Argentiinalaisen tangon unohdettu vallankumous palaa Savoy-teatteriin"
            },
            "description": {
                "fi": "<p>Argentiinalaisen tangon unohdettu vallankumous palaa Savoy-teatteriin</p><p>Kun puhutaan tangon uudistajista, Astor Piazzollan nimi nousee usein ensimmäisenä esiin. Samaan aikaan 1950- ja 60-lukujen Buenos Airesissa vaikutti kuitenkin toinenkin visionääri, Eduardo Rovira, joka vei tangon perinteitä kohti modernia taidemusiikkia ja avantgardea.</p><p>Roviran perinnön elvyttämiselle omistautunut, viimeksi helmikuussa 2025 Savoyssa ihastuttanut <b>SONICO</b>-yhtye palaa nyt Helsinkiin uuden <i>The Future Was Today</i> -projektinsa kanssa, juhlistaen näin säveltäjän satavuotista historiaa. Esityksen musiikki perustuu vuosien arkistotyöhön, jonka avulla Roviran kerran kadonneet teokset on herätetty uudelleen henkiin.</p><p><i>The Future Was Today</i> on moniaistinen elokuvallinen elämys, jossa SONICO:n taiturimainen soitto kietoutuu yhteen lumoavan visuaalisen maailman kanssa. Esitys laajentaa perinteisen konsertin rajoja: musiikki, valaistus, videotaide, Roviran aikaisista valokuvista kootut montaasit sekä kerronnalliset monologit luovat yhdessä tarinan, joka kuljettaa kuulijan läpi argentiinalaisten kaupunkimaisemien, tunteiden ja tangon historian kerrostumien.</p><p>Vuonna 2015 perustettu SONICO on noussut kansainväliseen suosioon tuomalla esiin tangon monipuolisuutta, joka on usein jäänyt tunnetuimpien hittien varjoon. Yhtye on esiintynyt maailman arvostetuimmilla lavoilla, kuten Buenos Airesin legendaarisessa Teatro Colónissa, ja heidän työtään on kiitetty muun muassa Rolling Stone- ja Gramophone-lehdissä. Esityksessä kuullaan Roviran teosten lisäksi harvoin esitettyjä helmiä muilta aikakauden tangosäveltäjiltä, kuten Osvaldo Berlingieriltä, Alberto Caracciololta ja toki myös itseltään Piazzollalta.</p><p>Ilta tarjoaa harvinaisen mahdollisuuden kuulla \"uutta tangoa\" sellaisena kuin se on alkuaan tarkoitettu: täynnä energiaa, rohkeita rytmejä ja ennakkoluulotonta muusikkoutta.  Esitys on suunnattu kaikille, jotka arvostavat tangon intohimoa, visuaalista tarinankerrontaa ja historian löytöretkiä. <i>The Future Was Today</i> osoittaa, että se tulevaisuus, jota Eduardo Rovira visioi musiikillaan vuosikymmeniä sitten, on täällä juuri nyt.</p><p>Lysandre Donoso – bandoneon<br>Stephen Meyer – viulu<br>Alejandro Schwarz – kitara<br>Ariel Eberstein – kontrabasso<br>Ivo De Greef – piano</p><p>Jean Baptiste De Vooght – valosuunnittelu<br>Ramiro Antico – videosuunnittelu<br>Kaloian Santos Cabrera – valokuvamontaasit<br>Emilio Laquidara – graafinen suunnittelu</p><p>Kesto n.  1h 20min, ei väliaikaa</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton ei anniskelua.</p><p>With the support of:</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0AF6EC0305D37E5ACBEACE22A024A3B5/Savoy_WORLD_The_Future_Was_Today_-_Elokuvallinen_tangoelamys"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68372/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-4010503",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/hildur-helsingin-kaupunginteatteri-arena-nayttamo-21219563/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-21219563/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-21219563/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858575/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858577/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858576/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858605/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858579/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858580/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858606/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858581/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858583/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858607/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858608/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858610/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858609/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858584/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858585/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858611/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858586/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858587/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858612/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858588/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858589/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858615/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858634/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858619/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858618/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858591/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858620/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858622/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858593/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858623/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858624/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858598/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858599/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858627/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858629/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858628/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858600/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858601/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858631/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858604/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858633/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858632/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20913745/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219558/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219559/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219560/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219561/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219562/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21219563/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491149,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-22T20:15:45.803353Z",
                    "last_modified_time": "2025-10-22T20:15:45.803370Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/05/d2/hildur-tickets_457344_3678695_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T20:16:05.408697Z",
            "last_modified_time": "2026-05-20T20:16:04.129303Z",
            "date_published": null,
            "start_time": "2026-01-27T16:30:00Z",
            "end_time": "2026-05-20",
            "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": "Hildur"
            },
            "short_description": {
                "fi": "Satu Rämö – Satu Rasila HILDUR Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio "
            },
            "description": {
                "fi": "<p>Satu Rämö – Satu Rasila<br><strong>HILDUR</strong></p><p>Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio Hildurista saa ensi-iltansa Arena-näyttämöllä 28. tammikuuta.</p><p>Näytelmä perustuu Hildur-dekkarisarjan ensimmäiseen ja samannimiseen osaan (WSOY 2022) ja tekee oikeutta Rämön menestysteoksen pohjoiselle mystiikalle – unohtamatta kutkuttavan jännittävän murhamysteerin pienimpiäkään käänteitä. Tulos on aitoon nordic blue -henkeen hengittävä teatteriteos, jossa Islannin karu kauneus ja ihmismielen syvyydet kohtaavat näyttämöllä.</p><p>Hildur kertoo rikosetsivä Hildur Rúnarsdóttirista (Elena Leeve) ja vie katsojat Islannin myyttisille Länsivuonoille, jossa Hildur selvittää kotikaupungissaan tapahtuneita murhia yhdessä suomalaiskollega Jakobin (Paavo Kinnunen) kanssa. Traumojensa kanssa taisteleva Hildur ja menneisyyttään pakeneva Jakob joutuvat keskelle omituista rikosvyyhtiä, joka kytkeytyy järisyttävästi Hildurin omaan lapsuuteen.</p><p>Hildur kutoo katsojan tiukasti mukaan tihenevään jännitykseen, kun menestysdekkari herää näyttämöllä henkiin. Arena-näyttämö on osoittanut paikkansa maan ykkösdekkarinäyttämönä, jossa myös Hildurin tiivistunnelmainen tarina pääsee oikeuksiinsa ja asettuu komeasti viime vuosien Agatha Christie -dekkarisovitustemme joukkoon.</p><p>Rooleissa: Elena Leeve, Paavo Kinnunen, Sari Haapamäki,<br>Sanna-June Hyde, Linda Hämäläinen, Unto Nuora,<br>Jari Pehkonen, Ursula Salo, Mauno Terävä</p><p>Esitysoikeuksien valvoja: Agency North<br>Kirjailija: Satu Rämö<br>Dramatisointi: Satu Rasila<br>Ohjaus: Tuomas Parkkinen<br>Dramaturgi: Ari-Pekka Lahti<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Elina Kolehmainen<br>Valo- ja videosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Valosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Läheisyyskoreografi: Johanna Elovaara<br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=en"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010503/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpelrlmna",
            "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/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: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:p4878/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlioi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrljcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrljoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlj2q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlkeq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlkpm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlkzq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrllcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrllmm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrll2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlmdm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2201346,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T13:18:07.561885Z",
                    "last_modified_time": "2026-05-20T13:18:07.561901Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bda464c-b78b-4372-8e84-e54b413e0617.jpg",
                    "name": "Tule tapaamaan muita nuoria!",
                    "cropping": "184,0,896,713",
                    "photographer_name": "ai",
                    "alt_text": "Nuoret hyppäävät ilmaan.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201346/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:21:42.129090Z",
            "last_modified_time": "2026-05-20T13:21:42.129107Z",
            "date_published": null,
            "start_time": "2026-06-02T13:00:00Z",
            "end_time": "2026-08-11T16:30: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": "Nuortenilta"
            },
            "short_description": {
                "fi": "Mukavaa ohjelmaa 7. luokkalaisille ja sitä vanhemmille"
            },
            "description": {
                "fi": "<p>Tiistaisin klo 16-19.30 Messissä on nuortenilta. Päästäksesi nauttimaan isompien illasta, sinun pitää olla 7. luokkalainen tai sitä vanhempi. Huomio! Seiskalle siirtyvät ovat tervetulleita jo kesällä. Luvassa hyviä keskusteluita, pelaamista ja ohjelmaa toiveiden mukaan.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Messi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpelrlmna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68791",
            "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: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": 2110322,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T13:13:21.783250Z",
                    "last_modified_time": "2026-05-07T13:13:21.783265Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787881.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2110322/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T13:13:21.691267Z",
            "last_modified_time": "2026-05-20T13:13:43.302990Z",
            "date_published": null,
            "start_time": "2026-06-30T13: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": "Swing Doctors – Open Stage",
                "sv": "Swing Doctors – Open Stage",
                "en": "Swing Doctors – Open Stage"
            },
            "short_description": {
                "fi": "Espan lavalle saapuu Swing Doctors, joka levittää swingin ilosanomaa kymmenhenkisenä suurorkesterina!",
                "en": "The Swing Doctors spreading the joy of swing in a ten-piece big band will be taking to Espa Stage!"
            },
            "description": {
                "fi": "<p>Espan lavalle saapuu Swing Doctors, joka levittää swingin ilosanomaa kymmenhenkisenä suurorkesterina!</p><p>Swing Doctors on yksi maamme parhaista perinteiseen swingiin erikoistuneista orkestereista. Laulusolistinaan upea Piia Kristiina, Swing Doctors soittaa, johtajansa Marko Ahon johdolla, 'Amerikkalaisen laulukirjan' klassikoita, Count Basie -tyylisiä instrumentaaleja sekä suomalaisia 1950-luvun swing-iskelmiä à la Helena Siltala, Laila Kinnunen ja Brita Koivunen.</p>",
                "en": "<p>The Swing Doctors spreading the joy of swing in a ten-piece big band will be taking to Espa Stage!</p><p>The Swing Doctors are one of the best orchestras specialising in traditional swing in Finland. Featuring the wonderful Piia Kristiina as vocal soloist, the Swing Doctors, led by their leader, Marko Aho, will play classics from the 'American Songbook', Count Basie-style instrumentals and Finnish 1950s swing hits à la Helena Siltala, Laila Kinnunen and Brita Koivunen.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B78C13CEEC8C335D532CB9ECF5240900/Swing_Doctors",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B78C13CEEC8C335D532CB9ECF5240900/Swing_Doctors",
                "en": "http://www.espanlava.fi/en/events/event/B78C13CEEC8C335D532CB9ECF5240900/Swing_Doctors"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68791/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68793",
            "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: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": 2183787,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-08T09:14:08.976262Z",
                    "last_modified_time": "2026-05-08T09:14:08.976286Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786664.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2183787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-08T09:14:08.838400Z",
            "last_modified_time": "2026-05-20T13:13:43.116955Z",
            "date_published": null,
            "start_time": "2026-06-28T11: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": "HrayBery",
                "sv": "HrayBery",
                "en": "HrayBery"
            },
            "short_description": {
                "fi": "HrayBery on puolalais-ukrainalainen yhtye, joka hengittää uutta elämää unohdettuun musiikkiin.",
                "sv": "HrayBery är ett polsk-ukrainskt band som blåser nytt liv i bortglömd musik.",
                "en": "HrayBery is a Polish-Ukrainian band that brings forgotten music back to life."
            },
            "description": {
                "fi": "<p>HrayBery on puolalais-ukrainalainen yhtye, joka hengittää uutta elämää unohdettuun musiikkiin.</p><p>Yhtyeen ohjelmisto koostuu tanssikappaleista (mm. kosakki-, kolomyika-, masurkka-, polkka- ja valssimusiikista), jota on rekonstruoitu arkistolähteiden kuten äänitallenteiden ja nuottien pohjalta. Ukrainalaiset ja puolalaiset tutkijat ovat keränneet melodioita kahden maan väliseltä raja-alueelta. Ohjelmisto osoittaa, miten alue oli aikoinaan eri kulttuurien sulatusuuni.</p><p>Yhtyeen käyttämät soittimet – kuten viulu, kantele, kehärumpu ja basso – olivat yleisiä näillä alueilla 1500-luvun lopulta lähtien. Yhtyeen ääni antaa kuulijoille mahdollisuuden uppoutua vanhaan, monikulttuuriseen tanssimusiikkiin. Musiikkiin, jota soitettiin puolalaisten, ukrainalaisten, juutalaisten ja romanien yhdessä asuttamilla alueilla.</p><p>HrayBery on esiintynyt lukuisissa tanssijuhlissa ja konserteissa yhtyeen jäsenten kotimaassa Puolassa. Yhtye on kiertänyt ulkomailla Ruotsissa, Tanskassa, Saksassa, Liettuassa, Latviassa, Virossa ja Italiassa, ja se osallistui WOMEX-maailmanmusiikkitapahtumaan Suomessa vuonna 2025. Vuonna 2023 yhtye julkaisi ensimmäisen albuminsa <i>Karczma</i> (Majatalo).</p>",
                "sv": "<p>HrayBery är ett polsk-ukrainskt band som blåser nytt liv i bortglömd musik.</p><p>Bandets repertoar består av dansmusik (bl.a. kosak, kolomyika, mazurka, polka och vals) som rekonstruerats på basis av arkivkällor såsom ljudinspelningar och noter. Ukrainska och polska forskare har samlat in melodier från gränsområdet mellan de två länderna. Programmet visar hur området en gång i tiden var en smältdegel för olika kulturer.</p><p>Instrumenten som används av bandet – såsom fiol, kantele, ramtrumma och bas – var vanliga i dessa områden från och med slutet av 1500-talet. Bandets sound ger lyssnarna en möjlighet att fördjupa sig i gammal och mångkulturell dansmusik, som spelas i områden som bebotts av polacker, ukrainare, judar och romer.</p><p>HrayBery har uppträtt på många dansfester och konserter i sitt hemland Polen. Bandet har turnerat utomlands i Sverige, Danmark, Tyskland, Litauen, Lettland, Estland och Italien, och deltog i världsmusikevenemanget WOMEX i Finland 2025. År 2023 släppte bandet sitt debutalbum <i>Karczma</i> (Gästgiveriet).</p>",
                "en": "<p>HrayBery is a Polish-Ukrainian band that brings forgotten music back to life.</p><p>The band's repertoire consists of dance pieces (cossacks, kolomyikas, mazurkas, polkas, waltzes and more) reconstructed on the basis of archival sources – sound recordings or sheet music.</p><p>The melodies were collected by Ukrainian and Polish researchers in the area bordering the two countries. This repertoire proves the area used to be a melting pot of various cultures in the past.</p><p>The instruments used by the band – such as the violin, dulcimer, frame drum, and bass – were common in these areas from the end of the 16th century. The band's sound allows the listeners to immerse themselves in the old, multicultural dance music of regions inhabited together by Poles, Ukrainians, Jewish and Romani people.</p><p>HrayBery has performed live at numerous dance parties and concerts in Poland where the band members reside. The band has toured abroad in Sweden, Denmark, Germany, Lithuania, Latvia, Estonia and Italy, and took part in the WOMEX world music expo in Finland in 2025. In 2023 the band released their first album entitled <i>Karczma</i> (Inn).</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9186EAA8332893E0D6F347AB605A79D5/HrayBery_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9186EAA8332893E0D6F347AB605A79D5/HrayBery_",
                "en": "http://www.espanlava.fi/en/events/event/9186EAA8332893E0D6F347AB605A79D5/HrayBery_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68793/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68787",
            "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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 2106479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:23.415314Z",
                    "last_modified_time": "2026-05-07T12:13:23.415333Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786667.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-05-07T12:13:23.322843Z",
            "last_modified_time": "2026-05-20T13:13:42.952088Z",
            "date_published": null,
            "start_time": "2026-06-28T10: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": "Banjospektaakkeli Miihkali Jaatinen",
                "sv": "Banjospektakel med Miihkali Jaatinen",
                "en": "Banjo Spectacle Miihkali Jaatinen"
            },
            "short_description": {
                "fi": "Englanninkielisessä lasten ja nuorten banjospektaakkelissa Miikhali Jaatinen vie yleisön matkalle banjon värikkääseen historiaan.",
                "sv": "I detta engelskspråkiga banjospektakel för barn och ungdomar tar Miihkali Jaatinen med publiken på en resa genom banjons färgrika historia.",
                "en": "In this English-language banjo spectacle for children and young people, Miikhali Jaatinen takes the audience on a journey through the colourful history of the banjo."
            },
            "description": {
                "fi": "<p>Englanninkielisessä lasten ja nuorten banjospektaakkelissa Miikhali Jaatinen vie yleisön matkalle banjon värikkääseen historiaan.</p><p>Banjospektaakkeli esittelee musiikin ja länsimäisen kulttuurimme historiaa erilaisia banjoja soittaen ja tarinoita kertoen. <br>Esitys vie yleisön kuulemaan banjon värikkään tarinan, joka alkaa Afrikasta, kulkee orjalaivoissa Yhdysvaltoihin ja kehittyy lopulta nykyiseen muotoonsa vaikuttaen monissa musiikillisissa ja yhteiskunnallisissa liikkeissä. <br>Banjon matkan vahvin teema on musiikin yhdistävä voima.</p><p>Repertuaari elää yleisön mukana ja erilaisia banjoja riittää 5-kielisistä nauhattomiin sekä sähköbanjosta tenori-, resonaattori- ja plectrumbanjoon. Banjon kielet taipuvat sulavasti niin old time -perinteeseen, bluegrassin svengiin, New Orleans -jazziin kuin kansanmusiikin tarinallisuuteen. <br>Eikä siinä vielä kaikki: banjo rokkaa, progeilee ja jyrää vaikka metallin tahtiin. Banjospektaakkeli on yllätyksiä täynnä, tervetuloa kyytiin!</p><p>Lavalla Miihkali Jaatinen.<br>Puheosuudet englanniksi.<br>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p><p>https://www.miihkali.fi/etusivu/<br>https://www.facebook.com/MiihkaliMusic<br>https://www.instagram.com/miihkalimusic/<br>https://www.youtube.com/c/MiihkaliMusic/videos</p>",
                "sv": "<p>I detta engelskspråkiga banjospektakel för barn och ungdomar tar Miihkali Jaatinen med publiken på en resa genom banjons färgrika historia.</p><p>Banjospektaklet presenterar musikens och vår västerländska kulturs historia genom att spela på olika banjor och berätta historier. Under uppträdandet får publiken höra om banjons färgrika historia, som börjar i Afrika, reser på slavskepp till Förenta staterna och utvecklas slutligen till sin nuvarande form och har påverkat många musikaliska och samhälleliga rörelser. Musikens förenade kraft är det starkaste temat under banjons resa.</p><p>Repertoaren lever med publiken och man har gott om banjon, allt från 5-strängade till bandlösa banjon och från elbanjo till tenor-, resonator- och plektrumbanjo. Banjons strängar böjer sig smidigt för såväl old time-traditionen, svängig bluegrass, New Orleans-jazz som folkmusikberättande. Och det är inte allt: banjon rockar, proggar och dundrar i takt med metallmusiken. Banjospektaklet är fullt av överraskningar, välkommen med!</p><p>På scen: Miihkali Jaatinen.<br>De talade avsnitten är på engelska.<br>Framförandet genomförs i samarbete med Konsertcentralen.</p><p>https://www.miihkali.fi/etusivu/<br>https://www.facebook.com/MiihkaliMusic<br>https://www.instagram.com/miihkalimusic/<br>https://www.youtube.com/c/MiihkaliMusic/videos</p>",
                "en": "<p>In this English-language banjo spectacle for children and young people, Miikhali Jaatinen takes the audience on a journey through the colourful history of the banjo.</p><p>Banjospektaakkeli presents the history of music and our Western culture by playing different banjos and telling stories. The performance will take the audience through the colourful story of the banjo, which begins in Africa, moves on to slave ships to travel to the United States and finally evolves into its current form, influencing many musical and social movements. The overarching theme running through the journey of the banjo is the unifying power of music.</p><p>The repertoire lives with the audience, with a variety of banjos ranging from five-string to fretless and from electric banjo to tenor, resonator and plectrum banjo. The banjo's strings bend smoothly to old time tradition, bluegrass swing, New Orleans jazz and folk music storytelling. And that's not all: the banjo rocks, goes on progressive excursions and thunders to the beat of metal. Banjospektaakkeli is full of surprises – all aboard!</p><p>Miihkali Jaatinen on stage.<br>Spoken sections in English.<br>The performance is produced in cooperation with Concert Centre Finland.</p><p>https://www.miihkali.fi/etusivu/<br>https://www.facebook.com/MiihkaliMusic<br>https://www.instagram.com/miihkalimusic/<br>https://www.youtube.com/c/MiihkaliMusic/videos</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9D18C417EB15470CD98A62FAF880F64E/Banjospektaakkeli_Miihkali_Jaatinen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9D18C417EB15470CD98A62FAF880F64E/Banjospektakel_med_Miihkali_Jaatinen",
                "en": "http://www.espanlava.fi/en/events/event/9D18C417EB15470CD98A62FAF880F64E/Banjo_Spectacle_Miihkali_Jaatinen"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68787/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68789",
            "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": 2106476,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:23.087132Z",
                    "last_modified_time": "2026-05-07T12:13:23.087146Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785643.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T12:13:22.956056Z",
            "last_modified_time": "2026-05-20T13:13:42.742373Z",
            "date_published": null,
            "start_time": "2026-06-26T14: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": "Jesse Kaikuranta – Pride Espalla",
                "sv": "Jesse Kaikuranta – Pride på Espa",
                "en": "Jesse Kaikuranta – Pride in Esplanade Park"
            },
            "short_description": {
                "fi": "Jesse Kaikuranta on upea tulkitsija, jonka levollinen ääni on todella valloittanut suomalaisten sydämet.",
                "sv": "Jesse Kaikuranta är en underbar uttolkare vars lugna röst verkligen har fångat finländarnas hjärtan.",
                "en": "Jesse Kaikuranta is a master of expression, whose tranquil voice has truly captured the hearts of Finns."
            },
            "description": {
                "fi": "<p>Jesse Kaikuranta on upea tulkitsija, jonka levollinen ääni on todella valloittanut suomalaisten sydämet.</p><p>Jo 2000-luvun alusta asti esiintynyt suurten tunteiden tulkki nousi koko kansan tietoisuuteen vuoden 2012 The Voice of Finland -kilpailun ja sitä seuranneen <i>Vie mut kotiin</i> -debyyttialbuminsa myötä. Triplaplatinaa myyneen ja viisi Emma-ehdokkuutta kahmineen albumin nimikkokappale \"Vie mut kotiin\" sekä sinkut “Järjetön rakkaus” ja “Näytän sulle rannan” nousivat kaikki valtaviksi hiteiksi.</p><p>Toinen albumi <i>Vaikka minä muutuin</i> ilmestyi vuonna 2013. Kultaa myynyt albumi sisältää mm. useita viikkoja radiolistan kärjessä keikkuneen hitin “Vielä täällä”. Viimeisin pitkäsoitto <i>Jesse Kaikuranta</i> ilmestyi vuonna 2017, jonka jälkeen artistilta on saatu useita singlejä.</p><p>Artisti kirjoittaa parhaillaan uutta, henkilökohtaisempaa musiikkia ja vuonna 2024 julkaistu single ”Tuu Tuu Tupakkarulla” on osoitus siitä, että Jessen musiikki osuu edelleen suoraan sydämeen. Uskottava ja aidosti koskettava live-esiintyjä taitaa niin suurten lavojen show’n kuin intiiminkin tunnelmoinnin.</p>",
                "sv": "<p>Jesse Kaikuranta är en underbar uttolkare vars lugna röst verkligen har fångat finländarnas hjärtan.</p><p>Han är en uttolkare av stora känslor, och har uppträtt sedan början av 2000-talet. Han blev känd via The Voice of Finland-tävlingen 2012 samt med sitt debutalbum <i>Vie mut kotiin</i>. Albumet ”Vie mut kotiin” som sålde trippelplatina och fick fem Emma-nomineringar samt singlarna ”Järjetön rakkaus” och ”Näytän sulle rannan” blev alla enorma hits.</p><p>Det andra albumet <i>Vaikka minä muutuin</i> släpptes 2013. Albumet har sålt guld och innehåller bland annat hiten ”Vielä täällä\", som under flera veckor låg högst upp på radiolistorna. Hans senaste lp <i>Jesse Kaikuranta</i> släpptes 2017, varefter artisten har släppt flera singlar.</p><p>Artisten skriver för närvarande ny, mer personlig musik och singeln \"Tuu Tuu Tupakkarulla\", som släpptes 2024, är ett bevis på att Jesses musik fortfarande går rakt in i hjärtat. Han är en trovärdig och genuint berörande liveartist som är en mästare på både stora scenshower och intim stämning.</p>",
                "en": "<p>Jesse Kaikuranta is a master of expression, whose tranquil voice has truly captured the hearts of Finns.</p><p>The interpreter of great emotions, who has been performing since the early 2000s, came to the attention of the whole nation with his debut album <i>Vie mut kotiin</i> and The Voice of Finland competition in 2012. The album's triple platinum selling title track Vie mut kotiin, which received five Emma Award nominations, and the singles Järjetön rakkaus and Näytän sulle rannan all became huge hits.</p><p>His second album <i>Vaikka minä muutuin</i> was released in 2013. The gold-selling album includes the hit Vielä täällä, which spent several weeks at the top of the radio charts. His latest album <i>Jesse Kaikuranta</i> was released in 2017, since which the artist has released several singles.</p><p>He is currently writing new, more personal music and the single Tuu Tuu Tupakkarulla, released in 2024, is proof that Jesse's music still tugs at heartstrings. A credible and genuinely touching live performer, he is a master of both big stage shows and intimate settings.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/65E41054E877B4B3C482C740EDAB72E7/Jesse_Kaikuranta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/65E41054E877B4B3C482C740EDAB72E7/Jesse_Kaikuranta",
                "en": "http://www.espanlava.fi/en/events/event/65E41054E877B4B3C482C740EDAB72E7/Jesse_Kaikuranta"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68789/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68786",
            "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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?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/yso:p39492/?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": 2106475,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:22.728104Z",
                    "last_modified_time": "2026-05-07T12:13:22.728118Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785603.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T12:13:22.635885Z",
            "last_modified_time": "2026-05-20T13:13:42.584576Z",
            "date_published": null,
            "start_time": "2026-06-26T12: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": "Divet Show – Pride Espalla",
                "sv": "Divet Show – Pride på Espa",
                "en": "Divet Show – Pride in Esplanade Park"
            },
            "short_description": {
                "fi": "Divet Show saapuu Helsinki Prideen!",
                "sv": "Divet Show anländer till Helsingfors Pride!",
                "en": "Divet Show comes to Helsinki Pride!"
            },
            "description": {
                "fi": "<p>Divet Show saapuu Helsinki Prideen!</p><p>Valmistaudu glitteriin, glamouriin ja huikeaan tähtikavalkadiin, kun Divet Show valtaa lavan Helsinki Pridessa. Show’n tähti, drag-artisti <b>Marko Vainio</b>, loihtii lavalle unohtumattoman illuusion – aivan kuin maailman suurimmat pop- ja rocklegendat esiintyisivät samassa konsertissa. Ja kyllä, mukana ovat myös ne legendat, jotka ovat jo jättäneet lavat!</p><p>Esityksen aikana lavalle marssii hengästyttävä joukko supertähtiä, kuten Madonna, P!nk, Christina Aguilera, Whitney Houston, Adam Lambert ja Freddie Mercury – kaikki yhdessä konsertissa.</p><p>Divet Show tunnetaan näyttävistä puvuistaan, kimaltavasta glitteristä, höyhenistä, hurmaavasta huumorista ja uskomattoman nopeista hahmonvaihdoista, jotka tapahtuvat yleisön silmien edessä.</p><p>Luvassa on loistokasta musiikin ilotulitusta, nokkelaa viihdettä ja Pride-juhlan arvoista säihkettä.</p><p>Divet Show – kun kaikki maailman diivat esiintyvät samalla lavalla.</p>",
                "sv": "<p>Divet Show anländer till Helsingfors Pride!</p><p>Gör dig redo för glitter, glamour och en oerhörd stjärnkavalkad när Divet Show intar scenen på Helsingfors Pride. Showens stjärna, dragartisten <b>Marko Vainio</b>, skapar en oförglömlig illusion på scenen – som om världens största pop- och rocklegender uppträdde på samma konsert. Och ja, legenderna som redan har lämnat scenerna kommer också att vara där!</p><p>Under showen intar en hisnande grupp superstjärnor såsom Madonna, P!nk, Christina Aguilera, Whitney Houston, Adam Lambert och Freddie Mercury scenen – allt under en och samma konsert.</p><p>Divet Show är känd för spektakulära kostymer, glittrande glitter, fjädrar, charmig humor och otroligt snabba karaktärsbyten som sker inför publikens ögon.</p><p>Strålande musikaliska fyrverkerier, fiffig underhållning och Pride-värdigt skimmer utlovas.</p><p>Divet Show – när alla världens divor uppträder på samma scen.</p>",
                "en": "<p>Divet Show comes to Helsinki Pride!</p><p>Get ready for glitz, glamour and a star-studded line-up when the Divet Show takes the stage at Helsinki Pride. The star of the show, drag artist <b>Marko Vainio</b>, will create an unforgettable illusion on stage – as if the world's greatest pop and rock legends were performing in the same concert. And yes, legends who have already left the stage will also be there!</p><p>During the show, a breathtaking array of superstars will take to the stage, including Madonna, P!nk, Christina Aguilera, Whitney Houston, Adam Lambert and Freddie Mercury – all in one concert.</p><p>The Divet Show is known for its spectacular costumes, shiny glitter, feathers, charming humour and incredibly fast character changes that take place before the audience's very eyes.</p><p>There will be great musical fireworks, witty entertainment and Pride-worthy sparkle.</p><p>Divet Show – when all the divas of the world perform on the same stage.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A2AAF94F2A6C9B32892FF4C04D26F32F/Divet_Show",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A2AAF94F2A6C9B32892FF4C04D26F32F/Divet_Show",
                "en": "http://www.espanlava.fi/en/events/event/A2AAF94F2A6C9B32892FF4C04D26F32F/Divet_Show"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68786/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpbywr7va",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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: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:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr2n4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr27y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr3pu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr37a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr4pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr47y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr5pe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr6am/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr6qq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr7cq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2201345,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T12:28:22.623758Z",
                    "last_modified_time": "2026-05-20T12:28:22.623778Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/09c80cff-a910-44f3-9c91-f20f60f47db2.jpg",
                    "name": "",
                    "cropping": "289,0,2023,1734",
                    "photographer_name": "",
                    "alt_text": "kuvassa on pihaperjantain toimintaa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201345/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T12:36:37.807548Z",
            "last_modified_time": "2026-05-20T12:36:46.510321Z",
            "date_published": null,
            "start_time": "2026-06-05T10:00:00Z",
            "end_time": "2026-08-14T12: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": "Aikuisten pihaperjantai",
                "en": "Summer activities for adults in the Lippulaiva library's summer garden "
            },
            "short_description": {
                "fi": "Aikuisten pihaperjantai Lippulaivan kirjaston kesäpihalla 5.6. - 14.8. klo 13-15. Tervetuloa!",
                "en": "Welcome to join us for fun summer activities for adults on fridays 5.6.-14.8. from 13-15!"
            },
            "description": {
                "fi": "<p>Aikuisten pihaperjantait Lippulaivan kirjaston kesäpihalla 5.6. - 14.8. klo 13-15. (Huom. ei tapahtumaa 19.6.). Huonolla säällä tapahtuma järjestetään kirjaston sisällä, keskiaukiolla.</p><p>Tervetuloa viettämään rentoja kesäiltapäiviä kirjojen, keskustelujen ja hauskan yhdessä tekemisen parissa. Kesän aikana luvassa on muun muassa musiikkia, kirjavinkkejä, pihapelejä, askartelua, vohveleita ja hyvää tunnelmaa – jokaisella kerralla vähän jotain erilaista.</p><p>Voit tulla mukaan yksittäiseen iltapäivään tai osallistua jokaiseen kertaan. Tärkeintä on utelias mieli ja halu viettää mukavaa aikaa yhdessä muiden kanssa.</p><p><br></p><p>Tulevat kerrat ja aiheet:</p><ul><li>5.6. Pride-aiheista toimintaa</li><li>12.6. Speed datingia kesäpihalla + kirjavinkkejä</li><li>26.6. Kahvia, kirja &amp; kitara</li><li>3.7. Kahvia, kirja &amp; kitara (engl.) / Coffee, books &amp; guitar</li><li>10.7. Jatsahtava kirjavinkkaus ja lukuhetki</li><li>17.7. Kierrätystä ja kepeitä kesäkirjoja (Voit halutessasi ottaa mukaan 1–2 omaa kierrätettävää kirjaa.)</li><li>24.7. Kirjavinkkaus-lukupiiri</li><li>31.7. Vohvelibileet ja pihapelit</li><li>7.8. Shakkia</li><li>14.8. Aikuisten askartelua</li></ul><p>Tapahtumat ovat suunnattu aikuisille ja ne ovat maksuttomia. Ei ennakkoilmoittautumista. Tervetuloa mukaan!</p>",
                "en": "<p>Fun summer activies for adults at the Lippulaiva Library’s summer garden, From 5th of June till 14th of August, from 1–3 p.m. (Note: no event on June 19). In case of bad weather, the event will be held inside the library.</p><p><br></p><p>Come spend some relaxed summer afternoons enjoying books, conversations, and fun activities together. This summer, we’ll have music, book recommendations, chess, crafts, waffles, and a great atmosphere—something a little different every time.</p><p><br></p><p>You can join us for a single afternoon or participate every time. The most important thing is a curious mind and a desire to have a good time together with others.</p><p><br></p><p><strong>Upcoming dates and topics:</strong></p><p>June 5: Pride-themed activities</p><p>June 12: Speed dating in the summer courtyard + book recommendations</p><p>June 26: Coffee, books &amp; guitar</p><p>July 3: Coffee, books &amp; guitar (in English)</p><p>July 10: Book recommendation session with a hint of jazz + reading time</p><p>July 17: Recycling and light summer reading (Feel free to bring 1–2 of your own books for a possible book swap.)</p><p>July 24: Book recommendation and reading circle</p><p>July 31: Waffle party and yard games</p><p>August 7: Chess</p><p>August 14: Adult crafts</p><p><br></p><p>The events are aimed at adults and are free of charge. No advance registration required. Welcome!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Kesäpiha"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbywr7va/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68790",
            "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: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": 2110321,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T13:13:21.310721Z",
                    "last_modified_time": "2026-05-07T13:13:21.310735Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787885.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2110321/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T13:13:21.203581Z",
            "last_modified_time": "2026-05-20T12:13:02.361883Z",
            "date_published": null,
            "start_time": "2026-06-25T14: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": "Get Me – Open Stage",
                "sv": "Get Me – Open Stage",
                "en": "Get Me – Open Stage"
            },
            "short_description": {
                "fi": "Astu Get Me:n kanssa ilma-alukseen, navigoi itsesi läpi musiikin ilmamassojen ja valmistaudu nousemaan stratosfääriin!",
                "sv": "Gå ombord på luftfarkosten med Get Me, navigera dig fram genom de musikaliska luftmassorna och förbered dig på att flyga upp i stratosfären!",
                "en": "Step on the plane with Get Me, navigate yourself through the air masses of music and get ready to soar into the stratosphere!"
            },
            "description": {
                "fi": "<p>Astu Get Me:n kanssa ilma-alukseen, navigoi itsesi läpi musiikin ilmamassojen ja valmistaudu nousemaan stratosfääriin!</p><p>Tervetuloa \"Get Me Funkairin\" mannertenväliselle lennolle kokemaan troposfäärin parhaat musiikilliset suihkuvirtaukset!</p><p>Matkakohde ei rajoitu vain yhteen kohteeseen, vaan lentosuunnitelmamme tulee isoympyräkaarta hyödyntäen keräämään ilmanopeutta aina Pohjois- ja Etelä-Amerikan, Afrikan ja Aasian kautta, palaten Suomeen illaksi kotiin.</p><p>Matkan aikana viihtyvyydestänne vastaavat poikkeuksetta lakikorkeuden päällä operoiva torvisektio, alisooninen ja voimakasta värähtelyä aiheuttava komppiryhmä, äänennopeudella työskentelevä laulajisto ja viimeisimpänä kappaleiden fraseologia, joka ei jätä matkustajaansa tai tympääntyneintäkään lennonjohtajaa kylmäksi.</p>",
                "sv": "<p>Gå ombord på luftfarkosten med Get Me, navigera dig fram genom de musikaliska luftmassorna och förbered dig på att flyga upp i stratosfären!</p><p>Välkommen till ”Get Me Funkairs” interkontinentala luftfärd för att uppleva troposfärens bästa musikaliska strömningar! Destinationen begränsas inte bara till ett enda objekt, utan vår färdplan kommer att föra oss via Nord- och Sydamerika till Afrika och Asien samt hem till Finland till kvällen.</p><p>För trivseln under färden ansvarar hornsektionen som undantagslöst spelar på högsta höjderna, kompgruppen som skapar subsoniska och kraftiga vibrationer, sångarskaran som jobbar med ljudets hastighet och slutligen låtarnas fraseologi, och lämnar varken sin passagerare eller den mest uttråkade flygledaren oberörd.</p>",
                "en": "<p>Step on the plane with Get Me, navigate yourself through the air masses of music and get ready to soar into the stratosphere!</p><p>Welcome on board the 'Get Me Funkair’, an intercontinental flight with the best musical jet streams of the troposphere!</p><p>Our trip is not limited to only one destination, but will use the great circle to gather air and musical vibes from all the way through North and South America, Africa and Asia, returning home to Finland in the evening.</p><p>During this trip, our horn section that operates above the legal height, the subsonic and vibratious rhythm section, vocalists working at the speed of sound and the phraseology of the songs will be responsible for your comfort, without exception.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2FFCA1A5FEE12786A0965EF9C3B19DE2/Get_Me",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/2FFCA1A5FEE12786A0965EF9C3B19DE2/Get_Me",
                "en": "http://www.espanlava.fi/en/events/event/2FFCA1A5FEE12786A0965EF9C3B19DE2/Get_Me"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68790/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68782",
            "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": 2098210,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T10:14:07.499837Z",
                    "last_modified_time": "2026-05-07T10:14:07.499850Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785542.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2098210/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T10:14:07.382062Z",
            "last_modified_time": "2026-05-20T12:13:02.094058Z",
            "date_published": null,
            "start_time": "2026-06-24T15: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": "Liisa Akimof & Yökerho – Pride Espalla",
                "sv": "Liisa Akimof & Yökerho – Pride på Espa",
                "en": "Liisa Akimof & Yökerho – Pride in Esplanade Park"
            },
            "short_description": {
                "fi": "Liisa Akimof & Yökerhon keikat ovat puheenaiheita, energisiä ja yllätyksellisiä.",
                "sv": "Liisa Akimof & Yökerhos spelningar är energiska och överraskande samt väcker diskussion.",
                "en": "Liisa Akimof & Yökerho gigs are the talk of the town, energetic and surprising."
            },
            "description": {
                "fi": "<p>Liisa Akimof & Yökerhon keikat ovat puheenaiheita, energisiä ja yllätyksellisiä.</p><p>Akimof on kertonut, että uusia biisejä putoilee hänen päähänsä odottamatta ja pyytämättä. Niitä tullaan kuulemaan Espan lavalla sekä Liisa Akimof & Yökerho -yhtyeen uudella ”Miten asiat oikeesti on?” -albumilla, joka ilmestyi 30.1.</p><p>Uusi albumi liikkuu temaattisesti tavaroiden ja roinan maailmassa jääkaudelta nykyaikaan. Erikoiskahvit, sähkösaunat ja proteiini taipuvat poplyriikaksi, rakennusvalvontaa unohtamatta. Musiikillisesti albumi on häpeämätön sekoitus rokkia, diskoa ja jazzia.</p><p>Yökerhossa soittavat Mikko Siltanen (basso), Pekka Tuomi (kitara), Antti Vuorenmaa (kosketinsoittimet) sekä Sebastian Krühn (rummut). Uusien biisien lisäksi settiin kuuluu aina joitakin vanhempia Akimofin klassikoita kuten Tavaramarkkinoiden ”Kevät”.</p>",
                "sv": "<p>Liisa Akimof & Yökerhos spelningar är energiska och överraskande samt väcker diskussion.</p><p>Akimof har sagt att nya låtar uppstår i hennes huvud oväntat och oombett. Du kan höra dem på Esplanadestraden och på Liisa Akimof & Yökerhos nya album ”Miten asiat oikeesti on?”, som släpptes den 30 januari.</p><p>Det nya albumet rör sig tematiskt i en värld av saker och skräp, från istiden till nutid. Specialkaffen, elbastur och proteinet blir till poplyrik, för att inte glömma byggnadstillsynen. Musikaliskt är albumet en fräck blandning av rock, disco och jazz.</p><p>Mikko Siltanen (bas), Pekka Tuomi (gitarr), Antti Vuorenmaa (keyboard) och Sebastian Krühn (trummor) spelar i bandet Yökerho. Utöver de nya låtarna ingår det alltid några äldre klassiker av Akimof, såsom Tavaramarkkinats ”Kevät”.</p>",
                "en": "<p>Liisa Akimof & Yökerho gigs are the talk of the town, energetic and surprising.</p><p>Akimof has said that new songs fall into her head unexpectedly and unsolicited. You can hear them on Espa Stage and on Liisa Akimof & Yökerho's new album Miten asiat oikeesti on?, which was released on 30 January.</p><p>The new album moves thematically in a world of items and junk, from the Ice Age to the present day. Specialty coffees, electric saunas and protein with a side of building control are turned into pop lyrics. Musically, the album is an unashamed mix of rock, disco and jazz.</p><p>Mikko Siltanen (bass), Pekka Tuomi (guitar), Antti Vuorenmaa (keyboards) and Sebastian Krühn (drums) play in Yökerho. In addition to new songs, the set always includes some older Akimof classics such as Kevät by Tavaramarkkinat.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DD2FF22D5BB9D3AD03C4C3BC1DDC56B7/Liisa_Akimof_Yokerho",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DD2FF22D5BB9D3AD03C4C3BC1DDC56B7/Liisa_Akimof_Yokerho",
                "en": "http://www.espanlava.fi/en/events/event/DD2FF22D5BB9D3AD03C4C3BC1DDC56B7/Liisa_Akimof_Yokerho"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68782/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpekvteue",
            "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/yso:p1808/?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:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1494668,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-21T12:16:45.896048Z",
                    "last_modified_time": "2025-05-21T12:16:45.896062Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/627a30da-b445-417e-9b95-c0009b5355c0.jpg",
                    "name": "Suomalaisia perinnesoittimia",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "Suomalaisia perinnesoittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494668/?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-20T11:52:23.444321Z",
            "last_modified_time": "2026-05-20T11:52:23.444338Z",
            "date_published": null,
            "start_time": "2026-06-15T11:00:00Z",
            "end_time": "2026-06-15T11: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": "Suomalaiset perinnesoittimet - tarinallinen konsertti lapsiperheille",
                "sv": "Finländska traditionella instrument - en berättande konsert för barnfamiljer",
                "en": "Traditional Finnish instruments -  a storytelling concert for families "
            },
            "short_description": {
                "fi": "Tarinallisessa konsertissa tutustutaan suomalaisiin perinnesoittimiin ja kansanlauluihin",
                "sv": "I den berättande konserten får man bekanta sig med finska traditionella instrument och folkvisor.",
                "en": "In the story-driven concert, the audience will get to know Finnish traditional instruments and folk songs."
            },
            "description": {
                "fi": "<p>Tiedätkö mitä ovat pärrä, julmu, lepenelauta ja rapapalli? Tässä tarinallisessa konsertissa pääsemme tutustumaan suomalaisiin perinnesoittimiin ja kansanlauluihin. Kerromme tarinoiden avulla soittimien historiasta ja käyttötarkoituksesta.&nbsp;Konsertti kestää noin 30 minuuttia ja soveltuu myös perheen pienimmille. Tervetuloa tutustumaan vanhoihin suomalaisiin perinnesoittimiin!</p><p><br></p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta!</p><p><br></p><p>Tuokion ohjaavat kirjaston musiikkipedagogit Sakari ja Lauri.&nbsp;</p>",
                "sv": "<p>Vet du vad en pärrä, julmu, lepenelauta eller rapapalli är? I den här berättande konserten får vi bekanta oss med finska traditionella instrument och folkvisor. Genom berättelser berättar vi om instrumentens historia och användningsområden. Konserten varar cirka 30 minuter och passar även de allra yngsta i familjen. Välkommen att upptäcka gamla finska traditionella instrument!</p><p><br></p><p>Konserten är på finska</p><p>Ingen förhandsanmälan behövs och deltagandet är gratis!</p>",
                "en": "<p>Do you know what a pärrä, julmu, lepenelauta, or rapapalli is? In this story-driven concert, we will get to know Finnish traditional instruments and folk songs. Through stories, we will explore the history of the instruments and how they were used. The concert lasts about 30 minutes and is also suitable for the youngest members of the family. Welcome to discover old Finnish traditional instruments!</p><p><br></p><p>The concert is in Finnish.</p><p>No advance registration is required, and participation is free of charge!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpekvteue/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpekijnd4",
            "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:agggfz66fq/?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/yso:p11617/?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:p2625/?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"
                }
            ],
            "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": 2201343,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T11:05:46.470140Z",
                    "last_modified_time": "2026-05-20T11:05:46.470154Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/324c9f66-92d7-4c46-b0e4-37709f76a390.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Pinkillä taustalla hahmo, joka näyttäisi olevan pukeutunut villamattoon virnistelee päässään oranssit aurinkolasit. Teksti: Kotilöytöjä -tanssiesitys lapsiperheille. Ison Omenan kirjasto, Stage. Ma 15.6. kl 10:00-10:45",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201343/?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-20T11:15:23.267623Z",
            "last_modified_time": "2026-05-20T11:15:23.267641Z",
            "date_published": null,
            "start_time": "2026-06-15T07:00:00Z",
            "end_time": "2026-06-15T07: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": "Kotilöytöjä - tanssiesitys ",
                "sv": "Home Findings – dansverk",
                "en": "Homefindings - danceshow"
            },
            "short_description": {
                "fi": "Home Findings – Kotilöytöjä on tanssiteos, jossa esiintyjän omasta kodista löytyneet materiaalit muuntuvat asuiksi, musiikiksi ja liikkeeksi.",
                "sv": "Home Findings – Kotilöytöjä är ett dansverk där material som hittats i artistens eget hem förvandlas till dräkter, musik och rörelse",
                "en": "Home Findings – Kotilöytöjä is a dance performance where materials found in the performer’s own home transform into costumes, music and movement."
            },
            "description": {
                "fi": "<p>Home Findings – Kotilöytöjä on tanssiteos, jossa esiintyjän omasta kodista löytyneet materiaalit muuntuvat asuiksi, musiikiksi ja liikkeeksi. Ikea-kasseista esiin kaivetut hahmot hykerryttävät katsojaa olemuksellaan ja imaisevat mukaan mielikuvitusta avaavaan liikeretkeen. Koko perheen esitys.</p><p>Ikäsuositus 3+ vuotiaille.</p><p><br></p><p>Ma 15.6. kello 10:00-10:10:30</p><p>Ison omenan kirjaston Stagella.</p><p>Vapaa pääsy.</p><p><br></p><p>Esitys: Minna Kaaronen</p><p>äänisuunnittelu: Olli Lautiola</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Home Findings – Kotilöytöjä är ett dansverk där material som hittats i artistens eget hem förvandlas till dräkter, musik och rörelse. Figurer som plockas fram ur IKEA‑kassar får publiken att småle och drar med sig åskådarna på en fantasifull rörelseresa. En föreställning för hela familjen.</p><p>Åldersrekommendation: från 3 år</p><p>Må 15.6 kl. 10:00–10:30  </p><p>På Iso Omena bibliotekets Stage.</p><p>Fritt inträde.</p><p>Föreställning: &nbsp;Minna Kaaronen </p><p>Ljuddesign: Olli Lautiola</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Home Findings – Kotilöytöjä is a dance performance where materials found in the performer’s own home transform into costumes, music and movement. Characters dug out of IKEA bags delight the audience with their presence and draw them into an imaginative journey of motion. A performance for the whole family.</p><p>Recommended age: 3+</p><p>Mon 15 June at 10:00–10:30  </p><p>At the Stage of Iso Omena Library.</p><p>Free entry.</p><p>Performance: Minna Kaaronen</p><p>Sound design: Olli Lautiola</p><p><br></p><p>#helloespoo</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpekijnd4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68779",
            "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": 2093787,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T09:13:25.130284Z",
                    "last_modified_time": "2026-05-07T09:13:25.130297Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785549.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2093787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T09:13:25.030089Z",
            "last_modified_time": "2026-05-20T11:14:03.519968Z",
            "date_published": null,
            "start_time": "2026-06-24T14: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": "Itcevät – Pride Espalla",
                "sv": "Itcevät – Pride på Espa",
                "en": "Itcevät – Pride Espalla"
            },
            "short_description": {
                "fi": "Queer-piireissä kultti-ilmiöksi muodostunut indierockyhtye Itcevät tuo Espan lavalle teatraalisen rockshow’n.",
                "sv": "Itcevät, ett indierockband som har blivit ett kultfenomen i queerkretsarna, bjuder på en teatralisk rockshow på Esplanadestraden.",
                "en": "Indie rock band Itcevät has become a cult phenomenon in queer circles and brings a theatrical rock show to the Espa stage."
            },
            "description": {
                "fi": "<p>Queer-piireissä kultti-ilmiöksi muodostunut indierockyhtye Itcevät tuo Espan lavalle teatraalisen rockshow’n.</p><p>Kitaravetoisen yhtyeen musiikki leikittelee pehmeiden äänimaailmojen ja rouhean energisten riffien välillä saumattomasti. Suomen ensimmäisenä transrockistarana itseään tituleeraava <b>Runo Talvensalo</b> johtaa yhtyettä, jonka vauhdikkaat live-esitykset eivät jätä yleisöä kylmäksi.</p>",
                "sv": "<p>Itcevät, ett indierockband som har blivit ett kultfenomen i queerkretsarna, bjuder på en teatralisk rockshow på Esplanadestraden.</p><p>Det gitarrdrivna bandets musik leker sömlöst mellan mjuka ljudlandskap och grova energiska riff. <b>Runo Talvensalo</b>, som kallar sig Finlands första transrockstjärna, leder bandet vars fartfyllda liveuppträdanden fängslar publiken.</p>",
                "en": "<p>Indie rock band Itcevät has become a cult phenomenon in queer circles and brings a theatrical rock show to the Espa stage.</p><p>The band’s guitar-driven music seamlessly plays between soft soundscapes and raw, energetic riffs. Runo Talvensalo, who describes themself as Finland’s first trans rock star, leads the group, whose high-energy live performances never leave the audience cold.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3CE178599E0497837E8CB88A6582BA5E/Itcevat_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3CE178599E0497837E8CB88A6582BA5E/Itcevat_",
                "en": "http://www.espanlava.fi/en/events/event/3CE178599E0497837E8CB88A6582BA5E/Itcevat_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}