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

{
    "meta": {
        "count": 32776,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=228",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=226"
    },
    "data": [
        {
            "id": "espoo_le:agnj2xme4i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xl654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmabe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmay4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmbsy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmcim/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmc44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmdse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xmeg4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490203,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:14:48.942636Z",
                    "last_modified_time": "2025-07-01T08:14:48.942677Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2a077383-14b4-41d7-9689-5a9363156a46.png",
                    "name": "",
                    "cropping": "174,0,551,378",
                    "photographer_name": "",
                    "alt_text": "Kuvituskuva kirjasta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490203/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-19T17:24:00.931227Z",
            "last_modified_time": "2025-11-19T17:24:38.460770Z",
            "date_published": null,
            "start_time": "2026-01-14T15:00:00Z",
            "end_time": "2026-04-22T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman. ",
                "sv": "På Poetry Club kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.",
                "en": "At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman.</p><ul><li>Runojen lukemista ja runojen kuuntelemista.</li><li>Tutustutaan piiriläisten omiin lempirunoihin</li><li>Herätteleviä kysymyksiä ja keskustelua</li><li>Oman runon kirjoittamista</li><li>Kannustava piiri, jossa saa palautetta, jos haluaa lukea oman runonsa. Ei kritisointia.</li><li>Runoraati runokokoelmien runoista</li><li>Runouden äärellä teemoina muun muassa rakkaus, elämä, kuolema, luonto, ja ihmisen sisäinen maailma.</li></ul><p>Keskiviikkoisin 14.01., 28.01., 11.02., 25.02., 11.03., 25.03., 08.04. ja 22.04.</p><p>Kello 17.00-18.30, Kokoustila Ilmari, Sellon kirjasto. 11.3. Kokoustila Elina, Sellon kirjasto.</p><p>Piiriä ohjaa kirjailija Ritva Laine Espoon Kirjailijoista.</p><p>Ei ennakkoilmoittautumista.</p><p>Tapahtuma on suomeksi.</p>",
                "sv": "<p>I Poesiklubben kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.&nbsp;</p><ul><li>Läsa dikter och lyssna på dikter.</li><li>Upptäcka dina favoritdikter</li><li>Stimulerande frågor och diskussioner.</li><li>Skriva din egen dikt.</li><li>En uppmuntrande cirkel där du kan få feedback om du vill läsa upp din egen dikt. Ingen kritik.</li><li>En poesipanel med dikter ur diktsamlingarna.</li><li>Poesi på teman som kärlek, livet, döden, naturen och människans inre värld.</li></ul><p>Onsdagar: 14.01., 28.01., 11.02., 25.02., 11.03., 25.03., 08.04. ja 22.04.</p><p>Kl 17.00-18.30, Mötesutrymmet Ilmari, Sello bibliotek. 11.3 Mötesutrymmet Elina.</p><p>Cirkeln leds av författaren Ritva Laine från Espoo Kirjailijat.</p><p>Ingen förhandsanmälan krävs.</p><p>Evenemanget är på finska.</p>",
                "en": "<p>At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry.</p><ul><li>Reading poetry and listening to poetry.</li><li>Discovering your favourite poems.</li><li>Stimulating questions and discussion.</li><li>Writing your own poem.</li><li>An encouraging circle where you can get feedback if you want to read your own poem. No criticism.</li><li>A poetry panel of poems from the poetry collections.</li><li>Poetry on themes including love, life, death, nature, and the inner world of human mind.</li></ul><p>Wednesdays:14.01., 28.01., 11.02., 25.02., 11.03., 25.03., 08.04. ja 22.04.</p><p>Time 17.00-18.30, Meeting room Ilmari, Sello Library.&nbsp;11.3. Meeting room Elina.</p><p>The circle will be led by writer Ritva Laine from Espoon Kirjailijat.&nbsp;</p><p>No pre-registration required.</p><p>The event is in Finnish.</p>"
            },
            "name": {
                "fi": "Runouden äärellä ",
                "sv": "Poesiklubben - på finska ",
                "en": "Poetry Club - in finnish"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnj2xme4i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjoxeo7m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493838,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-18T13:05:54.359584Z",
                    "last_modified_time": "2025-11-18T13:05:54.359600Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8b5eabed-e4fd-4313-abb4-f13c293b396c.png",
                    "name": "\"Prinsessa Ruusunen\".",
                    "cropping": "0,18,347,366",
                    "photographer_name": "",
                    "alt_text": "\"Prinsessa Ruusunen\".",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493838/?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-11-18T13:44:14.396040Z",
            "last_modified_time": "2025-11-19T14:45:15.289432Z",
            "date_published": "2025-11-18T13:02:00Z",
            "start_time": "2025-12-14T10:00:00Z",
            "end_time": "2025-12-14T11: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,
            "short_description": {
                "fi": "Sellon kirjaston teatteriryhmä esittää 14. joulukuuta klo 12.00 näytelmän \"Prinsessa Ruusunen\"."
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>14.12 на сцене</strong> библиотеки Селло в<strong> 12.00 </strong>будет представлен рождественский спектакль детского музыкально- театрального кружка при библиотеке Sello.</p><p><strong>\"Спящая красавица\" </strong>под руководством Веры Круглик</p><p>Sellon kirjaston lasten musiikki- ja teatteriryhmä esittää jouluesityksen</p><p><strong>\"Prinsessa Ruusunen\" </strong>Vera Kruglikin johdolla</p><p>Sellon kirjaston <strong>lavalla</strong> <strong>14.12</strong> klo<strong>.12.00</strong></p>"
            },
            "name": {
                "fi": "Sellon kirjaston lasten musiikki- ja teatteriryhmä esittää jouluesityksen \"Prinsessa Ruusunen\". Рождественский спектакль \"Спящая красавица\" детского музыкально- театрального кружка"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjoxeo7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjzodi7a",
            "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:p11406/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@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": 1493849,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-19T14:15:40.142892Z",
                    "last_modified_time": "2025-11-19T14:15:40.142907Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/593d8eec-5d78-4787-a5fe-c43403a71f8b.png",
                    "name": "",
                    "cropping": "0,0,1201,1201",
                    "photographer_name": "",
                    "alt_text": "Logo jossa lampun polttimo hymyilee ja teksti Helsingin seudun erilaiset oppijat ry.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493849/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-19T14:21:04.806406Z",
            "last_modified_time": "2025-11-19T14:21:04.806429Z",
            "date_published": null,
            "start_time": "2025-12-02T14:00:00Z",
            "end_time": "2025-12-02T16: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,
            "short_description": {
                "fi": "Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen työläältä tai onko vaikea hahmottaa kokonaisuuksia ja poimia olennaisimmat kohdat?"
            },
            "info_url": {
                "fi": "https://lukihero.fi/"
            },
            "description": {
                "fi": "<p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p>Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen työläältä tai onko vaikea hahmottaa kokonaisuuksia ja poimia olennaisimmat kohdat?</p><p>Tule Helsingin seudun erilaiset oppijat ry:n (HERO) tarjoamaan lukineuvontaan!</p><p>Lukineuvonnassa saat:</p><p>tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p>konkreettisia vinkkejä ja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p>ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin (esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p>keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HERO:n erityisopetuksen ammattilaiset. </p><p>Löydät HEROn neuvontapisteen kirjaston Stagelta. Etsi vihreä pöytä ja HERO-roll-up – tule rohkeasti juttelemaan!</p><p>Nähdään kirjastossa!&nbsp;📚💚</p>"
            },
            "name": {
                "fi": "Lukineuvontaa Ompun kirjastossa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": {
                "fi": "HERO"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjzodi7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjzar564",
            "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:p1808/?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:p4354/?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": 1493848,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-19T13:42:51.745194Z",
                    "last_modified_time": "2025-11-19T13:42:51.745210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/48e335e3-477c-4db5-9b77-0fecbebb4d89.png",
                    "name": "",
                    "cropping": "107,0,435,328",
                    "photographer_name": "",
                    "alt_text": "Askartelukerhon hymyilevät vetäjät pitävät kädessään paperisia lumihiutaleita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493848/?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-11-19T13:33:05.508210Z",
            "last_modified_time": "2025-11-19T13:43:08.387594Z",
            "date_published": null,
            "start_time": "2025-12-17T15:30:00Z",
            "end_time": "2025-12-17T17: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,
            "short_description": {
                "fi": "Tervetuloa!",
                "sv": "Välkommen!",
                "en": "Welcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa rentoutumaan kaikenikäisille avoimeen matalan kynnyksen käsityötaiteen ja musiikin nonstop-työpajaan talvisen musiikin ja kädentaitojen parissa. Alle kouluikäiset lapset työskentelevät yhdessä oman aikuisen kanssa.</p><p>Ohjaajat: Espoo Creative Marja Koskela ja Miina Virtanen</p>",
                "sv": "<p>Välkommen att koppla av på en lågtröskel nonstop‑verkstad i hantverkskonst och musik, öppen för alla åldrar, med vintermusik och hantverk. Barn i förskoleåldern arbetar tillsammans med sin egen vuxen.</p><p>Handledare: Espoo Creative Marja Koskela och Miina Virtanen</p>",
                "en": "<p>Welcome to relax at a low-threshold nonstop workshop in crafts and music, open to all ages, with winter music and creative handiwork. Preschool-aged children participate together with their own adult.</p><p>Instructors: Espoo Creative Marja Koskela and Miina Virtanen</p>"
            },
            "name": {
                "fi": "Talvinen käsityötaiteen ja musiikin työpaja",
                "sv": "Workshop i hantverk och musik",
                "en": "Wintery Crafts And Music Workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Espoo Creative",
                "sv": "Espoo Creative",
                "en": "Espoo Creative"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjzar564/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmvzfjnwu",
            "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: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:p10727/?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:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "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": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-18T10:57:38.523530Z",
            "last_modified_time": "2025-11-19T13:35:57.218248Z",
            "date_published": "2025-09-18T10:50:00Z",
            "start_time": "2025-11-22T09:30:00Z",
            "end_time": "2025-11-22T13: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,
            "short_description": {
                "fi": "Tervetuloa koko perheen tapahtumaan!",
                "sv": "Hela familjen är välkommen att delta i vår familjedag!",
                "en": "The whole family is welcome to enjoy our family day."
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Tervetuloa Tapiolan kirjaston perhepäivään, joka järjestetään yhteistyössä Espoolaisten toimijoiden kanssa Lasten viikonlopun lauantaina! Luvassa on erilaisia työpajoja, Nallesairaala, teatteria, muskari ja hauskaa yhdessä tekemistä. Tule mukaan koko perheen voimin.</strong></p>\n<strong>Ohjelma</strong><p><strong>klo 11:30 | Tapahtumatila Kaija | Osallistavassa muskarituokiossa</strong> pääsemme yhdessä nauttimaan musiikin riemusta. Muskarituokiossa lauletaan, loruillaan, soitetaan ja liikutaan musiikin mukana. Tilaisuuteen osallistuu musiikinopiston 4-vuotiaiden muskariryhmä, tuoden mukanaan iloa ja innostusta! Tuokio tarjoaa aikuisille ja lapsille ainutlaatuisen tilaisuuden pysähtyä ja nauttia lapsen kanssa musiikin ja leikin äärellä. Tulkaa mukaan luomaan yhteisiä hetkiä, jotka soivat sydämessä pitkään! <a href=\"www.emo.fi\">www.emo.fi</a></p><p><strong>Klo 12-15 | Kirjaston nuortentila | Transformers paperikaveri -työpajassa</strong> voit leikata robotin! Museo Leikin ohjatussa työpajassa pääset askartelemaan jännittävän Transformers -hahmon leikkaamalla ja liimaamalla.<a href=\" www.museoleikki.fi\"> www.museoleikki.fi</a></p><p><strong>Klo 12-15 | Kirjaston paja | KAMU Espoon kaupunginmuseon Suosikkini -helmirannekepajassa </strong>askarrellaan rannekoruja värikkäistä muovihelmistä ja kirjainhelmistä. Korun tekstillä voi kertoa, mistä itse tykkää tai ketä ihailee. <a href=\"www.espoo.fi/fi/kamu-espoon-kaupunginmuseo\">www.espoo.fi/fi/kamu-espoon-kaupunginmuseo</a></p><p><strong>Klo 12-15 | Lastenosasto | Nallesairaalassa </strong>lääketieteen opiskelijat hoitavat sairastuneita leluja, joita lapset tuovat vastaanotolle. Tarkoituksena on vähentää lasten lääkäripelkoa ja antaa lääketieteen opiskelijoille kokemusta lasten kanssa toimimisesta. Voit ottaa oman lelun mukaan! <a href=\"fimsic.fi/nallesairaala/\">fimsic.fi/nallesairaala/</a></p><p><strong>Klo 12-15 | Kuvakirjahuone | Kirjaston lukupesässä</strong> voit rentoutua ja lukea yksin tai yhdessä muiden kanssa kirjaston kirjoja.</p><p><strong>Klo 14-14:30 | Tapahtumatila Heikki | Mehiläisen laulu -taideisku</strong> kurottaa tulevaisuuteen menneisyyden kautta! Lämminhenkinen ja visuaalisesti kaunis näytelmä tutustuttaa katsojat Kalevalan maailmaan sekä mehiläisen erityispiirteisiin. Jo esi-isämme tunsivat mehiläisen arvon luonnon tasapainon kannalta. Se on kansalliseepoksemme pienin sankari - mesisiipi, mielilintu ja kukkien kuningas. Ohjaus: Oswald Basten, esiintyjät: Anna Louhelainen ja Oswald Basten, Nukketeatteri-ANNOS. Kohderyhmä: Yli 3-vuotiaille, mutta soveltuu myös tätä nuoremmille. Esityksen kesto: 30 minuuttia. Näytöksen jälkeen on mahdollisuus tutustua nukkeihin sekä esiintyjiin.</p><p>Tapahtuma on ilmainen. Tervetuloa!</p><p>***</p><p>Jo viidettä kertaa järjestettävä <strong>Lasten viikonloppu </strong>ilahduttaa vuoden pimeimpään aikaan, marraskuun lopulla 21.–23.11.2025. Luvassa on viime vuosien tapaan jälleen täyttä lastenkulttuurin juhlaa ympäri Espoota. Lasten viikonlopun ohjelma julkaistaan syksyn alkupuolella. Löydät kaikki Espoon Lasten viikonlopun tapahtumat osoitteesta <a href=\"espoo.fi/lastenviikonloppu\">espoo.fi/lastenviikonloppu</a>.</p><p>Lasten viikonlopussa ovat mukana Espoon kulttuurikeskus, Sellosali, Näyttelykeskus WeeGee, Kannusali, Lasten kulttuurikeskus Aurora, Vindängen, Espoon kaupunginkirjasto sekä Espoonlahden kulttuuri.</p><p>Espoon Lasten viikonloppu toteutetaan osana Lasten oikeuksien viikon ohjelmaa.</p>",
                "sv": "<p>Välkommen på familjedagen till biblioteket i Hagalund!</p><p>Evenemanget ordnas i samarbete med lokala aktörer i Esbo och bjuder på ett mångsidigt program för hela familjen:</p><ul><li>Musikstund – Espoon musiikkiopisto kl. 11.30</li><li>Transformers-paperikaveri verkstad – Museo Leikki kl. 12–15</li><li>Suosikkini-helmirannekepaja – KAMU Esbo stadsmuseum kl. 12–15</li><li>Nallesairaala – FIMSIC kl. 12–15 (Ta med din egen nalle för att träffa läkaren.)</li><li>Lukupesä – Bibliotekets egen läshörna kl. 12–15</li><li>Dockteater ANNOS och Mehiläisen laulu – Konstinslag kl. 14.00</li></ul><p>Evenemanget är avgiftsfritt.</p><p>Kom med hela familjen!</p><p>Alla evenemang under Barnens veckoslut i Esbo finns på: <a href=\"https://www.espoo.fi/sv/barnens-veckoslut\">https://www.espoo.fi/sv/barnens-veckoslut</a></p>",
                "en": "<p>Welcome to Family Day at Tapiola Library!</p><p>The event is organized in collaboration with local Espoo partners and offers a variety of activities for the whole family:</p><ul><li>Music session – Espoon musiikkiopisto at 11:30</li><li>Transformers-paperikaveri – Museo Leikki workshop from 12:00 to 15:00</li><li>Suosikkini-helmirannekepaja – KAMU Espoo City Museum from 12:00 to 15:00</li><li>Nallesairaala – FIMSIC from 12:00 to 15:00 (you can bring your own teddy bear to see a doctor!)</li><li>Lukupesä – Library's own reading corner from 12:00 to 15:00</li><li>Nukketeatteri-ANNOS and Mehiläisen laulu – Art performance at 14:00</li></ul><p>The event is free of charge.</p><p>Bring the whole family and join us!</p><p>Find all events of Espoo’s Children’s Weekend at: <a href=\"https://www.espoo.fi/en/childrens-weekend\">https://www.espoo.fi/en/childrens-weekend</a></p>"
            },
            "name": {
                "fi": "Perhepäivä Tapiolan kirjastossa",
                "sv": "Familjedag i Hagalunds bibliotek",
                "en": "Family day in Tapiola Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmvzfjnwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67238",
            "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:105/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:734/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1491282,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T13:13:08.814039Z",
                    "last_modified_time": "2025-11-04T13:13:08.814056Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780061.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491282/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-04T13:13:08.634612Z",
            "last_modified_time": "2025-11-19T13:12:57.358032Z",
            "date_published": null,
            "start_time": "2025-11-20T12:30:00Z",
            "end_time": "2025-11-20T17: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,
            "short_description": {
                "fi": "Harrastuskokeiluja, työpajoja, musiikki- ja tanssiesityksiä!",
                "sv": "Hobbyförsök, verkstäder, musik- och dansföreställningar!",
                "en": "A range of hobbies, workshops and music and dance performances!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C1659AF8E3373CDF3063B13ADD52AF0/Lastenkulttuuria_jokaiselle_Lasten_ja_nuorten_harrastusmessut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C1659AF8E3373CDF3063B13ADD52AF0/Barnkultur_for_alla_Hobbymassa_for_barn_och_unga",
                "en": "http://www.malmitalo.fi/en/events/event/0C1659AF8E3373CDF3063B13ADD52AF0/Children_s_culture_for_all_Hobby_fair_for_children_and_young_people"
            },
            "description": {
                "fi": "<p>Harrastuskokeiluja, työpajoja, musiikki- ja tanssiesityksiä!</p><p>Valon viikon torstai sytyttää sisäiset lamput palamaan ja lämmittää innostuttavan harrastustoiminnan myötä.</p><p>Malmitalolla juhlitaan Lapsen oikeuksien päivää Lasten ja nuorten harrastusmessujen merkeissä, joilla on luvassa sekä Malmitalolla että lähialueella toimivien lasten ja nuorten harrastuksia tarjoavien toimijoiden esittäytymistä. Harrastusmessut levittäytyvät myös läheiseen Stadin Ammattikoulun Vilppulan tien toimipisteeseen, jossa pääsee tutustumaan liikunnallisiin harrastusmahdollisuuksiin.</p><p><b>Aikataulu (Malmitalo)</b><br>14.30 Ilmainen välipala koululaisille yläparvella<br>14.30–19 Harrastusmessut aulassa <br>14.30–19.30 Pop up nuta 2. kerroksessa, Pohjois-Helsingin kuvataidekoulun ja Taito Etelä-Suomen käsityö- ja muotoilukoulun yhteisnäyttely, parvi ja aula<br>15–16 Helsingin kaupungin liikuntapalveluiden akrobation näytetunti, Pieni sali<br>16–17 Helsingin tanssiopiston K-pop näytetunti, tanssisali (paikkoja rajoitetusti, ilmoittautuminen https://s.zef.fi/ajsywxjt/)<br>16–19 Kurkistuksia kulttuuriharrastuksiin, Malmitalon taideoppilaitosten tunneille<br>17.30–19.30: Alueellinen vanhempainilta teemallisten puheenvuorojen kera<br>18.00 Pohjois-Helsingin musiikkiopiston elokuvamusiikkikonsertti, Malmisali<br>18.45 Helsingin tanssiopiston improvisoitu tanssiesitys, aula</p><p><b>Aikataulu (Stadin AO, Vilppulantie)</b><br>Stadin ammattiopiston Vilppulantien piste tarjoaa seuraavaa toimintaa:<br>15–17 Lajikokeiluja: Judo (Tapanilan Erä), Taekwondo, Strike-boxing, Venom basketball<br>15–18 Aula ja ruokatila käytössä</p><p><b>Alueellinen vanhempainilta</b><br>Alueellinen vanhempainilta teemallisten puheenvuorojen muodossa. Kahvitarjoilu klo 17.</p><p><b>Vanhempainillan teemalliset puheenvuorot (Pieni sali)</b><br>17.30–18.00 Miten vanhempi voi säilyttää yhteyden murrosikäiseen (Perheneuvola)<br>18.00–18.30 Nuoret ja päihteet - miten huoltajana voin ehkäistä nuoren päihteiden käyttöä (Ehyt ry)<br>18.30–19.00 Alueen koulujen puheenvuoro: Miten koulut ja oppilaitokset tukevat lapsia ja nuoria<br>19.00–19.30 Liikkuminen osana hyvinvointia ja opiskelukykyä; miten vanhempana voin tukea liikkumista, ja mitä nuoret ovat toivoneet/nuorten budjetin tuloksia (Minna Paajanen 10min ja nuorten budjetin nostot 10min)</p><p><b>Harrastusmessujen näytteilleasettajina:</b><br>Parkourkeskus, Malmin superkoris (koju ja heittopeli), Vimma, Puhti, Pohjois-Helsingin musiikkiopisto, Pohjois-Helsingin kuvataidekoulu (koju ja pinssipaja), Taito Etelä-Suomi (koju ja pinssipaja), Kulttuurimylly, MLL, Parasta lapsille, Suomen somalialaisten liitto, Linnanmäen sirkuskoulu (paikalla vain klo 16 saakka), Helsingin Icehearts, 4H – nuorten yrittäjyystoiminta, Seurakunta, Tervetuloa perheet! -toiminta, Leikkipuistot, Operaatio Pulssi (Malmin nuorisotyöyksikkö), School of Gaming, Sky Nuoret, Vanhempainyhdistysi, opiskeluhuoltopalvelut, sosiaali-, terveys ja pelastustoimiala.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Hobbyförsök, verkstäder, musik- och dansföreställningar!</p><p>På torsdagen under Ljusets vecka tänds de interna lamporna och de värmer med hjälp av en inspirerande hobbyverksamhet.</p><p>På Malms kulturhus firas dagen för barnets rättigheter i form av en hobbymässa för barn och unga. Under mässan presenterar sig aktörer som erbjuder hobbyverksamhet för barn och unga såväl i Malms kulturhus som i dess närområde. Hobbymässan sprids också till närbelägna yrkesinstitutet Stadin AO:s enhet vid Filpusvägen, där man kan bekanta sig med hobbymöjligheter inom motion.</p><p><b>Tidtabell (Malms kulturhus)</b><br>14.30 Gratis mellanmål för skolbarn på övre balkongen<br>14.30–19.00 Hobbymässa i vestibulen<br>14.30–19.30 Pop-up-ungdomsgården på 2:a våningen, utställning om barns rättigheter, elever från Norra Helsingfors bildkonstskola och Taito Södra Finland, balkongen och vestibulen<br>16.00–17.00 K-pop provtimme, danssalen (begränsat antal platser, anmälan till https://s.zef.fi/ajsywxjt/)<br>16.00–19.00 Öppna dörrar på Dansinstitutet, Norra Helsingfors musikinstitut, Norra Helsingfors bildkonstskola och Taito hantverks- och designskola<br>17.30–19.30: Områdesvist föräldramöte med tematiska anföranden<br>18.00 Norra Helsingfors musikinstituts filmmusikkonsert, Malmsalen<br>18.45 Dansinstitutets dansföreställning, vestibulen</p><p><b>Tidtabell (Stadin AO, Filpusvägen)</b><br>Enheten på Filpusvägen vid yrkesinstitutet Stadin ammattiopisto erbjuder följande verksamhet:<br>15.00–17.00 Prova på grenar: Judo (Tapanila Erä), Taekwondo, Strike-boxning, Venom basket<br>15.00–18.00 Vestibulen och matsalen i bruk</p><p><b>Områdesvist föräldramöte</b><br>Ett områdesvist föräldramöte i form av tematiska anföranden. Kaffeservering kl. 17.00.</p><p><b>Föräldramötets tematiska anföranden (Lilla salen)</b><br>17.30–18.00 Hur kan föräldern bevara kontakten med en tonåring? (Familjerådgivningen)<br>18.00–18.30 Unga och rusmedel – Hur kan vårdnadshavaren förebygga ungas rusmedelsanvändning? (Ehyt ry)<br>18.30–19.00 Regionala skolors anförande: Hur skolor och läroanstalter stöder barn och unga<br>19.00–19.30 Motion som en del av välbefinnande och studieförmåga, hur kan jag som förälder stödja motion och vad har unga önskat/Ungdomsbudgetens resultat (Minna Paajanen 10 min och plock ur Ungdomsbudgeten 10 min)</p><p><b>Som utställare på hobbymässan:</b><br>Parkourkeskus, Malmin Superkoris (stånd och kastspel), Vimma, Puhti, Norra Helsingfors musikinstitut, Norra Helsingfors bildkonstskola (stånd och pinsverkstad), Taito Södra Finland (stånd och pinsverkstad), Kulturkvarnen, MLL, Parasta lapsille, Suomen somalialaisten liitto, Borgbackens cirkusskola (på plats endast fram till kl. 16.00), Helsinki Icehearts, 4H – företagare, Församlingen, verksamheten Välkomna familjer!, Lekparker, Pådraget Pulssi (Malms ungdomsarbetsenhet), School of Gaming, Sky Nuoret, Föräldraföreningen, Student- och elevvårdstjänster, Social-, hälsovårds- och räddningsväsendet.</p><p>Fritt inträde!</p>",
                "en": "<p>A range of hobbies, workshops and music and dance performances!</p><p>The Thursday of the Week of Light will switch on the inner lamps of visitors and warm them up with inspiring activities.</p><p>Cultural Centre Malmitalo will celebrate World Children's Day with a hobby fair for children and young people, which will feature presentations by service provides offering hobbies for children and young people at Malmitalo or in the neighbourhood. The hobby fair will also spread to the nearby Vilppulantie branch of the Helsinki Vocational School, where you can explore sportier hobby opportunities.</p><p><b>Schedule (Malmitalo)</b><br>14.30 Free snacks for schoolchildren in the upper gallery<br>14.30–19.00 Hobby fair in the lobby<br>14.30–19.30 Pop-up youth centre on the 2nd floor, exhibition on children's rights (by students from the Art School of Northern Helsinki and Taito Etelä-Suomi), gallery and lobby<br>15–16 The City of Helsinki Sports Services: Acrobatics Trial Lesson, small auditorium<br>16.00–17.00 K-pop sample lesson at the dance classroom (limited number of places available, registration: https://s.zef.fi/ajsywxjt/)<br>16.00–19.00 A glimpse into cultural hobbies at Malmitalo's art schools<br>17.30–19.30: Regional parents' evening with themed addresses<br>18.00 Film music concert by the Music Institute of Northern Helsinki, Malmisali<br>18.45 Dance performance by Helsinki Dance Institute, lobby</p><p><b>Schedule (Helsinki Vocational College)</b><br>The Vilppulantien branch of the Helsinki Vocational College hosts the following activities:<br>15.00–17.00 Try out different sports: Judo (Tapanilan Erä), Taekwondo, Strike boxing, Venom basketball<br>15.00–18.00 Lobby and canteen open</p><p><b>Regional parents' evening</b><br>A regional parents' evening with themed addresses. Coffee service at 17.00.</p><p><b>Themed addresses of the parents' evening (small auditorium)</b><br>17.30–18.00 How parents can maintain contact with a teen (Family Counselling)<br>18.00–18.30 Young people and substance use – how can guardians prevent substance use by adolescents (Ehyt ry)<br>18.30–19.00 Address by local schools: How schools and educational institutes support children and young people<br>19.00–19.30 Physical activity as part of wellbeing and learning ability; how parents can support young people to be active, and what young people have requested/youth budget results (Minna Paajanen 10 min and highlights of youth budget 10 min)</p><p><b>Exhibitors at the hobby fair:</b><br>Parkourkeskus, Malmi Super-Koris (stand and a throwing game), Vimma, Puhti, Music Institute of Northern Helsinki, Art School of Northern Helsinki (stand and a pin workshop), Taito Etelä-Suomi (stand and a pin workshop, Kulttuurimylly, Mannerheimin lastensuojeluliitto, Parasta lapsille, Suomen somalialaisten liitto (Finnish Somali Association), Linnanmäki Circus School (available until 16.00), Helsinki Icehearts, 4H – youth entrepreneurship activities, local parish, Welcome families! operations, playgrounds, Operaatio Pulssi (Operation Pulssi) (Malmi Youth Work Unit), School of Gaming, Sky Nuoret, parents' association, student welfare services, and the Social Services, Health Care and Rescue Services Division.</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Lastenkulttuuria jokaiselle: Lasten ja nuorten harrastusmessut – Valon viikko",
                "sv": "Barnkultur för alla: Hobbymässa för barn och unga – Ljusets vecka",
                "en": "Children’s culture for all: Hobby fair for children and young people – Week of Light"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67238/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnhzqcsxu",
            "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:p11617/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-13T09:54:13.103456Z",
            "last_modified_time": "2025-11-19T12:29:20.640495Z",
            "date_published": null,
            "start_time": "2025-11-29T12:00:00Z",
            "end_time": "2025-11-29T15: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,
            "short_description": {
                "fi": "Tervetuloa tutustumaan meksikolaiseen perinteeseen, joka juhlistaa elämää, muistoja ja rakkautta käsitöiden ja tarinoiden kautta!",
                "en": "Join us for a colourful and heartwarming Day of the Dead celebration!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Día de los Muertos /Kuolleiden päivän juhla lauantaina 29.11., klo 14:00–17:00 Salongissa.</p><p>Tule mukaan värikkääseen ja lämminhenkiseen&nbsp;Día de los Muertos/ Kuolleiden päivän juhlaan!</p><p>Tutustu meksikolaiseen perinteeseen, joka juhlistaa elämää, muistoja ja rakkautta käsitöiden ja tarinoiden kautta.</p><p>&nbsp;</p><p>Ohjelma:</p><p>14:00–14:10 Tervetulosanat ja esittely</p><p>14:10–15:30 Työpaja: Tee oma Kuolleiden Päivän alttari ja paperisia kehäkukkia</p><p>15:40–17:00 Elokuvanäytös: Coco (2017)</p><p>&nbsp;</p><p>Tapahtuma on maksuton ja kaikille avoin. Tervetuloa!</p><p>&nbsp;</p><p>Yhteistyössä:</p><p>KulttuuriEspoo | Espoon kaupunki | Meksikon suurlähetystö Suomessa | HELMET-kirjastot</p>",
                "en": "<p>Day of the Dead Celebration</p><p>&nbsp;</p><p>29 November 2025</p><p>Lippulaiva Library, Salonki</p><p>14:00–17:00</p><p>&nbsp;</p><p>Join us for a colourful and heartwarming Day of the Dead celebration!</p><p>Discover the beauty of Mexican traditions through crafts, colours, and stories that honour life and memory.</p><p>&nbsp;</p><p>Program:</p><p> 14:00–14:10 Welcome and introduction</p><p> 14:10–15:30 Workshop: Create your own Day of the Dead altar and paper marigold flowers</p><p> 15:40–17:00 Movie screening: Coco (2017)</p><p>&nbsp;</p><p>&nbsp;Free entry | Family event | Suitable for all ages</p><p>&nbsp;</p><p>In collaboration with:</p><p>KulttuuriEspoo | City of Espoo | Embassy of Mexico in Finland | HELMET Libraries</p><p>&nbsp;</p><p>Come and experience an afternoon full of colour, creativity, and cultural joy!</p><p>Bring your family and friends — everyone is welcome! </p>"
            },
            "name": {
                "fi": "Día de los Muertos /Kuolleiden päivän juhla",
                "en": "Day of the Dead Celebration"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhzqcsxu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67157",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?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": 1491108,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-16T09:13:19.652485Z",
                    "last_modified_time": "2025-10-16T09:13:19.652497Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778256.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491108/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-16T09:13:19.517623Z",
            "last_modified_time": "2025-11-19T12:13:04.576829Z",
            "date_published": null,
            "start_time": "2025-11-20",
            "end_time": "2025-12-31",
            "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,
            "short_description": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/40A6194315180AA507C5D05AF6B3D7F6/From_Arrival_to_Belonging_A_Decade_in_Portraits",
                "sv": "http://www.stoa.fi/sv/evenemang/event/40A6194315180AA507C5D05AF6B3D7F6/From_Arrival_to_Belonging_A_Decade_in_Portraits",
                "en": "http://www.stoa.fi/en/events/event/40A6194315180AA507C5D05AF6B3D7F6/From_Arrival_to_Belonging_A_Decade_in_Portraits"
            },
            "description": {
                "fi": "<p>Näyttely tuo esiin Suomeen pakolaisina tai turvapaikanhakijoina – Lähi-idästä vuonna 2015 tai Ukrainasta vuonna 2022 – saapuneiden ihmisten tarinoita, ääniä ja matkoja. Muotokuvien ja henkilökohtaisten tarinoiden kautta näyttely nostaa esille heidän taitojaan ja sitkeyttä sekä pohtii, miten yhteiskuntamme on muuttunut viimeisen vuosikymmenen aikana.</p><p>Valokuvat avaavat ikkunoita yksilöllisiin elämänpolkuihin – tarinoihin uran rakentamisesta, yhteisön löytämisestä ja kuulumisen tunteen luomisesta uuteen kotiin. Jokainen muotokuva kutsuu katsojan näkemään stereotypioiden taakse ja tunnistamaan kokemusten, motivaation ja lahjakkuuden moninaisuuden.<br>Tuomalla nämä näkökulmat keskiöön näyttely pyrkii vahvistamaan kulttuurien välistä vuoropuhelua ja lisäämään ymmärrystä eri yhteisöjen välillä Suomessa.</p><p>Muotokuvat: Nora Sayyad<br>Muut valokuvat: Startup Refugees -arkisto (Jussi Hellsten, Julius Töyrylä, Iiro Immonen, Miikka Pirinen ja Nora Sayyad)</p>",
                "en": "<p>This exhibition brings forward the voices and journeys of people who arrived in Finland as refugees or asylum seekers, in 2015 from the Middle East or in 2022 from Ukraine. Through portraits and personal stories, it highlights their skills, resilience, and contributions, while reflecting on how our society has changed over the past decade.</p><p>The photographs open up windows into individual life paths—stories of building careers, finding community, and creating a sense of belonging in a new home. Each portrait invites the viewer to look beyond stereotypes and see the richness of experience, motivation, and talent.</p><p>By placing these perspectives at the center, the exhibition seeks to strengthen intercultural dialogue and increase understanding between different communities in Finland. <br> <br>Portraits: Nora Sayyad<br>Other photos: Startup Refugees archives (Jussi Hellsten, Julius Töyrylä, Iiro Immonen, Miikka Pirinen and Nora Sayyad)</p>"
            },
            "name": {
                "fi": "From Arrival to Belonging? A Decade in Portraits – Startup Refugees – 10-v-juhlavuosinäyttely",
                "sv": "From Arrival to Belonging? A Decade in Portraits – Startup Refugees – 10-v-juhlavuosinäyttely",
                "en": "From Arrival to Belonging? A Decade in Portraits – - Startup Refugees 10 years anniversary photo exhibition"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67157/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjyfhpia",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1493847,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-19T11:24:33.090125Z",
                    "last_modified_time": "2025-11-19T11:24:33.090141Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/32f2cba4-d9f1-4a9d-b5e1-48cbb8257a6f.jpg",
                    "name": "",
                    "cropping": "0,0,1300,1300",
                    "photographer_name": "",
                    "alt_text": "Kuvassa 2 pingismailaa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493847/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-11-19T11:27:10.482220Z",
            "last_modified_time": "2025-11-19T11:27:10.482238Z",
            "date_published": null,
            "start_time": "2025-12-19T13:00:00Z",
            "end_time": "2025-12-19T16: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,
            "short_description": {
                "fi": "Nuorten pingisturnaus ja hallitseva mestari katsotaan ennen lomaa"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Nuorten pingisturnauksen jälkeen on hyvä aloittaa loma. Tervetuloa osallistumaan tai katsomaan ja kannustamaan!</p>"
            },
            "name": {
                "fi": "Nuorten pingisturnaus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjyfhpia/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjyfhp5y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493846,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-19T11:10:14.828193Z",
                    "last_modified_time": "2025-11-19T11:10:14.828207Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cfc65497-4749-4806-92b5-69b189e62a28.jfif",
                    "name": "Jouluista leivontaa!",
                    "cropping": "0,0,225,225",
                    "photographer_name": "",
                    "alt_text": "Kuvassa koristeltuja piparkakkuja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493846/?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-11-19T11:17:26.189022Z",
            "last_modified_time": "2025-11-19T11:17:26.189046Z",
            "date_published": null,
            "start_time": "2025-12-18T13:30:00Z",
            "end_time": "2025-12-18T16: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,
            "short_description": {
                "fi": "Perinteistä joululeivontaa"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Vietetään Lippiksen lasten ja nuorten kanssa vähän pikkujouluja leipomisen merkeissä. Osallistujamäärä on rajallinen.</p>"
            },
            "name": {
                "fi": "Jouluinen leivontapaja"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjyfhp5y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjxxn3uu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493846,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-19T11:10:14.828193Z",
                    "last_modified_time": "2025-11-19T11:10:14.828207Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cfc65497-4749-4806-92b5-69b189e62a28.jfif",
                    "name": "Jouluista leivontaa!",
                    "cropping": "0,0,225,225",
                    "photographer_name": "",
                    "alt_text": "Kuvassa koristeltuja piparkakkuja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493846/?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-11-19T11:14:33.617662Z",
            "last_modified_time": "2025-11-19T11:14:33.617679Z",
            "date_published": null,
            "start_time": "2025-12-11T13:30:00Z",
            "end_time": "2025-12-18T16: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,
            "short_description": {
                "fi": "Perinteistä joululeivontaa"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Vietetään Lippiksen lasten ja nuorten kanssa vähän pikkujouluja leipomisen merkeissä. Osallistujamäärä on rajallinen.</p>"
            },
            "name": {
                "fi": "Jouluinen leivontapaja"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjxxn3uu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66869",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/tommi-laentinen-savoy-teatteri-20409360/",
                        "sv": "https://www.lippu.fi/event/tommi-laentinen-savoy-teatteri-20409360/",
                        "en": "https://www.lippu.fi/event/tommi-laentinen-savoy-teatteri-20409360/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,80-35 € / S&D 98 €",
                        "sv": "28,80-35 € / S&D 98 €",
                        "en": "28,80-35 € / S&D 98 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490456,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T08:14:48.260269Z",
                    "last_modified_time": "2025-08-19T08:14:48.260287Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776257.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490456/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-19T08:14:48.149193Z",
            "last_modified_time": "2025-11-19T10:12:54.431546Z",
            "date_published": null,
            "start_time": "2025-11-29T17: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,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen",
                "en": "http://www.savoyteatteri.fi/en/events/event/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen"
            },
            "description": {
                "fi": "<p><b>Tommi Läntinen</b> on suomalaisen poprockin ikoni, jonka ura on kestänyt yli 40 vuotta.<br>Boycott -rock-yhtyeen räjähdysmäisen suosion jälkeen hän vaihtoi laulukielen suomeen ja siirtyi soolouralle, joka kiiti jättihittien kuten Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu ja Elämä kantaa mua sekä hurmoksellisten livekeikkojen myötä maan ykköskaartiin.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-tommi-lantinen</p><p>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: yritysmyynti@sunborn.fi.</p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br>Reilunkaupan luomukahvi/ tee</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.</p><p>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.</p><p>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>",
                "sv": "<p>Tommi Läntinen är en finsk poprockikon med en över 40 år lång karriär bakom sig.<br>Efter rockbandet Boycotts explosionsartade popularitet bytte han sångspråk till finska och inledde en solokarriär, som resulterade i megahittar som Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu och Elämä kantaa mua samt extatiska liveframträdanden som gjorde honom till en av de främsta i landet.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till yritysmyynti@sunborn.fi för bokning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G<br>Rättvisemärkt ekologiskt kaffe/te</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.</p><p>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.</p><p>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>",
                "en": "<p>Tommi Läntinen is a Finnish pop rock icon whose career has spanned over 40 years.<br>After the rock band Boycott’s rapid rise to fame, he switched his singing language to Finnish and embarked on a solo career, which took him to the top of the national charts through his ecstatic live performances and his massive hits such as Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu and Elämä kantaa mua.</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: yritysmyynti@sunborn.fi.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G<br>Fair trade organic coffee/tea</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.</p><p>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.</p><p>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>"
            },
            "name": {
                "fi": "Tommi Läntinen",
                "sv": "Tommi Läntinen",
                "en": "Tommi Läntinen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Sunborn Events Oy",
                "sv": "Sunborn Events Oy",
                "en": "Sunborn Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66869/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66053",
            "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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/roofaerialclub/roof-aerial-club-joulunaeytoes-3886082/#calendar-start=2025-12",
                        "sv": "https://www.lippu.fi/artist/roofaerialclub/roof-aerial-club-joulunaeytoes-3886082/#calendar-start=2025-12",
                        "en": "https://www.lippu.fi/artist/roofaerialclub/roof-aerial-club-joulunaeytoes-3886082/#calendar-start=2025-12"
                    },
                    "description": null,
                    "price": {
                        "fi": "17,80€ / 11,10€",
                        "sv": "17,80€ / 11,10€",
                        "en": "17,80€ / 11,10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493839,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-19T09:13:01.579816Z",
                    "last_modified_time": "2025-11-19T09:13:01.579834Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770645.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493839/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-19T09:13:01.468401Z",
            "last_modified_time": "2025-11-19T09:13:01.735458Z",
            "date_published": null,
            "start_time": "2025-12-17T15: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,
            "short_description": {
                "fi": "Roof Aerial Clubin joulunäytöksessä nähdään eri-ikäisten harrastajien esityksiä.",
                "sv": "The Roof Aerial Clubs julshow innehåller uppträdanden av entusiaster i alla åldrar.",
                "en": "The Roof Aerial Club's Christmas show will feature performances by enthusiasts of all ages."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/17ECD3F29CB9C3A6658242085311ACBB/Roof_Aerial_Clubin_joulunaytos",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/17ECD3F29CB9C3A6658242085311ACBB/The_Roof_Aerial_Clubs_julshow_",
                "en": "http://www.malmitalo.fi/en/events/event/17ECD3F29CB9C3A6658242085311ACBB/Roof_Aerial_Club_s_Christmas_Show"
            },
            "description": {
                "fi": "<p>Roof Aerial Clubin joulunäytöksessä nähdään eri-ikäisten harrastajien esityksiä.</p><p>Lajeina mm. rengastrapetsi, vertikaalikangas, hammock-lenkkikangas sekä lattia-akrobatia ja pyramidit.</p><p>Lisätietoa Roof Aerial Clubista: <u><a>www.roofaerialclub.fi</a></u></p><p>Kesto: 2 tuntia, sis. 15 min väliajan</p>",
                "sv": "<p>The Roof Aerial Clubs julshow innehåller uppträdanden av entusiaster i alla åldrar.</p><p>Bland grenarna finns ringtrapets, vertikal duk, hammock-länkduk samt golvakrobatik och pyramider.</p><p>Mer information om Roof Aerial Club (på finska): <u><a>www.roofaerialclub.fi</a></u></p><p>Längd: 2 timmar inklusive paus 15 minuter</p>",
                "en": "<p>The Roof Aerial Club's Christmas show will feature performances by enthusiasts of all ages.</p><p>The disciplines include aerial hoop, aerial silks, hammock silks, floor acrobatics and pyramids.</p><p>More information about the Roof Aerial Club: <u><a>www.roofaerialclub.fi</a></u></p><p>Duration: 2 hours, incl. a 15-min intermission</p>"
            },
            "name": {
                "fi": "Roof Aerial Clubin joulunäytös",
                "sv": "The Roof Aerial Clubs julshow",
                "en": "Roof Aerial Club's Christmas Show"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66053/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66680",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374308/",
                        "sv": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374308/",
                        "en": "https://www.lippu.fi/event/aeaenien-ja-sanojen-virta-illat-kulttuurikeskus-caisa-kulttuurikeskus-caisa-20374308/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 € / 0 €",
                        "sv": "15 € / 7 € / 0 €",
                        "en": "15 € / 7 € / 0 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1156155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T13:14:02.621708Z",
                    "last_modified_time": "2025-07-01T13:14:02.621725Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774628.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1156155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T13:14:02.499055Z",
            "last_modified_time": "2025-11-19T09:12:56.991321Z",
            "date_published": null,
            "start_time": "2025-11-27T17: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,
            "short_description": {
                "fi": "Juha Hurme, Aleksi Parviainen ja Marie Körkkö tuovat Aino Kallaksen elämän ja runot esiin ainutlaatuisessa luentokonsertissa.",
                "sv": "Juha Hurme, Aleksi Parviainen och Marie Körkkö väcker Aino Kallas liv och dikter till liv i en unik föreläsningskonsert.",
                "en": "Juha Hurme, Aleksi Parviainen and Marie Körkkö will bring the life and poems of Aino Kallas to life in a unique lecture concert."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/15D54579DDC162A029BD5BE8F5659702/Soiva_Kallas_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/15D54579DDC162A029BD5BE8F5659702/Soiva_Kallas_",
                "en": "http://www.caisa.fi/en/events/event/15D54579DDC162A029BD5BE8F5659702/Soiva_Kallas_Kallas_in_Music_"
            },
            "description": {
                "fi": "<p>Juha Hurme, Aleksi Parviainen ja Marie Körkkö tuovat Aino Kallaksen elämän ja runot esiin ainutlaatuisessa luentokonsertissa.</p><p>Työryhmä Hurme-Parviainen-Körkkö yhdistävät jälleen voimansa tässä uniikissa luentokonsertissa, jossa Aino Kallaksen vaiherikas elämä ja väkevyyttä hohkavat runot heräävät jälleen henkiin sanoin ja sävelin.</p><p>Ensi vuonna tulee 70 vuotta Aino Kallaksen kuolemasta. Kallaksen arkaainen kieli tuo paradoksaalisesti ihmisyyden ikiaikaiset teemat tähän päivään. Lisäksi vahva naiseuden kokemus tekee runoista hyvin yleismaailmalliset.</p><p>Caisan Soiva Kallas-esitys on samalla Aleksi Parviaisen Sade on ohi - laulusarjan maailman kantaesitys.</p><p>Työryhmä:<br>Juha Hurme, luennoitsija<br>Aleksi Parviainen, sävellys ja laulu <br>Marie Körkkö, piano<br> <br>Kesto: noin 60 min, ei väliaikaa</p><p><b>Äänien ja sanojen virta</b><br>Tule kokemaan taiteen ja musiikin syvimmät sävyt! Caisan uusi ja ainutlaatuinen konsepti yhdistää musiikin, runouden ja tarinankerronnan inspiroivaksi kokonaisuudeksi, jossa ääni ja sana sulautuvat yhteen, luoden tilan herkistymiselle, oivalluksille ja tunnetiloille. Iltojen teemoina ovat elämän eri ulottuvuudet, ilo, suru, rakkaus ja kaipuu sekä niiden virran yhteys kuulijaan. Jokainen ilta tarjoaa myös mahdollisuuden keskusteluun, jossa yleisö ja esiintyjät voivat jakaa ajatuksiaan, kokemuksiaan ja tuntemuksiaan illan teemoihin liittyen. Keskustelut avaavat uusia näkökulmia ja syventävät yhteyttä tarinoihin ja niiden herättämiin tunteisiin.</p><p>Tule ja anna musiikin ja sanojen resonoida sisimmässäsi – yhdessä luomme illan, joka jää mieleen ja koskettaa sydäntä!</p><p>Illat juontaa ja avaa esiintyen audiovisuaalinen taiteilija ja laulaja Oona Räyhäntausta.</p><p>Äänien ja sanojen virta odottaa sinua, varaa paikkasi ja ole osa tätä syvää taidekokemusta!</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381793/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Juha Hurme, Aleksi Parviainen och Marie Körkkö väcker Aino Kallas liv och dikter till liv i en unik föreläsningskonsert.</p><p>Arbetsgruppen Hurme-Parviainen-Körkkö förenar sina krafter igen i denna unika föreläsningskonsert, där Aino Kallas händelserika liv och dikter som utstrålar styrka väcks till liv igen i ord och toner.</p><p>Nästa år är det 70 år sedan Aino Kallas avled. Kallas arkaiska språk för paradoxalt nog mänsklighetens uråldriga teman till nutiden. Den starka upplevelsen av kvinnlighet gör också dikterna mycket universella.</p><p>Föreställningen Soiva Kallas på Caisa är också sångseriens urpremiär.</p><p>Caisas Soiva Kallas-föreställning är samtidigt urvärldspremiären av Aleksi Parviainens sångcykel \"Sade on ohi\".</p><p>Arbetsgrupp:<br>Juha Hurme, föreläsare<br>Aleksi Parviainen, komposition och sång <br>Marie Körkkö, piano</p><p><b>Äänien ja sanojen virta</b><br>Kom och upplev de djupaste nyanserna av konst och musik! Caisas nya och unika koncept kombinerar musik, poesi och berättande till en inspirerande helhet där ljud och ord smälter samman och skapar utrymme för sensibilisering, insikter och känslotillstånd.</p><p>Teman för kvällarna är livets olika dimensioner såsom glädje, sorg, kärlek och längtan samt sambandet mellan deras flöde och lyssnaren. Varje kväll erbjuder också en möjlighet till diskussion där publiken och artisterna kan dela sina tankar, erfarenheter och känslor kring kvällens teman. Diskussionerna öppnar nya perspektiv och fördjupar kontakten med berättelserna och de känslor de väcker.</p><p>Kom och låt musiken och orden resonera inom dig – tillsammans skapar vi en minnesvärd kväll som berör hjärtat!<br>Den audiovisuella konstnären och sångaren Oona Räyhäntausta är värdinna och programledare under kvällarna.<br>En ström av ljud och ord väntar på dig, boka din plats och bli en del av denna djupa konstupplevelse!</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381793/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Juha Hurme, Aleksi Parviainen and Marie Körkkö will bring the life and poems of Aino Kallas to life in a unique lecture concert.</p><p>The Hurme-Parviainen-Körkkö team will join forces again in this unique lecture concert, where Aino Kallas’ eventful life and poems full of power will come to life again in words and music.</p><p>Next year marks the 70th anniversary of Aino Kallas’ death. Kallas’ archaic language paradoxically brings the age-old themes of humanity to the present day. Furthermore, her strong experience of femininity makes the poems very universal.</p><p>Caisa’s Soiva Kallas performance is also the world premiere of Aleksi Parviainen’s song cycle Sade on ohi.</p><p>Creative team:<br>Juha Hurme, lecturer<br>Aleksi Parviainen, composition and vocals <br>Marie Körkkö, piano</p><p><b>Stream of Sounds and Words</b><br>Come and experience the deepest shades of art and music! Caisa’s new and unique concept combines music, poetry and storytelling into an inspiring whole in which sound and words merge and create a space for sensitisation, insights and emotional states.</p><p>The themes of the evenings focus on different dimensions of life, such as joy, sorrow, love and longing, and the connection between their flow and the listener. Each evening will also provide an opportunity for discussions in which the audience and the performers can share their thoughts, experiences and feelings regarding the evening’s themes. The discussions will open up new perspectives and deepen the audience’s connection with the stories and the emotions that they evoke.</p><p>Come and let the music and words resonate within you – together we will create a memorable evening that will touch your heart!<br>The evenings will be hosted by audiovisual artist and singer Oona Räyhäntausta.</p><p>A stream of sounds and words awaits you – reserve your place and be part of this profound art experience!</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381793/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "name": {
                "fi": "Soiva Kallas – Äänien ja sanojen virta",
                "sv": "Soiva Kallas – Äänien ja sanojen virta",
                "en": "Soiva Kallas (‘Kallas in Music’) – Stream of Sounds and Words"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66680/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agnjwkrsua",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/170/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/170/signup-group/create",
                        "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/170/signup-group/create",
                        "en": "https://linkedregistrations.test.hel.ninja/en/registration/170/signup-group/create"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2025-11-19T08:10:25.363828Z",
            "last_modified_time": "2025-11-19T08:10:25.363843Z",
            "date_published": null,
            "start_time": "2025-11-28T07:00:00Z",
            "end_time": "2025-11-28T10: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": 20,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2025-11-19T10:00:00+02:00",
            "enrolment_end_time": "2025-11-28T08:59:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Miltä talvisen metsän värit tuntuvat ja tuoksuvat? Mitä kaikkea kätkeytyy lumiskinosten alle? Uinuuko mänty talvipakkasilla?"
            },
            "info_url": {
                "fi": "https://www.annantalo.fi/"
            },
            "description": {
                "fi": "<p>Miltä talvisen metsän värit tuntuvat ja tuoksuvat? Mitä kaikkea kätkeytyy lumiskinosten alle? Uinuuko mänty talvipakkasilla?</p>"
            },
            "name": {
                "fi": "Vauvojen värikylpy - testi"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Annantalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agnjwkrsua/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtglff4m",
            "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:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgle7t4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfaby/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfaqi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfa6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfbmi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfb2i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfcja/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfcxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfdfu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfdum/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfec4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglferi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglffaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglffoe/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490716,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-08T12:09:26.771770Z",
                    "last_modified_time": "2025-09-08T12:09:26.771783Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/963619ed-ce1b-47c9-b1fb-81dee8d52f69.jpg",
                    "name": "Tasty Snack",
                    "cropping": "0,177,926,1103",
                    "photographer_name": "Pexels",
                    "alt_text": "Tasty Snack",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490716/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-10T10:05:16.677147Z",
            "last_modified_time": "2025-11-19T07:05:41.335138Z",
            "date_published": null,
            "start_time": "2025-09-12T12:30:00Z",
            "end_time": "2025-12-12T15: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,
            "short_description": {
                "fi": "Tervetuloa mukaan Lippulaivan kirjastossa joka perjantai kello 15.30 - 17.00 järjestettävään Tasty Snack -kokkikerhoon.",
                "sv": "Välkommen till matlagningsklubben Tasty Snack varje fredag kl. 15.30-17.00 på Lippulaiva bibliotek.",
                "en": "Welcome to the Tasty Snack cooking club every Friday from 15.30 to 17.00 at the Lippulaivan Library."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan Lippulaivan kirjastossa joka tiistai ja perjantai järjestettävään kokkikerhoon</p><p>Kokkikerhossa valmistamme yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia To Go -snackseja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Sambuuseja? Tule mukaan oppimaan ja herkuttelemaan! Ruoka-aineallergiat ja erityisruokavaliot huomioidaan ryhmän toiminnassa.</p><p>Tilaisuus on suomeksi, mutta voit osallistua ryhmään myös auttavalla suomen taidolla.</p><p>Ryhmään ei tarvitse ilmoittautua, ja ryhmään mahtuu 12 osallistujaa. Voit kysyä lisätietoa osoitteesta info@asadfriigym.fi.</p><p>Tapahtuman järjestää Harrastuspolku Espoo.</p><p>Huom! Kerhoa ei pidetä pyhinä, eikä loma-aikoina.</p>",
                "sv": "<p>Välkommen till Tasty Snack -matlagningsklubben som äger rum varje tisdag och fredag på Lippulaivans bibliotek.</p><p>I mellanmålsgruppen tillverkar vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga snacks, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Har du provat att baka bröd själv? Eller laga bubbelte? Samosas? Kom med och lär dig och ät gott! Födoämnesallergier och specialdieter beaktas i gruppens verksamhet.</p><p>Detta evenemang är på finska.</p><p>Du behöver inte anmäla dig till den här gruppen och det ryms med 12 deltagare. Om du behöver mer information, skicka e-post till info@asadfriigym.fi.</p>",
                "en": "<p>Welcome to the Tasty Snack -cooking club, we work together to prepare simple, fun and tasty snacks, treats and dishes. The menu includes fast and affordable To Go snacks, surprising flavour trends from around the world, guaranteed snack staples and recipes the participants want to prepare. Have you tried making your own bread? What about boba tea? Sambuus pastries? Come and learn and enjoy the treats you have created! Food allergies and special diets are taken into account in the group's activities.</p><p>This hobby is organised in Finnish but you can take part in the group if you are a beginner in learning Finnish.</p><p>You don't need registrate for this group, and there is 12 places in the group. You can ask more information from e-mail info@asadfriigym.fi.</p>"
            },
            "name": {
                "fi": "Tasty Snack- kokkikerho lapsille ja nuorille",
                "sv": "Tasty Snack- matlagningsklubb för barn och ungdomar",
                "en": "Tasty Snack- cooking club for children and young people"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lippulaivan kirjasto",
                "sv": "Lippulaivabiblioteket",
                "en": "Lippulaiva library"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglff4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000213",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?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-3849161/?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/kuningatarnaytelma-helsingin-kaupunginteatteri-20000213/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000213/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000213/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_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/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:40.488236Z",
            "last_modified_time": "2025-11-19T00:14:38.238603Z",
            "date_published": null,
            "start_time": "2025-11-18T16: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,
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto<br>Erikoistehosteet: Markku Ahonen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "name": {
                "fi": "Kuningatarnäytelmä"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000213/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19932491",
            "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-19932491/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932491/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932491/?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-03-05T12:17:21.944718Z",
            "last_modified_time": "2025-11-19T00:14:38.099467Z",
            "date_published": null,
            "start_time": "2025-11-18T16: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,
            "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>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>",
                "en": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p>"
            },
            "name": {
                "fi": "Kiviä Taskussa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19932491/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19528389",
            "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-3613405/?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/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19528389/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19528389/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19528389/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.062378Z",
                    "last_modified_time": "2025-02-17T11:16:41.062398Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/veljeni-leijonamieli-222.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/235429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:24.981637Z",
            "last_modified_time": "2025-11-19T00:14:37.977160Z",
            "date_published": null,
            "start_time": "2025-11-18T16: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,
            "short_description": {
                "fi": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä. Tämä tarina on niin kuin satu, ja vähän myös kummitusjuttu, mutta kaikki on kuitenkin totta.” Astrid Lindgrenin Veljeni Leijonamieli on rakastettu klassikkosatu, maaginen fantasia veljeksistä, jotka kantavat toisiaan vaikeuksien yli. Se on tarina rohkeudesta, veljeydestä ja rakkaudesta. Se on huikea seikkailu, jossa jokainen löytää rohkeutensa.</p><p>Veljeni Leijonamieli kertoo kahdesta veljeksestä, Korpusta (Alexander Wendelin) ja Joonatanista (Mikko Kauppila). Isoveli Joonatan kuolee pelastaessaan sairasta veljeään Korppua tulipalolta, ja pian menehtyy myös Korppu. Veljekset matkaavat lyhyen maanpäällisen elämänsä jälkeen kauniiseen maahan, Nangijalaan, jossa he taistelevat yhdessä pahan voimia vastaan. Matkasta tulee huima ja jännittävä seikkailu, jonka aikana pelokkaasta Korpusta kasvaa rohkea Leijonamieli.</p><p>Veljeni Leijonamieli kertoo surusta kauniisti ja kasvaa maagiseksi fantasiaseikkailuksi, joka on täynnä rohkeutta ja toivoa. Se kertoo valtavasta rakkaudesta, joka voittaa pelot ja jopa kuoleman.</p><p>Astrid Lindgrenin Veljeni Leijonamielen suurelle näyttämölle ohjaa Jakob Höglund. Esitys yhdistelee musiikkiteatteria, nukketeatteria ja koreografiaa fantastiseksi, visuaalisesti henkeäsalpaavaksi kokonaisuudeksi.</p><p>Rooleissa: Mikko Kauppila, Alexander Wendelin, Laura Alajääski, Sofia Hilli, Tuukka Leppänen, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Sanna Majuri, Kari Mattila, Reetta Moilanen, Unto Nuora, Samuli Pajunen, Mikko Paloniemi, Tiina Peltonen, Elena Rekola, Inka Tiitinen, Riina Tikkanen, Risto Kaskilahti, Kalle Lähde</p><p>Muusikko: Senni Valtonen<br>Dramatisointi: Alexander Mørk-Eidem<br>Ohjaus: Jakob Höglund<br>Koreografia: Jakob Höglund &amp; työryhmä<br>Ohjaajan ja koreografin assistentti: Johanna Elovaara<br>Tekstin sovitus, käännös ja laulutekstit: Rasmus Arikka<br>Sävellys ja äänisuunnittelu: Stefan Johansson<br>Lavastus: Vilma Mattila<br>Pukusuunnittelu: Heidi Wikar<br>Valo- ja videosuunnittelu: Toni Haaranen ja William Iles<br>Naamioinnin suunnittelu: Milja Mensonen<br>Nukkien suunnittelu: Heini Maaranen<br>Dramaturgi: Ari-Pekka Lahti<br>Lauluvalmennus: Jukka Nylund<br>Apulaislavastaja: Riku Suvitie</p>",
                "sv": "<p>Astrid Lindgren<br><strong>VELJENI LEIJONAMIELI</strong></p>"
            },
            "name": {
                "fi": "Veljeni Leijonamieli"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19528389/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnhz54x3e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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:p556/?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": 1493788,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-22T08:25:47.463283Z",
                    "last_modified_time": "2024-10-22T08:25:47.463314Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/111531fc-3bb9-4dac-807b-8dd89c6b637a.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Albanialaista tanssia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-13T10:41:36.481381Z",
            "last_modified_time": "2025-11-18T16:39:40.886340Z",
            "date_published": null,
            "start_time": "2025-11-30T11:00:00Z",
            "end_time": "2025-11-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,
            "short_description": {
                "fi": "Tule tutustumaan albanialaiseen kulttuuriin. Musiikkia, tanssia ja runoja. Tervetuloa!",
                "sv": "Kom och upptäck den albanska kulturen. Musik, dans och dikter. Välkommen!",
                "en": "Come and discover the Albanian culture. Music, dance and poems. Welcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule tutustumaan albanialaiseen kulttuuriin.</p><p>Espoon, Helsingin ja Kirkkonummen koululaiset esittävät albanialaista musiikkia, tanssia ja runoja.</p><p>Tervetuloa!</p>",
                "sv": "<p>Kom och upptäcka den albanska kulturen.</p><p>Skolbarn från Esbo, Helsingfors och Kyrkslätt kommer att framföra albansk musik, dans och dikter.</p><p>Välkommen till oss!</p>",
                "en": "<p>Come and discover Albanian culture.</p><p>Schoolchildren from Espoo, Helsinki and Kirkkonummi will perform Albanian music, dance and poems.</p><p>Welcome!</p>"
            },
            "name": {
                "fi": "Albanialainen kulttuuritapahtuma",
                "sv": "Albansk kultur evengemang",
                "en": "Albanian cultural event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhz54x3e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}