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

{
    "meta": {
        "count": 6998,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=32&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=30&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:68569",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824270,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-29T08:13:14.836200Z",
                    "last_modified_time": "2026-04-29T08:13:14.836217Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774160.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-29T08:13:14.750856Z",
            "last_modified_time": "2026-05-08T11:13:48.420860Z",
            "date_published": null,
            "start_time": "2026-05-29T11: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: Kaartin soittokunta",
                "sv": "MIL-Espa: Gardets musikkår",
                "en": "MIL-Espa: The Guards Band"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "MIL-Espan lavalla Kaartin soittokunta!",
                "sv": "Gardets musikkår på scenen vid MIL-Espa!",
                "en": "The Guards Band on the MIL-Espa stage!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E0B2F8317198F4E0C7E25E9174FDBEF5/MIL-Espa_Kaartin_soittokunta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/E0B2F8317198F4E0C7E25E9174FDBEF5/MIL-Espa_Gardets_musikkar",
                "en": "http://www.espanlava.fi/en/events/event/E0B2F8317198F4E0C7E25E9174FDBEF5/MIL-Espa_The_Guards_Band"
            },
            "description": {
                "fi": "<p>MIL-Espan lavalla Kaartin soittokunta!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Viihteelliset konsertit järjestetään Espan lavalla kesäperjantaisin ja lavan ottavat vuorollaan haltuunsa sotilassoittokuntien eri kokoonpanot ympäri Suomen.</p><p>Musiikillinen anti vaihtelee, ja tarjolla voi olla kokoonpanosta riippuen klassista puhallinmusiikkia, big band -musiikkia, perinteistä marssimusiikkia ja viihdemusiikkia - tai kaikkea siltä väliltä!</p><p>Esiintyjinä ovat kuitenkin aina sotilassoittajat tai varusmiespalvelustaan soittokunnassa suorittavat varusmiehet.</p><p>Konsertteihin on vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Gardets musikkår 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>The Guards 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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68569/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68577",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824277,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-29T09:13:37.737995Z",
                    "last_modified_time": "2026-04-29T09:13:37.738012Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-29T09:13:37.647431Z",
            "last_modified_time": "2026-05-08T10:13:44.993062Z",
            "date_published": null,
            "start_time": "2026-05-23T09:00:00Z",
            "end_time": "2026-05-23T13: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": "Big Band Marathon",
                "sv": "Big Band Marathon",
                "en": "Big Band Marathon"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Yksi varma kesän lähestymisen merkki on Espan Big Band Marathon!",
                "sv": "Ett säkert tecken på att sommaren närmar sig är Espa Big Band Marathon!",
                "en": "One sure sign of summer approaching is the Espa Big Band Marathon!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/16FF420F3BE4CEF17666718D518C4B1C/Big_Band_Marathon",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/16FF420F3BE4CEF17666718D518C4B1C/Big_Band_Marathon",
                "en": "http://www.espanlava.fi/en/events/event/16FF420F3BE4CEF17666718D518C4B1C/Big_Band_Marathon"
            },
            "description": {
                "fi": "<p>Yksi varma kesän lähestymisen merkki on Espan Big Band Marathon!</p><p>Tänä vuonna luvassa on erityisesti nuorta energiaa, kun kolme nuoriso-big bandia esittää vuoden aikana hiomiaan ohjelmistoja. Luvassa on monipuolinen kattaus big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.</p><p>Aikataulu ja yhtyeet:<br> 12.00 Sibelius-lukion Big Band<br> 13.00 PJK Big Band<br> 14.00 Ebeli Big Band<br> 15.00 Ladies First Big Band</p>",
                "sv": "<p>Ett säkert tecken på att sommaren närmar sig är Espa Big Band Marathon!</p><p>I år utlovas i synnerhet ung energi, då tre big band med unga musiker framför program som de övat på under året. Det blir ett mångsidigt sortiment av big band-musik, allt från groovande sommarhittar till traditionella big band-melodier.</p><p>Tidtabell och band:<br> 12.00 Sibelius-lukios Big Band<br> 13.00 PJK Big Band<br> 14.00 Ebeli Big Band<br> 15.00 Ladies First Big Band</p>",
                "en": "<p>One sure sign of summer approaching is the Espa Big Band Marathon!</p><p>This year, the marathon is set to be full of youthful energy as three youth big bands perform repertoires that they have been honing over the year. Participants can look forward to a diverse offering of big band music, from groovy summer hits to more traditional big band compositions.</p><p>Schedule and bands:<br> 12.00 Sibelius-lukio Upper Secondary School’s Big Band<br> 13.00 PJK Big Band<br> 14.00 Ebeli Big Band<br> 15.00 Ladies First Big Band</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68577/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68575",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824275,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-29T09:13:36.857782Z",
                    "last_modified_time": "2026-04-29T09:13:36.857805Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774159.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824275/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-29T09:13:36.751860Z",
            "last_modified_time": "2026-05-08T10:13:44.328117Z",
            "date_published": null,
            "start_time": "2026-05-22T11: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: Laivaston soittokunta",
                "sv": "MIL-Espa: Flottans musikkår",
                "en": "MIL-Espa: The Navy Band"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nostalgiaa, energiaa ja Abban ajattomat hitit – näistä on Laivaston soittokunnan MIL-Espa-konsertti tehty!",
                "sv": "Nostalgi, energi och Abbas tidlösa hittar – det är vad Flottans musikkårs MIL-Espa-konsert är gjord av!",
                "en": "Nostalgia, energy and the timeless hits of ABBA – that is what the MIL-Espa concert of the Navy Band is all about!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8E25B02188478DA2D3E03015F99E8E64/MIL-Espa_Laivaston_soittokunta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/8E25B02188478DA2D3E03015F99E8E64/MIL-Espa_Flottans_musikkar",
                "en": "http://www.espanlava.fi/en/events/event/8E25B02188478DA2D3E03015F99E8E64/MIL-Espa_The_Navy_Band"
            },
            "description": {
                "fi": "<p>Nostalgiaa, energiaa ja Abban ajattomat hitit – näistä on Laivaston soittokunnan MIL-Espa-konsertti tehty!</p><p>Ota varaslähtö viikonloppuun tanssimalla ikivihreiden kappaleiden tahtiin; ohjelmassa mukana mm. Voulez-Vous, Lay All Your Love On Me ja Dancing Queen. Iloisen meiningin takaavat energiset laulajat Krista Schröter ja Maria Urpalainen. Tervetuloa mukaan nauttimaan auringosta ja hyvästä musiikista!</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.</p>",
                "sv": "<p>Nostalgi, energi och Abbas tidlösa hittar – det är vad Flottans musikkårs MIL-Espa-konsert är gjord av!</p><p>Tjuvstarta veckoslutet genom att dansa till evergreen: Programmet innehåller bland annat Voulez-Vous, Lay All Your Love On Me och Dancing Queen. De energiska sångerskorna Krista Schröter och Maria Urpalainen garanterar en glad stämning. Välkommen att njuta av solen och bra musik!</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>",
                "en": "<p>Nostalgia, energy and the timeless hits of ABBA – that is what the MIL-Espa concert of the Navy Band is all about!</p><p>Get a head start on the weekend by dancing to evergreen tunes including Voulez-Vous, Lay All Your Love On Me and Dancing Queen. A cheerful atmosphere is guaranteed by energetic singers Krista Schröter and Maria Urpalainen. Come enjoy the sun and good music!</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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68575/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68755",
            "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/hurmerinta/maarit-ja-sami-hurmerinta-yhtye-4152891/"
                    },
                    "description": null,
                    "price": {
                        "fi": "32,90-46 €, S&D 102 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2180179,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-08T08:13:58.874732Z",
                    "last_modified_time": "2026-05-08T08:13:58.874746Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791912.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2180179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-08T08:13:58.757665Z",
            "last_modified_time": "2026-05-08T08:13:59.004140Z",
            "date_published": null,
            "start_time": "2026-12-04T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maarit ja Sami Hurmerinta yhtye"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Sunborn Events Oy"
            },
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9C5BE4DA724172C60FCE821483483507/Maarit_ja_Sami_Hurmerinta_yhtye"
            },
            "description": {
                "fi": "<p><i>\"Ihan mahtavaa päästä upean bändimme kanssa jälleen Savoy-teatteriin. Siinä paikassa ja lavassa on taikaa! Perjantaina, joulukuun 4. päivänä, siellä nähdään! Lämpimästi tervetuloa!\"</i> Terveisin Maarit</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Show & Dinner -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun menun Savoy-teatterin yhteydessä toimivassa, Minne Garden-ravintolassa.</p><p><b>Minnen juhlakauden illallismenu;</b>  <br>Linnunmaksapaté, karpalochutney:tä ja endiivisalaattia L<br>Paahdettua siikaa, rapukastiketta ja puikulaperunapyreetä L,G<br>Paahdettua valkosuklaamoussea, karamellisoitua mandariinia ja leipurinkermaa VL,G</p><p><i>Illallismenun hinta ei sisällä juomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</i></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68755/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68559",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824256,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-28T12:13:06.110240Z",
                    "last_modified_time": "2026-04-28T12:13:06.110263Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789604.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824256/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-28T12:13:06.009550Z",
            "last_modified_time": "2026-05-08T07:13:14.274838Z",
            "date_published": null,
            "start_time": "2026-05-16T11: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": "pampulameri – Open Stage",
                "sv": "pampulameri – Open Stage",
                "en": "pampulameri – Open Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Laulaja-lauluntekijä pampulameri tekee pirskahtelevaa poppia, joka nojaa vahvaan ja herkkään laululyriikkaan.",
                "sv": "Sångaren och låtskrivaren pampulameri skapar sprudlande pop, som stöder sig på stark och känslig sånglyrik.",
                "en": "Singer-songwriter pampulameri makes upbeat pop that relies on strong and delicate song lyrics."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C87625623F9CC8AA45B860B84EE01D8A/pampulameri",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/C87625623F9CC8AA45B860B84EE01D8A/pampulameri",
                "en": "http://www.espanlava.fi/en/events/event/C87625623F9CC8AA45B860B84EE01D8A/pampulameri"
            },
            "description": {
                "fi": "<p>Laulaja-lauluntekijä pampulameri tekee pirskahtelevaa poppia, joka nojaa vahvaan ja herkkään laululyriikkaan.</p><p>Näyttävän sisääntulon suomalaiselle musiikkikentälle tehnyt artisti julkaisi debyytti-EP:nsä Varpaillaan lokakuussa 2025. Sen debyyttisingle ”Heitän sulle pelkkää herttaa” viihtyi Uuden suomalaisen musiikin listalla peräti neljä viikkoa putkeen, ja rikkoi nopeasti 20k striimin rajan.<br>Artistin kappaleet ovat soineet muun muassa Yle Radio Suomen taajuuksilla, ja hänet on lyhyen ajan sisään noteerattu useissa musiikkimedioissa, kuten Rumbassa ja Klangissa. Oman sukupolvensa äänitorvena toimiva artisti on saanut paljon kiitosta laulujensa koskettavista ja rohkeista aiheista, kuten ulkopuolisuuden kokemuksista ja tunneherkkyydestä.<br>Tyylillisesti artistin musiikissa kohtaavat ihastuttavat Ida Paul & Kalle Lindroth sekä karismaattinen Ellinoora, mikä näkyy pop-tulokkaan tarkkanäköisissä sanoituksissa sekä valloittavissa livevedoissa.</p>",
                "sv": "<p>Sångaren och låtskrivaren pampulameri skapar sprudlande pop, som stöder sig på stark och känslig sånglyrik.</p><p>Artisten, som gjorde en spektakulär entré på den finländska musikscenen, släppte sin debut-EP Varpaillaan i oktober 2025. Debutsingeln på skivan, ”Heitän sulle pelkkää herttaa”, fanns på Uuden suomalaisen musiikin lista (listan över ny finländsk musik) i rentav fyra veckor i en följd och överskred snabbt gränsen på 20 000 lyssningar.</p><p>Artistens låtar har spelats bland annat på Yle Radio Suomi och hon har på kort tid noterats i flera musikmedier, såsom Rumba och Klangi. Artisten är ett språkrör för sin egen generation och har fått mycket beröm för att behandla gripande och modiga teman i sina låtar, exempelvis upplevelser av utanförskap samt emotionell känslighet.</p><p>Stilistiskt sett är artistens musik en blandning av charmiga Ida Paul & Kalle Lindroth och karismatiska Ellinoora, vilket märks i pop-nykomlingens skarpsynta texter och bedårande liveuppträdanden.</p>",
                "en": "<p>Singer-songwriter pampulameri makes upbeat pop that relies on strong and delicate song lyrics.</p><p>The artist, who made a spectacular entry into the Finnish music scene, released their debut EP Varpaillaan in October 2025. Its debut single ‘Heitän sulle pelkkää herttaa’ stayed on the Uuden suomalaisen musiikin lista (‘New Finnish music’) chart for four weeks in a row, quickly reaching the 20k stream milestone.</p><p>The artist's songs have been played on Yle Radio Suomi, among others, and they have been featured in several music media, such as Rumba and Klangi, in a short period of time. As the voice of their generation, the artist has received much praise for the touching and bold themes of their songs, such as the experience of being an outsider and emotional sensitivity.</p><p>Stylistically, the artist's music brings together the charming Ida Paul & Kalle Lindroth and the charismatic Ellinoora, which is evident in the pop newcomer's insightful lyrics and captivating live performances.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68559/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68558",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824255,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-28T11:13:16.004994Z",
                    "last_modified_time": "2026-04-28T11:13:16.005009Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787913.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824255/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-28T11:13:15.929200Z",
            "last_modified_time": "2026-05-08T07:13:14.157933Z",
            "date_published": null,
            "start_time": "2026-05-16T10: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": "Huhu – Open Stage",
                "sv": "Huhu – Open Stage",
                "en": "Huhu – Open Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Huhu nostaa pöytään vastustamattoman sekoituksen pop-karkkia!",
                "sv": "Huhu dukar bordet med en intagande blandning pop-godis!",
                "en": "Pop duo Huhu joins the party with the ultimate pop candy mix!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F873EA2EC5078208FF82D2A1BFBD6C9C/Huhu",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/F873EA2EC5078208FF82D2A1BFBD6C9C/Huhu",
                "en": "http://www.espanlava.fi/en/events/event/F873EA2EC5078208FF82D2A1BFBD6C9C/Huhu"
            },
            "description": {
                "fi": "<p>Huhu nostaa pöytään vastustamattoman sekoituksen pop-karkkia!</p><p>Kattaus on täynnä isoja melodioita tulvivaa, sähkiksellä maustettua popmusiikkia, sekä tietysti tolkutonta live-energiaa.</p><p>Popduo Huhun muodostavat laulaja Janne Simojoki ja kitaristi Atte-Veikko Kemppainen.</p>",
                "sv": "<p>Huhu dukar bordet med en intagande blandning pop-godis!</p><p>På programmet står popmusik som sprudlar av stora melodier och är kryddad med elgitarr, samt naturligtvis sanslös live-energi.</p><p>Popduon Huhu består av sångaren Janne Simojoki och gitarristen Atte-Veikko Kemppainen.</p>",
                "en": "<p>Pop duo Huhu joins the party with the ultimate pop candy mix!</p><p>Huhu's music is full of big melodies spiced with some electric guitars and performed with undeniable live energy.<br>The duo consists of singer Janne Simojoki and guitarist Atte-Veikko Kemppainen.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68558/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68460",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1818360,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-15T06:13:50.534262Z",
                    "last_modified_time": "2026-04-15T06:13:50.534278Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789707.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1818360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-15T06:13:50.397998Z",
            "last_modified_time": "2026-05-07T13:13:09.352650Z",
            "date_published": null,
            "start_time": "2026-05-08T15: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": "Mood Suprim feat. Hassan Maikal – Puhos-näyttelyn avajaiset ja kirjan julkkarit",
                "sv": "Mood Suprim feat. Hassan Maikal – Puhos-näyttelyn avajaiset ja kirjan julkkarit",
                "en": "Mood Suprim feat. Hassan Maikal – Puhos-näyttelyn avajaiset ja kirjan julkkarit"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Puhos – itähelsinkiläisestä ostarista kulttuurien keitaaksi -hankkeen tapahtumassa vietetään sekä näyttelyn avajaisia että kirjan julkkareita ja ilta huipentuu Mood Suprimin keikkaan. Vapaa pääsy!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BCBBFC3836C4279B02C4558D1F7271B4/Mood_Suprim_feat_Hassan_Maikal",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BCBBFC3836C4279B02C4558D1F7271B4/Mood_Suprim_feat_Hassan_Maikal",
                "en": "http://www.stoa.fi/en/events/event/BCBBFC3836C4279B02C4558D1F7271B4/Mood_Suprim_feat_Hassan_Maikal"
            },
            "description": {
                "fi": "<p>Puhos – itähelsinkiläisestä ostarista kulttuurien keitaaksi -hankkeen tapahtumassa vietetään sekä näyttelyn avajaisia että kirjan julkkareita ja ilta huipentuu Mood Suprimin keikkaan. Vapaa pääsy!</p><p>klo 18 DJ Juju<br>klo 18.30 paneelikeskustelu<br>klo 19.15 DJ O.T. Almighty <br>klo 19.45 Abemagic<br>klo 20 Mood Suprim & Hassan Maikal</p><p>Suufilaisesta runoudesta ja elektronisesta minimalismista ammentava Mood Suprim on iranilais-suomalaisen folk-muusikon Marouf Majidin vetämä trio, joka ruokkii samaan aikaan sekä itsereflektiota että yhteisöllistä energiaa.</p><p>Ryhmän musiikissa kohtaavat muinainen mystiikka ja modernit äänimaailmat yhtä lailla kuin Lähi-idän perinteet ja pohjoinen mielenmaisema.</p><p>Yhtyeen esiintymiset ovat pikemminkin eräänlaisia henkisiä ja elokuvamaisia matkoja kuin tavanomaisia konsertteja, jotka kutsuvat yleisön yhteisesti jaettuun rytmin, äänen ja hiljaisuuden transsiin. Esitystä on tällä kertaa teeman hengessä mukana tähdittämässä räppäri Hassan Maikal.</p><p>Näyttelyn kuvat ovat syntyneet valokuvaaja Sami Mannerheimon monivuotisesta kuvausprojektista Puhoksella, ja mukana on myös Angela Mussen ja muiden avustajien otoksia.</p><p>Näyttely liittyy samannimisen kirjaan, joka julkaistaan näyttelyn yhteydessä. Kirjan tekstit, joista näyttelyssä on myös lainauksia, ovat kirjoittaneet Joonas Kervinen ja joukko Puhoksen yhteisöön kuuluvia avustajia.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68460/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68531",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4145476"
                    },
                    "description": null,
                    "price": {
                        "fi": "52 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2106487,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:28.113678Z",
                    "last_modified_time": "2026-05-07T12:13:28.113690Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790289.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106487/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-27T10:15:18.128975Z",
            "last_modified_time": "2026-05-07T12:13:28.149720Z",
            "date_published": null,
            "start_time": "2026-12-13T17: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": "Club For Five: Jouluna 2026"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "short_description": {
                "fi": "Hankien hohdetta, kuusen tuoksua, kynttilän kajoa ja tonttujen virneitä - Joulun riemukasta tunnelmaa! Sitä tarjoilee uusi, vuoden odotetuin konserttikiertue, lauluyhtye Club For Fiven monipuolinen JOULUNA 2026."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B5E478365EEC00A21E3ECB9712A3DAD6/Club_For_Five_Jouluna_2026"
            },
            "description": {
                "fi": "<p>Hankien hohdetta, kuusen tuoksua, kynttilän kajoa ja tonttujen virneitä - Joulun riemukasta tunnelmaa! Sitä tarjoilee uusi, vuoden odotetuin konserttikiertue, lauluyhtye Club For Fiven monipuolinen JOULUNA 2026.</p><p>Jätä hetkeksi maailman melu ja arkihuolet ja heittäydy joulumusiikin vietäväksi. <br>JOULUNA 2026 on elävä, yllätyksellinen ja vahvasti läsnä oleva konsertti, jossa nauru ja liikutus ovat lähellä toisiaan. Tätä iltaa ei kuunnella levyltä. Se koetaan yhdessä, paikan päällä.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: S</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68531/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68530",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4145476"
                    },
                    "description": null,
                    "price": {
                        "fi": "52 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2106486,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T12:13:27.951406Z",
                    "last_modified_time": "2026-05-07T12:13:27.951419Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790288.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2106486/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-27T10:15:17.705084Z",
            "last_modified_time": "2026-05-07T12:13:27.990248Z",
            "date_published": null,
            "start_time": "2026-12-13T13: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": "Club For Five: Jouluna 2026"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "short_description": {
                "fi": "Hankien hohdetta, kuusen tuoksua, kynttilän kajoa ja tonttujen virneitä - Joulun riemukasta tunnelmaa! Sitä tarjoilee uusi, vuoden odotetuin konserttikiertue, lauluyhtye Club For Fiven monipuolinen JOULUNA 2026."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/91B02DB2F258F46C30367D38CD35B9BB/Club_For_Five_Jouluna_2026"
            },
            "description": {
                "fi": "<p>Hankien hohdetta, kuusen tuoksua, kynttilän kajoa ja tonttujen virneitä - Joulun riemukasta tunnelmaa! Sitä tarjoilee uusi, vuoden odotetuin konserttikiertue, lauluyhtye Club For Fiven monipuolinen JOULUNA 2026.</p><p>Jätä hetkeksi maailman melu ja arkihuolet ja heittäydy joulumusiikin vietäväksi. <br>JOULUNA 2026 on elävä, yllätyksellinen ja vahvasti läsnä oleva konsertti, jossa nauru ja liikutus ovat lähellä toisiaan. Tätä iltaa ei kuunnella levyltä. Se koetaan yhdessä, paikan päällä.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: S</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68530/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67197",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4093518",
                        "sv": "https://www.lippu.fi/eventseries/name-4093518",
                        "en": "https://www.lippu.fi/eventseries/name-4093518"
                    },
                    "description": null,
                    "price": {
                        "fi": "40 € / 27 € / 14 €",
                        "sv": "40 € / 27 € / 14 €",
                        "en": "40 € / 27 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494868,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-16T08:13:14.259695Z",
                    "last_modified_time": "2026-02-16T08:13:14.259712Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778551.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494868/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-16T08:13:14.142255Z",
            "last_modified_time": "2026-05-07T12:13:11.256482Z",
            "date_published": null,
            "start_time": "2026-05-09T12: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": "Eye Dance International: Depths and Horizons -aistiesitys",
                "sv": "Eye Dance International: Depths and Horizons",
                "en": "Eye Dance International: Depths and Horizons"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.",
                "sv": "Fängslande dansföreställning för vuxna med och utan synnedsättning.",
                "en": "Immersive dance performance for adults with and without a visual impairment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8F6FDEFD60F1E7104325F0761ED5990F/Eye_Dance_International_Depths_and_Horizons_-aistiesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8F6FDEFD60F1E7104325F0761ED5990F/Eye_Dance_International_Depths_and_Horizons",
                "en": "http://www.caisa.fi/en/events/event/8F6FDEFD60F1E7104325F0761ED5990F/Eye_Dance_International_Depths_and_Horizons"
            },
            "description": {
                "fi": "<p>Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.</p><p>Kokemus syntyy tuntemuksista, äänistä, tuoksuista ja liikkeestä. Tämä on esitys, jossa yleisö ei katso tanssia vaan kokee sen.</p><p>Depths and Horizons on kokonaisvaltainen, moniaistinen tanssiesitys, joka on tarkoitettu näkövammaisille ja näkövammattomille aikuisille. Se kutsuu yleisön maailmaan, jossa on paljon muutakin, kuin mitä voi nähdä – siellä äänet, tuntemukset, tuoksut ja liike muodostavat kokemuksen kielen. Esitys haastaa perinteiset tanssin kokemisen tavat: sen sijaan, että tanssia katsotaan etäältä, osallistujat kutsutaan tuntemaan ja aistimaan tanssi ja liikkumaan sen mukana.</p><p>Yleisö osallistuu pareittain joko ystävän, kumppanin tai avustajan kanssa. Kunkin parin toinen henkilö kokee esityksen ilman näköaistia niin, että pari ohjaa tätä erilaisesta tuntemuksesta toiseen samalla kun hienovaraiset liikkeet, tuntemukset ja äänimaailmat herättelevät kokijan mielikuvituksen. Paikan päällä on saatavilla silmäsuojaimia.<br> <br>Kukin osallistuja on koko esityksen ajan omassa henkilökohtaisessa tilassaan ja voi valita kuinka aktiivisesti haluaa liikkua tai osallistua esitykseen. Esityksessä käytetään luonnollisia tuoksuja ja syötäviä lavasteita makuaistin herättelyyn. <br> <br>Kesto: Noin 45 min.</p><p>Esitykset ja kielet<br>To 7.5. klo 19 suomeksi<br>Pe 8.5. klo 19 englanniksi  <br>La 9.5. klo 15 suomeksi</p><p><b>Allergiatiedot:</b><br>Tuoksu: Sveitsin kivimäntylastu (sembra)<br>Syötävä lavastus: sokeri, vadelma, tapiokatärkkelys, maissitärkkelys, väri E150d, sakeuttamisaine E412, säilöntäaine E262, E202, aromi</p><p>Kerrothan vakavista allergioista henkilökunnalle ennen esityksen alkua!</p>",
                "sv": "<p>Fängslande dansföreställning för vuxna med och utan synnedsättning.</p><p>Föreställningen upplevs genom beröring, ljud, doft och rörelse. En föreställning där du inte tittar på dans – du upplever den.</p><p>Depths and Horizons är en uppslukande, multisensorisk dansföreställning skapad för vuxna med och utan synnedsättning. Den bjuder in publiken till en värld som går bortom den synliga – där språket i upplevelsen består av ljud, beröring, doft och rörelse. Föreställningen utmanar traditionella sätt att uppfatta dans: istället för att betrakta den på avstånd uppmanas deltagarna att känna, förnimma den och försiktigt röra sig med.</p><p>Publiken deltar i par, antingen med en vän, partner eller assistent. I varje par upplever en av deltagarna föreställningen utan att se och vägleds av sin partner genom en serie olika sensoriska moment, där subtila rörelser, taktila förnimmelser och ljudlandskap väcker fantasin. Ögonlappar finns tillgängliga på föreställningsplatsen.</p><p>Varje deltagare förblir tryggt inom sitt personliga utrymme under hela upplevelsen och kan välja hur aktivt hen vill röra sig eller engagera sig. Under föreställningarna används naturliga dofter och ätbar scenografi för att väcka smaklökarna. <br> <br>Längd: Cirka 45 minuter</p>",
                "en": "<p>Immersive dance performance for adults with and without a visual impairment.</p><p>Explored through touch, sound, scent, and movement. A performance where you don’t watch dance – you experience it.</p><p>Depths and Horizons is an immersive, multisensory dance performance created for adults with and without a visual impairment. It invites the audience to enter a world that goes beyond seeing - where sound, touch, scent, and movement form the language of the experience. The performance challenges traditional ways of perceiving dance: instead of watching it from a distance, participants are invited to feel, sense it and move gently along.</p><p>The audience participates in pairs, either with a friend, partner, or assistant. In each pair, one participant experiences the performance without sight, guided by their partner through a series of different sensory moments, where subtle movements, tactile sensations, and soundscapes awaken the imagination. Eye covers are available the performance place.</p><p>Each participant remains safely within their personal space throughout the experience and can choose how actively they wish to move or engage. During the performances natural scents and edible scenography for awakening the taste are used.<br> <br>Duration: Approximately 45 min</p><p>Language of the performance:<br>Thu 7.5. at 19.00 Finnish<br>Fri 8.5. at 19.00 English<br>Sat 9.5. at 15.00 Finnish</p><p><b>Allergy information:</b><br>Scent: Swiss stone pine wood chips <br>Edible scenography: sugar, raspberry, tapioca starch, cornstarch, colour E150d, thickener E412, preservative E262, E202, aroma</p><p>Please inform the staff of any serious allergies before the performance begins!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67197/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67196",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4093518",
                        "sv": "https://www.lippu.fi/eventseries/name-4093518",
                        "en": "https://www.lippu.fi/eventseries/name-4093518"
                    },
                    "description": null,
                    "price": {
                        "fi": "40 € / 27 € / 14 €",
                        "sv": "40 € / 27 € / 14 €",
                        "en": "40 € / 27 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494867,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-16T08:13:13.768098Z",
                    "last_modified_time": "2026-02-16T08:13:13.768113Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778549.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494867/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-16T08:13:13.623650Z",
            "last_modified_time": "2026-05-07T12:13:10.865833Z",
            "date_published": null,
            "start_time": "2026-05-08T16: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": "Eye Dance International: Depths and Horizons -aistiesitys",
                "sv": "Eye Dance International: Depths and Horizons",
                "en": "Eye Dance International: Depths and Horizons"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.",
                "sv": "Fängslande dansföreställning för vuxna med och utan synnedsättning.",
                "en": "Immersive dance performance for adults with and without a visual impairment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EE3CFA4A85975F343878E7B56A69C898/Eye_Dance_International_Depths_and_Horizons_-aistiesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EE3CFA4A85975F343878E7B56A69C898/Eye_Dance_International_Depths_and_Horizons",
                "en": "http://www.caisa.fi/en/events/event/EE3CFA4A85975F343878E7B56A69C898/Eye_Dance_International_Depths_and_Horizons"
            },
            "description": {
                "fi": "<p>Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.</p><p>Kokemus syntyy tuntemuksista, äänistä, tuoksuista ja liikkeestä. Tämä on esitys, jossa yleisö ei katso tanssia vaan kokee sen.</p><p>Depths and Horizons on kokonaisvaltainen, moniaistinen tanssiesitys, joka on tarkoitettu näkövammaisille ja näkövammattomille aikuisille. Se kutsuu yleisön maailmaan, jossa on paljon muutakin, kuin mitä voi nähdä – siellä äänet, tuntemukset, tuoksut ja liike muodostavat kokemuksen kielen. Esitys haastaa perinteiset tanssin kokemisen tavat: sen sijaan, että tanssia katsotaan etäältä, osallistujat kutsutaan tuntemaan ja aistimaan tanssi ja liikkumaan sen mukana.</p><p>Yleisö osallistuu pareittain joko ystävän, kumppanin tai avustajan kanssa. Kunkin parin toinen henkilö kokee esityksen ilman näköaistia niin, että pari ohjaa tätä erilaisesta tuntemuksesta toiseen samalla kun hienovaraiset liikkeet, tuntemukset ja äänimaailmat herättelevät kokijan mielikuvituksen. Paikan päällä on saatavilla silmäsuojaimia.<br> <br>Kukin osallistuja on koko esityksen ajan omassa henkilökohtaisessa tilassaan ja voi valita kuinka aktiivisesti haluaa liikkua tai osallistua esitykseen. Esityksessä käytetään luonnollisia tuoksuja ja syötäviä lavasteita makuaistin herättelyyn. <br> <br>Kesto: Noin 45 min.</p><p>Esitykset ja kielet<br>To 7.5. klo 19 suomeksi<br>Pe 8.5. klo 19 englanniksi  <br>La 9.5. klo 15 suomeksi</p><p><b>Allergiatiedot:</b><br>Tuoksu: Sveitsin kivimäntylastu (sembra)<br>Syötävä lavastus: sokeri, vadelma, tapiokatärkkelys, maissitärkkelys, väri E150d, sakeuttamisaine E412, säilöntäaine E262, E202, aromi</p><p>Kerrothan vakavista allergioista henkilökunnalle ennen esityksen alkua!</p>",
                "sv": "<p>Fängslande dansföreställning för vuxna med och utan synnedsättning.</p><p>Föreställningen upplevs genom beröring, ljud, doft och rörelse. En föreställning där du inte tittar på dans – du upplever den.</p><p>Depths and Horizons är en uppslukande, multisensorisk dansföreställning skapad för vuxna med och utan synnedsättning. Den bjuder in publiken till en värld som går bortom den synliga – där språket i upplevelsen består av ljud, beröring, doft och rörelse. Föreställningen utmanar traditionella sätt att uppfatta dans: istället för att betrakta den på avstånd uppmanas deltagarna att känna, förnimma den och försiktigt röra sig med.</p><p>Publiken deltar i par, antingen med en vän, partner eller assistent. I varje par upplever en av deltagarna föreställningen utan att se och vägleds av sin partner genom en serie olika sensoriska moment, där subtila rörelser, taktila förnimmelser och ljudlandskap väcker fantasin. Ögonlappar finns tillgängliga på föreställningsplatsen.</p><p>Varje deltagare förblir tryggt inom sitt personliga utrymme under hela upplevelsen och kan välja hur aktivt hen vill röra sig eller engagera sig. Under föreställningarna används naturliga dofter och ätbar scenografi för att väcka smaklökarna. <br> <br>Längd: Cirka 45 minuter</p>",
                "en": "<p>Immersive dance performance for adults with and without a visual impairment.</p><p>Explored through touch, sound, scent, and movement. A performance where you don’t watch dance – you experience it.</p><p>Depths and Horizons is an immersive, multisensory dance performance created for adults with and without a visual impairment. It invites the audience to enter a world that goes beyond seeing - where sound, touch, scent, and movement form the language of the experience. The performance challenges traditional ways of perceiving dance: instead of watching it from a distance, participants are invited to feel, sense it and move gently along.</p><p>The audience participates in pairs, either with a friend, partner, or assistant. In each pair, one participant experiences the performance without sight, guided by their partner through a series of different sensory moments, where subtle movements, tactile sensations, and soundscapes awaken the imagination. Eye covers are available the performance place.</p><p>Each participant remains safely within their personal space throughout the experience and can choose how actively they wish to move or engage. During the performances natural scents and edible scenography for awakening the taste are used.<br> <br>Duration: Approximately 45 min</p><p>Language of the performance:<br>Thu 7.5. at 19.00 Finnish<br>Fri 8.5. at 19.00 English<br>Sat 9.5. at 15.00 Finnish</p><p><b>Allergy information:</b><br>Scent: Swiss stone pine wood chips <br>Edible scenography: sugar, raspberry, tapioca starch, cornstarch, colour E150d, thickener E412, preservative E262, E202, aroma</p><p>Please inform the staff of any serious allergies before the performance begins!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67196/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68770",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2089153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-07T08:14:32.283495Z",
                    "last_modified_time": "2026-05-07T08:14:32.283511Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787898.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2089153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T08:14:32.191428Z",
            "last_modified_time": "2026-05-07T08:14:32.405372Z",
            "date_published": null,
            "start_time": "2026-06-06T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Friction Groove Collective – Open Stage",
                "sv": "Friction Groove Collective – Open Stage",
                "en": "Friction Groove Collective – Open Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Friction Groove Collective on musiikkikollektiivi, jonka intohimoiset muusikot sekoittavat laajalti genrejä ja yhdistelevät erilaisia kulttuuritaustojaan.",
                "sv": "Friction Groove Collective är ett dynamiskt musikkollektiv med passionerade musiker som blandar olika genrer med diverse kulturella bakgrunder.",
                "en": "Friction Groove Collective is a dynamically evolving collective of passionate musicians blending diverse genres and cultural backgrounds."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/931BD155A782B258DF2D9EC8E6BE257B/Friction_Groove_Collective",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/931BD155A782B258DF2D9EC8E6BE257B/Friction_Groove_Collective",
                "en": "http://www.espanlava.fi/en/events/event/931BD155A782B258DF2D9EC8E6BE257B/Friction_Groove_Collective"
            },
            "description": {
                "fi": "<p>Friction Groove Collective on musiikkikollektiivi, jonka intohimoiset muusikot sekoittavat laajalti genrejä ja yhdistelevät erilaisia kulttuuritaustojaan.</p><p>Friction liittää yhteen afrobeatia, jazzia ja latinalaisamerikkalaista cumbiaa; lisämausteina musiikista löytyy myös viittauksia Lähi-itään ja Pohjois-Afrikkaan. Frictionin laajan ja kerroksellisen soundin juuret ovat syvällä erilaisissa maailman rytmeissä, ja se rakentuu isosta torvisektiosta, useista perkussionisteistä, iskevistä bassolinjoista ja keskeisessä roolissa olevista sähkökitaroista.</p>",
                "sv": "<p>Friction Groove Collective är ett dynamiskt musikkollektiv med passionerade musiker som blandar olika genrer med diverse kulturella bakgrunder.</p><p>Friction kombinerar Afrobeat, Jazz och Latinamerikansk Cumbia med inslag av musik från Mellanöstern och Nordafrika. Friction har ett detaljerat och rikt sound bestående av en omfattande blåssektion, slagverkare, fräna elgitarrer och snärtiga basslingor, med rötterna i världens rytmer.</p>",
                "en": "<p>Friction Groove Collective is a dynamically evolving collective of passionate musicians blending diverse genres and cultural backgrounds.</p><p>Friction combines afrobeat, jazz and latin cumbia with musical flavours from the Near East and North Africa. Friction has an extensive and layered sound, with a rich horn section, multiple percussionists, prominent electric guitars and catchy basslines, all firmly rooted in a range of infectious grooves from around the world.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68770/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpacu6are",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824302,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T07:30:06.852349Z",
                    "last_modified_time": "2026-05-04T07:30:06.852371Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f17b9359-d1a5-4531-937a-b146f12d7647.png",
                    "name": "",
                    "cropping": "42,0,470,429",
                    "photographer_name": "",
                    "alt_text": "Piirros kuva kahdesta lapsesta harastamassa capoeiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824302/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-05-07T06:56:04.770310Z",
            "last_modified_time": "2026-05-07T06:56:04.770329Z",
            "date_published": null,
            "start_time": "2026-05-17T10:00:00Z",
            "end_time": "2026-05-17T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Capoeira -työpaja lapsille",
                "sv": "Capoeira Workshop för barn",
                "en": "Capoeira Workshop for kids"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry",
                "sv": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry",
                "en": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry"
            },
            "short_description": {
                "fi": "Capoeira -työpaja lapsille",
                "sv": "Capoeira Workshop för barn",
                "en": "Capoeira Workshop for kids"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lasten maksuton capoeira työpaja, missä lapset saavat kokeilla capoeiraa, soittaa, ja nauttia yhdessäolosta.</p><p>#helloespoo</p>",
                "sv": "<p>En kostnadsfri capoeira‑workshop för barn, där de får prova på capoeira, spela musik och njuta av att vara tillsammans.</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>A free capoeira workshop for children, where they can try capoeira, play music and enjoy being together.</p><p><br></p><p>#helloespoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpacu6are/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpachbpb4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:39839/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2080029,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-07T06:05:34.040746Z",
                    "last_modified_time": "2026-05-07T06:05:34.040758Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/9cbafed0-adec-43a1-bf3f-b46c8b84e66a.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "Piirroskuva välkystä Rantaraittipäivän viirien alla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2080029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-07T06:09:03.392906Z",
            "last_modified_time": "2026-05-07T06:09:03.392923Z",
            "date_published": null,
            "start_time": "2026-05-23T09:30:00Z",
            "end_time": "2026-05-23T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Välkky Rantaraittipäivässä",
                "sv": "Välkky på Rantaraittipäivä",
                "en": "Välkky at Rantaraittipäivä"
            },
            "location_extra_info": {
                "fi": "Ravintola Strindbergin asfalttialue",
                "sv": "Ravintola Strindbergin asfalttialue",
                "en": "Ravintola Strindbergin asfalttialue"
            },
            "provider": null,
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Rantaraittipäivässä lauantaina 6.6. klo 10-13:30!</strong></p><p>Välkky on mukana Rantaraittipäivässä ja liikkumisen riemussa. Palautuminen tuo hyvää vastapainoa liikunnalle: tule siis hetkeksi rauhoittumaan kirjojen, tai rauhallisen musiikin äärelle. Mukana autossa on kirjoja kaiken ikäisille, sekä erityisesti päivää varten kerättyjä kirjoja liikunnasta ja hyvinvoinnista. Kirjoja voi lainata Helmet-kirjastokortilla ja kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.&nbsp;</p><p><br></p><p>#kirjastoauto</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpachbpb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtgii",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T09:12:01.467345Z",
            "last_modified_time": "2026-05-07T05:57:43.913189Z",
            "date_published": "2026-04-07T09:09:00Z",
            "start_time": "2026-05-23T09:30:00Z",
            "end_time": "2026-05-23T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Välkky Nöykkiöpäivässä",
                "sv": "Välkky på Nöykkiöpäivä",
                "en": "Välkky at Nöykkiöpäivä"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Nöykkiöpäivässä klo 12:30-15:30!</strong></p><p>Ohjelmassa mm. pinssiaskartelua!</p><p>Tervetuloa myös lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p><p><br></p><p>#kirjastoauto</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtgii/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtf2y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15335/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T09:09:49.812876Z",
            "last_modified_time": "2026-05-07T05:57:27.560393Z",
            "date_published": "2026-04-07T09:05:00Z",
            "start_time": "2026-05-23T07:00:00Z",
            "end_time": "2026-05-23T09: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": "Välkky Vanttilan kevättempauksessa",
                "sv": "Välkky på Vanttilan kevättempaus",
                "en": "Välkky at Vanttilan kevättempaus"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Vanttilan koulun vanhempainyhdistys ry",
                "sv": "Vanttilan koulun vanhempainyhdistys ry",
                "en": "Vanttilan koulun vanhempainyhdistys ry"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Vanttilan kevättempauksessa klo 10-12:00!</strong></p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p><p><br></p><p>#kirjastoauto</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtf2y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2505849",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21121338/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21121338/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21121338/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19418243/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19418244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303853/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303854/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303856/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21121334/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21121335/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21121336/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21121337/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21121338/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235447,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:10.162814Z",
                    "last_modified_time": "2025-02-17T11:17:10.162829Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkekulissi222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235447/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:20.205108Z",
            "last_modified_time": "2026-05-06T20:15:54.251324Z",
            "date_published": null,
            "start_time": "2025-04-23T13:30:00Z",
            "end_time": "2026-05-06",
            "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": "Keskiviikon Kulissikierros"
            },
            "location_extra_info": {
                "fi": "Suuri näyttämö LÄMPIÖ"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Tervetuloa tutustumaan peruskorjattuun yli 50-vuotiaaseen teatteritaloon sekä kurkistamaan kulissien taakse."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Tervetuloa tutustumaan peruskorjattuun yli 50-vuotiaaseen teatteritaloon sekä kurkistamaan kulissien taakse. </strong></p><p>Kierroksen sisältö vaihtelee ajankohdan mukaan. Kierrokselle on rajattu paikkamäärä. Kesto noin 1h. </p><p>Huomioithan, että Keskiviikon kulissikierros ei ole valitettavasti esteetön vaan sisältää paljon portaita. </p><p>Kierros lähtee pääovilta: Eläintarhantie 5. Ovet avataan varttia ennen kierroksen alkua.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2505849/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68212",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/",
                        "sv": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/jumppatytoet-helsinki-3873721/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,80-38,90 €",
                        "sv": "22,80-38,90 €",
                        "en": "22,80-38,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1599273,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-12T10:13:36.339211Z",
                    "last_modified_time": "2026-03-12T10:13:36.339226Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786239.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1599273/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-12T10:13:36.167151Z",
            "last_modified_time": "2026-05-06T14:14:01.086945Z",
            "date_published": null,
            "start_time": "2026-05-09T11: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": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!",
                "sv": "Jumppatytöt – Havukainen - Hyvönen - Lahdenmäki",
                "en": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Sold out!"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Jumppatytöt ry",
                "sv": "Jumppatytöt ry",
                "en": "Jumppatytöt ry"
            },
            "short_description": {
                "fi": "Jumppatytöt on esitys joukkuevoimistelusta.",
                "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.",
                "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot",
                "en": "http://www.savoyteatteri.fi/en/events/event/C4658F3883934D0BE18F6085D8247BFD/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki"
            },
            "description": {
                "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>",
                "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>",
                "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68212/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago725vhhi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?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: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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725u5ma/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725u6xe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725u7wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vawe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vbuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vcru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vdoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725veme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vfki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vgiq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2004272,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-20T09:59:29.678038Z",
                    "last_modified_time": "2025-05-20T09:59:29.678053Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f1c84b1f-52e0-4fbf-9eeb-bb4f8825ded1.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Kukkia keltaisella taustalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2004272/?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-06T12:23:07.213404Z",
            "last_modified_time": "2026-05-06T12:23:07.213420Z",
            "date_published": null,
            "start_time": "2026-06-01T10:00:00Z",
            "end_time": "2026-06-12T12: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": "Kirjaston päiväleiri",
                "sv": "Bibliotekets dagläger",
                "en": "Library day camp"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tapiolan kirjaston päiväleiri kokoontuu maanantaista perjantaihin ajalla 1.6. - 12.6. klo 13-15.  Toiminta on suunnattu kouluikäisille.",
                "sv": "Hagalunds biblioteks dagläger ordnas måndag till fredag kl. 13-15 på 1.6-12.6. Verksamheten riktar sig till barn i skolåldern.",
                "en": "Tapiola Library's day camp meets from Monday to Friday from 1.6. to 12.6. at 13-15. The activities are aimed at school children."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaipaatko seuraa ja mukavaa tekemistä kesälomalle?</p><p>Tapiolan kirjaston päiväleiri kokoontuu maanantaista perjantaihin ajalla 1.6. - 12.6. klo 13-15. Mukaan voit tulla joka päivä tai silloin kun sinulle sopii. Ryhmän ohjaajina toimivat lasten ja nuorten kirjastolaiset. Toiminta on suunnattu kouluikäisille.</p><p><br></p><p><strong>Alustava ohjelma:</strong></p><p>Ma 1.6.: Lautapelipäivä</p><p>Ti 2.6.: Vierailu Museo Leikkiin</p><p>Ke 3.6.: Kuvitus- ja piirrospaja</p><p>To 4.6.: Legoja ja pajalaitteita</p><p>Pe 5.6.: Pakopeli</p><p>Ma 8.6.: Luetaan yhdessä</p><p>Ti 9.6.: Ulkopelit- ja leikit</p><p>Ke 10.6.: Tarinapaja </p><p>To 11.6.: Animaatiopaja</p><p>Pe 12.6.: Piknik</p><p><br></p><p>Ohjelmaa voidaan muokata osallistujien toiveiden mukaan.</p><p>Sään salliessa ohjelmaa järjestetään myös ulkona. Lähtö tapahtuu aina kirjastolta ja palaamme myös yhdessä takaisin kirjastolle. Olethan siis ajoissa paikalla.</p>",
                "sv": "<p>Söker du sällskap och roliga saker att göra under sommarlovet?</p><p>Hagalunds biblioteks dagläger träffas måndag till fredag kl. 13-15. på 1.6.-12.6. Du kan komma med varje dag eller när det passar dig. Gruppen leds av barn- och ungdomsbibliotekarier. Aktiviteterna riktar sig till barn i skolåldern.</p><p><br></p><p><strong>Preliminärt program:</strong></p><p>Mån 1.6: Brädspelsdag      </p><p>Tis 2.6: Besök på Leikki - Lekmuseet</p><p>Ons 3.6: Illustrationsverkstad</p><p>Tors 4.6: Lego workshop</p><p>Fre 5.6: Escape Room</p><p>Mån 8.6: Vi läser tillsammans </p><p>Tis 9.6: Lekar och spel utomhus</p><p>Ons 10.6: Skrivarverkstad</p><p>Tor 11.6: Animationsverkstad</p><p>Fre 12.6: Picknick</p><p><br></p><p>Ett program kan anpassas efter deltagarnas önskemål.</p><p>Om vädret tillåter hålls programmet även utomhus. Vi startar alltid vid biblioteket och återvänder också tillsammans dit. Se därför till att vara på plats i god tid.</p>",
                "en": "<p>Looking for company and fun things to do during the summer holidays?</p><p>Tapiola Library's day camp meets from Monday to Friday from 1.6. to 12.6. at 13 -15. You can join us every day or when it suits you. The group will be led by children's and young people's librarians. The activities are aimed at  school children.</p><p><br></p><p><strong>Preliminary programme:</strong></p><p>Mon 1.6: Board game day</p><p>Tue 2.6: Visit to Leikki - The museum of Play</p><p>Wed 3.6: Illustration workshop</p><p>Thu 4.6: Lego workshop</p><p>Fri 5.6.: Escape Room</p><p>Mon 8.6: Let's read together </p><p>Tue 9.6: Outdoor games</p><p>Wed 10.6: Writing workshop</p><p>Thu 11.6: Animation workshop</p><p>Fri 12.6: Picnic</p><p><br></p><p>The programme can be adapted according to the wishes of the participants.</p><p>Weather permitting, the event will also take place outdoors. We will always start at the library and return there together. Please be sure to arrive on time.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago725vhhi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3aaeqlq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824214,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T11:09:33.201390Z",
                    "last_modified_time": "2026-04-21T11:09:33.201403Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3cab14ce-1391-4a89-924c-bc6a3ba0d08a.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Vanhoja pelikonsoloita kuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824214/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T11:41:08.367622Z",
            "last_modified_time": "2026-05-06T12:15:14.215454Z",
            "date_published": null,
            "start_time": "2026-05-16T08:00:00Z",
            "end_time": "2026-05-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Retropelipäivä",
                "sv": "Retrospeldagen",
                "en": "Retro gaming day"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Retropelipäivät lauantaina 16.5 Ison Omenan kirjastossa kello 11.00–17.00 ",
                "sv": "Retrospeldag på Iso omenas bibliotek lördagen 16.5 klo. 11:00-17:00",
                "en": "Retro Gaming Day on Saturday, May 16 at Iso Omena Library, 11am – 5 pm "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Retropelipäivät lauantaina 16.5 Ison Omenan kirjastossa kello 11.00–17.00&nbsp;</p><p>Tervetuloa tutustumaan 1980–2000 lukujen konsoleihin ja peleihin! Tapahtuma on&nbsp;tarkoitettu&nbsp;kaikenikäisille. Tule&nbsp;koko&nbsp;perheen kanssa&nbsp;nauttimaan nostalgiasta ja&nbsp;pelaamaan menneisyyden virtuaalimaailmoihin.&nbsp;</p><p>Tapahtuman konsolitarjonnassa on muun muassa:&nbsp;Commodore 64, Playstation 1, Super Nintendo Entertainment System, Sega&nbsp;Megadrive&nbsp;ja muita konsoleita 40 vuoden ajalta.&nbsp;</p><p>Pelitarjontaa kuten:&nbsp;Crash&nbsp;Team Racing, Super&nbsp;Smash&nbsp;Bros.,&nbsp;Donkey&nbsp;Kong Country 1 ja muita klassikoita.&nbsp;</p><p>Tapahtuman aikana myös erillinen K-18 tila&nbsp;kirjaston&nbsp;Vox-tilassa&nbsp;kello 14.00–17.00, jossa on pelitarjontaa aikuisille kuten:&nbsp;The&nbsp;Elder&nbsp;Scrolls&nbsp;III:&nbsp;Morrowind,&nbsp;Goldeneye&nbsp;007,&nbsp;Tekken&nbsp;4, klassisia FPS-pelejä ja&nbsp;survival&nbsp;horroria.&nbsp;Varaudu todistamaan ikäsi.&nbsp;</p><p><br></p><p>Retropelipäivän ohjelman Stagella löydät osoitteesta: <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:ago72bzmx4\">Retropelipäivän ohjelma Stagella | Espoon kaupunki</a></p><p>&nbsp;</p>",
                "sv": "<p>Retrospeldag på Iso omenas bibliotek lördagen 16.5 klo. 11:00-17:00</p><p>Välkomna att bekanta er med 1980–2000-talets konsoler och spel! Evenemanget passar för alla åldrar. Kom med hela familjen och njut av nostalgi och spela dig genom dåtidens virtuella världar.</p><p>Konsolerna som erbjuds under evenemanget är bland annat: Commodore 64, Playstation 1, Super Nintendo Entertainment System, Sega&nbsp;Megadrive&nbsp;och andra konsoler från de senaste 40 åren.</p><p>Spel som erbjuds inkluderar: Crash&nbsp;Team Racing, Super&nbsp;Smash&nbsp;Bros.,&nbsp;Donkey&nbsp;Kong Country 1 och andra spelklassiker.</p><p>Under evenemanget kommer det även finnas ett skilt K-18 utrymme i bibliotekets Vox-utrymme klockan 14:00-17:00. Där finns spelutbud riktat mot vuxna, såsom The&nbsp;Elder&nbsp;Scrolls&nbsp;III:&nbsp;Morrowind,&nbsp;Goldeneye&nbsp;007,&nbsp;Tekken&nbsp;4, klassiska FPS-spel och överlevnadsskräckspel. Var förberedd att bevisa din ålder.</p><p>Evenemangets huvudsakliga språk är finska och engelska.</p><p><br></p><p>Du hittar programmet för Retrospeldagen på Stage på: <a href=\"https://www.espoo.fi/sv/evenemang/espooevents:ago72bzmx4\">Retrospeldagens program på Stage | Esbo stad</a></p>",
                "en": "<p>Retro Gaming Day on&nbsp;Saturday,&nbsp;May&nbsp;16 at Iso Omena Library, 11am – 5 pm&nbsp;</p><p>Welcome&nbsp;to&nbsp;explore&nbsp;consoles&nbsp;and&nbsp;games&nbsp;from&nbsp;the&nbsp;1980s&nbsp;to&nbsp;the&nbsp;2000s!&nbsp;The&nbsp;event&nbsp;is open to&nbsp;all&nbsp;ages.&nbsp;Come&nbsp;with&nbsp;the&nbsp;whole&nbsp;family&nbsp;to&nbsp;enjoy&nbsp;nostalgia and play&nbsp;your&nbsp;way&nbsp;through&nbsp;virtual&nbsp;worlds&nbsp;of&nbsp;the&nbsp;past.&nbsp;</p><p>The&nbsp;event’s&nbsp;console&nbsp;selection&nbsp;includes,&nbsp;among&nbsp;others: Commodore 64,&nbsp;PlayStation&nbsp;1, Super Nintendo Entertainment System, Sega Mega&nbsp;Drive, and&nbsp;other&nbsp;consoles&nbsp;spanning&nbsp;40&nbsp;years.&nbsp;</p><p>Games&nbsp;on&nbsp;offer&nbsp;include&nbsp;titles&nbsp;such&nbsp;as&nbsp;Crash&nbsp;Team Racing,&nbsp;Super&nbsp;Smash&nbsp;Bros.,&nbsp;Donkey&nbsp;Kong Country 1, and&nbsp;other&nbsp;classics.&nbsp;</p><p>During the event, there will also be a separate&nbsp;18+ area&nbsp;in the library’s Vox space from&nbsp;2&nbsp;pm&nbsp;–&nbsp;5&nbsp;pm, featuring games for adults such as&nbsp;The Elder Scrolls III:&nbsp;Morrowind,&nbsp;GoldenEye&nbsp;007,&nbsp;Tekken 4, classic FPS games, and survival horror. Please be prepared to prove your age.&nbsp;</p><p><br></p><p>You can find the Retro Gaming Day program on Stage at: <a href=\"https://www.espoo.fi/en/events/espooevents:ago72bzmx4\">Retro Gaming Day program on the Stage | City of Espoo</a></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3aaeqlq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}