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

{
    "meta": {
        "count": 35524,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=150&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=148&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:68672",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1901218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T06:13:14.874904Z",
                    "last_modified_time": "2026-05-05T06:13:14.874918Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791533.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1901218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-05T06:13:14.737894Z",
            "last_modified_time": "2026-05-05T06:13:15.111307Z",
            "date_published": null,
            "start_time": "2026-05-31T10:00:00Z",
            "end_time": "2026-05-31T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Stoan kesäbasaari",
                "sv": "Stoas sommarbasar",
                "en": "Stoa’s Summer Bazaar"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa juhlimaan kanssamme kesän alkua ja omaa vapaavalintaista teemaasi – oli se sitten koulujen loppuminen, Eid-juhlan päätös tai jotain aivan muuta!",
                "sv": "Välkommen att fira början av sommaren och ett eget valbart tema med oss – oavsett om det handlar om en skolavslutning, Eid-festens avslutning eller något helt annat!",
                "en": "Join us in celebrating the start of summer and your own occasion of choice – whether it's the end of school, the end of Eid or something else entirely!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8D91A9A4744DB55B2C0FA71F865891E4/Stoan_kesabasaari_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8D91A9A4744DB55B2C0FA71F865891E4/Stoas_sommarbasar_",
                "en": "http://www.stoa.fi/en/events/event/8D91A9A4744DB55B2C0FA71F865891E4/Stoa_s_Summer_Bazaar_"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlimaan kanssamme kesän alkua ja omaa vapaavalintaista teemaasi – oli se sitten koulujen loppuminen, Eid-juhlan päätös tai jotain aivan muuta!</p><p>Kesäbasaarissa on tekemistä, elämyksiä ja iloista tunnelmaa koko perheelle. Maksuttomissa työpajoissa pääset puhaltamaan jättisaippuakuplia ja askartelemaan persoonallisia rannekoruja. Tapahtumasta löydät myös paikallisia herkkuja myyviä ruokakojuja sekä koru- ja käsityömyyjiä.</p><p>Jos ei sada, nähdään Stoan aukiolla! Sateella tapahtuma järjestetään Stoan aulassa.</p><p><b>Nonstop-työpajat klo 13–16</b></p><p>- Jättisaippuakuplat: työpajassa pääset kokeilemaan, miten puhalletaan valtavia saippuakuplia!</p><p>- Toivomusrannekorut: työpajassa valmistetaan persoonallisia rannekoruja kierrätetyistä sanoma- ja aikakauslehdistä.</p>",
                "sv": "<p>Välkommen att fira början av sommaren och ett eget valbart tema med oss – oavsett om det handlar om en skolavslutning, Eid-festens avslutning eller något helt annat!</p><p>Sommarbasaren bjuder på sysselsättning, upplevelser och glad stämning för hela familjen. I de avgiftsfria verkstäderna kan du blåsa jättesåpbubblor och pyssla personliga armband. På evenemanget finns också matstånd som säljer lokala delikatesser samt smyckes- och hantverksförsäljare.</p><p>Vi ses på Stoaplanen om det inte regnar! Vid regn ordnas evenemanget i Stoas entréhall.</p><p><b>Nonstop-verkstäder kl. 13–16</b></p><p>- Jättesåpbubblor: i verkstaden kan du pröva hur man blåser enorma såpbubblor!</p><p>- Önskearmband: i verkstaden tillverkar man personliga armband av återvunna tidningar och tidskrifter.</p>",
                "en": "<p>Join us in celebrating the start of summer and your own occasion of choice – whether it's the end of school, the end of Eid or something else entirely!</p><p>The Summer Bazaar will feature activities, experiences and fun for the whole family. You can attend free workshops where you can blow giant soap bubbles and make unique bracelets. You will also find food stalls selling local delicacies, as well as jewellery and craft vendors.</p><p>See you in Stoa Square! If it rains, the event will be held in the Stoa lobby.</p><p><b>Nonstop workshops from 13.00 to 16.00</b></p><p>- Giant soap bubbles: learn how to blow giant soap bubbles!</p><p>- Wish bracelets: make your own unique bracelets from recycled newspapers and magazines.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68672/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnn6cef74",
            "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:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cekgy/?format=api"
            },
            "event_status": "EventCancelled",
            "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": 1493991,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-02T11:49:41.048491Z",
                    "last_modified_time": "2025-12-02T11:49:41.048508Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e7e2f52b-9ff0-4ad1-b073-627b363c2751.jpg",
                    "name": "",
                    "cropping": "74,0,937,864",
                    "photographer_name": "",
                    "alt_text": "Kuvassa o kilpikonna, valas, rausku ja simpukka",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493991/?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": "2025-12-02T11:53:50.973483Z",
            "last_modified_time": "2026-05-05T05:59:00.276393Z",
            "date_published": null,
            "start_time": "2026-05-05T06:30:00Z",
            "end_time": "2026-05-05T07: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": "Runokylpylä vauvaperheille (4kk-1v) -PERUTTU"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa runoleikkien ja lorujen pariin!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Mikä on runokylpylä?</p><p>Vauva tarvitsee kylvetystä omalla äidinkielellään. Vauvat rakastavat leikkiä, napsuvia riimejä ja runon rytmiä, mikä tutkitusti kehittää myös heidän aivojaan!</p><p>Runojen ja lorujen kautta vauvat saavat ensimmäisen kirjallisen elämyksensä.</p><p>Anna lapselle lahjaksi sointuisa kieli! Tervetuloa runoleikkien ja lorujen pariin!</p><p><br></p><p>Kokoontumiset Lippulaivan kirjaston Salongissa tiistaisin:</p><p>13.1. /&nbsp;27.1 / 10.2. / 24.2. / 10.3. /&nbsp;24.3. / 7.4. / 21.4. / 5.5. / 19.5. / 2.6.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cef74/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7nts5t4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1901783,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T10:46:00.616441Z",
                    "last_modified_time": "2026-05-04T10:46:00.616455Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6cfeaeaf-399d-497f-aca9-23c610a617af.jpg",
                    "name": "Mika Baumeister/ Unsplash",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kaksi mikrofonia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1901783/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T05:57:59.806251Z",
            "last_modified_time": "2026-05-05T05:57:59.806265Z",
            "date_published": null,
            "start_time": "2026-05-16T09:30:00Z",
            "end_time": "2026-05-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Toivon aalloilla -keskustelutilaisuus"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan Toivon aalloilla -keskustelutilaisuutta Salonkiin la 16.5. klo 12:30 alkaen."
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>12.30 Kehitysyhteistyö muutoksessa, Lippulaivan kirjasto, 3. krs</strong></p><p>Millaista kehitysyhteistyötä Suomen Lähetysseurassa tehdään? Mitä kehitysyhteistyöhön kuuluu? Tervetuloa kuulemaan ja keskustelemaan työn saavutuksista sekä haasteista muuttuvassa maailmassa. Paikalla on Lähetysseuran työntekijöitä ja yhteistyökumppanimme Kolumbiasta.&nbsp;</p><p>&nbsp;</p><p><strong>14.30 Tarinoiden taistelu – mihin uskoa valheiden aikakaudella?&nbsp;Lippulaivan kirjasto, 3. krs</strong></p><p>Elämme ajassa, jossa erilaiset tarinat taistelevat huomiostamme ja vaikuttavat siihen, mitä pidämme totena. Disinformaatio leviää tutkitun tiedon rinnalla, ja samalla yhteiskunnallinen ilmapiiri kovenee sekä vastakkainasettelu voimistuu. Mistä löytää toivoa ja mikä kaikki lisää arjen vastustuskykyä näille ilmiöille? Näistä teemoista keskustelevat Suomen Lähetysseuran sukupuolten välisen oikeudenmukaisuuden asiantuntija Päivi Linervo sekä Helsingin yliopiston tutkija Paavo Ahonen. Keskustelua luotsaa Espoonlahden seurakunnan kappalainen, dosentti Niko Huttunen.</p><p><br></p><p><strong>16.00 Varautuminen kriisioloissa Suomessa ja maailmalla,&nbsp;Lippulaivan kirjasto, 3. krs</strong></p><p>Kriiseistä ja varautumisesta keskustelemassa ulko- ja turvallisuuspolitiikan asiantuntija Henri Vanhanen ja Suomen Lähetysseuran turvallisuuspäällikkö Lasse Lampinen. Paneelikeskustelussa mukana myös Espoonlahden seurakunnan kirkkoherra Jukka Lehti. Juonto Heta Kallioranta.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7nts5t4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:21166418",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4066188/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/antigone-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21166418/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/antigone-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21166418/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/antigone-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21166418/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1494413,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-08T13:14:30.658671Z",
                    "last_modified_time": "2026-01-08T13:14:30.658685Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/3b/e7/antigone-tickets_493078_3911304_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494413/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-06T21:14:58.114715Z",
            "last_modified_time": "2026-05-05T02:15:06.197551Z",
            "date_published": null,
            "start_time": "2026-05-04T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Antigone"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Sofokles ANTIGONE Antigone on koneille ja ihmisäänelle läpisävelletty tragedia 14 näyttelijälle."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/antigone-4066188/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/antigone-4066188/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/antigone-4066188/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Antigone on koneille ja ihmisäänelle läpisävelletty tragedia 14 näyttelijälle. Tämä Sofokleen kirjoittama näytelmä kantaesitettiin Ateenassa noin vuonna 442 ennen ajanlaskun alkua.</p><p>Se on radikaali klassinen murhenäytelmä nuoresta radikaalista naisesta, joka kaikkea uhmaten valitsee sydämensä äänen ja nousee vallanpitäjän käskyä vastaan. Esitys on varoittava esimerkki siitä, mitä tapahtuu, kun vallanpitäjät ovat sokeita omalle lyhytnäköisyydelleen ja hyvälle hallitusohjelmalleen, ja miten itsestään selvinä pitämämme asiat, kuten ihmisoikeudet tai demokraattiset valtiot, voivat luhistua muutamassa sekunnissa.</p><p>Esitys on Helsingin Kaupunginteatterin ja Taideyliopiston Teatterikorkeakoulun yhteistuotanto.</p><p>Kirjailija: Sofokles<br>Suomentaja: Kirsti Simonsuuri<br>Ohjaus ja sovitus: Minna Harjuniemi<br>Dramaturgi: Ari-Pekka Lahti<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Laura Dammert<br>Valosuunnittelu: Kari Leppälä<br>Sävellys ja äänisuunnittelu: Emma Raunio<br>Naamioinnin suunnittelu: Henri Karjalainen</p><p>Rooleissa TeaKin opiskelijat: Olavi Angervo, Abdirahman Bile, Annika Junno, Eeli Jurvelin, Clara Kinnunen, Elisa Mattila, Adela Ogunbor, Venla Pulkkinen, Mawlawi Rahem, Alberto Rama, Pyry Rautiainen, Pyry Räty, Miriam Shange, Freddie Sukura</p>",
                "en": "<p>Sofokles<br><strong>ANTIGONE</strong></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21166418/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20865008",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-967155/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-20865008/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-20865008/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-20865008/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 152460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:44.815531Z",
                    "last_modified_time": "2024-09-18T10:16:44.815551Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152460/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T20:16:49.147916Z",
            "last_modified_time": "2026-05-05T02:15:06.048542Z",
            "date_published": null,
            "start_time": "2026-05-04T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kiviä Taskussa"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20865008/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68583",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-29T10:13:06.352425Z",
                    "last_modified_time": "2026-04-29T10:13:06.352443Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774157.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-29T10:13:06.209661Z",
            "last_modified_time": "2026-05-04T12:14:04.660440Z",
            "date_published": null,
            "start_time": "2026-05-15T13:00:00Z",
            "end_time": "2026-05-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Espan lavan kauden avajaiset – Kajos | Viia | Sounds of South America",
                "sv": "Säsongsöppning på Esplanadestraden – Kajos | Viia | Sounds of South America",
                "en": "Season opening ceremony at Espa Stage – Kajos | Viia | Sounds of South America"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Espan lavan avajaiset kajahtavat käyntiin monipuolisella musiikilla. Tahdit liikkuvat nykykansanmusiikista dark-popin melankoliaan ja latinalaisiin rytmeihin!",
                "sv": "Säsongen på Esplanadestraden inleds med mångsidig musik. Rytmerna varierar från modern folkmusik till melankolisk dark-pop och latinamerikanska melodier!",
                "en": "The opening ceremony of the Espa stage will kick off with a great selection of music."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6DBD9876C7E674E0FDA2FCD13501420E/Espan_lavan_kauden_avajaiset",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6DBD9876C7E674E0FDA2FCD13501420E/Sasongsoppning_pa_Esplanadestraden",
                "en": "http://www.espanlava.fi/en/events/event/6DBD9876C7E674E0FDA2FCD13501420E/Season_opening_ceremony_at_Espa_Stage"
            },
            "description": {
                "fi": "<p>Espan lavan avajaiset kajahtavat käyntiin monipuolisella musiikilla. Tahdit liikkuvat nykykansanmusiikista dark-popin melankoliaan ja latinalaisiin rytmeihin!</p><p>Espan lavan avajaiset käynnistyvät klo 16 Kajoksen myyttisellä ja voimallisella nykykansanmusiikilla. Klo 17 lavan valtaa Viian sinemaattinen dark-pop, ja klo 18 juhlan huipentaa Sounds of South American rytmikäs latinalainen musiikkibuffet.</p><p><b>Päivän ohjelma</b><br>klo 16 Kajos<br>klo 17 Viia<br>klo 18 Sounds of South America</p><p><b>Kajos</b><br>Kajos on väkevä nykykansanmusiikkiyhtye, jonka musiikki innoittuu suomalais-karjalaisesta loitsuperinteestä ja jykevästä luonnonvoimasta. Kajoksen musiikissa alkuvoimainen ja akrobaattinen äänenkäyttö, koskettava sellonsoitto, jylhät biitit ja elokuvalliset äänimaisemat kietovat kuulijan myyttiseen, ajattomaan todellisuuteen. Kajoksen livekokoonpanon muodostavat laulaja-säveltäjä Sini Koskelainen, sellisti Susanna Syrjäläinen ja lyömäsoittaja Oskari Lehtonen.</p><p><b>Viia</b><br>Viia on porilaislähtöinen laulaja-lauluntekijä, joka kirjoittaa englanninkielistä, sinemaattista dark-poppia rockahtavalla vivahteella. Hänen musiikilleen on tunnusomaista tarttuvat melodiat, vahvat kertosäkeet ja voimaannuttava melankolisuus. Viian samaistuttavat lyriikat pureutuvat ihmissuhteiden kipukohtiin ja arkisiin tabuihin – teemoihin, joihin kuulija voi uppoutua.<br>Kaudella 2025 Viia ihastutti Espan lavan Open Stage -sarjassa, ja nyt pääsee hurmaamaan kauden avajaisissa!</p><p><b>Sounds of South America</b><br>Argentiinalaisen Leandro Rocon johtama Sounds of South America esittää perinteistä musiikkia eri puolilta espanjankielistä maailmaa. Nelihenkinen yhtye esittää mm. kolumbialaista cumbiaa, espanjalaista flamencoa sekä uruguaylaista candombea, ja tuo latinalaisen musiikkibuffetinsa nyt Espan lavalle!<br>Leandro Roco - kitara, laulu<br>Fabio de Oliveira - kitara, taustalaulu<br>Humphrey Mubba - basso, taustalaulu<br>Jani Lehtioksa - lyömäsoittimet, taustalaulu</p>",
                "sv": "<p>Säsongen på Esplanadestraden inleds med mångsidig musik. Rytmerna varierar från modern folkmusik till melankolisk dark-pop och latinamerikanska melodier!</p><p>Säsongsöppningen på Esplanadestraden inleds kl. 16 med Kajos mytiska och kraftfulla moderna folkmusik. Kl. 17 tar Viia över scenen med sin cinematiska dark-pop, och kl. 18 kulminerar festen i Sounds of South Americas rytmiska latinamerikanska musikbuffé.</p><p><b>Dagens program</b><br>kl. 16 Kajos<br>kl. 17 Viia<br>kl. 18 Sounds of South America</p><p><b>Kajos</b><br>Kajos spelar kraftfull, modern folkmusik som inspireras av den finländsk-karelska besvärjelsetraditionen och grov naturkraft. Åhöraren lindas in i en mytisk, tidlös verklighet av den akrobatiska röstbehandlingen av primitiv kraft, det gripande cellospelet, de grova rytmerna och de cinematiska ljudlandskapen i Kajos musik. Kajos sammansättning för liveuppträdanden består av sångaren och tonsättaren Sini Koskelainen, cellisten Susanna Syrjäläinen och slagverkaren Oskari Lehtonen.</p><p><b>Viia</b><br>Viia är en sångare och låtskrivare från Björneborg som skriver cinematisk dark-pop på engelska, med en rocknyans. Hennes musik kännetecknas av smittande melodier, kraftfulla refränger och kraftgivande melankoli. Viias texter är lätta att identifiera sig med och de biter sig fast i människorelationers smärtpunkter och vardagliga tabun – teman som åhöraren kan fördjupa sig i.<br>Under säsongen 2025 charmade Viia i Esplanadestradens Open Stage-serie, och får nu tjusa publiken vid säsongsöppningen!</p><p><b>Sounds of South America</b><br>Sounds of South America, som leds av argentinska Leandro Roco, framför traditionell musik från olika håll i den spanskspråkiga världen. Bandet med fyra medlemmar framför bland annat colombiansk cumbia, spansk flamenco samt uruguayansk candombe. Nu tar bandet sin latinamerikanska musikbuffé till Esplanadestraden!</p><p>Leandro Roco – gitarr, sång<br>Fabio de Oliveira – gitarr, bakgrundssång<br>Humphrey Mubba – bas, bakgrundssång<br>Jani Lehtioksa – slagverk, bakgrundssång</p>",
                "en": "<p>The opening ceremony of the Espa stage will kick off with a great selection of music.</p><p>The beats range from contemporary folk music to the melancholy of dark-pop and Latin rhythms!</p><p>The opening ceremony of the Espa stage kicks off at 16.00 with the mythical and powerful contemporary folk music of Kajos. At 17.00 Viia's cinematic dark-pop will take over the stage, and at 18.00 the party will be topped off by Sounds of South America and their rhythm-rich buffet of Latin beats.</p><p><b>Programme of the day</b><br>at 16.00 Kajos<br>at 17.00 Viia<br>at 18.00 Sounds of South America</p><p><b>Kajos</b><br>Kajos is a powerful contemporary folk music band performing music inspired by the Finnish-Karelian incantation traditions and the powerful forces of nature. The primal and acrobatic use of sound in Kajos’s music, combined with the touching cello, rugged beats and cinematic soundscapes, envelop their audiences in a mythical, timeless reality. The live ensemble of Kajos consists of singer-composer Sini Koskelainen, cellist Susanna Syrjäläinen and percussionist Oskari Lehtonen.</p><p><b>Viia</b><br>Viia is a Pori-based singer-songwriter who writes cinematic dark-pop in English and with a rocking twist. Her music is characterised by catchy melodies, strong choruses and an empowering sense of melancholy. Viia's relatable lyrics tackle the painful parts of relationships and everyday taboos – themes that really draw the listener in.</p><p>During the 2025 Espa stage season, Viia wowed audiences in the Open Stage series, and now she's ready to bring her charm to the new season’s opening ceremony!</p><p><b>Sounds of South America</b><br>Sounds of South America, led by Argentinian Leandro Roco, performs traditional music from all over the Spanish-speaking world. The four-piece band performs Colombian cumbia, Spanish flamenco and Uruguayan candombe and many other styles, and will now bring their buffet of Latin music to the Espa stage!</p><p>Leandro Roco - guitar, vocals<br>Fabio de Oliveira - guitar, backing vocals<br>Humphrey Mubba - bass, backing vocals<br>Jani Lehtioksa - percussions, backing vocals</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68583/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67421",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537103/",
                        "sv": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537103/",
                        "en": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537103/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1823470,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-17T08:13:24.468915Z",
                    "last_modified_time": "2026-04-17T08:13:24.468929Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781122.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-17T08:13:24.374497Z",
            "last_modified_time": "2026-05-04T12:14:03.420884Z",
            "date_published": null,
            "start_time": "2026-05-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "sv": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "en": "Paholainen pukeutuu Pradaan 2 – Kino Helios"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/55F326C195CA859F3506B1F41B26D93B/Paholainen_pukeutuu_Pradaan_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/55F326C195CA859F3506B1F41B26D93B/Paholainen_pukeutuu_Pradaan_2",
                "en": "http://www.malmitalo.fi/en/events/event/55F326C195CA859F3506B1F41B26D93B/Paholainen_pukeutuu_Pradaan_2"
            },
            "description": {
                "fi": "<p>Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus.</p><p>Mukana ovat kaikki alkuperäiset päänäyttelijät sekä ohjaaja David Frankel ja käsikirjoittaja Aline Brosh McKenna, ja heidän lisäkseen esiin marssitetaan kokonainen liuta uusia hahmoja mukaan lukien Kenneth Branagh, Simone Ashley, Justin Theroux, Lucy Liu, Patrick Brammall, Caleb Hearon, Helen J. Shen, Pauline Chalamet, B.J. Novak ja Conrad Ricamora. Myös Tracie Thoms ja Tibor Feldman palaavat ensimmäisen elokuvan Lilyn ja Irvin rooleihinsa.</p><p>Elokuvan Paholainen pukeutuu Pradaan 2 on tuottanut Wendy Finerman sekä vastaavina tuottajina toimineet Michael Bederman, Karen Rosenfelt ja McKenna.</p><p>Elokuva saa ensi-iltansa vain elokuvateattereissa 1. toukokuuta 2026.</p><p>Ikäraja: 7<br>Kesto: 120 min<br>Ensi-ilta: 01.05.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67421/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67415",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537101/",
                        "sv": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537101/",
                        "en": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537101/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-18T14:13:16.383907Z",
                    "last_modified_time": "2026-04-18T14:13:16.383924Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781115.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-17T08:13:23.149287Z",
            "last_modified_time": "2026-05-04T12:14:01.466798Z",
            "date_published": null,
            "start_time": "2026-05-06T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "sv": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "en": "Paholainen pukeutuu Pradaan 2 – Kino Helios"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7CED641BF830F8E591BD6806C15C4D28/Paholainen_pukeutuu_Pradaan_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7CED641BF830F8E591BD6806C15C4D28/Paholainen_pukeutuu_Pradaan_2",
                "en": "http://www.malmitalo.fi/en/events/event/7CED641BF830F8E591BD6806C15C4D28/Paholainen_pukeutuu_Pradaan_2"
            },
            "description": {
                "fi": "<p>Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus.</p><p>Mukana ovat kaikki alkuperäiset päänäyttelijät sekä ohjaaja David Frankel ja käsikirjoittaja Aline Brosh McKenna, ja heidän lisäkseen esiin marssitetaan kokonainen liuta uusia hahmoja mukaan lukien Kenneth Branagh, Simone Ashley, Justin Theroux, Lucy Liu, Patrick Brammall, Caleb Hearon, Helen J. Shen, Pauline Chalamet, B.J. Novak ja Conrad Ricamora. Myös Tracie Thoms ja Tibor Feldman palaavat ensimmäisen elokuvan Lilyn ja Irvin rooleihinsa.</p><p>Elokuvan Paholainen pukeutuu Pradaan 2 on tuottanut Wendy Finerman sekä vastaavina tuottajina toimineet Michael Bederman, Karen Rosenfelt ja McKenna.</p><p>Elokuva saa ensi-iltansa vain elokuvateattereissa 1. toukokuuta 2026.</p><p>Ikäraja: 7<br>Kesto: 120 min<br>Ensi-ilta: 01.05.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67415/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67414",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537100/",
                        "sv": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537100/",
                        "en": "https://www.lippu.fi/event/kino-helios-paholainen-pukeutuu-pradaan-2-malmitalo-21537100/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1823366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-17T07:13:26.556124Z",
                    "last_modified_time": "2026-04-17T07:13:26.556140Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781113.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-17T07:13:26.413584Z",
            "last_modified_time": "2026-05-04T12:14:00.425114Z",
            "date_published": null,
            "start_time": "2026-05-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "sv": "Paholainen pukeutuu Pradaan 2 – Kino Helios",
                "en": "Paholainen pukeutuu Pradaan 2 – Kino Helios"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/799C0E06BFBF140BB486DC485A9CF73D/Paholainen_pukeutuu_Pradaan_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/799C0E06BFBF140BB486DC485A9CF73D/Paholainen_pukeutuu_Pradaan_2",
                "en": "http://www.malmitalo.fi/en/events/event/799C0E06BFBF140BB486DC485A9CF73D/Paholainen_pukeutuu_Pradaan_2"
            },
            "description": {
                "fi": "<p>Lähes 20 vuotta sitten värikkäiden vaiheiden myötä ikonisiksi muodostuneet hahmot Miranda, Andy, Emily ja Nigel—Meryl Streep, Anne Hathaway, Emily Blunt ja Stanley Tucci palaavat New Yorkin muodikkaille kaduille ja Runway Magazinen hohdokkaaseen toimitukseen hartaasti odotetussa jatko-osassa vuoden 2006 elokuvatapaukselle, josta muodostui sukupolvikokemus.</p><p>Mukana ovat kaikki alkuperäiset päänäyttelijät sekä ohjaaja David Frankel ja käsikirjoittaja Aline Brosh McKenna, ja heidän lisäkseen esiin marssitetaan kokonainen liuta uusia hahmoja mukaan lukien Kenneth Branagh, Simone Ashley, Justin Theroux, Lucy Liu, Patrick Brammall, Caleb Hearon, Helen J. Shen, Pauline Chalamet, B.J. Novak ja Conrad Ricamora. Myös Tracie Thoms ja Tibor Feldman palaavat ensimmäisen elokuvan Lilyn ja Irvin rooleihinsa.</p><p>Elokuvan Paholainen pukeutuu Pradaan 2 on tuottanut Wendy Finerman sekä vastaavina tuottajina toimineet Michael Bederman, Karen Rosenfelt ja McKenna.</p><p>Elokuva saa ensi-iltansa vain elokuvateattereissa 1. toukokuuta 2026.</p><p>Ikäraja: 7<br>Kesto: 120 min<br>Ensi-ilta: 01.05.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c8b51f00-9191-4fa8-a87e-29f059eae59f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50634/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Millan_kakkukahvit4272848443"
                    },
                    "description": null,
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "created_time": "2026-05-04T11:55:44.145008Z",
            "last_modified_time": "2026-05-04T11:55:44.145031Z",
            "date_published": "2026-05-04T11:55:17Z",
            "start_time": "2026-05-25T14:00:00Z",
            "end_time": "2026-05-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Millan kakkukahvit"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Millan näyttelykerho ry"
            },
            "short_description": {
                "fi": "Kahvia ja kakkua Millan uudessa näyttelyssä!"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Tervetuloa juomaan kakkukahveja Millan näyttelyyn!</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c8b51f00-9191-4fa8-a87e-29f059eae59f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7f4vrpi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1833217,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-04T11:40:22.902651Z",
                    "last_modified_time": "2026-05-04T11:40:22.902666Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2d8ad196-a32a-4f89-9b82-15781c01c87d.jpg",
                    "name": "",
                    "cropping": "0,424,2047,2470",
                    "photographer_name": "Tyko Lundberg",
                    "alt_text": "Tussilla piirretty fantasiahahmo.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1833217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-04T11:40:48.618184Z",
            "last_modified_time": "2026-05-04T11:40:48.618200Z",
            "date_published": "2026-05-04T11:35:00Z",
            "start_time": "2026-05-05T05:00:00Z",
            "end_time": "2026-05-29T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Näyttely: Monster Mash ",
                "sv": "Utställning: Monster Mash ",
                "en": "Exhibition: Monster Mash "
            },
            "location_extra_info": {
                "fi": "Näyttelyparvi",
                "sv": "Utställningsloftet",
                "en": "Exhibition loft"
            },
            "provider": {
                "fi": "Tyko Lundberg",
                "sv": "Tyko Lundberg",
                "en": "Tyko Lundberg"
            },
            "short_description": {
                "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.",
                "sv": "Välkommen att besöka utställning i Hagalunds bibliotek.",
                "en": "Welcome to visit an art exhibition in Tapiola Library."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Fantasian maailmaan sijoittuvat tussityöt kumpuavat omasta intohimostani piirtämiseen ja fantasian tarjoamista rajattomista mahdollisuuksista. Työt eivät muodosta yhtenäistä kokonaisuutta, vaan ovat itsenäisiä teoksia.</p><p>Luonnostelen ideani ensin lyijykynällä, jonka jälkeen viimeistelen ne tusseja käyttäen. Joskus kuvat syntyvät nopeasti, joskus aihetta joutuu työstämään kauankin.</p><p>Haluan näyttelyn kautta nostaa esille käsin piirretyn työn aidon tunnelman verrattuna digitaalisesti tehtyihin kuvituksiin. Motivaationa käsin tehtyjen töiden esittelyyn toimivat myös viime vuosina valitettavan paljon lisääntyneet tekoälyllä luodut kuvat, jotka vesittävät digitaalisen taiteen mainetta.&nbsp;</p><p>Toivon, että kävijä löytää iloa näyttelyn töistä!&nbsp;</p><p>Tyko Lundberg</p><p>lundbergtyko@gmail.com</p>",
                "sv": "<p>Välkommen att besöka utställning i Hagalunds bibliotek.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7f4vrpi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7f4vsjy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1833218,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-04T11:25:59.416726Z",
                    "last_modified_time": "2026-05-04T11:25:59.416741Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2c9c4d87-9577-4159-b6ea-6243c89d3b6d.jpg",
                    "name": "",
                    "cropping": "648,0,4536,3888",
                    "photographer_name": "Hanna-Kaisa Hyvärinen",
                    "alt_text": "Käsin sidottuja kirjoja, joiden kannessa on sorsalintuja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1833218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-04T11:27:16.960322Z",
            "last_modified_time": "2026-05-04T11:27:16.960339Z",
            "date_published": "2026-05-04T11:25:00Z",
            "start_time": "2026-05-05T05:00:00Z",
            "end_time": "2026-05-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Näyttely: Pikkukirjojen maailmat",
                "sv": "Utställning: Pikkukirjojen maailmat",
                "en": "Art exhibition: Pikkukirjojen maailmat"
            },
            "location_extra_info": {
                "fi": "Näyttelyvitriini",
                "sv": "Utställningsvitrin",
                "en": "Display cabinet"
            },
            "provider": {
                "fi": "Hanna-Kaisa",
                "sv": "Hanna-Kaisa",
                "en": "Hanna-Kaisa"
            },
            "short_description": {
                "fi": "Tervetuloa vierailemaan taidenäyttelyssä Tapiolan kirjastossa.",
                "sv": "Välkommen att besöka  utställning i Hagalund biblioteken.",
                "en": "Welcome to an art exhibition  in Tapiola Library."
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Tapiolan kirjaston vitriini 5.5.-30.5. 2026.</strong></p><p>Kirjansidonta on tuonut iloa elämääni jo usean vuoden ajan. Harrastus alkoi työväenopistojen kursseilta. Viime vuosina pienet kirjat ovat alkaneet viehättää. Monet kirjansidonnan tekniikat soveltuvat hyvin niihinkin ja tarvikkeet ja välineet löytyvät askartelua harrastavan kotoa.</p><p>Pikkuhiljaa kasvoi halu toteuttaa kokonaisuuksia, jotka koostuisivat useista pienistä kirjoista. Sain tähän näyttelyyn valmiiksi kolme työtä, joissa kussakin käytin erityyppistä sidontatekniikkaa. Kokonaisuuksien aiheet muotoutuivat tehdessä. Valittu tekniikka ja käytettävissä olevat materiaalit ohjasivat osaltaan ratkaisuja. </p><p>Toivon töideni ilahduttavan monia</p><p>Hanna-Kaisa</p>",
                "sv": "<p>Välkommen att besöka utställning i Hagalunds bibliotek.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Welcome to visit the exhibition at Tapiola Library.</p><p>The exhibition is open during the library’s opening hours.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7f4vsjy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67835",
            "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: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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056753/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056753/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056753/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 €",
                        "sv": "15 € / 7 €",
                        "en": "15 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494214,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-15T13:13:45.456246Z",
                    "last_modified_time": "2025-12-15T13:13:45.456264Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778776.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494214/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-15T13:13:45.362258Z",
            "last_modified_time": "2026-05-04T10:13:57.246232Z",
            "date_published": null,
            "start_time": "2026-05-30T16: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": "RAÍZ – Caisa 30 Club",
                "sv": "RAÍZ – Caisa 30 Club",
                "en": "RAÍZ – Caisa 30 Club"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Maailman äänet kohtaavat Caisassa! RAÍZ on monikulttuurinen konsertti kielistä, luonnosta ja yhteenkuuluvuudesta.",
                "sv": "Världens röster möts på Caisa! RAÍZ är en mångkulturell konsert om språk, natur och gemenskap.",
                "en": "A multicultural concert about languages, nature, and belonging, presented as part of the CAISA 30th Anniversary Club."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/765F08CC042160CC76A8958E7D295FF1/RA_Z",
                "sv": "http://www.caisa.fi/sv/evenemang/event/765F08CC042160CC76A8958E7D295FF1/RA_Z",
                "en": "http://www.caisa.fi/en/events/event/765F08CC042160CC76A8958E7D295FF1/RA_Z"
            },
            "description": {
                "fi": "<p>Maailman äänet kohtaavat Caisassa! RAÍZ on monikulttuurinen konsertti kielistä, luonnosta ja yhteenkuuluvuudesta.</p><p>Osana CAISA:n 30-vuotisjuhlavuoden ohjelmistoa, RAÍZ tarjoilee monikulttuurisen konsertin, jossa äänet eri puolilta maailmaa laulavat luonnosta ja yhteenkuuluvuuden teemoista.</p><p>Kansainvälisen taiteilijaryhmän RAÍZ kokoaa yhteen seitsemän solistia Arubalta, Chilestä, Suomesta, Kazakstanista, Tansaniasta ja muilta alueilta, 12-jäsenisen yhtyeen sekä avoimen haun kautta kootun yhteisökuoron.</p><p>Konsertti tarkastelee kielten ja ekologian välistä yhteyttä João Luísin alkuperäisten sovitusten kautta. Luís toimii teoksen yhteistuottajana, säveltäjänä, sovittajana ja kapellimestarina, ja sovitukset on kehitetty vuoropuhelussa kunkin solistin oman perinteen ja laulun kanssa.</p><p>RAÍZ juhlistaa inhimillisen ilmaisun moninaisuutta ja muistuttaa samalla yhteisistä juuristamme luonnossa!</p><p><b>Taiteellinen johto, sävellys, kapellimestari</b><br>João Luís</p><p><b>Sovitukset </b><br>Joni Vierre, João Luís</p><p><b>Musiikki</b><br>Vierailevien taiteilijoiden säveltämää alkuperäismusiikkia</p><p><b>Kuoronjohtaja</b><br>Kata Vuoristo</p><p><b>Ääniteknikko </b><br>Julius Johansson</p><p><b>Vierailevat artistit</b><br>Susjaira Kerpens – Aruba<br>Keka Mirza – Bangladesh<br>Loica (Ángela Valenzuela) – Chile<br>Merlyn Driver – United Kingdom<br>Kata Vuoristo – Finland<br>Humphrey Mubba – Tanzania</p><p><b>Kokoonpano </b><br>Luciana Garcia (CL) – Piano, Synths<br>Markus Snellman (FI) – Drumset<br>Humphrey Mubba (TZ) – Bass<br>João Luís (PO) – Percussion<br>Joni Vierre (FI) – Guitar, Mandolin<br>Khashayar Eshkevari (IR) – Kamanche<br>Sebastian Castrillon (CL) – Cello<br>Erno Haukkala (FI) – Trombone, Flute<br>Jaakko Arola (FI) – Flute, Saxophone, Bass Clarinet</p><p><b>Yhteisökuoro</b><br>Avoimen haun kuoro (Helsinki), noin 30 laulajaa</p><p>Tämä konsertti toteutettiin Sibelius-Akatemian globaalin musiikin osaston, Maailman musiikin keskuksen (MES), Kulttuurikeskus Caisan sekä Kansan Sivistysrahaston tuella ja yhteistyöllä.</p><p>Esityksen kesto: 105 min, sisältäen väliajan (15 min)<br>Ikäsuositus: sopii kaikenikäisille<br>Kieli: monikielinen (mm. espanja, papiamentu, suomi, kazakki ja swahili)</p>",
                "sv": "<p>Världens röster möts på Caisa! RAÍZ är en mångkulturell konsert om språk, natur och gemenskap.</p><p>Som en del av programmet under Caisas 30-årsjubileum bjuder RAÍZ på en mångkulturell konsert där röster från olika delar av världen sjunger om teman kring natur och samhörighet.</p><p>Den internationella konstnärsgruppen RAÍZ samlar sju solister från Aruba, Chile, Finland, Kazakstan, Tanzania och andra områden, en ensemble med 12 medlemmar och en gemenskapskör som sammanställts genom en öppen ansökan. Konserten utforskar kopplingen mellan språk och ekologi genom originalarrangemang av João Luís. Luís är medproducent, kompositör, arrangör och kapellmästare för verket, och arrangemangen har utvecklats i dialog med varje solists egen tradition och sång.</p><p>RAÍZ hyllar mångfalden av mänskliga uttryck och påminner samtidigt om våra gemensamma rötter i naturen!</p><p><b>Artister</b><br>Solister från Aruba, Chile, Finland, Kazakstan och Tanzania (+ två som bekräftas senare)<br>Gemenskapskör (genom öppen ansökan) – körledare Kata Vuoristo<br>Ensemble – 12 musiker<br>João Luís – medproducent, kompositör, arrangör och kapellmästare<br>Solister från Aruba, Chile, Finland, Kazakstan och Tanzania (plus två som bekräftas senare)</p><p>Föreställningens längd: 105 min, inklusive<br>Åldersrekommendation: lämplig för alla åldrar<br>Språk: flerspråkig (inklusive spanska, papiamento, finska, kazakiska och swahili)</p>",
                "en": "<p>A multicultural concert about languages, nature, and belonging, presented as part of the CAISA 30th Anniversary Club.</p><p>The concert brings together six guest artists from diverse cultural and linguistic backgrounds, a nine member instrumental ensemble, and a community choir of approximately 30 singers, formed through an open call in Helsinki. Voices from Aruba, Bangladesh, Chile, the United Kingdom, Finland, and Tanzania meet in a shared musical space shaped by collaboration and listening.</p><p>RAÍZ is co-created by an international artistic team. The music is based on original works by the guest artists and João Luís, arranged specifically for this project. Through these compositions and arrangements, the concert explores the relationship between language and ecology, reflecting on how songs carry memory, knowledge, and connections to place.</p><p>RAÍZ celebrates vocal diversity while inviting audiences to reflect on shared roots and our relationship with the natural world.</p><p><b>Artistic & Technical Credits:</b></p><p><b>Artistic Direction, Composition, Conducting </b><br>João Luís</p><p><b>Arrangements </b><br>Joni Vierre, João Luís</p><p><b>Music </b><br>Original music by the guest artists</p><p><b>Choir Direction </b><br>Kata Vuoristo</p><p><b>Sound Engineer</b> <br>Julius Johansson</p><p><b>Guest Artists </b><br>Susjaira Kerpens – Aruba <br>Keka Mirza – Bangladesh <br>Loica (Ángela Valenzuela) – Chile <br>Merlyn Driver – United Kingdom <br>Kata Vuoristo – Finland <br>Humphrey Mubba – Tanzania</p><p><b>Ensemble </b><br>Luciana Garcia (CL) – Piano, Synths <br>Markus Snellman (FI) – Drumset <br>Humphrey Mubba (TZ) – Bass <br>João Luís (PO) – Percussion <br>Joni Vierre (FI) – Guitar, Mandolin <br>Khashayar Eshkevari (IR) – Kamanche <br>Sebastian Castrillon (CL) – Cello <br>Erno Haukkala (FI) – Trombone, Flute <br>Jaakko Arola (FI) – Flute, Saxophone, Bass Clarinet</p><p><b>Community Choir </b><br>Open call choir (Helsinki), approximately 30 singers</p><p>This concert was made possible with the support and collaboration of Sibelius Academy – Global Music Department, Maailman musiikin keskus (MES), Cultural Center Caisa and Kansan Sivistysrahasto.</p><p><b>Practical Information </b><br>Duration: 105 minutes (including a 15-minute intermission) <br>Age Recommendation: Suitable for all ages <br>Languages: Multiple languages, including Papiamento, Bengali, Spanish, Finnish, Swahili, and English</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67835/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67834",
            "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: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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056752/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056752/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056752/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 €",
                        "sv": "15 € / 7 €",
                        "en": "15 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494213,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-15T13:13:45.057512Z",
                    "last_modified_time": "2025-12-15T13:13:45.057528Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778773.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494213/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-15T13:13:44.935303Z",
            "last_modified_time": "2026-05-04T10:13:56.940575Z",
            "date_published": null,
            "start_time": "2026-05-29T16: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": "RAÍZ – Caisa 30 Club",
                "sv": "RAÍZ – Caisa 30 Club",
                "en": "RAÍZ – Caisa 30 Club"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Maailman äänet kohtaavat Caisassa! RAÍZ on monikulttuurinen konsertti kielistä, luonnosta ja yhteenkuuluvuudesta.",
                "sv": "Världens röster möts på Caisa! RAÍZ är en mångkulturell konsert om språk, natur och gemenskap.",
                "en": "A multicultural concert about languages, nature, and belonging, presented as part of the CAISA 30th Anniversary Club."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4ACBBC685D751D13B4BC0199E121B57E/RA_Z",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4ACBBC685D751D13B4BC0199E121B57E/RA_Z",
                "en": "http://www.caisa.fi/en/events/event/4ACBBC685D751D13B4BC0199E121B57E/RA_Z"
            },
            "description": {
                "fi": "<p>Maailman äänet kohtaavat Caisassa! RAÍZ on monikulttuurinen konsertti kielistä, luonnosta ja yhteenkuuluvuudesta.</p><p>Osana CAISA:n 30-vuotisjuhlavuoden ohjelmistoa, RAÍZ tarjoilee monikulttuurisen konsertin, jossa äänet eri puolilta maailmaa laulavat luonnosta ja yhteenkuuluvuuden teemoista.</p><p>Kansainvälisen taiteilijaryhmän RAÍZ kokoaa yhteen seitsemän solistia Arubalta, Chilestä, Suomesta, Kazakstanista, Tansaniasta ja muilta alueilta, 12-jäsenisen yhtyeen sekä avoimen haun kautta kootun yhteisökuoron.</p><p>Konsertti tarkastelee kielten ja ekologian välistä yhteyttä João Luísin alkuperäisten sovitusten kautta. Luís toimii teoksen yhteistuottajana, säveltäjänä, sovittajana ja kapellimestarina, ja sovitukset on kehitetty vuoropuhelussa kunkin solistin oman perinteen ja laulun kanssa.</p><p>RAÍZ juhlistaa inhimillisen ilmaisun moninaisuutta ja muistuttaa samalla yhteisistä juuristamme luonnossa!</p><p><b>Taiteellinen johto, sävellys, kapellimestari</b><br>João Luís</p><p><b>Sovitukset </b><br>Joni Vierre, João Luís</p><p><b>Musiikki</b><br>Vierailevien taiteilijoiden säveltämää alkuperäismusiikkia</p><p><b>Kuoronjohtaja</b><br>Kata Vuoristo</p><p><b>Ääniteknikko </b><br>Julius Johansson</p><p><b>Vierailevat artistit</b><br>Susjaira Kerpens – Aruba<br>Keka Mirza – Bangladesh<br>Loica (Ángela Valenzuela) – Chile<br>Merlyn Driver – United Kingdom<br>Kata Vuoristo – Finland<br>Humphrey Mubba – Tanzania</p><p><b>Kokoonpano </b><br>Luciana Garcia (CL) – Piano, Synths<br>Markus Snellman (FI) – Drumset<br>Humphrey Mubba (TZ) – Bass<br>João Luís (PO) – Percussion<br>Joni Vierre (FI) – Guitar, Mandolin<br>Khashayar Eshkevari (IR) – Kamanche<br>Sebastian Castrillon (CL) – Cello<br>Erno Haukkala (FI) – Trombone, Flute<br>Jaakko Arola (FI) – Flute, Saxophone, Bass Clarinet</p><p><b>Yhteisökuoro</b><br>Avoimen haun kuoro (Helsinki), noin 30 laulajaa</p><p>Tämä konsertti toteutettiin Sibelius-Akatemian globaalin musiikin osaston, Maailman musiikin keskuksen (MES), Kulttuurikeskus Caisan sekä Kansan Sivistysrahaston tuella ja yhteistyöllä.</p><p>Esityksen kesto: 105 min, sisältäen väliajan (15 min)<br>Ikäsuositus: sopii kaikenikäisille<br>Kieli: monikielinen (mm. espanja, papiamentu, suomi, kazakki ja swahili)</p>",
                "sv": "<p>Världens röster möts på Caisa! RAÍZ är en mångkulturell konsert om språk, natur och gemenskap.</p><p>Som en del av programmet under Caisas 30-årsjubileum bjuder RAÍZ på en mångkulturell konsert där röster från olika delar av världen sjunger om teman kring natur och samhörighet.</p><p>Den internationella konstnärsgruppen RAÍZ samlar sju solister från Aruba, Chile, Finland, Kazakstan, Tanzania och andra områden, en ensemble med 12 medlemmar och en gemenskapskör som sammanställts genom en öppen ansökan. Konserten utforskar kopplingen mellan språk och ekologi genom originalarrangemang av João Luís. Luís är medproducent, kompositör, arrangör och kapellmästare för verket, och arrangemangen har utvecklats i dialog med varje solists egen tradition och sång.</p><p>RAÍZ hyllar mångfalden av mänskliga uttryck och påminner samtidigt om våra gemensamma rötter i naturen!</p><p><b>Artister</b><br>Solister från Aruba, Chile, Finland, Kazakstan och Tanzania (+ två som bekräftas senare)<br>Gemenskapskör (genom öppen ansökan) – körledare Kata Vuoristo<br>Ensemble – 12 musiker<br>João Luís – medproducent, kompositör, arrangör och kapellmästare<br>Solister från Aruba, Chile, Finland, Kazakstan och Tanzania (plus två som bekräftas senare)</p><p>Föreställningens längd: 105 min, inklusive<br>Åldersrekommendation: lämplig för alla åldrar<br>Språk: flerspråkig (inklusive spanska, papiamento, finska, kazakiska och swahili)</p>",
                "en": "<p>A multicultural concert about languages, nature, and belonging, presented as part of the CAISA 30th Anniversary Club.</p><p>The concert brings together six guest artists from diverse cultural and linguistic backgrounds, a nine member instrumental ensemble, and a community choir of approximately 30 singers, formed through an open call in Helsinki. Voices from Aruba, Bangladesh, Chile, the United Kingdom, Finland, and Tanzania meet in a shared musical space shaped by collaboration and listening.</p><p>RAÍZ is co-created by an international artistic team. The music is based on original works by the guest artists and João Luís, arranged specifically for this project. Through these compositions and arrangements, the concert explores the relationship between language and ecology, reflecting on how songs carry memory, knowledge, and connections to place.</p><p>RAÍZ celebrates vocal diversity while inviting audiences to reflect on shared roots and our relationship with the natural world.</p><p><b>Artistic & Technical Credits:</b></p><p><b>Artistic Direction, Composition, Conducting </b><br>João Luís</p><p><b>Arrangements </b><br>Joni Vierre, João Luís</p><p><b>Music </b><br>Original music by the guest artists</p><p><b>Choir Direction </b><br>Kata Vuoristo</p><p><b>Sound Engineer</b> <br>Julius Johansson</p><p><b>Guest Artists </b><br>Susjaira Kerpens – Aruba <br>Keka Mirza – Bangladesh <br>Loica (Ángela Valenzuela) – Chile <br>Merlyn Driver – United Kingdom <br>Kata Vuoristo – Finland <br>Humphrey Mubba – Tanzania</p><p><b>Ensemble </b><br>Luciana Garcia (CL) – Piano, Synths <br>Markus Snellman (FI) – Drumset <br>Humphrey Mubba (TZ) – Bass <br>João Luís (PO) – Percussion <br>Joni Vierre (FI) – Guitar, Mandolin <br>Khashayar Eshkevari (IR) – Kamanche <br>Sebastian Castrillon (CL) – Cello <br>Erno Haukkala (FI) – Trombone, Flute <br>Jaakko Arola (FI) – Flute, Saxophone, Bass Clarinet</p><p><b>Community Choir </b><br>Open call choir (Helsinki), approximately 30 singers</p><p>This concert was made possible with the support and collaboration of Sibelius Academy – Global Music Department, Maailman musiikin keskus (MES), Cultural Center Caisa and Kansan Sivistysrahasto.</p><p><b>Practical Information </b><br>Duration: 105 minutes (including a 15-minute intermission) <br>Age Recommendation: Suitable for all ages <br>Languages: Multiple languages, including Papiamento, Bengali, Spanish, Finnish, Swahili, and English</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67834/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnn6ceeyi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6oy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6ze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7y4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cea3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceb4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cechy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cecsy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cec5q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cedii/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceduy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceea4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceelu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpbnsq53e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150450,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T07:59:13.420035Z",
                    "last_modified_time": "2024-01-17T07:59:13.420055Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "shakkinappuloita pelilaudalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-02T12:04:10.465231Z",
            "last_modified_time": "2026-05-04T09:54:55.331322Z",
            "date_published": null,
            "start_time": "2026-05-07T14:00:00Z",
            "end_time": "2026-05-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Shakkiklubi",
                "sv": "Schackklubb ",
                "en": "Chess Club"
            },
            "location_extra_info": {
                "fi": "Pointti",
                "sv": "Pointti",
                "en": "Pointti"
            },
            "provider": {
                "fi": "Sellon kirjasto",
                "sv": "Sellobiblioteket",
                "en": "Sello Library"
            },
            "short_description": {
                "fi": "Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. ",
                "sv": "Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.",
                "en": "The club is for players who already know the basics. Guidance available."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. Tervetuloa!</p>",
                "sv": "<p><br></p><p>Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.</p>",
                "en": "<p>The club is for players who already know the basics. Guidance available.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceeyi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnn6cd6oy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceeyi/?format=api"
            },
            "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": 150450,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T07:59:13.420035Z",
                    "last_modified_time": "2024-01-17T07:59:13.420055Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "shakkinappuloita pelilaudalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-12-02T12:04:14.331153Z",
            "last_modified_time": "2026-05-04T09:53:48.271788Z",
            "date_published": null,
            "start_time": "2026-05-07T14:00:00Z",
            "end_time": "2026-05-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": 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": "Shakkiturnaus",
                "sv": "Schackturnering",
                "en": "Chess tournament"
            },
            "location_extra_info": {
                "fi": "Pointti",
                "sv": "Pointti",
                "en": "Pointti"
            },
            "provider": {
                "fi": "Sellon kirjasto",
                "sv": "Sellobiblioteket",
                "en": "Sello Library"
            },
            "short_description": {
                "fi": "Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. ",
                "sv": "Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.",
                "en": "The club is for players who already know the basics. Guidance available."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Turnaus on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. Tervetuloa!</p>",
                "sv": "<p><br></p><p>Turnering är för spelare som redan kan grunderna. Vägledning finns tillgänglig.</p>",
                "en": "<p>The tournament is for players who already know the basics. Guidance available.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6oy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68278",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1721680,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T12:13:56.335869Z",
                    "last_modified_time": "2026-03-24T12:13:56.335890Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786628.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721680/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T12:13:56.219991Z",
            "last_modified_time": "2026-05-04T08:14:04.019825Z",
            "date_published": null,
            "start_time": "2026-08-03T07:00:00Z",
            "end_time": "2026-08-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten kesätaidekerho alakoululaisille – klo 10–14",
                "sv": "Sommarkonstklubb för barn för barn i årskurs 1–6 – klo 10–14",
                "en": "Children’s summer art club for primary school children – klo 10–14"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kaipaatko luovaa tekemistä kesälomalla? Tule Kanneltalon maksuttomaan kesätaidekerhoon!",
                "sv": "Letar du efter något kreativt att göra under sommarlovet? Kom med på Gamlasgårdens avgiftsfria sommarkonstklubb!",
                "en": "Looking for something creative to do during your summer break? Why not join Kanneltalo’s free-of-charge summer art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A7A5722294361315EA969314470F8B7D/Lasten_kesataidekerho_alakoululaisille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A7A5722294361315EA969314470F8B7D/Sommarkonstklubb_for_barn_for_barn_i_arskurs_1_6",
                "en": "http://www.kanneltalo.fi/en/events/event/A7A5722294361315EA969314470F8B7D/Children_s_summer_art_club_for_primary_school_children"
            },
            "description": {
                "fi": "<p>Kaipaatko luovaa tekemistä kesälomalla? Tule Kanneltalon maksuttomaan kesätaidekerhoon!</p><p>Tervetuloa Kanneltalon maksuttomaan kesätaidekerhoon. Teemat ja tekniikat vaihtelevat kerrasta toiseen. Luvassa on ötököiden tarkkailua ja piirtämistä, vahaliitu- ja tussimaalauskokeiluja sekä ikkunakoristeen ja muovailuvahafantasian tekemistä. Opit myös yksinkertaisen japanilaisen letittämistekniikan.</p><p>Tarjolla on myös pientä välipalaa taidekerhoon osallistuville.</p><p>Taidekerhon non-stop-toiminta on suunniteltu kesälomalla oleville alakouluikäisille, nuoremmat lapset ovat tervetulleita yhdessä aikuisen kanssa.</p><p><b>KESÄTAIDEKERHON VIIKKO-OHJELMA:</b></p><p><b>ma 3.8. Kummallinen kollaasi!</b><br>Leikataan kierrätyskuvakirjoista ja -lehdistä kuvia, ja niitä yhdistämällä luodaan absurdeja ja hauskoja teoksia.</p><p><b>ti 4.8. Mininuket</b><br>Askarellaan uudet ystävät, jotka mahtuvat taskuun! Käytämme puutikkuja ja lankoja.</p><p><b>ke 5.8. Kultainen mosaiikk</b><br>Kierrätysaarteista sommitellaan pienikokoinen mosaiikki. Käytämme kultaista liimaa!</p><p><b>to 6.8. Sabluuna ja tuputus</b><br>Luodaan omat sabluunat ja niiden avulla koristellaan pieni kangaskassi maalia tuputtamalla.</p><p><b>pe 7.8. Kukkien muotokuva</b><br>Piirretään ja maalataan oikeita kukkia hienoja Inktense-kyniä käyttäen.</p><p>Ohjaaja: kuvataiteilija Chloé Mahy-Hulkko<br>Ajankohta: ma-pe 3.–7.8. klo 10–14<br>Paikka: Kannelmäen kirjaston Tempo<br>Opetuskielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>",
                "sv": "<p>Letar du efter något kreativt att göra under sommarlovet? Kom med på Gamlasgårdens avgiftsfria sommarkonstklubb!</p><p>Välkommen på Gamlasgårdens avgiftsfria sommarkonstklubb. Teman och tekniker varierar från gång till gång. Du får studera och teckna småkryp, prova på att måla med vaxkritor och tusch samt skapa fönsterdekorationer och modellerafantasier. Du får också lära dig en enkel japansk flätteknik.<br>Det bjuds också på ett litet mellanmål för alla som deltar i konstklubben.\u2028 <br>Konstklubbens non-stop-verksamhet har planerats för elever i årskurs 1–6 som är på sommarlov, yngre barn är välkomna tillsammans med en vuxen.</p><p><b>SOMMARKONSTKLUBBENS VECKOPROGRAM:</b><br><b>mån 3.8 Ett konstigt collage!</b><br>Vi klipper ut bilder ur gamla bilderböcker och tidningar och skapar absurda och roliga verk med dem.</p><p><b>tis 4.8 Minidockor</b><br>Vi pysslar nya vänner som får plats i fickan! Vi använder träpinnar och garn.</p><p><b>ons 5.8. Gyllene mosaik</b><br>Vi skapar en liten mosaik av återvunna skatter. Vi använder gyllene lim!</p><p><b>tor 6.8 Schablon och stöppling</b><br>Vi skapar egna schabloner och använder dem för att dekorera en liten tygkasse genom att dutta färg.</p><p><b>fre 7.8 Blomsterporträtt</b><br>Vi tecknar och målar riktiga blommor med fina Inktense-pennor.</p><p>Ledare: bildkonstnären Chloé Mahy-Hulkko<br>Tid: mån–fre 3–7.8 kl. 10–14<br>Plats: Tempo i Gamlas bibliotek<br>Undervisningsspråk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>",
                "en": "<p>Looking for something creative to do during your summer break? Why not join Kanneltalo’s free-of-charge summer art club!</p><p>Välkommen på Gamlasgårdens avgiftsfria sommarkonstklubb. Teman och tekniker varierar från gång till gång. Du får studera och teckna småkryp, prova på att måla med vaxkritor och tusch samt skapa fönsterdekorationer och modellerafantasier. Du får också lära dig en enkel japansk flätteknik.<br>Det bjuds också på ett litet mellanmål för alla som deltar i konstklubben.\u2028 <br>Konstklubbens non-stop-verksamhet har planerats för elever i årskurs 1–6 som är på sommarlov, yngre barn är välkomna tillsammans med en vuxen.</p><p><b>SOMMARKONSTKLUBBENS VECKOPROGRAM:</b><br><b>mån 3.8 Ett konstigt collage!</b><br>Vi klipper ut bilder ur gamla bilderböcker och tidningar och skapar absurda och roliga verk med dem.</p><p><b>tis 4.8 Minidockor</b><br>Vi pysslar nya vänner som får plats i fickan! Vi använder träpinnar och garn.</p><p><b>ons 5.8. Gyllene mosaik</b><br>Vi skapar en liten mosaik av återvunna skatter. Vi använder gyllene lim!</p><p><b>tor 6.8 Schablon och stöppling</b><br>Vi skapar egna schabloner och använder dem för att dekorera en liten tygkasse genom att dutta färg.</p><p><b>fre 7.8 Blomsterporträtt</b><br>Vi tecknar och målar riktiga blommor med fina Inktense-pennor.</p><p>Ledare: bildkonstnären Chloé Mahy-Hulkko<br>Tid: mån–fre 3–7.8 kl. 10–14<br>Plats: Tempo i Gamlas bibliotek<br>Undervisningsspråk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68278/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7efxw4q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824301,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T07:45:26.625348Z",
                    "last_modified_time": "2026-05-04T07:45:26.625361Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/81527100-e0a3-4563-8e79-5356183ef7b6.png",
                    "name": "",
                    "cropping": "270,0,809,539",
                    "photographer_name": "",
                    "alt_text": "Kuva valtiotieteilijä Katalin Miklóssystä ja maisema Unkarista.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-05-04T07:54:14.685227Z",
            "last_modified_time": "2026-05-04T07:54:14.685244Z",
            "date_published": null,
            "start_time": "2026-05-27T14:00:00Z",
            "end_time": "2026-05-27T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Miten korjataan oikeusvaltio Unkarissa? ",
                "sv": "Hur kan rättsstaten återställas i Ungern?",
                "en": "How can the rule of law be restored in Hungary?"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": ":spoon eläkeläisten keskusliitto",
                "sv": "Centralförbundet för pensionärer i Esbo",
                "en": "Central union for pensioners in Espoo"
            },
            "short_description": {
                "fi": "Tulevaisuuden näkymät ja haasteet",
                "sv": "\nFramtidsutsikter och utmaningar",
                "en": "Future prospects and challenges"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Ajankohtaisesta aiheesta on meille kertomassa valtiotieteilijä Katalin Miklóssy</p><p>Katalin Miklóssy on tutkinut poliittista historiaa ja Itä-Eurooppaa. Hänen erikoistumisalueinaan ovat olleet varsinkin kilpailun ja autoritaaristen järjestelmien muutosten tutkimukset etenkin</p><p>Visegrád-ryhmän maissa ja Kaakkois-Euroopassa.</p>",
                "sv": "<p>Statsvetaren Katalin Miklóssy kommer att berätta för oss om detta aktuella ämne. Katalin Miklóssy har forskat i politisk historia och Östeuropa. Hennes specialområden omfattar särskilt studier av konkurrens och förändringar i auktoritära system, särskilt i Visegrád‑länderna och i Sydösteuropa.</p>",
                "en": "<p>We will hear about this timely topic from political scientist Katalin Miklóssy. Katalin Miklóssy has researched political history and Eastern Europe. Her areas of expertise include studies on competition and changes in authoritarian systems, especially in the Visegrád countries and in Southeast Europe.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago7efxw4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhu4su",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu5ge/?format=api"
            },
            "event_status": "EventCancelled",
            "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": 1824296,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-30T07:28:00.424700Z",
                    "last_modified_time": "2026-04-30T07:28:00.424717Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ff9580cd-e62c-4d00-9f09-9607601ba31f.jpg",
                    "name": "",
                    "cropping": "106,0,534,427",
                    "photographer_name": "Kuva Niek Verlaan Pixabaystä",
                    "alt_text": "Kuvassa on ihminen käyttämässä tablettia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824296/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-25T10:08:25.527072Z",
            "last_modified_time": "2026-05-04T07:46:03.711184Z",
            "date_published": null,
            "start_time": "2026-05-04T10:00:00Z",
            "end_time": "2026-05-04T12: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": "Alakoululaisten elokuvakerho",
                "sv": "Filmklubb för grundskoleelever",
                "en": "Movie Club for Primary School Students"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": null,
            "short_description": {
                "fi": "Alakoululaisten elokuvakerho",
                "sv": "Filmklubb för grundskoleelever",
                "en": "Movie Club for Primary School Students"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Talven aikana alakoululaiset saivat ehdottaa ja äänestää, mihin tämän kirjaston Toimintatonni-budjetti käytettäisiin. Meidän kirjastomme äänestyksen voitti: Elokuvat.</p><p>Lasten toiveesta aloitamme alakoululaisten elokuvakerhon, joka kokoontuu 4.5-15.6 välisenä aikana maanantaisin klo 13-15.30. Kerhoon voi tulla mukaan mihin aikaan tahansa. Paikalla ei tarvitse olla heti klo 13. Kerhossa katsellaan elokuvia, tehdään omia lyhytelokuvia ja animaatioita. Aikaisempaa kokemusta ei tarvita. Tarkempi kerhon sisältö rakentuu osallistujien toiveiden mukaan. Tervetuloa.</p>",
                "sv": "<p>Under vintern fick grundskoleeleverna lägga fram förslag och rösta om hur bibliotekets Toimintatonni-budget skulle användas. Vinnaren i vår biblioteksomröstning blev: Filmer</p><p>På barnens önskemål startar vi en filmklubb för grundskoleelever, som träffas måndagar kl. 13–15.30 under perioden 4 maj–15 juni. Man kan komma med i klubben när som helst. Man behöver inte vara på plats redan kl. 13. I klubben tittar vi på filmer och gör egna kortfilmer och animationer. Tidigare erfarenhet krävs inte. Klubbens innehåll utformas utifrån deltagarnas önskemål. Välkommen!</p>",
                "en": "<p>This winter primary school students got to suggest and vote on what kind of activities this library’s Toimintatonni-budget would be spent on. In our library the winning activity is: Movies</p><p>At the children’s request, we are starting a film club for elementary school students, which will meet on Mondays from 1:00 p.m. to 3:30 p.m. between May 4 and June 15. You can join the club at any time. You don’t have to be there right at 1:00 PM. In the club, we’ll watch movies and make our own short films and animations. No prior experience is necessary. The specific activities will be based on the participants’ wishes. Welcome!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu4su/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago7efxxzy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "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-04T07:37:06.694818Z",
            "last_modified_time": "2026-05-04T07:37:06.694836Z",
            "date_published": "2026-05-04T07:40:00Z",
            "start_time": "2026-05-09T11:00:00Z",
            "end_time": "2026-05-09T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Capoeira -työpaja lapsille",
                "sv": "Capoeira Workshop för barn",
                "en": "Capoeira Workshop for kids"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry",
                "sv": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry",
                "en": "Kulttuuriyhdistys Naava ry Kulttuuriyhdistys Tamborvivo ry"
            },
            "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:ago7efxxzy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}