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

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

{
    "meta": {
        "count": 26371,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=79",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=77"
    },
    "data": [
        {
            "id": "espoo_le:agmmnttore",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:25.595952Z",
            "last_modified_time": "2025-09-04T11:32:13.146177Z",
            "date_published": null,
            "start_time": "2025-10-28T10:00:00Z",
            "end_time": "2025-10-28T11: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttore/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttnt4",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:25.465093Z",
            "last_modified_time": "2025-09-04T11:32:13.104801Z",
            "date_published": null,
            "start_time": "2025-10-21T09:00:00Z",
            "end_time": "2025-10-21T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttnt4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttmum",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:25.347570Z",
            "last_modified_time": "2025-09-04T11:32:13.065846Z",
            "date_published": null,
            "start_time": "2025-10-14T09:00:00Z",
            "end_time": "2025-10-14T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttmum/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttlvi",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:25.232055Z",
            "last_modified_time": "2025-09-04T11:32:13.025318Z",
            "date_published": null,
            "start_time": "2025-10-07T09:00:00Z",
            "end_time": "2025-10-07T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttlvi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttkxa",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:25.115772Z",
            "last_modified_time": "2025-09-04T11:32:12.979563Z",
            "date_published": null,
            "start_time": "2025-09-30T09:00:00Z",
            "end_time": "2025-09-30T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttkxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttjwu",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:24.998660Z",
            "last_modified_time": "2025-09-04T11:32:12.934108Z",
            "date_published": null,
            "start_time": "2025-09-23T09:00:00Z",
            "end_time": "2025-09-23T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttjwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmnttivu",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:24.805793Z",
            "last_modified_time": "2025-09-04T11:32:12.889248Z",
            "date_published": null,
            "start_time": "2025-09-16T09:00:00Z",
            "end_time": "2025-09-16T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttivu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmntthxe",
            "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/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:24.641261Z",
            "last_modified_time": "2025-09-04T11:32:12.845484Z",
            "date_published": null,
            "start_time": "2025-09-09T09:00:00Z",
            "end_time": "2025-09-09T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Joululahjavinkkejä</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Julklappsrekommendationer</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Christmas gift recommendations</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntthxe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66410",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "sv": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "en": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.296490Z",
                    "last_modified_time": "2025-07-10T14:13:03.296502Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774102.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227260/?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-07-10T14:13:03.245419Z",
            "last_modified_time": "2025-09-04T11:14:23.485582Z",
            "date_published": null,
            "start_time": "2025-11-22T08: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!",
                "sv": "Den omåttligt populära barnmusikgruppen Henna och superhjältarna framför ny rytmbaserad barnmusik!",
                "en": "The hugely popular children's music group Henna ja Supersankarit perform new rhythm-based children's music."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CBE8877B5B813BD9810E44D22848B06F/Henna_och_superhjaltarna",
                "en": "http://www.malmitalo.fi/en/events/event/CBE8877B5B813BD9810E44D22848B06F/Henna_and_Superheroes_"
            },
            "name": {
                "fi": "Henna ja Supersankarit",
                "sv": "Henna och superhjältarna",
                "en": "Henna and Superheroes"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!</p><p>Hennan ja Supersankareiden musiikki innostaa kaikenikäiset kuulijat lauluun, tanssiin, leikkiin ja nauruun! Konserteissa on voimassa voimakas Hyväntuulen varoitus!</p><p>Riemukkaassa Malmitalon lastenkonsertissa matkustetaan Ystävyyden saarelle, jossa juhlitaan ystävyyttä sekä ihanaa luontoa.</p><p>Yhtyeen kappaleita pääsee joraamaan mm. Spotifystä sekä Henna ja Supersankareiden Youtube-kanavalta, joka on kerännyt lyhyessä ajassa yli 100 000 katselukertaa!  <br>Henna ja Supersankareiden lauluja on voinut kuulla Pikku Kakkosen televisioiduissa lastenkonserteissa sekä Yle Areenasta löytyvistä musiikkipodcasteista!</p><p>Yhtye on ollut ehdolla Lastenmusiikin Jellonagaalassa useissa kategorioissa: Vuoden Tulokas, Vuoden Yhtye, Vuoden Lastenmusiikkialbumi, Vuoden Lastenlaulu ja Vuoden Lastenmusiikintekijä!</p><p><b>Malmitalolla lavalle nousevat:</b><br>Henna-Maija Kuki, laulu ja harmonikka <br>Susanna Lukkarinen, taustalaulu ja piano  <br>Alina Kivivuori, taustalaulu ja viulu <br>Teemu Keränen, basso <br>Teemu Eronen, rummut</p><p>Kesto: n. 35 min</p>",
                "sv": "<p>Den omåttligt populära barnmusikgruppen Henna och superhjältarna framför ny rytmbaserad barnmusik!</p><p>Henna och superhjältarnas musik inspirerar lyssnare i alla åldrar till sång, dans, lek och skratt! Konserterna har en stark varning för gott humör!</p><p>På den glada barnkonserten i Malms kulturhus reser vi till Vänskapsön, där vi hyllar vänskap och naturens skönhet.</p><p>Du kan lyssna på bandets låtar på Spotify och Henna och superhjältarnas Youtube-kanal, som på kort tid har haft över 100 000 visningar!  <br>Henna och superhjältarnas sånger har kunnat höras i barnkonserterna som sänts i Pikku Kakkonen och i musikpodcasterna som finns på Yle Arenan.</p><p>Bandet har nominerats i flera kategorier i barnmusik på Jellonagalan: Årets nykomling, Årets band, Årets barnmusikalbum, Årets barnlåt och Årets barnmusikskapare!</p><p><b>På scenen i Malms kulturhus uppträder:</b><br>Henna-Maija Kuki, sång och dragspel <br>Susanna Lukkarinen, bakgrundssång och piano  <br>Alina Kivivuori, bakgrundssång och violin <br>Teemu Keränen, kontrabas <br>Teemu Eronen, trummor</p>",
                "en": "<p>The hugely popular children's music group Henna ja Supersankarit perform new rhythm-based children's music.</p><p>Henna and Supersankarit's music inspires listeners of all ages to sing, dance, play and laugh. A strong Good Mood Warning is in effect at the concerts!</p><p>In the joyful children's concert at Malmitalo, the audience will travel to the Island of Friendship, where friendships and wonderful nature are celebrated.</p><p>The band's songs can be danced to on Spotify and on Henna ja Supersankarit's YouTube channel, which has gathered over 100,000 views in a short time!  <br>Henna ja Supersankarit's songs have also been heard in televised children's concerts on Pikku Kakkonen and music podcasts available on Yle Areena.</p><p>The band have been nominated in several categories at the Jellona gala for children's music: Newcomer of the Year, Band of the Year, Children's Music Album of the Year, Children's Song of the Year and Children's Music Creator of the Year!</p><p><b>On stage at Malmitalo:</b><br>Henna-Maija Kuki: vocals and accordion <br>Susanna Lukkarinen: background vocals and piano  <br>Alina Kivivuori: background vocals and violin <br>Teemu Keränen: bass <br>Teemu Eronen: drums</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66073",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "29,90 € / 24,80 €",
                        "sv": "29,90 € / 24,80 €",
                        "en": "29,90 € / 24,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "sv": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "en": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.082209Z",
                    "last_modified_time": "2025-07-10T14:13:03.082221Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T14:13:03.009351Z",
            "last_modified_time": "2025-09-04T11:14:23.294476Z",
            "date_published": null,
            "start_time": "2025-11-21T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.",
                "sv": "De hyllade låtskrivarna Topi Saha och Ylva Haru återförenas i den intima och unika gemensamma turnén Kipinöitä II.",
                "en": "Renowned songwriters Topi Saha and Ylva Haru are joining forces again for the intimate and unique Kipinöitä II co-tour."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_och_Ylva_Haru_Kipinoita_II_",
                "en": "http://www.malmitalo.fi/en/events/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_"
            },
            "name": {
                "fi": "Topi Saha & Ylva Haru: Kipinöitä II",
                "sv": "Topi Saha och Ylva Haru: Kipinöitä II",
                "en": "Topi Saha & Ylva Haru: Kipinöitä II"
            },
            "description": {
                "fi": "<p>Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.</p><p>Tarina saa jatkoa viiden vuoden takaisesta Kipinöitä-konseptista, jossa taiteilijat esittivät yhdessä toistensa kappaleita duettomuodossa.</p><p>Tulevilla keikoilla kuullaan taiteilijoiden omaa tuotantoa – uutta ja vanhaa – yksin ja yhdessä: illan aikana on luvassa niin uudet soolokattaukset kuin myöskin duettomuotoinen yhteissetti, jossa lauluntekijät esittävät vanhojen suosikkien lisäksi ennen kuulemattomia lauluja tulevilta albumeiltaan.</p><p>”Ylva Haru on paitsi lempilauluntekijäni myös rakas ystäväni. Muutama vuosi sitten aloitimme yhteiskiertueen, jonka pandemia harmillisesti katkaisi. Tuolloin löysimme nopeasti yhteisen sävelen, ja on ihanaa viimein jatkaa siitä mihin jäimme”, kertoo Topi Saha.</p><p>”On suuri ilo saada jälleen soida rakkaan ja lahjakkaan ystäväni kanssa! Topi on kuin sielunveli, niin ihmisenä kuin myös soitannollisesti ja laulullisesti. Tuntuu antoisalta ja luontevalta jatkaa kappaleiden versioimista yhdessä”, kommentoi Ylva Haru.</p><p>Topi Sahan musiikkia on kuvailtu haikeaksi, kaihoisaksi ja surumieliseksi. Omasta mielestään hän on väärinymmärretty humoristi. Sahan odotettu viides sooloalbumi <i>Öitä</i> ilmestyi tammikuussa 2025.</p><p>Vahvoista melodioista ja pohtivista, runomaisista teksteistä kiitelty Ylva Haru työstää parhaillaan uutta albumia. Intiimeillä keikoilla on mahdollisuus päästä syvemmälle herkän ytimen ääreen, kun laulut soivat kaikkein riisutuimmassa muodossa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>De hyllade låtskrivarna Topi Saha och Ylva Haru återförenas i den intima och unika gemensamma turnén Kipinöitä II.</p><p>Berättelserna i konceptet Kipinöitä fem år sedan, där konstnärerna tillsammans framförde varandras låtar i duettformfrån, får en fortsättning.</p><p>På de kommande spelningarna får vi höra konstnärernas egen produktion – nytt och gammalt – ensamma och tillsammans. Under kvällen utlovas både nya solon och ett gemensamt duettset där låtskrivarna förutom gamla favoriter framför ohörda låtar från sina kommande album.</p><p>”Ylva Haru är inte bara min favoritlåtskrivare utan också en kär vän. För några år sedan inledde vi en gemensam turné, som tyvärr avbröts av pandemin. Vi hittade snabbt en gemensam melodi då, och det är fantastiskt att äntligen få fortsätta där vi slutade”, säger Topi Saha.</p><p>”Det är ett stort nöje att få spela med min kära och begåvade vän igen! Topi är som en själsfrände, både som människa och när det gäller hans musik och sång. Det känns givande och naturligt att fortsätta att arbeta med versioner av låtarna tillsammans”, säger Ylva Haru.</p><p>Topi Sahas musik har beskrivits som längtansfull, vemodig och sorglig. Enligt min uppfattning är han en missförstådd humorist. Sahas efterlängtade femte soloalbum <i>Öitä</i> släpptes i januari 2025.</p><p>Ylva Haru, som hyllas för sina starka melodier och reflekterande, poetiska texter, arbetar för närvarande på ett nytt album. De intima spelningarna är en chans att komma djupare in i den känsliga kärnan, när sångerna hörs i sin mest avskalade form.</p><p>Längd: 2 timmar inklusive paus 20 minuter</p>",
                "en": "<p>Renowned songwriters Topi Saha and Ylva Haru are joining forces again for the intimate and unique Kipinöitä II co-tour.</p><p>The story continues from the Kipinöitä concept five years ago, where the artists performed each other's songs as duets.</p><p>At the upcoming shows, audiences will hear the artists' own work – both new and old – performed solo and together: the evening will feature new solo sets as well as a duet set, where the songwriters perform both old favourites as well as previously unheard songs from their upcoming albums.</p><p>\"Ylva Haru is not only my favourite songwriter but also a dear friend. A few years ago, we started a joint tour, which was unfortunately interrupted by the pandemic. At that time, we quickly found common ground, and it is wonderful to finally continue from where we left off,\" says Topi Saha.</p><p>\"It is a great pleasure to play again with my dear and talented friend! Topi is like a soulmate, both as a person and musically and vocally. It feels rewarding and natural to continue interpreting songs together,\" says Ylva Haru.</p><p>Topi Saha's music has been described as wistful and melancholic. In his own view, he is a misunderstood humourist. Saha's highly anticipated fifth solo album Öitä was released in January 2025.</p><p>Praised for her strong melodies and reflective, poetic lyrics, Ylva Haru is currently working on a new album. The intimate concerts provide an opportunity to get closer to the sensitive core, as the songs are performed in their most stripped-down form.</p><p>Duration: 2 hours, incl. a 20-min intermission</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66409",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170048,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T07:22:42.389801Z",
                    "last_modified_time": "2025-07-03T07:22:42.389817Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774100.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170048/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2025-07-03T07:22:42.246101Z",
            "last_modified_time": "2025-09-04T11:14:22.239512Z",
            "date_published": null,
            "start_time": "2025-11-18T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nuoren sisäisen maailman raivoa ja rakkauden kaipuuta kuvaava Uhma on ravisteleva draama uusioperheessään kipuilevasta Vilmasta (Ona Huczkowski), joka päätyy nuorisokotiin.",
                "sv": "Uhma, som skildrar den ungas inre värld av raseri och längtan efter kärlek, är ett omskakande drama om bonusfamiljens smärtfyllda Vilma (Ona Huczkowski), som hamnar på ett ungdomshem.",
                "en": "Defiant is a gripping drama about the inner fury and longing for love of Vilma (Ona Huczkowski), a troubled teen from a blended family who ends up in a youth home."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/494A6499F4693415CCDC48DA2F63EEA9/Jassari-leffa_Uhma_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/494A6499F4693415CCDC48DA2F63EEA9/Jassari-film_Uhma_12_",
                "en": "http://www.malmitalo.fi/en/events/event/494A6499F4693415CCDC48DA2F63EEA9/Jassari_Film_Defiant_12_"
            },
            "name": {
                "fi": "Jässäri-leffa: Uhma (12) – Valtuusto 150v",
                "sv": "Jässäri-film: Uhma (12) – Valtuusto 150v",
                "en": "Jässäri Film: Defiant (12) – Valtuusto 150v"
            },
            "description": {
                "fi": "<p>Nuoren sisäisen maailman raivoa ja rakkauden kaipuuta kuvaava Uhma on ravisteleva draama uusioperheessään kipuilevasta Vilmasta (Ona Huczkowski), joka päätyy nuorisokotiin.</p><p>Laitosta johtaa ankaraotteinen henkilökunta (mm. Kati Outinen), jonka mielivaltaisen kohtelun nujertamaksi sisukas Vilma ei suostu. Löytyykö muuta ratkaisua kuin ottaa hatkat, ja kuka on lopulta luottamuksen arvoinen? Elokuva ammentaa yksittäisten nuorten tosipohjaisista tarinoista.</p><p>Elokuvanäytös on suunnattu ainoastaan yli 12-vuotiaille nuorille, joilla on Jässäri-kortti.</p><p>Kesto: 1 t 33 min<br>Ikäraja: 12</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!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296574/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Uhma, som skildrar den ungas inre värld av raseri och längtan efter kärlek, är ett omskakande drama om bonusfamiljens smärtfyllda Vilma (Ona Huczkowski), som hamnar på ett ungdomshem.</p><p>Inrättningen leds av en sträng personal (bl.a. Kati Outinen) med egenmäktiga och stränga metoder som tuffa Vilma vägrar att låta sig kuvas av. Finns det någon annan lösning än att rymma, och vem är egentligen värd ens förtroende? Filmen bygger på enskilda ungdomars berättelser från verkliga livet.</p><p>Filmvisningen riktar sig endast till ungdomar över 12 år som har Jässari-kortet.</p><p>Längd: 1 timme 33 minuter<br>Åldersgräns: 12<br><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! <br>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296574/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Defiant is a gripping drama about the inner fury and longing for love of Vilma (Ona Huczkowski), a troubled teen from a blended family who ends up in a youth home.</p><p>The institution is run by strict staff (including Kati Outinen), whose arbitrary treatment the feisty Vilma refuses to submit to. Is there any solution other than running away, and who can ultimately be trusted? The film draws from real-life stories of individual young people.</p><p>The screening is only intended for young people over 12 years of age who have a Jässäri card.</p><p>Duration: 1 hour 33 min<br>Age limit: 12<br><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/helsingin-kaupunki-nuorisolippu-malmitalo-20296574/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66409/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmri6xssu",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490632,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-04T10:22:02.781092Z",
                    "last_modified_time": "2025-09-04T10:22:02.781114Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f1594e20-3c04-40c2-84cb-b579ccf5154f.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "Osallisuuskuva jossa erilaisia ihmisiä kohtaa toisiaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-04T10:27:38.036450Z",
            "last_modified_time": "2025-09-04T10:28:31.190076Z",
            "date_published": null,
            "start_time": "2025-09-10T13:15:00Z",
            "end_time": "2025-09-10T14:45: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan Espoon kaupungin asukasosallisuudesta vastaavan Marianne Sepposen kanssa osallistumisesta, kuulluksi tulemisesta ja yhteisöllisyydestä"
            },
            "info_url": null,
            "name": {
                "fi": " Kaupunki tavattavissa – keskustelua osallisuudesta ja tukea toiminta- ja liikkumisesteisten tarpeita koskevaan digitaaliseen keskusteluun osallistumiseen"
            },
            "description": {
                "fi": "Kaupunki tavattavissa – keskustelua osallisuudesta ja tukea toiminta-ja liikkumisesteisten tarpeita koskevaan digitaaliseen keskusteluun osallistumiseen<p><br></p><p><strong>Tervetuloa Entressen kirjastoon 10.9.2025 klo 16.15-17.45 Ryhmätyötila Aistiin </strong>keskustelemaan Espoon kaupungin asukasosallisuudesta vastaavan <strong>Marianne Sepposen</strong> kanssa mistä tahansa osallistumiseen, kuulluksi tulemiseen ja yhteisöllisyyteen liittyvästä asiasta. Tilaisuuden aikana on mahdollista osallistua avustetusti ja/tai kaupungin laitteella toiminta- ja liikkumisesteisten hyvinvointia koskevaan sähköiseen keskusteluun, jos itsellä ei ole mahdollisuutta tai osaamista osallistua.&nbsp;</p><p>Tilaisuudessa puhutaan suomea tai englantia.</p>"
            },
            "location_extra_info": {
                "fi": "Ryhmätyötila Aisti"
            },
            "provider": {
                "fi": "Espoon kaupunki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmri6xssu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65966",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmijazz-aki-rissanen-trio-malmitalo-20120688/",
                        "sv": "https://www.lippu.fi/event/malmijazz-aki-rissanen-trio-malmitalo-20120688/",
                        "en": "https://www.lippu.fi/event/malmijazz-aki-rissanen-trio-malmitalo-20120688/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154485,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:47.479192Z",
                    "last_modified_time": "2025-07-01T08:13:47.479209Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769562.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:47.358755Z",
            "last_modified_time": "2025-09-04T10:14:14.553179Z",
            "date_published": null,
            "start_time": "2025-11-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Omaleimainen ja palkittu Aki Rissanen Trio on yksi maamme menestyneimmistä jazzyhtyeistä.",
                "sv": "Den särpräglade och prisbelönta Aki Rissanen Trio är ett av vårt lands mest framgångsrika jazzband.",
                "en": "The distinctive and award-winning Aki Rissanen Trio are one of Finland's most successful jazz ensembles."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFBF43E41943C03D002C89847184B5B2/Aki_Rissanen_Trio_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EFBF43E41943C03D002C89847184B5B2/Aki_Rissanen_Trio_",
                "en": "http://www.malmitalo.fi/en/events/event/EFBF43E41943C03D002C89847184B5B2/Aki_Rissanen_Trio_"
            },
            "name": {
                "fi": "Aki Rissanen Trio – MalmiJazz",
                "sv": "Aki Rissanen Trio – MalmiJazz",
                "en": "Aki Rissanen Trio – MalmiJazz"
            },
            "description": {
                "fi": "<p>Omaleimainen ja palkittu Aki Rissanen Trio on yksi maamme menestyneimmistä jazzyhtyeistä.</p><p>Brittiläisen Edition Recordsin julkaisemat neljä levyä (Amorandom, 2016; Another North, 2017; Art In Motion,  2019 ja Trio Live, 2022) ovat olleet vahva voimannäyttö yhtyeen kyvyistä ja tuoneet pianisti Aki Rissaselle kansainvälisen läpimurron. Debyyttilevy Amorandom voitti parhaan jazzlevyn Emma-palkinnon vuonna 2017, ja Art In Motion valittiin Helsingin Sanomien kahden parhaan jazzlevyn joukkoon ja sai Editor’s Pick maininnan Yhdysvaltojen merkittävimmässä jazzlehdessä Downbeatissa vuonna 2019. <br> <br>Nyt uuden levyn myötä ja kolmen vuoden tauon jälkeen keikoille palaa entistä vahvemmin yhteen hitsautunut trio, jonka soittoa on kuvailtu omaleimaisen erottuvaksi ja kunnianhimoiseksi. Rissasen oma tuntemus vahvistaa arviot: “Uuden materiaalin harjoittelu on osoittanut, että soundimme erottuu entistä enemmän muista yhtyeistä. Vaikka trio kantaakin nimeäni, Antin ja Tepon panos soundiin on ollut merkittävä. On mahtava huomata, että bändillä on aina jotakin uutta sanottavaa.” <br> <br>Trion uusin levy Imaginary Mountains julkaistaan kesäkuussa 2025. <br> <br><b>Kokoonpano </b><br>Aki Rissanen, piano <br>Antti Lötjönen, basso <br>Teppo Mäkynen, rummut <br> <br>Kesto: 1 h 40 min, sis. 20 min väliajan</p>",
                "sv": "<p>Den särpräglade och prisbelönta Aki Rissanen Trio är ett av vårt lands mest framgångsrika jazzband.</p><p>De fyra album som släppts av det brittiska skivbolaget Edition Records (Amorandom, 2016; Another North, 2017; Art In Motion, 2019 och Trio Live, 2022) har varit en stark uppvisning av bandets talanger och har gett pianisten Aki Rissanen ett internationellt genombrott. Hans debutalbum Amorandom vann Emma Award för bästa jazzalbum 2017, Art In Motion valdes som ett av de två bästa jazzalbumen av Helsingin Sanomat och han fick en Editor's Pick i Downbeat 2019, en av de viktigaste amerikanska jazztidskrifterna. <br> <br>Nu, med den nya skivan och efter ett uppehåll på tre år, återvänder en ännu starkare <br>sammansvetsad trio, vars spelningar har beskrivits som särpräglade och <br>ambitiösa. Rissanens egen känslor bekräftar recensionerna: ”Övningarna i det nya materialet har visat att vårt sound allt mer skiljer sig från andra band. Även om trion bär mitt namn har Antti och Tepos bidrag till soundet varit betydande. Det är fantastiskt att se att bandet alltid har något nytt att säga.” <br> <br>Trions senaste album Imaginary Mountains släpptes i juni 2025. <br> <br><b>Sammansättning: </b><br>Aki Rissanen, piano <br>Antti Lötjönen, kontrabas <br>Teppo Mäkynen, trummor <br> <br>Längd: 1 timme 40 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>The distinctive and award-winning Aki Rissanen Trio are one of Finland's most successful jazz ensembles.</p><p>The four albums released by the British label Edition Records (Amorandom, 2016; Another North, 2017; Art In Motion, 2019; and Trio Live, 2022) have been a powerful showcase of the trio's talent and have led pianist Aki Rissanen to an international breakthrough. The debut album Amorandom won the Emma Award for Best Jazz Album in 2017, while Art In Motion was selected as one of the two best jazz albums by Helsingin Sanomat and received an Editor's Pick mention in the most prominent US jazz magazine, Downbeat, in 2019. <br> <br>Now, with a new album and after a three-year break, the tight-knit trio, whose playing has been described as uniquely distinctive and ambitious, <br>return to the stage <br>stronger than ever. Rissanen's own thoughts confirm the assessments: \"Rehearsing the new material has shown that our sound stands out more than ever from other bands. Even though the trio bears my name, Antti's and Teppo's contribution to the sound has been significant. It is amazing to see that the band always has something new to say.\" <br> <br>The trio's latest album, Imaginary Mountains, will be released in June 2025. <br> <br><b>Line-up: </b><br>Aki Rissanen: piano <br>Antti Lötjönen: bass <br>Teppo Mäkynen: drums<br> <br>Duration: 1 hour 40 min, incl. a 20-min intermission</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65966/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66124",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20€ / 15 €",
                        "sv": "20€ / 15 €",
                        "en": "20€ / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmijazz-etnosoi-trio-raulin-fr-bekkas-mar-biayenda-cg-malmitalo-20243041/",
                        "sv": "https://www.lippu.fi/event/malmijazz-etnosoi-trio-raulin-fr-bekkas-mar-biayenda-cg-malmitalo-20243041/",
                        "en": "https://www.lippu.fi/event/malmijazz-etnosoi-trio-raulin-fr-bekkas-mar-biayenda-cg-malmitalo-20243041/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154484,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:46.535276Z",
                    "last_modified_time": "2025-07-01T08:13:46.535292Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772217.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154484/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:46.377647Z",
            "last_modified_time": "2025-09-04T10:14:12.695567Z",
            "date_published": null,
            "start_time": "2025-11-03T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jazzin, gnawan ja Keski-Afrikan vastustamaton fuusio.",
                "sv": "En oemotståndlig fusion av jazz, gnawa och Centralafrika.",
                "en": "An irresistible fusion of jazz, Gnawa and Central African music."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F72B29101EF77A33C7816C4BE69B75AE/Trio_Raulin_-_Bekkas_-_Biayenda_FR-MAR-CG_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F72B29101EF77A33C7816C4BE69B75AE/Trio_Raulin_-_Bekkas_-_Biayenda_FR-MAR-CG_",
                "en": "http://www.malmitalo.fi/en/events/event/F72B29101EF77A33C7816C4BE69B75AE/Trio_Raulin_-_Bekkas_-_Biayenda_FR-MAR-CG_"
            },
            "name": {
                "fi": "Trio Raulin - Bekkas - Biayenda (FR-MAR-CG) – MalmiJazz & Etnosoi!",
                "sv": "Trio Raulin - Bekkas - Biayenda (FR-MAR-CG) – MalmiJazz & Etnosoi!",
                "en": "Trio Raulin - Bekkas - Biayenda (FR-MAR-CG) – MalmiJazz & Etnosoi!"
            },
            "description": {
                "fi": "<p>Jazzin, gnawan ja Keski-Afrikan vastustamaton fuusio.</p><p>Malmisalin Lavalle astuu kolme mestaria, jotka yhdistävät voimansa tutkiskelemalla yhteisiä kulttuuripiirteitään ja leikkimällä taustojensa eroilla. Tämän veljeskunnan käsissä jazzpianismi tanssittaa moninaisin kuvioin, hypnoottinen gnawa-transsi hurmaa laulullaan ja guembri-bassollaan ja Kongon polyrytmisestä perinteestä vapautuu vastustamaton syke.</p><p>Trio Raulin-Bekkas-Biayenda sai alkunsa 2018 Ranskassa arvostetulla Les détours de Babel -festivaalilla ja on sen jälkeen menestyksekkäästi kiertänyt Keski-Eurooppaa ja Marokkoa.</p><p>Pianisti-säveltäjä Francois Raulin (1956) on pitkän linjan muusikko, joka on ollut mukana vaikuttamassa uuden ranskalaisen jazz-skenen syntyyn 80-luvulla. Ranskan Alpeilta kotoisin oleva Raulin tuli tunnetuksi yhteistyöstään klarinetisti Louis Sclavisin kanssa, jonka kanssa kiersi ahkerasti Eurooppaa. Hän on yksi Grenoblessa sijaitsevan La Forge -muusikoiden kollektiivin perustajajäsen. Raulin on hionut kykyään yhdistää jazz ja improvisaatio kansanmusiikkiin, nykymusiikkivaikutteita unohtamatta, luodakseen vaikuttavia poikkitaiteellisia projekteja elokuvan, teatterin ja sarjakuvan kanssa. Lähes kaikilla mantereilla esiintynyt pianisti on vuosien varrella kehittänyt oman suhteen afrikkalaiseen musiikkiin.</p><p>Marokkolainen Majid Bekkas (s. 1957) on guembrin taitaja. Guembri on pitkäkaulainen, kolmikielinen bassoluuttu, jota orjien jälkeläisistä polveutuvat pohjoisafrikkalaiset gnawat käyttävät usein omassa spirituaalisessa musiikissaan ja seremonioissaan. Perinteen ja modernin puolessa välissä Bekkas yhdistelee gnawa-musiikkia ja afro-amerikkalaista bluesia. Hän on myös Rabatin konservatorion opettaja ja Festival Jazz au Chellah de Rabatin taiteellinen johtaja vuodesta 1996. Tämä monipuolinen taiteilija sai arabiankielisen kulttuurin tärkeimpiin palkintoihin kuuluvan Al Farabi -palkinnon vuoden 2010 lopussa. Bekkas teki näyttävän Suomen debyyttinsä Tampere Jazz Happeningissa 2021 Magic Spirit Quartetin kanssa, jossa hänen lisäkseen soittavat tanskalainen rumpali Stefan Pasborg , ruotsalainen kosketinsoittaja Jesper Nordenström ja ruotsalainen trumpetisti Goran Kajfeš.</p><p>Kongon Brazzavillessä syntynyt rumpali, lyömäsoittaja ja säveltäjä Emile Biayenda perusti vuonna 1991 Brazzavillen kaupunginosien nuorille kongolaisille suunnatun koulutustyöpajan, josta sai alkunsa kuuluisa yhtye Les tambours de Brazza. Hän on sovittanut perinteisiä ngoma-rummun rytmejä sekä B’aaaka-pygmien perinnettä omaan persoonalliseen soittoonsa. Hän on kiertänyt ympäri maailmaa ja tehnyt levytyksiä joillekin Afrikan johtaville pop-artisteille, kuten Ray Lema, Rokia Traoré.... Biayenda on asunut Ranskassa vuodesta 1993 lähtien ja soittanut lukuisten eri artistien kanssa. Hän on yhtä lailla kotonaan afrikkalaisessa perinteessä kuin eurooppalaisessa improvisoidussa musiikissa. Hän on aiemmin kiertänyt Suomea pianisti Benoît Delbecqin triossa vuosina 2012 ja 2018 ja yhteistyö tämän arvostetun ranskalaispianistin kanssa kukoistaa edelleen.</p><p>Konsertin tuotanto: Malmitalo<br>Kiertueen tuotanto: Vapaat äänet, La Forge<br>Kiertuetta tukevat AJC, Spedidam<br>Yhteistyökumppani: Etnosoi!, Kumu drums</p><p>Kesto: 1 h 15 min</p>",
                "sv": "<p>En oemotståndlig fusion av jazz, gnawa och Centralafrika.</p><p>Tre mästare intar scenen i salen i Malms kulturhus och förenar sina krafter genom att utforska sina gemensamma kulturdrag och leka med skillnaderna i bakgrunderna. I händerna på detta brödraskap dansar jazzpianismen i många olika mönster, den hypnotiska gnawa-transen charmar med sin sång och guembri-bas och den kongolesiska polyrytmen frigör en oemotståndlig puls.<br>Trio Raulin–Bekkas–Biayenda fick sin början 2018 i Frankrike med den prestigefyllda festivalen Les détours de Babel och har sedan dess turnerat framgångsrikt i Centraleuropa och Marocko.</p><p>Pianisten och kompositören Francois Raulin (1956) är en väletablerad musiker som deltog i att påverka den nya franska jazzscenen på 1980-talet. Raulin, som kommer från de franska Alperna, blev känd för sitt samarbete med klarinettisten Louis Sclavis som han turnerade flitigt med i Europa. Han är en av grundarmedlemmarna av det Grenoble-baserade musikerkollektivet La Forge. Raulin har finslipat sin förmåga att kombinera jazz och improvisation med folkmusik, utan att glömma nutida musikinfluenser, för att skapa gripande tvärkonstnärliga projekt med film, teater och serier. Pianisten som uppträtt på nästan alla kontinenter har genom åren utvecklat ett eget förhållande till afrikansk musik.</p><p>Majid Bekkas (f. 1957) från Marocko är en guembri-konstnär. Guembri är en långhalsad, tresträngad basluta som nordafrikanska gnawaer, som härstammar från slavarnas ättlingar, ofta använder i sin egen spirituella musik och i ceremonier. Halvvägs mellan det traditionella och det moderna kombinerar Bekkas gnawamusik och afro-amerikansk blues. Han är också lärare vid konservatoriet i Rabat och har varit konstnärlig ledare för Festival Jazz au Chellah de Rabat sedan 1996. Denna mångsidiga konstnär tilldelades Al Farabi-priset, ett av de främsta priserna inom arabisk kultur, i slutet av 2010. Bekkas gjorde sin imponerade finländska debut i Tammerfors Jazz Happening 2021 med Magic Spirit Quartet, där han spelar tillsammans med trumslagaren Stefan Pasborg från Danmark samt keyboardisten Jesper Nordenström och Goran Kajfeš från Sverige.</p><p>Trumslagaren, slagverkaren och kompositören Emile Biayenda, född i Brazzaville i Kongo, grundade 1991 en utbildningsworkshop för unga kongoleser i stadsdelarna i Brazzaville, där det berömda bandet Les tambours de Brazza fick sin början. Han har anpassat traditionella ngoma-trumrytmer och B'aaaka-pygméernas tradition till sin egen personliga spelstil. Han har turnerat världen över och gjort skivinspelningar för några av Afrikas ledande popartister som Ray Lema, Rokia Traoré... Biayenda har bott i Frankrike sedan 1993 och har spelat med en mängd olika artister. Han känner sig lika hemma inom den afrikanska traditionen som inom den europeiska improvisationsmusiken. Han har tidigare turnerat i Finland med pianisten Benoît Delbecqs trio 2012 och 2018, och samarbetet med denna uppskattade franska pianist blomstrar fortsättningsvis.</p><p>Konsertproduktion: Malms kulturhus<br>Turnéproduktion: Vapaat äänet, La Forge<br>Turnén stöds av AJC, Spedidam<br>Samarbetspartner: Etnosoi!, Kumu drums</p>",
                "en": "<p>An irresistible fusion of jazz, Gnawa and Central African music.</p><p>Three masters take the stage at Malmisali, combining their strengths by exploring shared cultural traits and playfully contrasting their differing backgrounds. In the hands of this brotherhood, the jazz piano dances in intricate patterns, hypnotic Gnawa trance enchants with its singing and guembri bass, and the polyrhythmic tradition of Congo unleashes an irresistible beat.<br>The Raulin – Bekkas – Biayenda trio was formed in 2018 at the esteemed Les détours de Babel festival in France and has since toured successfully throughout Central Europe and Morocco.</p><p>Pianist-composer Francois Raulin (born 1956) is a seasoned musician who played a role in the emergence of the new French jazz scene in the 1980s. Originally from the French Alps, Raulin became known for his collaboration with clarinet player Louis Sclavis, with whom he toured extensively around Europe. He is one of the founding members of La Forge, a musicians' collective based in Grenoble. Raulin has refined his ability to blend jazz and improvisation with folk music, without forgetting contemporary music influences, to create impactful interdisciplinary projects involving film, theatre and comics. Having performed on nearly every continent, the pianist has developed a deep connection with African music over the years.</p><p>Majid Bekkas (b. 1957) is a Moroccan guembrist. The guembri is a long-necked, three-stringed bass lute often used by North African Gnawa, descendants of slaves, in their spiritual music and ceremonies. Straddling tradition and modernity, Bekkas blends Gnawa music with Afro-American blues. He is also a teacher at the Rabat Conservatory and has been the artistic director of the Festival Jazz au Chellah in Rabat since 1996. This versatile artist received the Al Farabi Award, one of the most prestigious honours in Arabic culture, at the end of 2010. Bekkas made an impressive Finnish debut at the Tampere Jazz Happening in 2021 with the Magic Spirit Quartet, which besides him included Danish drummer Stefan Pasborg, Swedish keyboardist Jesper Nordenström and Swedish trumpeter Goran Kajfeš.</p><p>Born in Brazzaville, Congo, drummer, percussionist and composer Emile Biayenda founded a workshop in 1991 aimed at young Congolese in the neighbourhoods of Brazzaville, which gave rise to the famous band Les tambours de Brazza. He has adapted traditional ngoma drum rhythms and the heritage of the B'aaaka Pygmies into his distinctive playing style. He has toured worldwide and recorded with some of Africa's leading pop artists, such as Ray Lema and Rokia Traoré... Biayenda has lived in France since 1993 and has played with a wide variety of artists. He is as much at home in the African tradition as in European improvised music. He previously toured Finland with pianist Benoît Delbecq's trio in 2012 and 2018, and his collaboration with this acclaimed French pianist continues to flourish.</p><p>Concert production: Malmitalo<br>Tour production: Vapaat äänet, La Forge<br>The tour is supported by AJC, Spedidam<br>Partner: Etnosoi!, Kumu drums</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66124/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65965",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "15 € / 20 €",
                        "sv": "15 € / 20 €",
                        "en": "15 € / 20 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421",
                        "en": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:13:59.299717Z",
                    "last_modified_time": "2025-07-01T12:13:59.299733Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769560.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:13:59.172659Z",
            "last_modified_time": "2025-09-04T10:14:10.849461Z",
            "date_published": null,
            "start_time": "2025-10-24T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Räjäyttäjät saapuvat uuden levyn saattelemana Malmitalolle!",
                "sv": "Räjäyttäjät anländer till Malms kulturhus med en ny skiva!",
                "en": "Räjäyttäjät arrive at Malmitalo with a new album in tow!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3527D353934FADD0C974E367A04F5448/Rajayttajat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3527D353934FADD0C974E367A04F5448/Rajayttajat",
                "en": "http://www.malmitalo.fi/en/events/event/3527D353934FADD0C974E367A04F5448/Rajayttajat"
            },
            "name": {
                "fi": "Räjäyttäjät – A la Malmi",
                "sv": "Räjäyttäjät – A la Malmi",
                "en": "Räjäyttäjät – A la Malmi"
            },
            "description": {
                "fi": "<p>Räjäyttäjät saapuvat uuden levyn saattelemana Malmitalolle!</p><p>Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan. Yli kymmenvuotisella urallaan yhtye on ansaitusti vakiinnuttanut paikkansa aikamme kotimaisen indieskenen kaanonissa. Räjä ’n’ rollia soittava yhtyeen ilmaisussa on juuri sopiva ripaus hölmöä tee-se-itse -tykittelyä, kunnon meininkiä sekä tarkkanäköisen rehellistä rokkia.</p><p>Jyväskylässä 2011 perustettu Räjäyttäjät julkaisi uuden pitkäsoiton 18.4.2025. Kyseessä on tupla-LP, jolla on kaikkien yhtyeen jäsenten eli Alex Reedin (rummut ja laulu), Mikko Siltasen (basso ja laulu) ja Jukka Nousiaisen (kitara ja laulu) tekemiä ja laulamia kappaleita. Skaala ulottuu psykedeelisestä folkista keskiaikaisen progen kautta mielipuolisen meluamiseen ja rokkaukseen.</p><p>Rock on ikuinen, uusi vesimiehen aika koittaa, kaikki kukat kukkivat, värit pärisevät!</p><p>Kesto: 1 t 20 min</p>",
                "sv": "<p>Räjäyttäjät anländer till Malms kulturhus med en ny skiva!</p><p>Trion Räjäyttäjät, som grundades i Jyväskylä 2011, har blivit kända för sina fartfyllda liveframträdanden och dånande rock på finska. Under sin över tio år långa karriär har bandet med rätta etablerat sig på vår tids inhemska indiescen. I bandets Räjä ’n’ roll finns precis en lagom touch av fånig gör-det-själv-bombardering, en ordentlig stämning och klarsynt ärlig rock.</p><p>Räjäyttäjät, som grundades i Jyväskylä 2011, släppte en ny lp-skiva den 18 april 2025. Det är en dubbel-LP med låtar som är skrivna och sjungs av samtliga bandmedlemmar: Alex Reed (trummor och sång), Mikko Siltanen (basgitarr och sång) och Jukka Nousiainen (gitarr och sång). Skalan sträcker sig från psykedelisk folk via medeltida proge till vanvettigt oväsen och rock.</p><p>Rocken är evig, den nya vattumannens tid är inne, alla blommor blommar, färgerna sprakar!</p><p>Längd: 1 timme 20 minuter</p>",
                "en": "<p>Räjäyttäjät arrive at Malmitalo with a new album in tow!</p><p>Formed in 2011 in Jyväskylä, this three-member band has become known for their high-energy live performances and Finnish-language hard rock. Over their decade-long career, they have rightfully cemented their place in the canon of contemporary Finnish indie. Playing what they call räjä'n'roll, the band's sound is a perfectly measured mix of goofy DIY firepower, solid attitude and sharp, honest rock.</p><p>Formed in Jyväskylä in 2011, Räjäyttäjät released a new full-length album on 18 April 2025. The double LP features songs written and sung by all three band members, i.e. Alex Reed (drums and vocals), Mikko Siltanen (bass and vocals) and Jukka Nousiainen (guitar and vocals). The musical range spans from psychedelic folk through medieval prog to insane noise and rock.</p><p>Rock is eternal, the new age of Aquarius is dawning, all flowers bloom and the colours are buzzing!</p><p>Duration: 1 hour 20 min</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65965/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65978",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117742/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117742/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117742/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T09:12:26.279634Z",
                    "last_modified_time": "2025-07-01T09:12:26.279648Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769578.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T09:12:26.218897Z",
            "last_modified_time": "2025-09-04T10:14:10.012812Z",
            "date_published": null,
            "start_time": "2025-10-22T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu Helsinki Blues Machinen keikalla!",
                "sv": "Den populära serien Roots-musiikin evoluutio i Malms kulturhus fortsätter i spelningen Helsinki Blues Machine!",
                "en": "Malmitalo's popular Roots Music Evolution series continues with Helsinki Blues Machine's gig!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E95B9C02933BD01D0307B7AA9EC3298/Helsinki_Blues_Machine",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E95B9C02933BD01D0307B7AA9EC3298/Helsinki_Blues_Machine",
                "en": "http://www.malmitalo.fi/en/events/event/7E95B9C02933BD01D0307B7AA9EC3298/Helsinki_Blues_Machine"
            },
            "name": {
                "fi": "Helsinki Blues Machine – Roots-musiikin evoluutio vol. 12",
                "sv": "Helsinki Blues Machine – Roots-musiikin evoluutio vol. 12",
                "en": "Helsinki Blues Machine – Roots-musiikin evoluutio vol. 12"
            },
            "description": {
                "fi": "<p>Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu Helsinki Blues Machinen keikalla!</p><p>Helsinki Blues Machine soittaa huuliharppuvetoista 1950- ja 60-lukujen henkistä blues-ohjelmistoa sodanjälkeisen Chicagon, Louisianan, Mississippin ja Kalifornian laulumailta.</p><p>Tästä kokoonpanosta ei soittotaitoa puutu: <br>- Big Dog Andy Scherer on pitkän linjan huuliharpisti ja laulaja, jonka blues-taival ulottuu Teksasin skenestä kansainvälisille lavoille. <br>- Esa \"Bluesministeri\" Kuloniemi on suomalaisen bluesin kulmakivi, tunnettu Honey B & T-Bonesista ja Yleisradion bluesohjelmista. <br>- Topi Karvonen on monipuolinen kontrabasisti, joka on soittanut lukuisissa blues- ja juurimusiikkikokoonpanoissa. <br>- Erik Nickull on nuoresta iästään huolimatta jo tunnettu rumpali. Hän on soittanut mm. Honey B & T-Bonesissa, Ikka Rantamäen Bluesbrokersissa ja johtaa omaa Kinky Thing -yhtyettään.</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Den populära serien Roots-musiikin evoluutio i Malms kulturhus fortsätter i spelningen Helsinki Blues Machine!</p><p>Helsinki Blues Machine spelar ett munspelsdrivet bluesprogram i 1950- och 60-talsanda från efterkrigstidens Chicago, Louisiana, Mississippi och Kalifornien.</p><p>Det råder ingen brist på spelskicklighet i den här sammansättningen: <br>– Big Dog Andy Scherer är en väletablerad munspelare och sångare, och hans bluesresa sträcker sig från scener i Texas till internationella scener. <br>– Esa ”Blues Minister” Kuloniemi är en av hörnstenarna inom finländsk blues och är känd från Honey B & T-Bones och Rundradions bluesprogram. <br>– Topi Karvonen är en mångsidig kontrabasist som har spelat i många sammansättningar inom blues- och rootsmusiken. <br>– Erik Nickull är trots sin unga ålder redan en välkänd batterist. Han har spelat i bland annat Honey B & T-Bones, Ikka Rantamäkis Bluesbrokers och leder sitt eget band; Kinky Thing.</p><p>Längd: 1 timme 45 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>Malmitalo's popular Roots Music Evolution series continues with Helsinki Blues Machine's gig!</p><p>Helsinki Blues Machine performs harmonica-driven blues inspired by the 50s and 60s, drawing from the musical landscapes of postwar Chicago, Louisiana, Mississippi and California.</p><p>This line-up is overflowing with musical talent: <br>- Big Dog Andy Scherer is a seasoned harmonica player and singer whose blues journey spans from the Texas scene to international stages. <br>- Esa \"Bluesministeri\" Kuloniemi is a cornerstone of Finnish blues, known for Honey B & T-Bones and Yleisradio's blues programmes. <br>- Topi Karvonen is a versatile double bassist who has played in numerous blues and roots music ensembles. <br>- Despite his young age, Erik Nickull is already a well-known drummer. He has played in Honey B & T-Bones, Ikka Rantamäki's Bluesbrokers and leads his own band, Kinky Thing.</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65978/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5zmq",
            "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:p1947/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z52jm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490594,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:07:33.222812Z",
                    "last_modified_time": "2025-09-02T07:07:33.222827Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc068f0e-4e85-43a8-812c-a6ffca0f60a1.png",
                    "cropping": "300,0,900,600",
                    "photographer_name": "",
                    "alt_text": "Jooga ohjaaja Markku Sosimäki ja jooga asentoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-19T09:32:27.588277Z",
            "last_modified_time": "2025-09-04T09:55:31.604060Z",
            "date_published": null,
            "start_time": "2025-12-15T16:00:00Z",
            "end_time": "2025-12-15T17:15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.",
                "sv": "Kom när du vill och så länge du vill.",
                "en": "Feel free to join at any time "
            },
            "info_url": null,
            "name": {
                "fi": "Jooga tunti ",
                "sv": "Yoga",
                "en": " Yoga"
            },
            "description": {
                "fi": "<p>Joka maanantai klo 18.00 - 19.15</p><p>Jooga edustaa kokonaisvaltaista käsitystä ihmisen hyvinvoinnista ja tarjoaa helppoja harjoituksia terveyden ja tasapainon kehittämiseen ja ylläpitämiseen.</p><p>Tuntia ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut joogaopettajana useissa maissa jo 40 v ajan.</p><p>Tarvitset vain tavalliset, mukavat vaatteet ja alustan lattialla olemista varten, esimerkiksi joogamaton.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Jooga kokoontuu vapaaehtoisvoimin</strong></p>",
                "sv": "<p>Varje måndag kl. 18.00–19.15</p><p>Yoga är en holistisk metod för att främja människors välbefinnande och erbjuder enkla övningar för att utveckla och upprätthålla hälsa och balans.</p><p><br></p><p>Klassen leds av den erfarne Markku Sosimäki, även känd som Dada Rasatmakananda. Han har varit yogalärare i flera länder i 40 år.</p><p><br></p><p>Allt du behöver är bekväma kläder och något att sitta på golvet med, till exempel en yogamatta.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga träffas på frivillig basis</strong></p>",
                "en": "<p>Every Monday from 6:00 p.m. to 7:15 p.m.</p><p>Yoga represents a holistic approach to human well-being and offers easy exercises for developing and maintaining health and balance.</p><p>The class is led by the experienced Markku Sosimäki, also known as Dada Rasatmakananda. He has been a yoga teacher in several countries for 40 years.</p><p>All you need is comfortable clothing and something to sit on the floor, such as a yoga mat.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga meets on a voluntary basis</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5zmq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5y64",
            "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:p1947/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z52jm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490594,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:07:33.222812Z",
                    "last_modified_time": "2025-09-02T07:07:33.222827Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc068f0e-4e85-43a8-812c-a6ffca0f60a1.png",
                    "cropping": "300,0,900,600",
                    "photographer_name": "",
                    "alt_text": "Jooga ohjaaja Markku Sosimäki ja jooga asentoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-19T09:32:27.487163Z",
            "last_modified_time": "2025-09-04T09:55:31.560920Z",
            "date_published": null,
            "start_time": "2025-12-08T16:00:00Z",
            "end_time": "2025-12-08T17:15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.",
                "sv": "Kom när du vill och så länge du vill.",
                "en": "Feel free to join at any time "
            },
            "info_url": null,
            "name": {
                "fi": "Jooga tunti ",
                "sv": "Yoga",
                "en": " Yoga"
            },
            "description": {
                "fi": "<p>Joka maanantai klo 18.00 - 19.15</p><p>Jooga edustaa kokonaisvaltaista käsitystä ihmisen hyvinvoinnista ja tarjoaa helppoja harjoituksia terveyden ja tasapainon kehittämiseen ja ylläpitämiseen.</p><p>Tuntia ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut joogaopettajana useissa maissa jo 40 v ajan.</p><p>Tarvitset vain tavalliset, mukavat vaatteet ja alustan lattialla olemista varten, esimerkiksi joogamaton.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Jooga kokoontuu vapaaehtoisvoimin</strong></p>",
                "sv": "<p>Varje måndag kl. 18.00–19.15</p><p>Yoga är en holistisk metod för att främja människors välbefinnande och erbjuder enkla övningar för att utveckla och upprätthålla hälsa och balans.</p><p><br></p><p>Klassen leds av den erfarne Markku Sosimäki, även känd som Dada Rasatmakananda. Han har varit yogalärare i flera länder i 40 år.</p><p><br></p><p>Allt du behöver är bekväma kläder och något att sitta på golvet med, till exempel en yogamatta.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga träffas på frivillig basis</strong></p>",
                "en": "<p>Every Monday from 6:00 p.m. to 7:15 p.m.</p><p>Yoga represents a holistic approach to human well-being and offers easy exercises for developing and maintaining health and balance.</p><p>The class is led by the experienced Markku Sosimäki, also known as Dada Rasatmakananda. He has been a yoga teacher in several countries for 40 years.</p><p>All you need is comfortable clothing and something to sit on the floor, such as a yoga mat.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga meets on a voluntary basis</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5y64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5yr4",
            "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:p1947/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z52jm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490594,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:07:33.222812Z",
                    "last_modified_time": "2025-09-02T07:07:33.222827Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc068f0e-4e85-43a8-812c-a6ffca0f60a1.png",
                    "cropping": "300,0,900,600",
                    "photographer_name": "",
                    "alt_text": "Jooga ohjaaja Markku Sosimäki ja jooga asentoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-19T09:32:27.387368Z",
            "last_modified_time": "2025-09-04T09:55:31.514694Z",
            "date_published": null,
            "start_time": "2025-12-01T16:00:00Z",
            "end_time": "2025-12-01T17:15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.",
                "sv": "Kom när du vill och så länge du vill.",
                "en": "Feel free to join at any time "
            },
            "info_url": null,
            "name": {
                "fi": "Jooga tunti ",
                "sv": "Yoga",
                "en": " Yoga"
            },
            "description": {
                "fi": "<p>Joka maanantai klo 18.00 - 19.15</p><p>Jooga edustaa kokonaisvaltaista käsitystä ihmisen hyvinvoinnista ja tarjoaa helppoja harjoituksia terveyden ja tasapainon kehittämiseen ja ylläpitämiseen.</p><p>Tuntia ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut joogaopettajana useissa maissa jo 40 v ajan.</p><p>Tarvitset vain tavalliset, mukavat vaatteet ja alustan lattialla olemista varten, esimerkiksi joogamaton.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Jooga kokoontuu vapaaehtoisvoimin</strong></p>",
                "sv": "<p>Varje måndag kl. 18.00–19.15</p><p>Yoga är en holistisk metod för att främja människors välbefinnande och erbjuder enkla övningar för att utveckla och upprätthålla hälsa och balans.</p><p><br></p><p>Klassen leds av den erfarne Markku Sosimäki, även känd som Dada Rasatmakananda. Han har varit yogalärare i flera länder i 40 år.</p><p><br></p><p>Allt du behöver är bekväma kläder och något att sitta på golvet med, till exempel en yogamatta.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga träffas på frivillig basis</strong></p>",
                "en": "<p>Every Monday from 6:00 p.m. to 7:15 p.m.</p><p>Yoga represents a holistic approach to human well-being and offers easy exercises for developing and maintaining health and balance.</p><p>The class is led by the experienced Markku Sosimäki, also known as Dada Rasatmakananda. He has been a yoga teacher in several countries for 40 years.</p><p>All you need is comfortable clothing and something to sit on the floor, such as a yoga mat.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga meets on a voluntary basis</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5yr4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5yem",
            "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:p1947/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z52jm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490594,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:07:33.222812Z",
                    "last_modified_time": "2025-09-02T07:07:33.222827Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc068f0e-4e85-43a8-812c-a6ffca0f60a1.png",
                    "cropping": "300,0,900,600",
                    "photographer_name": "",
                    "alt_text": "Jooga ohjaaja Markku Sosimäki ja jooga asentoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490594/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-19T09:32:27.266222Z",
            "last_modified_time": "2025-09-04T09:55:31.469892Z",
            "date_published": null,
            "start_time": "2025-11-24T16:00:00Z",
            "end_time": "2025-11-24T17:15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.",
                "sv": "Kom när du vill och så länge du vill.",
                "en": "Feel free to join at any time "
            },
            "info_url": null,
            "name": {
                "fi": "Jooga tunti ",
                "sv": "Yoga",
                "en": " Yoga"
            },
            "description": {
                "fi": "<p>Joka maanantai klo 18.00 - 19.15</p><p>Jooga edustaa kokonaisvaltaista käsitystä ihmisen hyvinvoinnista ja tarjoaa helppoja harjoituksia terveyden ja tasapainon kehittämiseen ja ylläpitämiseen.</p><p>Tuntia ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut joogaopettajana useissa maissa jo 40 v ajan.</p><p>Tarvitset vain tavalliset, mukavat vaatteet ja alustan lattialla olemista varten, esimerkiksi joogamaton.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Jooga kokoontuu vapaaehtoisvoimin</strong></p>",
                "sv": "<p>Varje måndag kl. 18.00–19.15</p><p>Yoga är en holistisk metod för att främja människors välbefinnande och erbjuder enkla övningar för att utveckla och upprätthålla hälsa och balans.</p><p><br></p><p>Klassen leds av den erfarne Markku Sosimäki, även känd som Dada Rasatmakananda. Han har varit yogalärare i flera länder i 40 år.</p><p><br></p><p>Allt du behöver är bekväma kläder och något att sitta på golvet med, till exempel en yogamatta.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga träffas på frivillig basis</strong></p>",
                "en": "<p>Every Monday from 6:00 p.m. to 7:15 p.m.</p><p>Yoga represents a holistic approach to human well-being and offers easy exercises for developing and maintaining health and balance.</p><p>The class is led by the experienced Markku Sosimäki, also known as Dada Rasatmakananda. He has been a yoga teacher in several countries for 40 years.</p><p>All you need is comfortable clothing and something to sit on the floor, such as a yoga mat.</p><p><br></p><p><strong>8.9. / 15.9. / 22.9. Yoga meets on a voluntary basis</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5yem/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}