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&page=22&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6964,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=23&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=21&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:69028",
            "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": 2201294,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T13:13:36.668496Z",
                    "last_modified_time": "2026-05-13T13:13:36.668515Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785720.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201294/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T13:13:36.518435Z",
            "last_modified_time": "2026-06-01T06:13:22.863904Z",
            "date_published": null,
            "start_time": "2026-08-22T10: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": "Electric Elisa",
                "sv": "Electric Elisa",
                "en": "Electric Elisa"
            },
            "short_description": {
                "fi": "Electric Elisa jatkaa uteliaiden elämäntutkijoiden lumoamista musiikillaan ja energiallaan.",
                "sv": "Electric Elisa fortsätter att fängsla nyfikna livsutforskare med sin musik och energi.",
                "en": "Electric Elisa continues to enchant curious explorers of life with their music and energy."
            },
            "description": {
                "fi": "<p>Electric Elisa jatkaa uteliaiden elämäntutkijoiden lumoamista musiikillaan ja energiallaan.</p><p>Helsingissä toimiva Electric Elisa on elektronisen tanssimusiikin tutkimuskenttä. Eri genret sekoittuvat tarttuviin korvamatoihin ja euforisiin, jopa sinfonisiin elementteihin. Biiseissä kuullaan leikkisyyttä, mutta myös vakavia teemoja itsetuntemuksen, ihmisen psyyken ja universumin suurten kysymysten äärellä.</p><p>Livenä trio käsittelee tätä kaikkea hikisen rockshow’n kautta antaumuksellisesti. Paljas ja leikkisä improvisaatio on yhtyeen live-elektronisen esiintymisen perusta.</p><p>Electric Elisan debyyttialbumin <i>Fokus Lazer Sharp</i> julkaisi alkuvuodesta 2026 Alakulttuuritalo.</p>",
                "sv": "<p>Electric Elisa fortsätter att fängsla nyfikna livsutforskare med sin musik och energi.</p><p>Electric Elisa är ett Helsingforsbaserat forskningsfält för elektronisk dansmusik. Olika genrer blandas med medryckande öronmaskar och euforiska, till och med symfoniska element. Låtarna har en lekfullhet, men också allvarliga teman såsom självkännedom, det mänskliga psyket och universumets stora frågor.</p><p>Trion hanterar allt detta live med hängivenhet genom en svettig rockshow. Bar och lekfull improvisation är grunden för bandets elektroniska liveframträdanden.</p><p>Electric Elisas debutalbum <i>Fokus Lazer Sharp</i> gavs ut i början av 2026 av Alakulttuuritalo.</p>",
                "en": "<p>Electric Elisa continues to enchant curious explorers of life with their music and energy.</p><p>Helsinki-based Electric Elisa is an electronic (dance) music exploration field. Different genres blend with catchy earworms and euphoric, symphonic elements. Playful and thoughtful, the songs touch on themes of self-knowledge, the human psyche and the universe’s mysteries.</p><p>Live, this unique world unfolds through the trio’s sweaty rock-show energy. Raw and whimsical improvisation forms a passionate foundation in the band’s live electronic performance. <br> <br>Electric Elisa’s debut album <i>Fokus Lazer Sharp</i> was released in early 2026 via Alakulttuuritalo.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0138B951B1578283A7AB5B5800103B92/Electric_Elisa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/0138B951B1578283A7AB5B5800103B92/Electric_Elisa",
                "en": "http://www.espanlava.fi/en/events/event/0138B951B1578283A7AB5B5800103B92/Electric_Elisa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69028/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69026",
            "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": 2201287,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T11:13:55.466528Z",
                    "last_modified_time": "2026-05-13T11:13:55.466544Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774167.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201287/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T11:13:55.383171Z",
            "last_modified_time": "2026-06-01T06:13:22.578861Z",
            "date_published": null,
            "start_time": "2026-08-21T11: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": "MIL-Espa: Ilmavoimien Big Band",
                "sv": "MIL-Espa: Flygvapnets Big Band",
                "en": "MIL-Espa: Air Force Big Band"
            },
            "short_description": {
                "fi": "Ilmavoimien Big Bandin solistina kuullaan häikäisevänä pop-rock-taiturina tunnettua Antti Koivulaa.",
                "sv": "Flygvapnets Big Band på scenen vid MIL-Espa!",
                "en": "Air Force Big Band on the MIL-Espa stage!"
            },
            "description": {
                "fi": "<p>Ilmavoimien Big Bandin solistina kuullaan häikäisevänä pop-rock-taiturina tunnettua Antti Koivulaa.</p><p>Yhdessä esiintyjät iskevät jykevästi polulaarimusiikin suoneen, ja luvassa on hittejä sekä vauhtia viikonloppuun energisinä big band –sovituksina.<br>Kapellimestari: Ville Paakkunainen<br>Solisti: Antti Koivula</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa. Viihteelliset konsertit järjestetään Espan lavalla kesäperjantaisin ja lavan ottavat vuorollaan haltuunsa sotilassoittokuntien eri kokoonpanot ympäri Suomen.<br>Musiikillinen anti vaihtelee, ja tarjolla voi olla kokoonpanosta riippuen klassista puhallinmusiikkia, big band -musiikkia, perinteistä marssimusiikkia ja viihdemusiikkia - tai kaikkea siltä väliltä! Esiintyjinä ovat kuitenkin aina sotilassoittajat tai varusmiespalvelustaan soittokunnassa suorittavat varusmiehet.<br>Konsertteihin on vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Flygvapnets Big Band på scenen vid MIL-Espa!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadparken på somrarna sedan 1927 De underhållande konserterna ordnas på sommarfredagar på Esplanadestraden, och scenen intas turvis av militärkårernas olika sammansättningar från olika håll i Finland.</p><p>Musikutbudet varierar och beroende på sammansättningen kan kåren bjuda på klassisk blåsmusik, big band-musik, traditionell marschmusik och underhållningsmusik – eller allt däremellan! Artisterna är dock alltid militärmusiker eller beväringar som gör sin värnplikt i musikkåren.</p><p>Det är fritt tillträde till konserterna, välkommen!</p>",
                "en": "<p>Air Force Big Band on the MIL-Espa stage!</p><p>MIL-Espa summer park concerts have been taking place in Esplanade Park since 1927. The entertaining concerts are held on the Espa Stage on summer Fridays, with performances by different military band ensembles from across Finland.</p><p>The musical offerings vary, and depending on the line-up, the audience can look forward to classical brass music, big band music, traditional marching music, entertainment music – or everything in between! However, the performers are always military musicians or conscripts doing their military service in a band.</p><p>The concerts are free of charge, so don’t hesitate to drop by!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DB7F768C36D105881944A568034BB305/MIL-Espa_Ilmavoimien_Big_Band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DB7F768C36D105881944A568034BB305/MIL-Espa_Flygvapnets_Big_Band",
                "en": "http://www.espanlava.fi/en/events/event/DB7F768C36D105881944A568034BB305/MIL-Espa_Air_Force_Big_Band"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69026/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68979",
            "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:32/?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:p1278/?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": 2201228,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T09:12:59.134717Z",
                    "last_modified_time": "2026-05-12T09:12:59.134731Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785686.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201228/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T09:12:59.071164Z",
            "last_modified_time": "2026-06-01T06:13:19.842732Z",
            "date_published": null,
            "start_time": "2026-07-11T12: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": "CSSADANCE: RESONATE 回响 – Open Stage",
                "sv": "CSSADANCE: RESONATE 回响 – Open Stage",
                "en": "CSSADANCE: RESONATE 回响 – Open Stage"
            },
            "short_description": {
                "fi": "Oletko valmis unohtumattomaan tanssikokemukseen?",
                "sv": "Är du redo för en oförglömlig dansupplevelse?",
                "en": "Are you ready for an unforgettable dance experience?"
            },
            "description": {
                "fi": "<p>Oletko valmis unohtumattomaan tanssikokemukseen?</p><p>CSSADANCE on uraauurtava opiskelijoiden tanssiyhdistys Aalto-yliopistosta. RESONATE juhlistaa vuosikymmentä rytmin, intohimon ja kulttuurien  välistä ilmaisua, ja on identiteetin, taiteilijuuden ja yhteisön rohkea tutkimusmatka – tanssiesitys, jossa tunne ja energia resonoivat yhdessä.</p><p>Perinteisestä kiinalaisesta tanssista, jossa pitkät hihat virtaavat elegantisti, modernin K-popin räjähtävään voimaan, jokainen osuus kertoo tarinaa jahdatuista unelmista, rikotuista rajoita ja kulttuureista, jotka resonoivat liikkeen kautta.</p>",
                "sv": "<p>Är du redo för en oförglömlig dansupplevelse?</p><p>CSSADANCE är en banbrytande studentdansförening från Aalto-universitetet. RESONATE firar ett decennium av rytm, passion och tvärkulturella uttryck och är en djärv forskningsresa in i identitet, konstnärskap och gemenskap – en dansföreställning där känslor och energi resonerar med varandra.</p><p>Från traditionell kinesisk dans med långa ärmar som vajar elegant till den explosiva kraften i modern K-pop; varje avsnitt berättar en historia om drömmar som jagas, gränser som bryts och kulturer som resonerar genom rörelse.</p>",
                "en": "<p>Are you ready for an unforgettable dance experience?</p><p>CSSADANCE is a pioneering student dance association from Aalto University. Celebrating a decade of rhythm, passion, and multicultural expression, RESONATE is a bold exploration of identity, artistry, and community – a dance performance where emotion and energy resonate as one.</p><p>From the flowing elegance of traditional Chinese sleeve dance to the explosive power of modern K-pop, each piece tells a story of dreams pursued, boundaries broken, and cultures brought into resonance through movement.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/68A72882930A88D2C4C049BDD514D3B3/CSSADANCE_RESONATE_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/68A72882930A88D2C4C049BDD514D3B3/CSSADANCE_RESONATE_",
                "en": "http://www.espanlava.fi/en/events/event/68A72882930A88D2C4C049BDD514D3B3/CSSADANCE_RESONATE_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68979/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68974",
            "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": 2201226,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T09:12:58.639305Z",
                    "last_modified_time": "2026-05-12T09:12:58.639317Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785319.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201226/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T09:12:58.559328Z",
            "last_modified_time": "2026-06-01T06:13:19.619930Z",
            "date_published": null,
            "start_time": "2026-07-11T10: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": "North Shore Celtic Ensemble – Open Stage",
                "sv": "North Shore Celtic Ensemble – Open Stage",
                "en": "North Shore Celtic Ensemble – Open Stage"
            },
            "short_description": {
                "fi": "North Shore Celtic Ensemble yhdistää kelttiperinteen ja pohjoisamerikkalaiset vaikutteet omaleimaiseksi, energiseksi kokonaisuudeksi.",
                "sv": "North Shore Celtic Ensemble kombinerar keltisk tradition med nordamerikanska inflytelser till en unik, energisk helhet.",
                "en": "North Shore Celtic Ensemble blends Celtic tradition with North American influences into a vivid, distinctive sound."
            },
            "description": {
                "fi": "<p>North Shore Celtic Ensemble yhdistää kelttiperinteen ja pohjoisamerikkalaiset vaikutteet omaleimaiseksi, energiseksi kokonaisuudeksi.</p><p>North Shore Celtic Ensemble on dynaaminen nuorten muusikoiden yhteisö Vancouverista, Kanadasta. Vuonna 1998 puhtaasti kelttimusiikkiin keskittyneenä yhtyeenä aloittanut ryhmä on vuosien varrella kasvanut rajoja rikkovaksi, innostuneeksi musiikilliseksi tutkimusmatkaksi – paikaksi, jossa nuoret voivat jakaa ja tutkia musiikkia yhdessä.</p><p>Yhtyeen omat sävellykset ammentavat vaikutteita kanadalaisesta, quebeciläisestä ja Cape Bretonin musiikkiperinteestä sekä jazzista, ja ne yhdistyvät luoviin sovituksiin perinteisemmistä kelttikappaleista. Seitsemän julkaistua CD:tä juhlistavat heidän musiikkiaan ja länsirannikon juuriaan. NCSE tarjoaa täyden kirjon musiikillisen elämyksen, joka uhmaa kategorioita ja ylittää perinteiset genrerajat – ja hämmästyttää jokaisen kuulijan.</p>",
                "sv": "<p>North Shore Celtic Ensemble kombinerar keltisk tradition med nordamerikanska inflytelser till en unik, energisk helhet.</p><p>North Shore Celtic Ensemble är en dynamisk gemenskap av unga musiker från Vancouver, Kanada. Gruppen började 1998 som ett band med fokus på endast keltisk musik men har under årens lopp vuxit till en gränsöverskridande, entusiastisk och musikmässig forskningsresa – en plats där unga kan dela och utforska musik tillsammans.</p><p>Bandets egna kompositioner hämtar inspiration från musiktraditioner i Kanada, Quebec och Cape Breton samt jazz, och kombinerar dessa till kreativa arrangemang av mer traditionella keltiska sånger. Bandet har släppt sju CD-skivor som firar deras musik och deras rötter på västkusten. NCSE erbjuder ett brett spektrum av musikaliska upplevelser som trotsar kategorier och överskrider traditionella genregränser – och som överraskar varje lyssnare.</p>",
                "en": "<p>North Shore Celtic Ensemble blends Celtic tradition with North American influences into a vivid, distinctive sound.</p><p>The North Shore Celtic Ensemble is a dynamic community of young musicians from Vancouver, Canada. What started as a purely Celtic ensemble in 1998 has evolved over the years into a spirited no-boundaries exploration of the music that inspires them – a meeting place for youth to share and explore music together.</p><p>The ensemble's own original compositions draw on Canadian, Quebecois, Cape Breton, and jazz influences blended with creative arrangements of more traditional Celtic tunes. Seven CDs celebrate their music and west coast roots. NCSE offers a full-spectrum musical experience that defies labels and spans conventional genres, wowing everyone who sees them.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/50906D5CFE75045264F0B5AE39183387/North_Shore_Celtic_Ensemble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/50906D5CFE75045264F0B5AE39183387/North_Shore_Celtic_Ensemble",
                "en": "http://www.espanlava.fi/en/events/event/50906D5CFE75045264F0B5AE39183387/North_Shore_Celtic_Ensemble"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68974/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68990",
            "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": 2201241,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T10:13:01.660599Z",
                    "last_modified_time": "2026-05-12T10:13:01.660612Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791123.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201241/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T10:13:01.590779Z",
            "last_modified_time": "2026-05-29T13:13:33.685360Z",
            "date_published": null,
            "start_time": "2026-07-17T15: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": "Emma Salokoski Voices",
                "sv": "Emma Salokoski Voices",
                "en": "Emma Salokoski Voices"
            },
            "short_description": {
                "fi": "Emma Salokoski Voices on lauluyhtye, kuoro ja kollektiivi, joka tekee musiikkia ennakkoluulottomasti ja genrerajoja rikkoen.",
                "sv": "Emma Salokoski Voices är en sånggrupp, en kör och ett kollektiv som skapar musik utan fördomar och bryter mot genregränser.",
                "en": "Emma Salokoski Voices is a vocal ensemble, choir and collective that creates music boldly, breaking genre boundaries."
            },
            "description": {
                "fi": "<p>Emma Salokoski Voices on lauluyhtye, kuoro ja kollektiivi, joka tekee musiikkia ennakkoluulottomasti ja genrerajoja rikkoen.</p><p>Kuoro on tehnyt sound painting -improvisaatiota, luonut modernia kabareeta Sara Mellerin ja Marcus Grothin ohjauksessa ja esiintynyt eri tilaisuuksissa aina Flow Festivalin päälavalta mielenterveyskuntoutujien taidenäyttelyyn.</p><p>Keskiössä on aina kunnianhimoisen rytmimusiikin toteuttaminen omaleimaisella tavalla. Emma Salokoski Voices esiintyy 10-20 hengen kokoonpanoissa.</p><p>Emma Salokoski Voicesin juuret juontavat vuoden 2010 Kuorosota-ohjelmaan ja Emma Salokosken luotsaaman Helsingin joukkueeseen.</p><p>Pieni a cappella -naislauluyhtye on sittemmin kasvanut suuremmaksi kollektiiviksi, mutta edelleen porukan liimana toimivat yhteishenki, vertaistuki ja ystävyys – mikä myös näkyy ja kuuluu kaikessa tekemisessä.</p>",
                "sv": "<p>Emma Salokoski Voices är en sånggrupp, en kör och ett kollektiv som skapar musik utan fördomar och bryter mot genregränser.</p><p>Kören har gjort sound painting-improvisation, skapat modern kabaré under Sara Mellers och Marcus Groths ledning samt uppträtt på olika evenemang, från Flow Festivals huvudscen till en konstutställning för rehabiliteringspatienter inom mentalvården.</p><p>Fokuset ligger alltid på att förverkliga ambitiös rytmisk musik på ett unikt sätt. Emma Salokoski Voices uppträder i grupper om 10–20 personer.</p><p>Emma Salokoski Voices har sina rötter i 2010 års Kuorosota-program och Helsingforsteamet som Emma Salokoski ledde.</p><p>Den lilla a cappella-kvinnosånggruppen har sedan dess vuxit till ett större kollektiv, men gruppen hålls fortfarande samman av gemenskapsanda, kamratstöd och vänskap – vilket också syns och hörs i allt som gruppen gör.</p>",
                "en": "<p>Emma Salokoski Voices is a vocal ensemble, choir and collective that creates music boldly, breaking genre boundaries.</p><p>The choir has performed sound painting improvisation, created modern cabaret under the direction of Sara Melleri and Marcus Groth, and performed at events ranging from the main stage at Flow Festival to an art exhibition for mental health rehabilitees.</p><p>The focus is always on ambitiously creating distinctive rhythm music. Emma Salokoski Voices performs in groups of 10–20 people.</p><p>Emma Salokoski Voices has its roots in the 2010 Kuorosota programme and the Helsinki team led by Emma Salokoski.</p><p>The small a cappella women's singing group has since grown into a larger collective, but the glue of the group is still the spirit of togetherness, peer support and friendship – which can be seen and heard in everything they do.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A422202A36EBD6F66128649F162059E4/Emma_Salokoski_Voices",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A422202A36EBD6F66128649F162059E4/Emma_Salokoski_Voices",
                "en": "http://www.espanlava.fi/en/events/event/A422202A36EBD6F66128649F162059E4/Emma_Salokoski_Voices"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68990/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68987",
            "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:105/?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/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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201240,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T10:13:01.387103Z",
                    "last_modified_time": "2026-05-12T10:13:01.387116Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785711.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201240/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-12T10:13:01.309281Z",
            "last_modified_time": "2026-05-29T13:13:33.505502Z",
            "date_published": null,
            "start_time": "2026-07-17T14: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": "Rakas päiväkirja -musikaalikonsertti",
                "sv": "Musikalkonserten Rakas päiväkirja",
                "en": "Rakas päiväkirja -musikaalikonsertti"
            },
            "short_description": {
                "fi": "Musikaalikonsertti koululaisen elämästä tuo musikaalimaailman ilmiöineen alakouluikäisten ulottuville.",
                "sv": "Musikalkonserten om en skolelevs liv gör musikalvärlden och dess fenomen tillgängliga för barn i lågstadieåldern.",
                "en": "A musical concert about the life of a schoolchild will bring the world of musicals and their phenomena close to primary school children."
            },
            "description": {
                "fi": "<p>Musikaalikonsertti koululaisen elämästä tuo musikaalimaailman ilmiöineen alakouluikäisten ulottuville.</p><p>Oppilaiden elämää ja arjen teemoja käsitellään sekä tuttujen että vähemmän tunnettujen musikaalikappaleiden kautta, vilinää ja vilskettä unohtamatta.</p><p>Esiintyjinä nähdään Joel Mäkinen ja Nea-Maria Alanko, jotka ovat koulutettuja musikaalialan ammattilaisia ja musiikkipedagogeja.</p><p>Säestävänä muusikkona toimii musiikkiteatteriin erikoistunut pianisti Maritta Manner.</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p><p>Linkki traileriin: https://www.dropbox.com/scl/fi/w7wdghfwlsw8dsvcpq7hv/Rakas-p-iv-kirja.mov?rlkey=dp1skt1eo3vet8iky6o00gruu&st=1ak1u2u9&dl=0</p>",
                "sv": "<p>Musikalkonserten om en skolelevs liv gör musikalvärlden och dess fenomen tillgängliga för barn i lågstadieåldern.</p><p>Elevernas liv och vardagsteman behandlas genom både bekanta och mindre kända musikallåtar, utan att glömma liv och rörelse.</p><p>På scenen uppträder Joel Mäkinen och Nea-Maria Alanko, som är utbildade yrkespersoner inom musikalbranschen och musikpedagoger. Maritta Manner, pianist med musikteater som specialitet, ackompanjerar framförandet.</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>",
                "en": "<p>A musical concert about the life of a schoolchild will bring the world of musicals and their phenomena close to primary school children.</p><p>Pupils' lives and everyday themes are explored through both familiar and lesser-known musical songs with all the activity they entail.</p><p>The performers are Joel Mäkinen and Nea-Maria Alanko, both trained music professionals and music teachers. The performance will be accompanied by Maritta Manner, a pianist specialising in musical theatre.</p><p>The performance is produced in cooperation with Concert Centre Finland.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3DBF59A5A737DFA04F7ADBA1D4F9EA6F/Rakas_paivakirja_-musikaalikonsertti",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3DBF59A5A737DFA04F7ADBA1D4F9EA6F/Musikalkonserten_Rakas_paivakirja",
                "en": "http://www.espanlava.fi/en/events/event/3DBF59A5A737DFA04F7ADBA1D4F9EA6F/Rakas_paivakirja_-musikaalikonsertti"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68987/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69017",
            "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": 2201279,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-13T09:14:02.763928Z",
                    "last_modified_time": "2026-05-13T09:14:02.763943Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785928.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201279/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-13T09:14:02.653760Z",
            "last_modified_time": "2026-05-29T12:13:38.582869Z",
            "date_published": null,
            "start_time": "2026-08-14T14: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": "Jukka Tolonen Ramblin’ Jazz Quartet",
                "sv": "Jukka Tolonen Ramblin’ Jazz Quartet",
                "en": "Jukka Tolonen Ramblin’ Jazz Quartet"
            },
            "short_description": {
                "fi": "Jotain vanhaa, jotain uutta ja jotain lainattua vuosien varrelta! Tämä on Tolosta!",
                "sv": "Något gammalt, något nytt och något lånat från årens lopp! Det här är Tolonen!",
                "en": "Something old, something new and something borrowed from over the years! This is Tolonen!"
            },
            "description": {
                "fi": "<p>Jotain vanhaa, jotain uutta ja jotain lainattua vuosien varrelta! Tämä on Tolosta!</p><p>Maamme yhden kansainvälisesti arvostetumman kitarataiteilijan, <b>Jukka Tolosen</b> uusin bändi syntyi kohtaamisesta Tolonen-dokumenttielokuvaa tekevän, myös kitaraa hienosti soittavan <b>Lasse Keson</b> kanssa. Kesolla on musiikin historiaa myös jo 70-luvun alusta alkaen.</p><p>Bändille otettiin uusvanha nimi Jukan alkuvuosilta ja mukaan pianoon saatiin Jukan kanssa jo aikaisemmin soittanut <b>Antti Utriainen</b>, rumpuihin <b>Vesa Lapinkero</b>.</p><p>Hypnoottista, jazzillista improvisaatiomusiikkia, basson ja rumpujen auratessa helpon tuntuisesti tietä, joka ei katkea! Basson nyanssit tuntuvat välillä kuin kitaran viesteiltä, ja yhtyeen klubeilla lähes kaksituntisiksi venyneet esiintymiset ovat pitäneet ihmiset vallassaan ja lumoutuneina.</p>",
                "sv": "<p>Något gammalt, något nytt och något lånat från årens lopp! Det här är Tolonen!</p><p>En av de internationellt mest uppskattade gitarrartisterna i vårt land, <b>Jukka Tolonen</b>, grundade sitt nyaste band efter ett möte med <b>Lasse Keso</b>, som gör dokumentärfilmen Tolonen och som också spelar gitarr skickligt. Keso har också erfarenhet inom musik redan från början av 70-talet.</p><p>Bandet fick ett nygammalt namn från Jukkas tidiga år och bandet fick <b>Antti Utriainen</b>, som redan tidigare spelat med Jukka, som pianist samt <b>Vesa Lapinkero</b> som trumslagare.</p><p>Hypnotisk improvisationsmusik i jazzstil, där bas och trummor lätt banar väg, vilken inte bryts! Basens nyanser känns ibland som gitarrmeddelanden, och bandets nästan två timmar långa uppträdanden på klubbar har hållit människorna fängslade och förtrollade.</p>",
                "en": "<p>Something old, something new and something borrowed from over the years! This is Tolonen!</p><p>The latest band of one of our country's most internationally acclaimed guitarists, <b>Jukka Tolonen</b>, was born out of a meeting with <b>Lasse Keso</b>, who is also a great guitarist and is making a documentary film about Tolonen. Keso also has a musical history dating back to the early 70s.</p><p>A new name from Jukka's early years was added to the band, and <b>Antti Utriainen</b>, who has played with Jukka before, was added on piano and <b>Vesa Lapinkero</b> on drums.</p><p>Hypnotic, jazzy improvisational music, with bass and drums ploughing an easy path that will not quit! The bass's nuances sometimes feel like messages from a guitar, and the band's performances in clubs, which have stretched to almost two hours, have kept people captivated and enthralled.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3DB252E5ACD0489ACCEBDB54C67BC56C/Jukka_Tolonen_Ramblin_Jazz_Quartet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3DB252E5ACD0489ACCEBDB54C67BC56C/Jukka_Tolonen_Ramblin_Jazz_Quartet",
                "en": "http://www.espanlava.fi/en/events/event/3DB252E5ACD0489ACCEBDB54C67BC56C/Jukka_Tolonen_Ramblin_Jazz_Quartet"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69017/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69002",
            "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:105/?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/kulke:596/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201262,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T13:12:59.509146Z",
                    "last_modified_time": "2026-05-12T13:12:59.509168Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785669.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201262/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-12T13:12:59.438027Z",
            "last_modified_time": "2026-05-29T12:13:36.687577Z",
            "date_published": null,
            "start_time": "2026-07-25T11: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": "Jokeri Pokeri Box – Ihan Simona! -show",
                "sv": "Jokeri Pokeri Box – Ihan Simona! -show",
                "en": "Jokeri Pokeri Box – Ihan Simona! -show"
            },
            "short_description": {
                "fi": "Taikuri Simo Aallon ja avustaja Kirsti Aallon riemukas koko perheen taikashow vie kaikenikäiset katsojat taikamaailmaan, jossa mikään ei ole mahdotonta.",
                "sv": "Trollkarlen Simo Aaltos och assistenten Kirsti Aaltos glädjefyllda trollkarlsshow för hela familjen tar deltagare i alla åldrar till en magisk värld där ingenting är omöjligt.",
                "en": "Magician Simo Aalto and assistant Kirsti Aalto's exhilarating family magic show takes audience members of all ages into a magical world where nothing is impossible."
            },
            "description": {
                "fi": "<p>Taikuri Simo Aallon ja avustaja Kirsti Aallon riemukas koko perheen taikashow vie kaikenikäiset katsojat taikamaailmaan, jossa mikään ei ole mahdotonta.</p><p>Mukana seikkailuissa ovat tietysti Simon ja Kirstin eläinkaverit Erkki-kani ja Paloma-kyyhky sekä itsepäinen papukaija Eino. Ja lapset saavat toki auttaa taikuria taikapuhalluksin ja taikasanoin!</p><p>Simo kertoo: ”Tänä vuonna vietän 50-vuotistaiteilijajuhlaani. Pitkän urani aikana on jo yksi sukupolvi kasvanut aikuisiksi, ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa suosikkia. Tämä on minulle ja Kirstille suuri ilo. Siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</p>",
                "sv": "<p>Trollkarlen Simo Aaltos och assistenten Kirsti Aaltos glädjefyllda trollkarlsshow för hela familjen tar deltagare i alla åldrar till en magisk värld där ingenting är omöjligt.</p><p>I äventyren deltar naturligtvis också Simos och Kirstis djurvänner kaninen Erkki och duvan Paloma samt den envisa papegojan Eino. Och barnen får hjälpa trollkarlen med magiska blåsningar och trollformler!</p><p>Simo berättar: ”I år firar jag mitt 50-årsjubileum som konstnär. Under min långa karriär har en generation redan blivit vuxen och kommer nu med sina egna barn för att se sin barndoms favorit. Detta är ett stort nöje för mig och Kirsti. Därför vill jag erbjuda glädje och förundran till personer i alla åldrar.”</p>",
                "en": "<p>Magician Simo Aalto and assistant Kirsti Aalto's exhilarating family magic show takes audience members of all ages into a magical world where nothing is impossible.</p><p>Of course, Simo and Kirsti's animal friends Erkki the rabbit and Paloma the pigeon, as well as Eino the stubborn parrot, will also be on board. And of course children can help the magician with magic blows and magic words!</p><p>Simo says: \"I am celebrating my 50th anniversary as an artist this year. In my long career, I have already seen a generation grow up, and they are now attending my shows with their own children to watch their childhood favourite. This is a great pleasure for me and Kirsti. That is why I want to bring joy and wonder to people of all ages.\"</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/946B8C27F1608A13EE4EFFFEB727C1D1/Jokeri_Pokeri_Box_Ihan_Simona_-show",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/946B8C27F1608A13EE4EFFFEB727C1D1/Jokeri_Pokeri_Box_Ihan_Simona_-show",
                "en": "http://www.espanlava.fi/en/events/event/946B8C27F1608A13EE4EFFFEB727C1D1/Jokeri_Pokeri_Box_Ihan_Simona_-show"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69001",
            "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": 2201261,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T13:12:59.267096Z",
                    "last_modified_time": "2026-05-12T13:12:59.267110Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785707.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201261/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T13:12:59.200847Z",
            "last_modified_time": "2026-05-29T12:13:36.522814Z",
            "date_published": null,
            "start_time": "2026-07-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": "Arja Koriseva",
                "sv": "Arja Koriseva",
                "en": "Arja Koriseva"
            },
            "short_description": {
                "fi": "Espan lavalla kuullaan tuttuja, nostalgisia säveliä sekä Arja Korisevan oman tuotannon rakastetuimpia lauluja vuosien varrelta.",
                "sv": "På Esplanadestraden hörs bekanta, nostalgiska melodier samt de mest älskade sångerna från Arja Korisevas egen produktion från årens lopp.",
                "en": "The audience will be treated to familiar, nostalgic tunes as well as some of Arja Koriseva's most beloved songs from her own production over the years on Espa Stage."
            },
            "description": {
                "fi": "<p>Espan lavalla kuullaan tuttuja, nostalgisia säveliä sekä Arja Korisevan oman tuotannon rakastetuimpia lauluja vuosien varrelta.</p><p>Luvassa on lämminhenkinen ja iloinen konserttihetki, jossa musiikki syntyy lähellä kuulijaa – akustisesti ja vahvasti läsnä.</p><p><b>Arja Koriseva</b> ja pianisti <b>Minna Lintukangas</b> ovat konsertoineet yhdessä jo viidentoista vuoden ajan. Heidän yhteinen akustinen albuminsa <i>Majakanvartijat</i> julkaistiin syksyllä 2019.</p>",
                "sv": "<p>På Esplanadestraden hörs bekanta, nostalgiska melodier samt de mest älskade sångerna från Arja Korisevas egen produktion från årens lopp.</p><p>Det blir en varm och glad konsertupplevelse, där musiken skapas nära lyssnaren – akustiskt och med stark närvaro.</p><p><b>Arja Koriseva</b> och pianisten <b>Minna Lintukangas</b> har uppträtt tillsammans redan i femton år. Deras gemensamma akustiska album <i>Majakanvartijat</i> släpptes hösten 2019.</p>",
                "en": "<p>The audience will be treated to familiar, nostalgic tunes as well as some of Arja Koriseva's most beloved songs from her own production over the years on Espa Stage.</p><p>It will be a warm and joyful concert experience, where music is created close to the listener – acoustically and up close and personal.</p><p><b>Arja Koriseva</b> and Pianist <b>Minna Lintukangas</b> have been performing together for fifteen years. Their joint acoustic album <i>Majakanvartijat</i> was released in autumn 2019.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6BB9461E557291E1410F5615E6C1815C/Arja_Koriseva",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6BB9461E557291E1410F5615E6C1815C/Arja_Koriseva",
                "en": "http://www.espanlava.fi/en/events/event/6BB9461E557291E1410F5615E6C1815C/Arja_Koriseva"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69001/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68972",
            "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": 2201220,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:28.280524Z",
                    "last_modified_time": "2026-05-12T08:14:28.280537Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785717.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:28.172322Z",
            "last_modified_time": "2026-05-29T12:13:32.722135Z",
            "date_published": null,
            "start_time": "2026-07-04T13: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": "Hopeasiivet",
                "sv": "Hopeasiivet",
                "en": "Hopeasiivet"
            },
            "short_description": {
                "fi": "Hopeasiivet ei jaksa musiikillista small talkia, vaan luottaa vilpittömyyden voimaan.",
                "sv": "Hopeasiivet orkar inte med musikalisk small talk utan litar på kraften av uppriktighet.",
                "en": "Hopeasiivet is not given to musical small talk but relies on the power of sincerity."
            },
            "description": {
                "fi": "<p>Hopeasiivet ei jaksa musiikillista small talkia, vaan luottaa vilpittömyyden voimaan.</p><p>Yhtyeelle tunnusomaista on viitata alati vaihtelevien vaikutteidensa ääripisteisiin. Ehkä tänäänkin kännykän muistioon kirjataan tahti Kate Bushia, huomenna toinen Ultra Brata ja sunnuntaina kertosäkeellinen PMMP-tyyliin. Välillä kaikki on sirpaleista ja hupsuakin – ja juuri siinä piilee viehätys. Jokainen sana ja sävel merkitsee, tai niin Hopeasiivet ainakin uskoo.</p><p>Kahden EP:n ja useiden singlejulkaisujen jälkeen yhtye julkaisi odotetun esikoisalbuminsa tammikuussa 2026.</p>",
                "sv": "<p>Hopeasiivet orkar inte med musikalisk small talk utan litar på kraften av uppriktighet.</p><p>Bandet kännetecknas av referenser till ytterligheterna i sina ständigt föränderliga influenser. Kanske också i dag antecknas Kate Bush i mobilens anteckningsblock, i morgon Ultra Bra och på söndag en refräng i PMMP:s stil. Ibland är allt fragmenterat och fånigt – och det är just det som fascinerar. Varje ord och melodi är betydelsefull, eller åtminstone så tror Hopeasiivet.</p><p>Efter två EP:s och flera singlar släppte bandet sitt efterlängtade debutalbum i januari 2026.</p>",
                "en": "<p>Hopeasiivet is not given to musical small talk but relies on the power of sincerity.</p><p>The band is characterised by references to the extremes of their ever-changing influences. Today, a Kate Bush bar may be jotted down in the phone notes, tomorrow another one from Ultra Bra and on Sunday a PMMP-style chorus. Sometimes everything is fragmented and silly – and therein lies the charm. Every word and every tune counts, or so Hopeasiivet believes.</p><p>After two EPs and several singles, the band released their highly anticipated debut album in January 2026.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet",
                "en": "http://www.espanlava.fi/en/events/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68972/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68969",
            "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:105/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:27.926807Z",
                    "last_modified_time": "2026-05-12T08:14:27.926820Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785685.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-12T08:14:27.807313Z",
            "last_modified_time": "2026-05-29T12:13:32.566537Z",
            "date_published": null,
            "start_time": "2026-07-04T11: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": "Skidit-disko",
                "sv": "Skidit-discot",
                "en": "Skidit-disko"
            },
            "short_description": {
                "fi": "Skidit-disko on oodi elämälle, tanssille ja kavereille. Se on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Diskon puheosuudet englanniksi.",
                "sv": "Skidit-discot är ett ode till livet, dansen och kompisarna. Där utlovas de bästa låtarna, lek och galet festande för alla åldrar. De talade avsnitten på discot är på engelska.",
                "en": "Skidit-disko is an ode to life, dance, and friendship – crazy fun for all ages! Spoken in English."
            },
            "description": {
                "fi": "<p>Skidit-disko on oodi elämälle, tanssille ja kavereille. Se on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Diskon puheosuudet englanniksi.</p><p>Jo kymmenen vuoden ajan Skidit-disko on tanssittanut laivoilla, museoissa, tuntureilla ja klubeilla. Kymmeniätuhansia bailaajia, litroittain pillimehua ja läjäpäin biisejä! Mukana menossa on aina DJ ja MC, välillä bileisiin kutsutaan kivoja vieraita.</p><p>Let’s BAILA!</p><p>IG: @skiditfestarit<br>FB: @skidit.fi<br>https://www.skidit.fi/</p>",
                "sv": "<p>Skidit-discot är ett ode till livet, dansen och kompisarna. Där utlovas de bästa låtarna, lek och galet festande för alla åldrar. De talade avsnitten på discot är på engelska.</p><p>Skidit-discot har redan i tio år fått publiken att dansa på fartyg, i museer, på fjäll och klubbar. Tiotusentals festdeltagare, otaliga liter sugrörssaft och massor av låtar! I discot deltar alltid en DJ och MC, ibland med roliga gäster.</p>",
                "en": "<p>Skidit-disko is an ode to life, dance, and friendship – crazy fun for all ages! Spoken in English.</p><p>For over ten years, Skidit-disko has been making people dance on boats, in museums, on mountaintops, and in clubs. Tens of thousands of partygoers, liters of lemonade, and tons of great tracks! Every party features a DJ and an MC, and sometimes special guests join the fun.</p><p>Let’s BAILA!</p><p>IG: @skiditfestarit<br>FB: @skidit.fi<br>https://www.skidit.fi/</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-disko",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-discot",
                "en": "http://www.espanlava.fi/en/events/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-disko"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68969/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68968",
            "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": 2201218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:27.568529Z",
                    "last_modified_time": "2026-05-12T08:14:27.568542Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785716.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:27.460862Z",
            "last_modified_time": "2026-05-29T12:13:32.407060Z",
            "date_published": null,
            "start_time": "2026-07-03T14: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": "Rakkaudella Helena Lindgren & Jorma Uotinen",
                "sv": "Rakkaudella Helena Lindgren & Jorma Uotinen",
                "en": "Rakkaudella Helena Lindgren & Jorma Uotinen"
            },
            "short_description": {
                "fi": "Uotisen ja Lindgrenin musiikillinen yhteistyö on kunnianosoitus elämälle ja taiteelle.",
                "sv": "Det musikaliska samarbetet mellan Uotinen och Lindgren är en hyllning till livet och konsten.",
                "en": "The musical collaboration between Uotinen and Lindgren is a tribute to life and art."
            },
            "description": {
                "fi": "<p>Uotisen ja Lindgrenin musiikillinen yhteistyö on kunnianosoitus elämälle ja taiteelle.</p><p>Konsertti on kahden kokeneen tulkitsijan vuoropuhelu, joka sykkii samaa rytmiä kuin rakkaus itse. Se käsittelee taiteilijoiden omia elämänvaiheita, rakkautta, ystävyyttä ja kaipausta.</p><p><b>Jorma Uotinen</b> on suomalaisen taiteen monilahjakkuus. Hänen tumma äänensä ja vahva läsnäolonsa tekevät jokaisesta esiintymisestä ainutlaatuisen kokemuksen.</p><p><b>Helena Lindgren</b> on laulaja ja näyttelijä, jonka lämmin ja sävykäs ääni on kuin luotu chansonin, jazzin ja suomalaisten ikivihreiden tulkintaan.</p><p>Rakkaudella Helena & Jorma -konserteissa kuullaan rakastettuja suomalaisia ja kansainvälisiä (\"Hymne à l’amour\", \"Dance Me to the End of Love\", \"Puhu hiljaa rakkaudesta\") lauluja, teemoina rakkaus, aika ja ihmisyys.</p><p>Säestys: Trio Avec        <br> <br><i>“Lauluja vuosien varrelta, yksin ja yhdessä. Lauluja rakkaudesta, kaipuusta, elämän illuusioista, ilosta, surusta, kielletyistä leikeistä, villeistä ruusuista, elämästä. Meistä itsestämme.”</i></p>",
                "sv": "<p>Det musikaliska samarbetet mellan Uotinen och Lindgren är en hyllning till livet och konsten.</p><p>Konserten är en dialog mellan två erfarna uttolkare och den pulserar i samma takt som kärleken själv. Den handlar om konstnärernas egna livsskeden, om kärlek, vänskap och längtan.</p><p><b>Jorma Uotinen</b> är en multitalang inom finländsk konst. Hans mörka röst och starka närvaro gör varje uppträdande till en unik upplevelse.</p><p><b>Helena Lindgren</b> är en sångare och skådespelare med en varm och nyanserad röst som är som skapad för tolkning av chanson, jazz och finländska evergreens.</p><p>Konserterna Rakkaudella Helena & Jorma bjuder på älskade finländska och internationella sånger (”Hymne à l’amour”, ”Dance Me to the End of Love”, ”Puhu hiljaa rakkaudesta”) med kärlek, tid och mänsklighet som teman.</p><p>Ackompanjemang: Trio Avec<br> <br><i>”Sånger från årens lopp, ensam och tillsammans. Sånger om kärlek, längtan, livets illusioner, glädje, sorg, förbjudna lekar, vilda rosor, livet. Om oss själva.”</i></p>",
                "en": "<p>The musical collaboration between Uotinen and Lindgren is a tribute to life and art.</p><p>The concert is a dialogue between two experienced interpreters, beating to the same rhythm as love itself. It deals with the artists' own lives, love, friendship and longing.</p><p><b> Jorma Uotinen</b> is a multi-talented Finnish artist. His dark voice and strong presence make every performance a unique experience.</p><p><b>Helena Lindgren</b> is a singer and actor whose warm voice rich in nuances seems made for interpreting chanson, jazz and Finnish evergreens</p><p>The Rakkaudella Helena & Jorma concerts will feature beloved Finnish and international songs (Hymne à l'amour, Dance Me to the End of Love, Puhu hiljaa rakkaudesta) on the themes of love, time and humanity.</p><p>Accompaniment: Trio Avec <br> <br><i>\"Songs from over the years, alone and together. Songs about love, longing, the illusions of life, joy, sorrow, forbidden games, wild roses, life. About ourselves.\"</i></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen",
                "en": "http://www.espanlava.fi/en/events/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68968/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:746e9cd4-4f25-44b7-a00f-5198f01d007f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41047/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2384784,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-29T11:39:28.645441Z",
                    "last_modified_time": "2026-05-29T11:39:28.645458Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/aa9d7115-06d3-ef11-8eea-000d3adf4af4",
                    "name": "Testikuva",
                    "cropping": "",
                    "photographer_name": "Molla Magia",
                    "alt_text": "Testikuva",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384784/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-29T11:39:31.219769Z",
            "last_modified_time": "2026-05-29T11:39:31.219788Z",
            "date_published": "2026-05-28T11:58:03Z",
            "start_time": "2026-06-07T12:00:00Z",
            "end_time": "2026-06-07T14: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": "Uskomaton pellehyppytapahtuma!!"
            },
            "short_description": {
                "fi": "Pellet hyppivät ja laulavat hauskasti"
            },
            "description": {
                "fi": "<div><p>Pellet hyppivät ja laulavat hauskasti. Pellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskasti.</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Lisätietoja"
            },
            "provider": {
                "fi": "Pellehyppytapahtumat Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:746e9cd4-4f25-44b7-a00f-5198f01d007f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69100",
            "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/artist/juha-tapio/juha-tapio-kaunis-ihminen-20-v-4165832/"
                    },
                    "price": {
                        "fi": "48,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384762,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-26T13:14:04.777337Z",
                    "last_modified_time": "2026-05-26T13:14:04.777352Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793256.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-26T13:14:04.601943Z",
            "last_modified_time": "2026-05-29T11:13:28.678605Z",
            "date_published": null,
            "start_time": "2026-10-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Juha Tapio: Kaunis ihminen 20 v"
            },
            "short_description": {
                "fi": "Miltä kuulostaa yksi Juha Tapion rakastetuimmista albumeista 20 vuotta ilmestymisensä jälkeen?"
            },
            "description": {
                "fi": "<p>Miltä kuulostaa yksi Juha Tapion rakastetuimmista albumeista 20 vuotta ilmestymisensä jälkeen?</p><p>Sen pääsee kokemaan ainutlaatuisessa juhlakonsertissa Helsingin Savoy-teatterissa perjantaina 02.10.2026 klo 18.00, kun Juha Tapio juhlistaa Kaunis ihminen -albuminsa 20-vuotisjuhlavuotta.</p><p>Juha Tapion Toisillemme Parhaat -konsertit myytiin samalla lavalla kahdesti loppuun aiemmin tänä vuonna. Nyt Savoy-teatterissa koetaan uusi erityinen ilta yhden suomalaisen popmusiikin tärkeimmän albumin parissa.</p><p>Kaunis ihminen oli Juha Tapion viides studioalbumi ja levy, joka nosti hänen uransa uudelle tasolle. Albumin laulut, tunnelma ja aiempaa bändivetoisempi soundi jättivät pysyvän jäljen suomalaisiin kuulijoihin – ja monet kappaleista elävät vahvasti edelleen.</p><p>Juhlakonsertissa albumi kuullaan kokonaisuudessaan. Mukana ovat tutut laulut, jotka ovat kulkeneet mukana vuosien ajan, mutta myös harvemmin kuullut kappaleet, joita ei ole usein päästy kokemaan livenä.</p><p>Edessä on ilta täynnä muistoja, suuria tunteita ja lauluja, jotka ovat saaneet vuosien myötä aivan uusia sävyjä.</p><p>Kesto n. 1 h 30 min, ei väliaikaa</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6B69B52398909DE021169FCB183FCA24/Juha_Tapio_Kaunis_ihminen_20_v"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Central Line Entertainment Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69100/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd5jq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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: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"
                },
                {
                    "@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:agphfvdtvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvduoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdu4q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdvny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdv44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdwni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdw4i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdxly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdx2y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdyme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdy2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdzme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdzzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd2im/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd2wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3di/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3qq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd364/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd4me/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd44i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T08:03:54.359373Z",
            "last_modified_time": "2026-05-29T08:53:13.885921Z",
            "date_published": null,
            "start_time": "2026-08-04T13:00:00Z",
            "end_time": "2026-12-15T15: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": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphgc6nau",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6koe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6ld4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6lte/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6mcq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6mr4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2384782,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-29T08:42:47.398908Z",
                    "last_modified_time": "2026-05-29T08:42:47.398921Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a58c5b8c-bee6-4445-9e77-f7e325eb42d3.png",
                    "name": "",
                    "cropping": "178,0,1038,859",
                    "photographer_name": "Elina Kulmala",
                    "alt_text": "Kuvassa on kirjankansia ja teksti Entressen lukupiiri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384782/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-29T08:49:36.648906Z",
            "last_modified_time": "2026-05-29T08:49:36.648918Z",
            "date_published": null,
            "start_time": "2026-08-20T11:00:00Z",
            "end_time": "2026-12-10T13: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": "Entressen lukupiiri"
            },
            "short_description": {
                "fi": "Kokoonnumme keskustelemaan kirjoista; niiden hahmoista, juonista ja teemoista. Lukupiiri pidetään kirjaston Aisti huoneessa."
            },
            "description": {
                "fi": "<p>kuukausittain klo 14:00-15:30</p><p><br></p><p>20.08. Vareda - Sven Mikser </p><p>17.09. Manillaköysi - Veijo Meri</p><p>15.10. Minne virta kuljettaa - Shelley Read </p><p>12.11. Fahrenheit 451 - Ray Bradbury</p><p>10.12. Venus ja minä - Emi Yagi</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6nau/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphgc6p4q",
            "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/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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6nqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6oba/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6opm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6o6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6pmy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2384783,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-29T07:50:43.289010Z",
                    "last_modified_time": "2026-05-29T07:50:43.289023Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e511e06b-4ff0-4b96-8a95-154fe9fe9ce4.png",
                    "name": "",
                    "cropping": "180,0,1032,851",
                    "photographer_name": "Elina Kulmala",
                    "alt_text": "Kuvassa kirjan kansia ja teksti sellon lukupiiri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384783/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-29T08:39:50.827769Z",
            "last_modified_time": "2026-05-29T08:39:50.827786Z",
            "date_published": null,
            "start_time": "2026-08-19T11:00:00Z",
            "end_time": "2026-12-09T13: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": "Sellon lukupiiri"
            },
            "short_description": {
                "fi": "Kokoonnumme keskustelemaan kirjoista; niiden hahmoista, juonista ja teemoista. Lukupiiri pidetään kirjaston Ilmari-huoneessa."
            },
            "description": {
                "fi": "<p>kuukausittain klo 14:00-15:30</p><p><br></p><p>19.08. Vareda - Sven Mikser </p><p>16.09. Manillaköysi - Veijo Meri</p><p>14.10. Minne virta kuljettaa - Shelley Read </p><p>11.11. Fahrenheit 451 - Ray Bradbury</p><p>09.12. Venus ja minä - Emi Yagi</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphgc6p4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpe7jeeuq",
            "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/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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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"
                },
                {
                    "@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"
                }
            ],
            "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:agpe7jd7dm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jd7wi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeaiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeaz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jebki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeb4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jecnu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jedfu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeeae/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2212520,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-22T11:45:43.073404Z",
                    "last_modified_time": "2026-05-22T11:45:43.073417Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/06c655ce-0314-41a2-beff-3f003d39ecd2.png",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Kirjasto Sellon Kesäterassilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2212520/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-22T12:01:54.150736Z",
            "last_modified_time": "2026-05-29T08:38:20.306780Z",
            "date_published": null,
            "start_time": "2026-06-02T11:00:00Z",
            "end_time": "2026-07-28T12: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": "Kirjasto Sellon Kesäterassilla"
            },
            "short_description": {
                "fi": "Espoon kaupunginkirjasto järjestää viikkottain tapahtumaa Sellon Kesäterassilla"
            },
            "description": {
                "fi": "<p>Kirjasto järjestää jälleen ohjelmaa Sellon Kesäterassilla joka tiistai klo 14-15 kesä- ja heinäkuun ajan. Ohjelmaa riittää kaikenikäisille pitkin kesää. Ohjelmaa löytyy kirjallisuudesta teatteriin ja kirjaston eri palveluihin. Huonon sään sattuessa ohjelma siirretään kirjaston sisätiloihin.</p><p><br></p><p>2.6. Antikirjavinkkaus</p><p>9.6. Muskarikonsertti klo 14 (0-6v) + musakirjavinkkaus klo 14.30</p><p>16.6. POC-lukupiirin kirjapiknik (klo 14-16)</p><p>23.6. Kamishibai-teatteria lapsille (esitykset klo 14 ja 14.30)</p><p>30.6. Lastenkirjavinkkejä</p><p>7.7. Senioritoimintavinkkaus</p><p>14.7. Nuoret taiteilijat: musa- ja kirjavinkkaus</p><p>21.7. Lautapelivinkkaus aikuisille</p><p>28.7. Eläinkirjavinkkaus ja lukukoira esittelyssä!</p><p><br></p><p>Tervetuloa kuuntelemaan ja osallistumaan!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Sellon Kesäterassi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeeuq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd7u4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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: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"
                },
                {
                    "@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:agphfvd5yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd6iy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd6ye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd7he/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T07:28:16.768071Z",
            "last_modified_time": "2026-05-29T07:28:16.768083Z",
            "date_published": null,
            "start_time": "2026-06-02T13:00:00Z",
            "end_time": "2026-06-23T15: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": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd7u4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpg5cvjda",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:koha",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cu6cm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cu6se/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cu67u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cu7na/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cu72q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvagu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvati/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvbay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvbmy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvb2m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvcgi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvcsa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvc6e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvdme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvdyi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvefm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvesm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cve7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvfly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvfyu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvgga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvgti/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvhae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvhmu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvhza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cviim/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cviwi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-28T11:47:11.256414Z",
            "last_modified_time": "2026-05-28T11:47:11.256430Z",
            "date_published": null,
            "start_time": "2026-06-01T11:30:00Z",
            "end_time": "2026-08-31T13: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": "Liikkuva Espoo-info Entressen kirjasto",
                "sv": "Mobila Esbo-info Entressebiblioteket",
                "en": "Mobile Espoo Info Entresse Library"
            },
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvjda/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}