Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_recurring_children=true&page=67
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21736,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=68",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=66"
    },
    "data": [
        {
            "id": "jiiri:65036315-7e64-4b4d-a326-172915d258ae",
            "has_user_editable_resources": false,
            "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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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: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": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Ikkuna_tulevaisuuteen_-taidetempaus3884984925"
                    },
                    "description": null,
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-01T12:12:14.123142Z",
            "last_modified_time": "2025-12-01T12:12:14.123157Z",
            "date_published": "2025-12-01T12:11:36Z",
            "start_time": "2025-12-07T06:00:00Z",
            "end_time": "2025-12-07T16: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": "lyhyt kuvaus"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Tarkka kuvaus</p></div>"
            },
            "name": {
                "fi": "Ikkuna tulevaisuuteen -taidetempaus!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Annantalo (KYMP)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:65036315-7e64-4b4d-a326-172915d258ae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnntymyki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493968,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-01T11:26:00.593767Z",
                    "last_modified_time": "2025-12-01T11:26:00.593783Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b071c80c-f9fc-4bb2-a66e-474d5365251d.jpeg",
                    "name": "",
                    "cropping": "397,0,1418,1021",
                    "photographer_name": "Carl-Magnus Fohelholm",
                    "alt_text": "Carl-Magnus Fohelholm ja hänen kirjansa Konni Zilliacuksesta.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493968/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T11:32:33.318259Z",
            "last_modified_time": "2025-12-01T11:32:33.318277Z",
            "date_published": "2025-12-01T11:22:00Z",
            "start_time": "2026-01-22T16:00:00Z",
            "end_time": "2026-01-22T17: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": "Kirjailija Karl-Magnus Fogelholm vieraana Tapiolan kirjastossa.",
                "sv": "Författaren Karl-Magnus Fogelholm gästar Hagalunds bibliotek.",
                "en": "Author Karl-Magnus Fogelholm visiting Tapiola Library."
            },
            "info_url": null,
            "description": {
                "fi": "<p><em>Täydellinen ero Venäjästä – vapaus Suomelle! </em>Sanat kaikuivat kansainvälisessä kongressissa Lausannessa Sveitsissä sortovuonna 1916 aktivistijohtaja Konni Zilliacuksen päättäessä puheensa läsnäolijoiden aplodein. Hetki oli juhlallinen. Se oli ensimmäinen kerta, kun Suomen itsenäisyyden vaatimus esitettiin julkisesti kansainvälisen yleisön edessä.</p><p><strong>Konni Zilliacuksen lapsenlapsenlapsi, Insinööri Carl-Magnus Fogelholm kertoo uudesta kirjastaan Konni Zilliacus ja tie Suomen itsenäisyyteen.</strong></p>",
                "sv": "<p>Konni Zilliacus sonsons sonson, ingenjör Carl-Magnus Fogelholm, berättar om sin nya bok Konni Zilliacus ja tie suomen itsenäisyyteen.</p><p>Evenemanget kommer att hållas på finska.</p>",
                "en": "<p>Konni Zilliacus' great-grandson, Engineer Carl-Magnus Fogelholm, will talk about his new book Konni Zilliacus ja tie suomen itsenäisyyteen.</p><p>The event will be held in Finnish.</p>"
            },
            "name": {
                "fi": "Kirjaesittely: Konni Zilliacus ja tie suomen itsenäisyyteen",
                "sv": "Bokpresentation:  Konni Zilliacus ja tie suomen itsenäisyyteen",
                "en": "Book presentation: Konni Zilliacus ja tie suomen itsenäisyyteen"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": {
                "fi": "Carl-Magnus Fogelholm",
                "sv": "Carl-Magnus Fogelholm",
                "en": "Carl-Magnus Fogelholm"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymyki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnntym3pa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:agnntymy5m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymzpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymz7y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym2pi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym26q/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490114,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T10:25:06.430379Z",
                    "last_modified_time": "2025-08-13T10:25:06.430393Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Laura H / Silent Book Club",
                    "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T11:20:34.759008Z",
            "last_modified_time": "2025-12-01T11:20:34.759038Z",
            "date_published": null,
            "start_time": "2026-01-17T11:00:00Z",
            "end_time": "2026-05-09T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "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": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä",
                "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra",
                "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading"
            },
            "info_url": {
                "fi": "https://silentbook.club/",
                "sv": "https://silentbook.club/",
                "en": "https://silentbook.club/"
            },
            "description": {
                "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Hiljainen lukupiiri Tapiolan kirjasto",
                "sv": "Tyst bokcirkel Hagalunds bibliotek",
                "en": "Silent Book Club Tapiola Library"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym3pa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnntkqixq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqfem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqfxy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqgam/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqgli/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqgui/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqg5a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqhf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqhpi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqhzi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqiei/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqine/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490656,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T13:25:37.472364Z",
                    "last_modified_time": "2024-12-18T13:25:37.472429Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d8fe99ce-d70d-4b1b-8f3c-eebcbc92b7f3.jpg",
                    "name": "",
                    "cropping": "136,0,954,818",
                    "photographer_name": "",
                    "alt_text": "Kaksi 3D-tulostettua hahmoa 3D-tulostetun kyltin päällä, jossa lukee PAJA.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490656/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T11:15:01.446854Z",
            "last_modified_time": "2025-12-01T11:15:01.446872Z",
            "date_published": null,
            "start_time": "2026-01-08T14:00:00Z",
            "end_time": "2026-05-28T15: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 tutustumaan Tapiolan kirjaston Pajaan.",
                "sv": "Välkommen att lära dig hur du använder 3D-skrivare, vinylskärare, overlockmaskin och symaskin.",
                "en": "Welcome to learn how to use a 3D printers, a vinyl cutter, an overlock machine, and a sewing machine."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule tutustumaan pajan laitteisiin ja mahdollisuuksiin.&nbsp;</p><p>Annamme opastusta 3D-tulostimien, vinyylileikkurin, saumurin ja ompelukoneen käyttöön. Ota oma puuvillainen vaate tms. mukaan, jos haluat painaa siihen kuvan tai tekstin. Vaihtoehtoisesti voit tehdä tarran.</p><p>Tulostus- ja vinyylimateriaalin tarjoaa kirjasto.</p><p>Ohjausta tarjotaan suomeksi ja englanniksi.&nbsp;</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Kom och bekanta dig med verkstadens utrustning och möjligheter.</p><p>Vi ger handledning i användning av 3D-skrivare, vinylskärare, overlockmaskin och symaskin. Ta med ett eget bomullsplagg eller liknande om du vill trycka en bild eller text på det. Alternativt kan du göra en klistermärke.</p><p>Biblioteket tillhandahåller utskrifts- och vinylmaterial.</p><p>Vägledning ges på finska och engelska.</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Come and explore the equipment and possibilities of the workshop.</p><p>We provide guidance on using 3D printers, a vinyl cutter, an overlock machine, and a sewing machine. Bring your own cotton garment or similar item if you want to print an image or text on it. Alternatively, you can make a sticker.</p><p>The library provides the printing and vinyl materials.</p><p>Guidance is available in Finnish and English.</p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Paja tutuksi kaikille",
                "sv": "Verkstad för alla",
                "en": "Makerspace for all"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Maker Space"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqixq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnmu3ub54",
            "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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "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": [
                {
                    "id": 1493947,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-21T09:10:02.529924Z",
                    "last_modified_time": "2024-05-21T09:10:02.529948Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Sateenkaariseniorit.PNG",
                    "name": "",
                    "cropping": "136,0,551,415",
                    "photographer_name": "Kuva: Sateenkaariseniorit",
                    "alt_text": "Kuvassa piirrettyjä sateenkaarisenioreita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T11:27:19.845915Z",
            "last_modified_time": "2025-12-01T11:10:37.916673Z",
            "date_published": null,
            "start_time": "2025-12-09T11:30:00Z",
            "end_time": "2025-12-09T13: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": "Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta. ",
                "sv": "Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.",
                "en": "The event is a relaxed coffee hour open to all. There, you can find out about LGBTQIA+ literature and enjoy the good company."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan Sateenkaarisenioreiden ensimmäiseen kokoontumiseen Lippulaivan kirjastossa. Kokoontumisen aikana voidaan suunnitella ensi kevään tulevia kertoja.</p><p>Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin. Paikan päällä voit tutustua sateenkaarikirjallisuuteen sekä nauttia hyvästä seurasta.</p>",
                "sv": "<p>Välkommen till Regnbågsseniorerna&nbsp;första möte på Lippulaiva-biblioteket. Under mötet kan vi planera kommande evenemang för nästa vår.</p><p>Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.</p>",
                "en": "<p>Welcome to the first meeting of Rainbow Seniors at the Lippulaiva Library. During the meeting, we can plan future meetings for next spring.</p><p>The event is a relaxed coffee hour open to all. There, you can find out about LGBTQIA+ literature and enjoy the good company.</p>"
            },
            "name": {
                "fi": "Sateenkaariseniorit kirjastossa",
                "sv": "Regnbågsseniorerna på besök till biblioteket",
                "en": "Rainbowseniors visit the library"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kapyysi",
                "sv": "Kapyysi",
                "en": "Kapyysi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmu3ub54/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnntkqyiy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqtvq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqua4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqujq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqusy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqu3q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqvea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqvni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqvwu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqwbi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqwle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqwuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqw5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqxgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqxpi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqxya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqyaq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-24T11:41:28.628680Z",
                    "last_modified_time": "2025-01-30T08:53:02.449159Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg",
                    "name": "",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "Ali Al-Zaini",
                    "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-12-01T11:07:45.525809Z",
            "last_modified_time": "2025-12-01T11:07:45.525827Z",
            "date_published": null,
            "start_time": "2026-01-13T15:30:00Z",
            "end_time": "2026-05-26T15: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": "Arabiankielinen satuhetki",
                "sv": "Sagostund på arabiska",
                "en": "Storytime in Arabic"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. Sanaa kertoo sinulle satuja joka tiistai Jaminurkassa klo 17:30</p><p><br></p><p>Kuva: Ali Al-Zaini</p>",
                "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. Sanaa berättar för dig varje tisdag. kl. 17:30.</p><p><br></p><p>Foto: Ali Al-Zaini</p>",
                "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams. It will be narrated to you by Sanaa every Tuesday at 17:30.</p><p><br></p><p>Photo: Ali Al-Zaini</p>"
            },
            "name": {
                "fi": "Arabiankielinen satuhetki",
                "sv": "Sagostund på arabiska",
                "en": "Storytime in Arabic"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqyiy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnns4w52y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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: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"
                }
            ],
            "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:agnns4wqqi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wrpi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wsei/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wsym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wtnq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wuca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wuwy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wvku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wv64/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wwtm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wxje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wx5i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wyrq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wzg4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wz3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w2qm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w3gy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w34m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w4qy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w5fm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150453,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-07T11:30:54.908155Z",
                    "last_modified_time": "2025-12-01T09:54:37.517785Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/luetaanyhdess%C3%A4.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "valokuva kädestä, muistilapusta ja suomenkielen oppikirjasta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150453/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T10:05:24.461078Z",
            "last_modified_time": "2025-12-01T10:05:24.461095Z",
            "date_published": null,
            "start_time": "2026-01-07T08:15:00Z",
            "end_time": "2026-05-27T08:45: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": "Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea. Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.",
                "sv": "Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!",
                "en": "Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.</p><p>Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.</p><p>Ryhmä kokoontuu Entressen kirjastolla keskiviikkoisin 7.1.-27.5.2026 klo 10:15-11:45. Ei kuitenkaan 18.2. talvilomalla.</p><p><br></p><p>Ryhmän vetäjänä on Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter, diskuterar olika ämnen och övar på att skriva varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. </p><p>Gruppen träffas på Entresse biblioteket på onsdagar från den 7 januari till den 27 maj 2026 kl. 10.15–11.45. Det blir dock inget möte den 18 februari på grund av vinterlovet.</p><p>Gruppen leds av frivilliga från Vi läser tillsammans -nätverket/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts, discuss different topics and practice writing every time. It's not necessary to register in advance, you can just show up. </p><p>The group meets at the Entresse Library on Wednesdays from January 7 to May 27, 2026, from 10:15 to 11:45 a.m. However, there will be no meeting on February 18 due to winter break.</p><p><br></p><p>The group is run by the volunteers of Let's Read Together -network/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Luetaan yhdessä",
                "sv": "Vi läser tillsammans",
                "en": "Let's Read Together"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Ryhmä kokoontuu avotilassa",
                "sv": "Gruppen träffas i ett öppet utrymme",
                "en": "The group meets in an open space"
            },
            "provider": {
                "fi": "Luetaan yhdessä-verkoston vapaaehtoiset",
                "sv": "Vi läser tillsammans -nätverket",
                "en": "Let's Read Together -network"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w52y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnns4xojm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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"
                }
            ],
            "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:agnns4w6p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w7ji/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xadi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xa44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xbvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xcoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xdh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xeay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xezm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xfte/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xgne/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xhfy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xh6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xix4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xjqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xkjy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xlcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xl4m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xmvu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xnom/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T08:52:37.532898Z",
                    "last_modified_time": "2025-12-01T09:27:06.237847Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T09:47:11.037575Z",
            "last_modified_time": "2025-12-01T09:47:11.037593Z",
            "date_published": null,
            "start_time": "2026-01-09T10:00:00Z",
            "end_time": "2026-05-29T10: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.",
                "sv": "Letar du efter en plats där du kan öva på att tala finska?",
                "en": "Are you looking for a place to practice speaking Finnish?"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin 9.1.-29.5.2026 klo 12 - 13:30. Kielikahvila kokoontuu Sinisessä huoneessa. </p><p>Ei kielikahvilaa 20.2.2026 koulujen talvilomalla.</p><p>HUOM 10.4. kokoontuu eri tilassa kirjastolla.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 9.1.-29.5.2026 kl. 12:00 - 13:30 i Sininen huone </p><p>OBS 10.4. träffas i ett annat rum på biblioteket.&nbsp;</p><p>Ej språkcafé den 20.2.2026 under vinterlovet.</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. </p><p>Cafes are held on Fridays 9.1.-29.5.2026. at 12:00 - 13:30 in Sininen huone. (NOTE 10.4. meets in a different room at the library.&nbsp;</p><p>Not 20.2.2026 during winter holidays.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "SPR:n kielikahvila perjantaisin",
                "sv": "Finskt språkcafé på fredagar",
                "en": "Finnish Language Cafe on Fridays"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": {
                "fi": "Suomen Punainen Risti",
                "sv": "Finska Röda Korset",
                "en": "Finnish Red Cross"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xojm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnns4xw3y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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"
                }
            ],
            "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:agnns4xpdm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xpqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xp44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xqku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xqxq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xrea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xrq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xr7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xsmi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xsz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xtgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xtta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xwbu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xwpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq222yy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq223w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq224hu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq224xy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq225hq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T08:52:37.532898Z",
                    "last_modified_time": "2025-12-01T09:27:06.237847Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T09:28:24.868150Z",
            "last_modified_time": "2025-12-01T09:28:24.868167Z",
            "date_published": null,
            "start_time": "2026-01-13T16:00:00Z",
            "end_time": "2026-05-26T16: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": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30",
                "sv": "Letar du efter en plats där du kan öva på att tala finska?",
                "en": "Are you looking for a place to practice speaking Finnish?"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "SPR:n kielikahvila",
                "sv": "Finskt språkcafé",
                "en": "Finnish Language Cafe"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": {
                "fi": "Suomen Punainen Risti",
                "sv": "Finska Röda Korset",
                "en": "Finnish Red Cross"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xw3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnns4xxiq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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"
                }
            ],
            "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": 150465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T08:52:37.532898Z",
                    "last_modified_time": "2025-12-01T09:27:06.237847Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T09:28:03.360657Z",
            "last_modified_time": "2025-12-01T09:28:03.360678Z",
            "date_published": null,
            "start_time": "2026-01-13T16:00:00Z",
            "end_time": "2026-05-26T16: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": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30",
                "sv": "Letar du efter en plats där du kan öva på att tala finska?",
                "en": "Are you looking for a place to practice speaking Finnish?"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "SPR:n kielikahvila",
                "sv": "Finskt språkcafé",
                "en": "Finnish Language Cafe"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": {
                "fi": "Suomen Punainen Risti",
                "sv": "Finska Röda Korset",
                "en": "Finnish Red Cross"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xxiq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnns4xxw4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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"
                }
            ],
            "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": 150465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T08:52:37.532898Z",
                    "last_modified_time": "2025-12-01T09:27:06.237847Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T09:27:17.946283Z",
            "last_modified_time": "2025-12-01T09:27:17.946301Z",
            "date_published": null,
            "start_time": "2026-01-13T16:00:00Z",
            "end_time": "2026-05-26T16: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": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30",
                "sv": "Letar du efter en plats där du kan öva på att tala finska?",
                "en": "Are you looking for a place to practice speaking Finnish?"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "SPR:n kielikahvila",
                "sv": "Finskt språkcafé",
                "en": "Finnish Language Cafe"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": {
                "fi": "Suomen Punainen Risti",
                "sv": "Finska Röda Korset",
                "en": "Finnish Red Cross"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xxw4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnns4xy6e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyvq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-12-01T09:19:54.221505Z",
            "last_modified_time": "2025-12-01T09:19:54.221527Z",
            "date_published": null,
            "start_time": "2025-12-02T14:00:00Z",
            "end_time": "2025-12-16T16: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": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "MakerSpace "
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xy6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnmtssxcm",
            "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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493960,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-01T09:09:21.616982Z",
                    "last_modified_time": "2025-12-01T09:09:21.616997Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6f1fe701-b862-4729-830c-5738a8490773.jpg",
                    "name": "",
                    "cropping": "282,0,1000,717",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on lapsi, joka soittaa pianoa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493960/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T09:17:21.285882Z",
            "last_modified_time": "2025-12-01T09:09:44.253250Z",
            "date_published": null,
            "start_time": "2025-12-07T13:00:00Z",
            "end_time": "2025-12-07T14: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 kuuntelemaan oppilaskonserttia Salonkiin sunnuntaina 7.12. klo 15:00 alkaen",
                "en": "Welcome to listen to the students concert on sunday 7.12. from 15:00 o clock onwards."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa kuuntelemaan International School Of Music Finlandin oppilaiden joulukonserttia Salonkiin sunnuntaina 7.12. klo 15:00 alkaen.</p><p>Tapahtuma on maksuton ja kaikille avoin.</p>",
                "en": "<p>Welcome to listen to the International School Of Music Finland's christmas concert students concert on sunday 7.12. from 15:00 o clock onwards.</p><p>The event is free of charge and open for all!</p>"
            },
            "name": {
                "fi": "International School Of Music Finlandin joulukonsertti",
                "en": "International School Of Music Finland's christmas concert"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "International School Of Music Finland",
                "en": "International School Of Music Finland"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmtssxcm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66509",
            "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:105/?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: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"
                },
                {
                    "@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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3912720",
                        "sv": "https://www.lippu.fi/eventseries/3912720",
                        "en": "https://www.lippu.fi/eventseries/3912720"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / Perhelippu 60 €",
                        "sv": "17 € / Perhelippu 60 €",
                        "en": "17 € / Perhelippu 60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 951667,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-06T09:13:59.265519Z",
                    "last_modified_time": "2025-06-06T09:13:59.265535Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774755.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/951667/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-06T09:13:59.109276Z",
            "last_modified_time": "2025-11-30T10:12:58.214421Z",
            "date_published": null,
            "start_time": "2025-11-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!",
                "sv": "Skivsläppskonsert för Mutaveijarits helt nya julskiva!",
                "en": "The Mutaveijarit band’s brand-new Christmas album release concert!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/810BBB1D3E2B31566D5DCAABCCB70F95/LOPPUUNMYYTY_Mutaveijarit_Joulutouhotus",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus",
                "en": "http://www.savoyteatteri.fi/en/events/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus"
            },
            "description": {
                "fi": "<p>Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis! Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet aivan uusia joulu- ja talvilauluja mutameininkiä unohtamatta.</p><p>Valloittavista esiintymisistä ja mukaansatempaavista, monisävyisistä lauluista tunnettu Mutaveijarit on viimeisen kymmenen vuoden aikana vakiinnuttanut asemansa yhtenä Suomen suosituimmista lastenmusiikkiyhtyeistä. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa uudenlaiselle musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja molemmat levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Vuonna 2023 julkaistiin Mutaveijareiden lauluista Ämpärillinen nuotteja -nuottikirja, josta on otettu jo uusintapainos.</p><p>Kesto n.  50 min, ei väliaikaa</p><p>Konsertti on ikärajaton</p><p>Liput 17 €, perhelippu (4 hlöä) 60 €</p><p>Alle 3-vuotias lapsi sylissä ilmaiseksi, jokainen omalla paikallaan istuva tarvitsee oman lipun.</p><p>Savoyssa on tarjolla rajoitettu määrä istuintyynyjä ja -korokkeita perheen pienimmille. Pyydämme käyttämään korokkeita vain todelliseen tarpeeseen, jotta niitä riittää mahdollisimman monelle.</p><p>Huomioithan myös. että Savoy-teatterin aulatilat ovat valitettavan rajalliset, ja lastenvaunuille ja -rattaille on niukasti tilaa. Pyydämme siis jättämään vaunut ja rattaat mahdollisuuksien mukaan kotiin tai esim. autoon konsertin ajaksi.</p><p>Lämmin kiitos yhteistyöstänne; näin takaamme onnistuneen ja iloisen konserttikokemuksen kaikille paikalle tulijoille!</p>",
                "sv": "<p>Skivsläppskonsert för Mutaveijarits helt nya julskiva!</p><p>Det är vinter hos Mutaveijarit och julen närmar sig redan. Men mitt i allt vinterskoj är Mutaveijarit fortfarande mitt uppe i alla julförberedelser! Receptet på risgrynsgröt är försvunnet, julklapparna ogjorda och de är inte alls klara med julstädningen. Julstöket är igång! Lyckligtvis går julförberedelserna som en dans när man leker tillsammans. Kom till en vintrig konsert för att förbereda dig inför julen genom att sjunga och leka tillsammans med Mutaveijarit. På konserten får du höra helt nya jul- och vintersånger i vanlig Mutaveijarit-stil.</p><p>Mutaveijarit, som är kända för sina charmerande och medryckande framträdanden samt mångtoniga sånger, har under de senaste tio åren etablerat sig som en av Finlands populäraste barnmusikgrupper. De fantasifulla och insiktsfulla sångerna samt inspirerande och pedagogiskt mångsidiga sånglekarna tar lyssnarna med på en ny musikalisk resa, med roliga och spännande vändningar som garanterar en underhållande konsertupplevelse för hela familjen.</p><p>Mutaveijarits två skivor Ympäri ämpäri! (2016) och Nyt mennään! (2019) har fått många utmärkelser av bland annat Småbarns musiklärare rf, och båda skivorna har nominerats till en Emma i kategorin barnmusik. År 2023 publicerades Mutaveijarits sånger i notboken Ämpärillinen nuotteja, som det redan har kommit en ny upplaga av.</p><p>Längd ca 45 min., ingen paus.</p><p>Konserten har ingen åldersgräns.</p><p>Biljetter 17 €, familjebiljett (4 pers.) 60 €</p><p>Barn under 3 år sitter gratis i knät, varje person som sitter på en egen plats behöver en biljett.</p>",
                "en": "<p>The Mutaveijarit band’s brand-new Christmas album release concert!</p><p>It's winter in Mutaveijarila and Christmas is already approaching. But in the midst of all the winter fun, Mutaveijarit have still not finished any of their Christmas preparations! The rice porridge recipe is missing, the Christmas presents have not been wrapped and the Christmas cleaning is not even halfway done. It’s going to be a real Christmas hassle! Luckily, finishing these Christmas tasks is easy when working together. Come listen to this wintery concert to get ready for Christmas by singing and playing with the Mutaveijarit. In the concert you will hear brand-new Christmas and winter songs, without forgetting the usual muddy fun of Mutaveijarit.</p><p>Over the past ten years, Mutaveijarit, known for their highly entertaining performances and captivating, multi-tonal songs, have established themselves as one of Finland's most popular children's music groups. The imaginative and insightful songs and inspiring and pedagogically diverse singing games take their audience on a new kind of musical journey, with fun and exciting twists and turns that guarantee an entertaining concert experience for the whole family.</p><p>The two albums by Mutaveijarit – Ympäri ämpäri! (2016) and Nyt mennään! (2019) – have received numerous accolades from e.g. the Vamo association of early childhood music teachers, and both albums have been nominated for the Emma award for children's music. In 2023, a selection of Mutaveijarit songs was published in a notebook called Ämpärillinen Nuotteja, and a second edition has already been printed.</p><p>Duration approx. 45 min, no intermission</p><p>The concert is not age-restricted</p><p>Tickets €17, family ticket (4 people) €60</p><p>Children under the age of 3 can share a seat with an adult, each person sitting in their own seat needs their own ticket.</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY: Mutaveijarit: Joulutouhotus",
                "sv": "Mutaveijarit: Joulutouhotus",
                "en": "Mutaveijarit: Joulutouhotus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66509/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66890",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/",
                        "sv": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/",
                        "en": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €/ 0 €",
                        "sv": "20 € / 15 €/ 0 €",
                        "en": "20 € / 15 €/ 0 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490501,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-22T11:15:14.074884Z",
                    "last_modified_time": "2025-08-22T11:15:14.074904Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774950.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490501/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-22T11:15:13.929409Z",
            "last_modified_time": "2025-11-29T14:12:33.863327Z",
            "date_published": null,
            "start_time": "2025-11-29T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla. Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle!",
                "sv": "Nordic noir erövrar världen i tv och på bioduken. Stella Polaris tar den populära genren nu även till teaterscenen!",
                "en": "Nordic noir is taking over the world on TV and the big screen. Stella Polaris is now bringing the popular genre to the theatre stage as well!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C5A225FE336F449C95C39C5D4FA2680D/LOPPUUNMYYTY_Helsinki_Noir_Improvisoitu_rikosdraama_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C5A225FE336F449C95C39C5D4FA2680D/SLUTSALD_Helsinki_Noir_Improvisoitu_rikosdraama_",
                "en": "http://www.vuotalo.fi/en/events/event/C5A225FE336F449C95C39C5D4FA2680D/SOLD_OUT_Helsinki_Noir_Improvisoitu_rikosdraama_"
            },
            "description": {
                "fi": "<p>Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla. Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle!</p><p>Tummanpuhuva rikosdraama saa alkunsa yleisön antamista lähtökohdista, ja näin käynnistyy tapahtumaketju, jossa kaikki ovat epäiltyjä, kunnes toisin todistetaan.</p><p>Stella Polariksen taitavat improvisoijat tarttuvat rikostarinoista synkimpään ja tekevät siitä oman tulkintansa. Improvisaatiossa mitään ei ole ennalta sovittu, joten syyllinen voi olla kuka tahansa.</p><p>Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!</p><p>Esityksen kesto: n. 1 t 45 min (sis. väliajan).  <br>Ikäsuositus: yli 13-vuotiaille <br>Esityksen kieli: suomi</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>",
                "sv": "<p>Nordic noir erövrar världen i tv och på bioduken. Stella Polaris tar den populära genren nu även till teaterscenen!</p><p>Det mörka brottsdramat börjar med utgångspunkter från publiken, och på så sätt utlöses en händelsekedja där alla är misstänkta tills motsatsen bevisas.</p><p>Stella Polaris skickliga improvisatörer tar tag i de mörkaste brottshistorierna och gör en egen tolkning av dem. I improvisation är ingenting förutbestämt, så den skyldiga kan vara vem som helst.  <br> <br>Kom och skapa en föreställning med oss och se om brottet löses!</p><p>Föreställningens längd: ca 1 timme och 45 minuter (inklusive paus).  <br>Åldersrekommendation: för personer över 13 år <br>Föreställningens språk: finska</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. 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 <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-vuotalo-20611137/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Nordic noir is taking over the world on TV and the big screen. Stella Polaris is now bringing the popular genre to the theatre stage as well!</p><p>The dark crime drama begins based on the audience’s input, setting off a chain of events in which everyone is a suspect until proven otherwise.</p><p>Stella Polaris’s skilled improvisers take on the darkest crime stories and make their own interpretations. In improvisation, nothing is predetermined, so the culprit can be anyone.</p><p>Come create a performance together with us and see if the crime can be solved!</p><p>Duration of the performance: roughly 1 h 45 min (incl. intermission)  <br>Recommended age: 13 and older <br>Performance language: Finnish</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Get your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-vuotalo-20611137/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Helsinki Noir – Improvisoitu rikosdraama – Stella Polaris",
                "sv": "SLUTSÅLD Helsinki Noir – Improvisoitu rikosdraama – Stella Polaris",
                "en": "SOLD OUT Helsinki Noir – Improvisoitu rikosdraama – Stella Polaris"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Stella Polaris, Vuotalo",
                "sv": "Stella Polaris, Nordhuset",
                "en": "Stella Polaris, Vuotalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66890/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67207",
            "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: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491205,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T14:13:51.278664Z",
                    "last_modified_time": "2025-10-27T14:13:51.278678Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777821.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-27T14:13:51.155440Z",
            "last_modified_time": "2025-11-28T16:12:49.911214Z",
            "date_published": null,
            "start_time": "2025-11-29T09:00:00Z",
            "end_time": "2025-11-29T13: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": "Ala-Malmin joulutori pidetään poikkeuksellisesti Malmitalon aulassa ja parvella. Voit tehdä joululahjalöytöjä, napata mukillisen glögiä tai lautasellisen puuroa ja nauttia tunnelmasta. Valotaideryhmä Belenoksen valoprinsessa Celestia ja muut upeat valohahmot kiertävät alueella klo 13.30 ja 14.30. Lisäksi Klovni Dattarataa Pukinmäen taidekouluista tuo iloa lapsille ja aikuisille päivän aikana. Vapaa pääsy!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori",
                "en": "http://www.malmitalo.fi/en/events/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori"
            },
            "description": {
                "fi": "<p>Ala-Malmin joulutori pidetään poikkeuksellisesti Malmitalon aulassa ja parvella. Voit tehdä joululahjalöytöjä, napata mukillisen glögiä tai lautasellisen puuroa ja nauttia tunnelmasta. Valotaideryhmä Belenoksen valoprinsessa Celestia ja muut upeat valohahmot kiertävät alueella klo 13.30 ja 14.30. Lisäksi Klovni Dattarataa Pukinmäen taidekouluista tuo iloa lapsille ja aikuisille päivän aikana. Vapaa pääsy!</p><p>Joulutori kokoaa yhteen paikallisia yrityksiä ja toimijoita.<br>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Ala-Malmin joulutori",
                "sv": "Ala-Malmin joulutori",
                "en": "Ala-Malmin joulutori"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnmvjcpye",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@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": 1493949,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T12:48:37.238603Z",
                    "last_modified_time": "2025-11-28T12:48:37.238620Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/35d21003-298e-4375-b188-c5958cd02ea1.jpg",
                    "name": "",
                    "cropping": "80,0,560,480",
                    "photographer_name": "",
                    "alt_text": "......",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493949/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T12:36:44.495702Z",
            "last_modified_time": "2025-11-28T12:48:43.310918Z",
            "date_published": null,
            "start_time": "2025-12-12T12:00:00Z",
            "end_time": "2025-12-12T14: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 hetkeksi tai askartele vaikka koko kaksi tuntia!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Perjantaina 12.12. klo 14–16</p><p>Lippulaivan kirjaston Pajassa.</p><p><br></p><p>Tule hetkeksi tai askartele vaikka koko kaksi tuntia 😊</p>"
            },
            "name": {
                "fi": "Jouluaskartelua aikuisille!"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmvjcpye/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnmtssx3i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@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": 1493943,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-28T09:07:25.835201Z",
                    "last_modified_time": "2025-11-28T09:07:25.835218Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/556c3361-712d-4580-b0d3-4413ff97f293.jpg",
                    "name": "Kannen suunnittelija: Sami Saramäki, Samuli Knuutin kuva: Otto Virtanen",
                    "cropping": "239,0,734,495",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kirjailija Samuli Knuuti ja hänen kirjansa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493943/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T08:58:55.605854Z",
            "last_modified_time": "2025-11-28T12:31:40.617989Z",
            "date_published": null,
            "start_time": "2025-12-04T16:00:00Z",
            "end_time": "2025-12-04T17: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 kuuntelemaan Samuli Knuutin kirjailijavierailua Salonkiin torstaina 4.12. klo 18 alkaen."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa kuuntelemaan Samuli Knuutin kirjailijavierailua Salonkiin torstaina 4.12. klo 18 alkaen.</p><p><br></p><p><strong>”Jokainen romaani on sairauskertomus ja jokainen romaani on intohimorikos.”</strong></p><p>Tapahtumahetki on lähitulevaisuus, ja kello on viisi sekuntia vaille keskiyö. Maailma on kiistatta suistumassa kohti loppuaan, mutta Klaus Pettymyksellä menee ihan hyvin: hänen juuri ilmestyvästä viidennestä romaanistaan on kehkeytymässä maailmanlaajuinen myyntimenestys. Juuri nyt ei siis olisi hyvä hetki menneisyyden puskea esille. Klausin valtaisan menestyksen takana kun on asioita, jotka eivät kestä päivänvaloa.</p><p>Suuruudenhullu ja eri lajityyppejä sekoitteleva esikoisromaani on hallitsematon naurukohtaus peloista suurimman edessä. Se on samaan aikaan maailmanselitys ja purkupallo: viha-rakkauskirje kirjallisuudelle ja kirjoittamiselle sekä kaikille tarinoille, jotka pitävät meidät elossa. Se tempaa mukaansa, mutta lukijan kannattaa varoa, kenen käteen siinä tarttuu.</p><p>Samuli Knuuti (1970) on olarilainen kirjoittaja ja kustannustoimittaja.</p><p>Paikan päältä voi ostaa romaania alennushintaan 25 euroa. Ota tasaraha mukaan, jos kirjan haluat.&nbsp;</p><p><br></p><p>Tapahtuma on maksuton ja kaikille avoin!</p>"
            },
            "name": {
                "fi": "Kuviot joita kadut eivät tiedä tekevänsä - Samuli Knuutin kirjailijavierailu"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmtssx3i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67650",
            "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: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": 1493946,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-28T12:13:04.358658Z",
                    "last_modified_time": "2025-11-28T12:13:04.358672Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782293.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T12:13:04.136654Z",
            "last_modified_time": "2025-11-28T12:13:04.659578Z",
            "date_published": null,
            "start_time": "2025-12-09",
            "end_time": "2026-06-30",
            "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": "Mun Malmi-valokuvanäyttely on kunnianosoitus Malmin moninaisuudelle. Tervetuloa avajaisiin 9.12. klo 17–19!",
                "sv": "Malm är inte detsamma för alla, utan mångsidigt, som en stad inom staden.",
                "en": "Malmi is not the same for everyone, it is diverse like a city within a city."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi-valokuvanayttely",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi_Mitt_Malmi_fotoutstallning",
                "en": "http://www.malmitalo.fi/en/events/event/799C7DD346DFF36BE1BE98275FCE13DE/Mun_Malmi_My_Malmi_photo_exhibition"
            },
            "description": {
                "fi": "<p>Mun Malmi-valokuvanäyttely on kunnianosoitus Malmin moninaisuudelle. Tervetuloa avajaisiin 9.12. klo 17–19!</p><p>Malmi ei ole yksi ja sama kaikille, se on monimuotoinen kuin kaupunki kaupungissa. Jatkuvasti laajeneva kaupunginosa on koti 26 000 ihmiselle, mutta myös työpaikka, läpikulkupaikka ja jopa lomakohde.</p><p>Tiistaina 9. joulukuuta 2025 klo 17–19 Malmitalon edustalla avautuu valokuvanäyttely nimeltä Mun Malmi. Kuvat on ottanut valokuvataiteilija Anna Autio, tekstit ovat toimittaja Kaisa Viitasen. ”Näyttely on kunnianosoitus Malmin moninaisuudelle. Jokaisella kuviin valitulla henkilöllä on Malmiin omanlaisensa suhde”, tekijät sanovat.</p><p>Veikko Halmetoja ja Jussi Perämäki muuttivat Malmille Itäkeskuksesta. ”Monella kaverillamme on ollut Malmista ennakkoluuloja, mutta kun heidät sai maaniteltua tänne, he hurmioituivat. Monelle on yllätys, että Malmilla on myös tällainen vehreä puutalokukkula”, taidegalleristi Halmetoja sanoo.</p><p>13-vuotias Jessika Ahonen on neljännen polven malmilainen, mutta vanhempiensa kanssa hän ei ole viime aikoina jaksanut keskustella. Luottoaikuisia hän on onneksi löytynyt Malmin nuorisotalolta.</p><p>Kaikille Malmi ei ole koti, mutta silti se voi olla erityinen ja rakas. Georgette Singbe vietti alkusyksystä 2025 Malmilla kuusi viikkoa. Hän asui ystävänsä vierashuoneessa ja kävi monta kertaa Malmin uimahallissa. ”Kaikenikäiset naiset uivat ilman kehohäpeää. <br>Kotimaassani Beninissä sellainen ei olisi mahdollista.”</p><p>Mirella Ablaoui kuuntelee malmilaisia työkseen, sillä hän on Helsingin kulttuurikeskusten ensimmäinen kohtaamiseen erikoistunut aulaemäntä. ”Näen Malmilla yksinäisyyttä. Monelle malmilaiselle olen ainoa ihminen, jonka kanssa he päivän aikana juttelevat.”</p><p>Valari Tynkkynen leikki 20 vuotta sitten grafiikkaohjelmalla ja loi Miami Vicen logosta kepeän Malmi-version. Joka vuosi kymmenet malmilaiset tatuoivat Tynkkysen tekemiä kuvituksia ihoonsa.</p><p>Mun Malmi -näyttely ripustetaan Malmitalon taakse rakennustyömaan aitaan. Kuvat ja tekstit ovat esillä puistoremontin ajan eli noin vuoden. Näyttely on Malmitalon ja Helsingin kaupunginkanslian aluerakentamisen yksikön yhteistuotanto.</p><p>Avajaisissa 9.12.2025 klo 17–19 on puuro- ja glögitarjoilu, tervetuloa!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Malm är inte detsamma för alla, utan mångsidigt, som en stad inom staden.</p><p>Stadsdelen växer hela tiden och är hem för 26 000 personer, men också en arbetsplats, genomfartsplats och även ett semestermål.</p><p>Tisdagen den 9 december 2025 kl. 17-19 öppnar fotoutställningen Mitt Malm framför Malms kulturhus. Fotokonstnären Anna Autio har tagit fotografierna och journalisten Kaisa Viitanen skrivit texterna. ”Utställningen är en hyllning till mångfalden i Malm. Varje person som valts till fotografierna har sin egen unika relation till Malm”, säger upphovspersonerna.</p><p>Veikko Halmetoja och Jussi Perämäki flyttade till Malm från Östra centrum. ”Många av våra vänner har haft fördomar mot Malm men de har blivit förtjusta när vi lyckats locka dem hit. Det är en överraskning för många att det också finns en sådan här grönskande höjd med trähus i Malm”, berättar konstgalleristen Halmetoja.</p><p>Den 13-åriga Jessika Ahonen är en Malmbo i fjärde generationen men hon har inte orkat prata med sina föräldrar under den senaste tiden. Lyckligtvis har hon hittat pålitliga vuxna på Malms ungdomsgård. Malm är inte ett hem för alla, men det kan ändå vara speciellt och kärt. Georgette Singbe tillbringade sex veckor i Malm i början av hösten 2025. Hon bodde i ett gästrum hos sin vän och besökte Malms simhall flera gånger. ”Kvinnor i alla åldrar simmade utan skam för sin kropp. Det skulle inte vara möjligt i mitt hemland Benin.”</p><p>Mirella Ablaoui lyssnar på Malmbor i sitt arbete, eftersom hon är den första receptionisten i Helsingfors kulturcentraler som är specialiserad på möten. ”Jag ser ensamhet i Malm. För många Malmbor är jag den enda människan som de pratar med under dagen.”</p><p>För 20 år sedan lekte Valari Tynkkynen med ett grafikprogram och skapade en rolig Malmversion av Miami Vice-logotypen. Tiotals Malmbor tatuerar Tynkkynens illustrationer på sin hud varje år. Utställningen Mitt Malm hängs upp på byggarbetsplatsens stängsel bakom Malms kulturhus.</p><p>Fotografierna och texterna finns utställda under renoveringen av parken, det vill säga i cirka ett år. Utställningen är en samproduktion mellan Malms kulturhus och Helsingfors stad. Vid vernissagen 9.12. kl 17–19  serveras gröt och glögg.</p>",
                "en": "<p>Malmi is not the same for everyone, it is diverse like a city within a city.</p><p>The ever-expanding district is home to 26,000 people, but it is also a place of work, transit and even a holiday destination.</p><p>On Tuesday 9 December 2025 at 5-7pm, a photography exhibition called Mun Malmi (My Malmi) will open in front of Cultural Centre Malmitalo. The photos were taken by Photographer Anna Autio, and the texts were written by Journalist Kaisa Viitanen. “The exhibition is a tribute to the diversity of Malmi. Each person selected for the pictures has a different relationship with Malmi,” the artists say.</p><p>Veikko Halmetoja and Jussi Perämäki moved to Malmi from Itäkeskus. “A lot of our friends have had preconceptions about Malmi, but once we got them here, they were ecstatic. It’s a surprise to many people that Malmi also has such a lush hill fill of wooden houses,” says art gallery owner Halmetoja.</p><p>Jessika Ahonen, 13, is a fourth generation Malmi native, but she hasn’t been able to talk to her parents lately. Fortunately, she has found trustworthy adults at the Malmi Youth Centre. Not everyone calls Malmi home, but it can still be a special place for them.</p><p>Georgette Singbe spent six weeks in Malmi in early autumn 2025. She lived in a friend’s guest room and visited the Malmi swimming hall many times. “Women of all ages swam without body shame. In my home country of Benin that would not be possible.”</p><p>Mirella Ablaoui listens to the people of Malmi for a living, as she is the first receptionist specialising in encounters in Helsinki’s cultural centres. “I see loneliness in Malmi. For many people in Malmi, I am the only person they talk to during the day.”</p><p>Twenty years ago, Valari Tynkkynen played with graphics software to create a cheeky version of the Miami Vice logo. Every year, dozens of Malmi residents have Tynkkynen’s illustrations tattooed on their skin.</p><p>The ‘Mun Malmi’ exhibition will be hung on the construction site fence behind Cultural Centre Malmitalo. The photos and texts will be on display during the renovation of the park, i.e. for about a year. The exhibition is a co-production between Cultural Centre Malmitalo and the City of Helsinki.</p><p>Porridge and glogg will be served at the opening ceremony 9.12 at 17-19.</p>"
            },
            "name": {
                "fi": "Mun Malmi-valokuvanäyttely – Anna Autio & Kaisa Viitanen",
                "sv": "Mun Malmi (Mitt Malmi) fotoutställning – Anna Autio & Kaisa Viitanen",
                "en": "Mun Malmi (My Malmi) photo exhibition – Anna Autio & Kaisa Viitanen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67650/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67139",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491043,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T13:13:36.219471Z",
                    "last_modified_time": "2025-10-08T13:13:36.219485Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777708.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491043/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-08T13:13:36.138765Z",
            "last_modified_time": "2025-11-28T12:13:01.178759Z",
            "date_published": null,
            "start_time": "2025-11-29T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Esitys on valitettavasti jouduttu perumaan loukkaantumisen vuoksi.",
                "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.",
                "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3784DD1C329CCE946F7B1CC20ED58385/PERUTTU_Kinetic_Orchestra_Working_Class_Heroes_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3784DD1C329CCE946F7B1CC20ED58385/INSTALLT_Kinetic_Orchestra_Working_Class_Heroes_",
                "en": "http://www.stoa.fi/en/events/event/3784DD1C329CCE946F7B1CC20ED58385/CANCELLED_Kinetic_Orchestra_Working_Class_Heroes_"
            },
            "description": {
                "fi": "<p>Esitys on valitettavasti jouduttu perumaan loukkaantumisen vuoksi.</p><p>Lippurahojen palautusohje lippu.fi:stä:</p><p>\"Hyvä asiakas,</p><p>Tapahtuma Kinetic Orchestra: Working Class Heroes pe 28.11. ja la 29.11. KLO 18.00 on peruttu loukkaantumisen vuoksi.<br>Voitte hakea lippurahojenne palautusta 1.12. KLO 17.00 mennessä osoitteessa: https://web.lippu.fi/palautus/</p><p>Mikäli haluat vaihtaa lippusi toiseen ti 2.12. KLO 18.00 tai ke 3.12. KLO 18.00 -esitykseen, ole yhteydessä lippu.fin asiakaspalveluun 0600 900 900 (ma-la 9-19, su 12-16. Puhelun hinta 2€/alk.min + mpm/pvm. Jonotuksesta peritään normaali puhelumaksu oman liittymäsopimuksen mukaisesti.\"</p><p>---</p><p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Boudine, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!  <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811521/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Boudine, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. 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 <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811521/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Boudine, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. 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/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811521/?affiliate=FSF\">HERE</a></u></p>"
            },
            "name": {
                "fi": "PERUTTU Kinetic Orchestra: Working Class Heroes",
                "sv": "INSTÄLLT Kinetic Orchestra: Working Class Heroes",
                "en": "CANCELLED Kinetic Orchestra: Working Class Heroes"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67139/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}