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 ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27045,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=124&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=122&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "espoo_le:agmk22pk5e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmqy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:38:55.255223Z",
                    "last_modified_time": "2025-07-01T11:38:55.255238Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bd7f7ee-80b5-4dcf-a325-e4df4aec5e67.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Sieniä ja perhosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-07-01T11:39:15.080160Z",
            "last_modified_time": "2025-07-01T11:39:15.080184Z",
            "date_published": null,
            "start_time": "2025-12-03T08:30:00Z",
            "end_time": "2025-12-03T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ruotsinkielinen satuhetki",
                "sv": "Svenskspråkig sagostund",
                "en": "Story time in swedish"
            },
            "description": {
                "fi": "<p>Tervetuloa satuhetkeen!</p><p>Järjestämme kerran kuukaudessa avoimen satuhetken, jossa luemme satuja ruotsiksi.</p><p>Tapahtuma on suunnattu 3-6 -vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan!</p>",
                "sv": "<p>Välkomna på sagostund!</p><p>Hagalunds bibliotek håller en gång i månaden en öppen sagostund där vi läser böcker på svenska.</p><p>Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>",
                "en": "<p>Welcome to story time!</p><p>Tapiola library holds an open story time once a month where we read books in Swedish.</p><p>The event is intended for children aged 3-6, but people of all ages are welcome.</p>"
            },
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa satuhetkeen!",
                "sv": "Välkomna på sagostund!",
                "en": "Welcome to story time!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pk5e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22plju",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmqy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:38:55.255223Z",
                    "last_modified_time": "2025-07-01T11:38:55.255238Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bd7f7ee-80b5-4dcf-a325-e4df4aec5e67.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Sieniä ja perhosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-07-01T11:39:14.895382Z",
            "last_modified_time": "2025-07-01T11:39:14.895399Z",
            "date_published": null,
            "start_time": "2025-11-05T08:30:00Z",
            "end_time": "2025-11-05T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ruotsinkielinen satuhetki",
                "sv": "Svenskspråkig sagostund",
                "en": "Story time in swedish"
            },
            "description": {
                "fi": "<p>Tervetuloa satuhetkeen!</p><p>Järjestämme kerran kuukaudessa avoimen satuhetken, jossa luemme satuja ruotsiksi.</p><p>Tapahtuma on suunnattu 3-6 -vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan!</p>",
                "sv": "<p>Välkomna på sagostund!</p><p>Hagalunds bibliotek håller en gång i månaden en öppen sagostund där vi läser böcker på svenska.</p><p>Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>",
                "en": "<p>Welcome to story time!</p><p>Tapiola library holds an open story time once a month where we read books in Swedish.</p><p>The event is intended for children aged 3-6, but people of all ages are welcome.</p>"
            },
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa satuhetkeen!",
                "sv": "Välkomna på sagostund!",
                "en": "Welcome to story time!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22plju/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22plxi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmqy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:38:55.255223Z",
                    "last_modified_time": "2025-07-01T11:38:55.255238Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bd7f7ee-80b5-4dcf-a325-e4df4aec5e67.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Sieniä ja perhosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-07-01T11:39:14.757758Z",
            "last_modified_time": "2025-07-01T11:39:14.757775Z",
            "date_published": null,
            "start_time": "2025-10-01T07:30:00Z",
            "end_time": "2025-10-01T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ruotsinkielinen satuhetki",
                "sv": "Svenskspråkig sagostund",
                "en": "Story time in swedish"
            },
            "description": {
                "fi": "<p>Tervetuloa satuhetkeen!</p><p>Järjestämme kerran kuukaudessa avoimen satuhetken, jossa luemme satuja ruotsiksi.</p><p>Tapahtuma on suunnattu 3-6 -vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan!</p>",
                "sv": "<p>Välkomna på sagostund!</p><p>Hagalunds bibliotek håller en gång i månaden en öppen sagostund där vi läser böcker på svenska.</p><p>Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>",
                "en": "<p>Welcome to story time!</p><p>Tapiola library holds an open story time once a month where we read books in Swedish.</p><p>The event is intended for children aged 3-6, but people of all ages are welcome.</p>"
            },
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa satuhetkeen!",
                "sv": "Välkomna på sagostund!",
                "en": "Welcome to story time!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22plxi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pmdy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmqy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:38:55.255223Z",
                    "last_modified_time": "2025-07-01T11:38:55.255238Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bd7f7ee-80b5-4dcf-a325-e4df4aec5e67.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Sieniä ja perhosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-07-01T11:39:14.595172Z",
            "last_modified_time": "2025-07-01T11:39:14.595189Z",
            "date_published": null,
            "start_time": "2025-09-03T07:30:00Z",
            "end_time": "2025-09-03T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ruotsinkielinen satuhetki",
                "sv": "Svenskspråkig sagostund",
                "en": "Story time in swedish"
            },
            "description": {
                "fi": "<p>Tervetuloa satuhetkeen!</p><p>Järjestämme kerran kuukaudessa avoimen satuhetken, jossa luemme satuja ruotsiksi.</p><p>Tapahtuma on suunnattu 3-6 -vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan!</p>",
                "sv": "<p>Välkomna på sagostund!</p><p>Hagalunds bibliotek håller en gång i månaden en öppen sagostund där vi läser böcker på svenska.</p><p>Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>",
                "en": "<p>Welcome to story time!</p><p>Tapiola library holds an open story time once a month where we read books in Swedish.</p><p>The event is intended for children aged 3-6, but people of all ages are welcome.</p>"
            },
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa satuhetkeen!",
                "sv": "Välkomna på sagostund!",
                "en": "Welcome to story time!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmdy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pmqy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pk5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22plju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22plxi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmdy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:38:55.255223Z",
                    "last_modified_time": "2025-07-01T11:38:55.255238Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2bd7f7ee-80b5-4dcf-a325-e4df4aec5e67.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Sieniä ja perhosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-07-01T11:39:13.748166Z",
            "last_modified_time": "2025-07-01T11:39:13.748183Z",
            "date_published": null,
            "start_time": "2025-09-03T07:30:00Z",
            "end_time": "2025-12-03T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ruotsinkielinen satuhetki",
                "sv": "Svenskspråkig sagostund",
                "en": "Story time in swedish"
            },
            "description": {
                "fi": "<p>Tervetuloa satuhetkeen!</p><p>Järjestämme kerran kuukaudessa avoimen satuhetken, jossa luemme satuja ruotsiksi.</p><p>Tapahtuma on suunnattu 3-6 -vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan!</p>",
                "sv": "<p>Välkomna på sagostund!</p><p>Hagalunds bibliotek håller en gång i månaden en öppen sagostund där vi läser böcker på svenska.</p><p>Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>",
                "en": "<p>Welcome to story time!</p><p>Tapiola library holds an open story time once a month where we read books in Swedish.</p><p>The event is intended for children aged 3-6, but people of all ages are welcome.</p>"
            },
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa satuhetkeen!",
                "sv": "Välkomna på sagostund!",
                "en": "Welcome to story time!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pmqy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65979",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117845/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117845/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117845/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155486,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:12:38.050181Z",
                    "last_modified_time": "2025-07-01T11:12:38.050194Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769580.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155486/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T11:12:37.983819Z",
            "last_modified_time": "2025-07-01T11:12:38.125180Z",
            "date_published": null,
            "start_time": "2025-11-26T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "WHISTLE BAIT - PLAYS 60s ELVIS PRESLEY! – Roots-musiikin evoluutio vol. 13",
                "sv": "WHISTLE BAIT - PLAYS 60s ELVIS PRESLEY! – Roots-musiikin evoluutio vol. 13",
                "en": "WHISTLE BAIT - PLAYS 60s ELVIS PRESLEY! – Roots-musiikin evoluutio vol. 13"
            },
            "description": {
                "fi": "<p>Malmitalon Roots-musiikin evoluutio -sarja jatkuu! Vuorossa erikoiskonsertti Elvis Presleyn rokkaavan tuotannon tahdissa!</p><p>Haminalaislähtöinen Whistle Bait on yksi maamme pitkäikäisimmistä rock-orkestereista. Viime vuonna yhtye juhli 40-vuotista taivaltaan ja on yhä voimissaan. 50–60-lukujen rock and rolliin musiikkinsa pohjaava bilejyrä tekee yli kymmenen vuoden tauon jälkeen paljon kiitosta saaneen ja kysytyn erikoiskonsertin keskittyen vain ja ainoastaan legendaarisen Elvis Presleyn 1960-luvun tuotantoon, painopisteen ollessa kuninkaan vähemmän livenä kuulluissa elokuvasävelissä! Tulossa siis Viva Las Vegas, Kissin' Cousins, Speedway ja muut helmet – ei viittoja ja saksipotkuja, vaan mahtavaa musiikkia!</p><p><b>Whistle Bait: </b><br>Vesa Haaja (laulu, kitara), Vesa Tynkkynen (kitara), Kim Drockila (koskettimet), Juho Hurskainen (saksofoni), Lasse Sirkko (basso), Juha Tynkkynen (rummut).</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2EAC951895176DA5FC1BED4238F64273/WHISTLE_BAIT_-_PLAYS_60s_ELVIS_PRESLEY_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2EAC951895176DA5FC1BED4238F64273/WHISTLE_BAIT_-_PLAYS_60s_ELVIS_PRESLEY_",
                "en": "http://www.malmitalo.fi/en/events/event/2EAC951895176DA5FC1BED4238F64273/WHISTLE_BAIT_-_PLAYS_60s_ELVIS_PRESLEY_"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon Roots-musiikin evoluutio -sarja jatkuu! Vuorossa erikoiskonsertti Elvis Presleyn rokkaavan tuotannon tahdissa!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65979/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66065",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/emilia-sisco/a-la-malmi-emilia-sisco-3889839/",
                        "sv": "https://www.lippu.fi/artist/emilia-sisco/a-la-malmi-emilia-sisco-3889839/",
                        "en": "https://www.lippu.fi/artist/emilia-sisco/a-la-malmi-emilia-sisco-3889839/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 €/15 €",
                        "sv": "20 €/15 €",
                        "en": "20 €/15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:12:36.000299Z",
                    "last_modified_time": "2025-07-01T11:12:36.000320Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771334.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155483/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T11:12:35.938051Z",
            "last_modified_time": "2025-07-01T11:12:36.072318Z",
            "date_published": null,
            "start_time": "2025-09-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Emilia Sisco – A la Malmi",
                "sv": "Emilia Sisco – A la Malmi",
                "en": "Emilia Sisco – A la Malmi"
            },
            "description": {
                "fi": "<p>Emilia Sisco on nouseva tähti soul-musiikin kentällä, jonka ääni ja laulunkirjoitustyyli ovat valloittaneet kuuntelijoita ympäri maailmaa.</p><p>Hänen voimakas äänensä ja kyky kertoa tarinoita musiikillaan yhdistävät saumattomasti soul-, jazz- ja bluesmusiikin. Emilian ääni kantaa syviä tunteita, jotka heijastavat inhimillisen kokemuksen monimuotoisuutta.</p><p>Emilian debyyttisooloalbumi Introducing Emilia Sisco, jonka julkaisi Timmion Records, on saanut jo ylistystä maailmalla. Se tehtiin yhteistyössä levy-yhtiön tuotantotiimin, Cold Diamond & Minkin kanssa. Helsingin Sanomat kutsui sitä ”yhdeksi vuoden parhaista suomalaisista debyyteistä”, ja Soul Bag Mag (Ranska) ylisti albumin ”hienostuneisuutta” ja ”orgaanista koherenssia”. Juno Records (Iso-Britannia) puolestaan kuvaili Emilian ääntä aitona ja voimakkaana, joka tuo uudenlaista raikkautta soul-skeneen.</p><p>Ennen albumin julkaisua Emilia sai huomiota singlellään ”Don’t Believe You Like That” ja jatkoi julkaisemalla singlet ”Trouble” ja ”It’ll Get Better” yhteistyössä Cold Diamond & Minkin kanssa. Hänen musiikkiansa on kuvailtu ajattomaksi, mutta samalla myös nykyaikaiseksi. Soul-ikoneista, kuten Aretha Franklinista, Etta Jamesista ja Billie Holidaysta, inspiroitunut Emilia tuo perinteisiin soulin ja R&B:n elementteihin modernia vivahdetta.</p><p>Helsingissä syntynyt ja varttunut suomalais-sambialainen Emilia on nopeasti noussut nykyaikaisen soul-musiikin lupaavaksi nimeksi. Jokaisen julkaisun myötä hän kehittää taiteensa rajoja, pysyen samalla uskollisena tyylilleen. Hooked On Music (Iso-Britannia) ennustaa, että Introducing Emilia Sisco on vasta alkua ja Emilia Sisco on taiteilija, jota kannattaa seurata.</p><p>Kesto: 1 t 30 min</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A95CB31C32A8CFE24C46CC2A52E4F534/Emilia_Sisco",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A95CB31C32A8CFE24C46CC2A52E4F534/Emilia_Sisco",
                "en": "http://www.malmitalo.fi/en/events/event/A95CB31C32A8CFE24C46CC2A52E4F534/Emilia_Sisco"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Emilia Sisco on nouseva tähti soul-musiikin kentällä, jonka ääni ja laulunkirjoitustyyli ovat valloittaneet kuuntelijoita ympäri maailmaa."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66065/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66429",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 811550,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-20T11:15:08.469108Z",
                    "last_modified_time": "2025-05-20T11:15:08.469134Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764908.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/811550/?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-05-20T11:15:08.274907Z",
            "last_modified_time": "2025-07-01T11:12:31.106482Z",
            "date_published": null,
            "start_time": "2025-07-05T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teho.",
                "sv": "Teho.",
                "en": "Teho."
            },
            "description": {
                "fi": "<p>Teho. on yhtä aikaa rajoja rikkova ja perinnetietoinen yhtye ja kaustislaisesta äänimaisemasta kumpuava duo.</p><p>Hannu Saha kuvailee vuoden 2016 Konsta Jylhä -kilpailun päätöspuheessaan voittajayhtyeelle: ”Teho.n muusikot tuntevat perinteen läpikotaisin. Raudanlujina, monipuolisina ammattilaisina he tekevät sillä mitä lystäävät ja pystyvät viemään musiikkia äärilaidasta toiseen.”</p><p>Teho.n musiikissa yhdistellään saumattomasti suomalaista pelimanniviulismia, norjalaista hallingia, ruotsalaista polskaa, bepopia, western swingiä ja uutta, itse sävellettyä kansanmusiikkia ryyditettynä ankaralla svengillä. Teho.n molemmat jäsenet Esko Järvelä ja Tero Hyväluoma ovat kansanmusiikkikentän kärkinimiä ja genrerajoja kaihtamattomia freelancereita. Heillä on vuosien yhteissoittokokemus nuoruudesta lähtien mm. Frigg-yhtyeen riveistä. Molemmat opettavat sivutoimisesti Sibelius-Akatemiassa ja kummallakin on luotsattavanaan myös omia yhtyeitä.</p><p>Teho. esiintyi vuonna 2022 Folkelarm-showcasessa Oslossa ja on sen jälkeen saanut paljon huomiota paitsi Pohjoismaissa myös muualla Euroopassa.</p><p>Teho.n debyyttialbumi ”(E2 + ε + V) x I3 = P” oli Emma-ehdokkaana vuoden 2018 parhaana kansanmusiikkilevynä. <br>Toinen albumi \"Not a violin duo\" julkaistiin vuonna 2023.</p><p>Huom! Puheosuudet englanniksi.</p>",
                "sv": "<p>Teho. är samtidigt gränsöverskridande och traditionsmedvetna, en duo som har sitt ursprung i Kaustbytraditionens ljudlandskap.</p><p>Hannu Saha beskrev den segrande gruppen i sitt avslutningstal vid Konsta Jylhä-tävlingen 2016: ”Teho.s musiker känner traditionen utan och innan. Som gedigna, mångsidiga proffs gör de vad de har lust med och kan ta musiken från en ytterlighet till en annan.”</p><p>I Teho.s musik kombineras på ett sömlöst sätt den finska spelmannens fiol, norsk halling, svensk polska, bebop, western swing och ny, egenhändigt skriven folkmusik med mycket sväng. Teho.s medlemmar Esko Järvelä och Tero Hyväluoma är toppnamn inom folkmusikfältet och frilansare som inte skyggar för genregränserna. De har spelat ihop i många år ända sedan ungdomen, bland annat i gruppen Frigg. Båda undervisar också vid Sibelius-Akademin och leder egna grupper.</p><p>Teho. uppträdde 2022 på Folkelarm-showcase i Oslo och har sedan dess fått mycket uppmärksamhet både i Norden och i övriga Europa.</p><p>Teho.s debutalbum (E2 + ε + V) x I3 = P var nominerat till en Emma för bästa folkmusikskiva 2018. Det andra albumet Not a violin duo kom 2023.</p><p>Obs! De talade avsnitten är på engelska.</p>",
                "en": "<p>Teho. is a Finnish power-fiddle duo that explodes musical boundaries while having roots deeply in the tradition.</p><p>Teho’s fiddlers grew up in Central Ostrobothnia – an area known for its extremely virile and rich folk music life. Their music combines fluently Finnish traditional fiddling, Norwegian Halling, Swedish Polska, Bebop, Western Swing, and composed, Contemporary Folk Music. Improvisation plays also big part of the duo’s sound.</p><p>”Teho.’s musicians are extremely versatile professionals, who know the Nordic Folk Music tradition inside out. Järvelä and Hyväluoma combine musical elements widely and creatively, they master their instruments on a virtuoso level giving them unlimited musical possibilities.” Complimented director Hannu Saha in his speech for the winners of the Konsta Jylhä Competition, the most significant folk music competition in Finland, at summer 2016.</p><p>Tero Hyväluoma and Esko Järvelä are both top-notch names in the Nordic folk music field and cross-over freelancers without genre boundaries. They have played together for years in various different bands and projects, including one of the most well known Finnish folk band Frigg. Teho.’s debut album called “(E2 + ε + V) x I3 = P” was nominated for Finnish Grammy (Emma Awards) in 2018. Their second album was released on 28th April 2023.</p><p>Teho. showcased at Folkelarm in Oslo in November 2022 leading to many gigs in Scandinavia and beyond.</p><p>SPOKEN PARTS IN ENGLISH.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/51032DCEF261D64274ECF8AEAA639D96/Teho_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/51032DCEF261D64274ECF8AEAA639D96/Teho_",
                "en": "http://www.espanlava.fi/en/events/event/51032DCEF261D64274ECF8AEAA639D96/Teho_"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teho. on yhtä aikaa rajoja rikkova ja perinnetietoinen yhtye ja kaustislaisesta äänimaisemasta kumpuava duo.",
                "sv": "Teho. är samtidigt gränsöverskridande och traditionsmedvetna, en duo som har sitt ursprung i Kaustbytraditionens ljudlandskap.",
                "en": "Teho. is a Finnish power-fiddle duo that explodes musical boundaries while having roots deeply in the tradition."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66429/?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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "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-07-01T09:12:26.358604Z",
            "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,
            "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>"
            },
            "location_extra_info": null,
            "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"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu Helsinki Blues Machinen keikalla!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65978/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65977",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117673/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117673/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117673/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154815,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T09:12:25.345029Z",
                    "last_modified_time": "2025-07-01T09:12:25.345044Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769576.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154815/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T09:12:25.283069Z",
            "last_modified_time": "2025-07-01T09:12:25.416431Z",
            "date_published": null,
            "start_time": "2025-09-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,
            "name": {
                "fi": "The Munsons – Roots-musiikin evoluutio vol. 11",
                "sv": "The Munsons – Roots-musiikin evoluutio vol. 11",
                "en": "The Munsons – Roots-musiikin evoluutio vol. 11"
            },
            "description": {
                "fi": "<p>Syyskuun roots-keikalla nähdään rockabillyä, countrya, western swingiä ja rock’n’rollia yhdistelevä The Munsons!</p><p>Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu taas!<br> <br>The Munsons on Tommi Vikstenin ja Melrosen Tokelan muodostama duo, jossa kaverukset pääsevät soittamaan ja laulamaan rakastamaansa musiikkia. Ohjelmistoon kuuluu mm: Countrya, Rock-a-Billya, Western Swingia, Rhythm ’n’ Bluesia, Hillbillya, Rock’n’Rollia, 50 luvun poppia kun myös ”erilaisempaa” materiaalia esim: ZZ Toppia tai Queens of the Stone Agea.</p><p>Valtaosa kappaleista esitetään kaksiäänisesti stemmoissa laulaen ja säestys tapahtuu kahden kitaran (yleensä akustinen ja sähkis) voimin. Yhtye on ollut kasassa vuodesta 2005 lähtien ja keikkoja on tehty ympäri Suomea.</p><p>Kesto: 1 t 10 min, sis. 20 min väliajan</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0CCCB5E5E90F7736BAFA5327A7C1D823/The_Munsons",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0CCCB5E5E90F7736BAFA5327A7C1D823/The_Munsons",
                "en": "http://www.malmitalo.fi/en/events/event/0CCCB5E5E90F7736BAFA5327A7C1D823/The_Munsons"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Syyskuun roots-keikalla nähdään rockabillyä, countrya, western swingiä ja rock’n’rollia yhdistelevä The Munsons!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65977/?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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "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-07-01T08:13:47.637483Z",
            "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,
            "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>"
            },
            "location_extra_info": null,
            "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_"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Omaleimainen ja palkittu Aki Rissanen Trio on yksi maamme menestyneimmistä jazzyhtyeistä."
            },
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€ / 15 €",
                        "sv": "20€ / 15 €",
                        "en": "20€ / 15 €"
                    }
                }
            ],
            "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-07-01T08:13:46.710618Z",
            "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,
            "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>"
            },
            "location_extra_info": null,
            "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_"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jazzin, gnawan ja Keski-Afrikan vastustamaton fuusio."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66124/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66067",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/",
                        "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/",
                        "en": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€ / 15 €",
                        "sv": "20€ / 15 €",
                        "en": "20€ / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:45.364808Z",
                    "last_modified_time": "2025-07-01T08:13:45.364824Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771401.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154483/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:45.258066Z",
            "last_modified_time": "2025-07-01T08:13:45.520674Z",
            "date_published": null,
            "start_time": "2025-10-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Edward Vesalan 80-vuotisjuhlakonsertti – MalmiJazz",
                "sv": "Edward Vesalan 80-vuotisjuhlakonsertti – MalmiJazz",
                "en": "Edward Vesalan 80-vuotisjuhlakonsertti – MalmiJazz"
            },
            "description": {
                "fi": "<p>Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.</p><p>Juhlapäivän kunniaksi Sound & Fury toteuttaa juhlakonserttikiertueen, jossa soi Vesalan musiikki. Tämä konsertti tarjoaa ainutlaatuisen tilaisuuden kokea Vesalan sävellykset ja musiikillinen jatkumo livenä alkuperäisten Sound & Fury -yhtyeen jäsenten (ml. Tapani Rinteen) sekä nuorempien muusikoiden esittämänä, jotka jatkavat hänen perintöään.</p><p>Vesalan musiikki, joka yhdistää ainutlaatuisella tavalla jazzia, rockia, klassista, kansanmusiikkia ja improvisaatiota. Se on edelleen yksi Suomen musiikkihistorian ja eurooppalaisen jazzin kulmakivistä, mutta valitettavasti hänen teoksiaan kuulee elävänä nykyisin harvoin – varsinkaan hänen tärkeimmän yhtyeensä Sound & Furyn esittämänä.</p><p><b>Konsertin rakenne ja esiintyjät:</b></p><p><b>1. Osa:</b><br>Tapani Rinne soolona<br>Sound & Fury -yhtyeen jäseniä pienkokoonpanoissa (Vesalan musiikkia)</p><p><b>Väliaika 20 min</b></p><p><b>2. osa:</b><br>Sound & Fury -yhtye kokonaisuudessaan (Vesalan musiikkia Iro Haarlan sovituksina).</p><p><b>Konsertissa esiintyvät muusikot: </b><br>Jorma Tapio (puupuhaltimet)<br>Pepa Päivinen (puupuhaltimet)<br>Tane Kannisto (puupuhaltimet)<br>Eero Savela (trumpetti)<br>Jimi Sumén (kitara)<br>Jukka Orma (kitara)<br>Sampo Lassila (kontrabasso)<br>Ilmari Heikinheimo (rummut, lyömäsoittimet)<br>Tapani Rinne (soolo) feat. Aleksi Myllykoski (livesampling)</p><p>Kesto: 2 t, sis. 20 min väliajan</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalan_80-vuotisjuhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalan_80-vuotisjuhlakonsertti",
                "en": "http://www.malmitalo.fi/en/events/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalan_80-vuotisjuhlakonsertti"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pm5m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490217,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-30T10:01:39.015059Z",
                    "last_modified_time": "2025-06-30T10:01:39.015073Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/da4432a5-21ba-42dc-9af5-294e0d8f382d.png",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on tietoa tapahtumasta, sekä siinä on käsi joka piirtää kirjanmerkkejä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-06-30T10:07:37.164554Z",
            "last_modified_time": "2025-07-01T06:14:44.331627Z",
            "date_published": null,
            "start_time": "2025-07-11T07:00:00Z",
            "end_time": "2025-07-11T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Taide pop-up: Kirjanmerkkien tekoa ",
                "en": "Art Pop-Up: Bookmark Making "
            },
            "description": {
                "fi": "<p>Taide pop-up -työpaja on rento ja luova hetki lapsille ja vanhemmille yhdessä! Tule mukaan askartelemaan omia, persoonallisia kirjanmerkkejä, Familia ry tuo kaikki tarvittavat materiaalit ja tarjoamme mukavan hetken yhdessäolon äärellä.</p><p>Kenelle: Lapsille ja heidän vanhemmilleen – vapaa pääsy, ei ilmoittautumista</p><p>Lämpimästi tervetuloa!</p>",
                "en": "<p>Are you looking for something to do as a family?</p><p>Join us for a fun and creative Art Pop-Up workshop at Lippulaiva Library! Kids and parents can design their own personalized bookmarks using colorful materials, we’ll bring everything needed, just come and enjoy!</p><p>For: Children and their parents – free entry, no registration needed</p><p>Welcome!</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "info_url": null,
            "provider": {
                "fi": "Familia ry",
                "en": "Familia ry"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taide pop-up -työpaja on rento ja luova hetki lapsille ja vanhemmille yhdessä! Tervetuloa!",
                "en": "Join us for a fun and creative Art Pop-Up workshop at Lippulaiva Library! "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pm5m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66599",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 992193,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-11T06:12:37.121465Z",
                    "last_modified_time": "2025-06-11T06:12:37.121479Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765361.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/992193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-11T06:12:37.070392Z",
            "last_modified_time": "2025-07-01T06:13:43.446109Z",
            "date_published": null,
            "start_time": "2025-08-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hoedown – Espan lavan kauden päättäjäiset",
                "sv": "Hoedown – Säsongavslutning på Esplanadestraden",
                "en": "Hoedown – Espa stage end-of-season concluding ceremony"
            },
            "description": {
                "fi": "<p>Hoedown Espan lavalla ensi kertaa!</p><p>Vuonna 2002 ensimmäisen esiintymisensä tehnyt suomalaisen juurevan rytmimusiikin 23-vuotias sanansaattaja, Hoedown-yhtye, saapuu Espan kesälavalle vihdoinkin!</p><p>22 vuotta legendaarisessa Ravintola Juttutuvassa omaa Hoedown Klubia pitänyt kuusikko on tehnyt kolme omaa levyä ja kolme levyä yhdessä artistiystäviensä Tuomari Nurmion, Tokelan ja Jukka Gustavsonin kanssa.</p><p>Espan lavalla kuullaan yhtyeen levymateriaalin lisäksi tietysti myös Hoedownin omaksi sovitettuja versioita huikeista juurimusiikin klassikoista.</p><p><b>Kokoonpano:</b> <br>Mika Kuokkanen: laulu, kitara, piano <br>Jere Ijäs: laulu, kitara, piano <br>Olli Haavisto: pedal- ja lap steel -kitara, dobro <br>Jarmo Nikku: kitara, mandoliini <br>Masa Maijanen: basso <br>Topi Kurki: rummut</p>",
                "sv": "<p>Hoedown kommer till Esplanadestraden för första gången!</p><p>Den 23-åriga budbäraren, gruppen Hoedown, som gjorde sitt första framträdande år 2002, kommer äntligen till Esplanadestraden på sommaren!</p><p>I 22 år har sextetten, som hade sin egen Hoedown Klubb i den legendariska restaurangen Juttutupa, gjort tre egna skivor och tre skivor tillsammans med sina artistvänner Tuomio Nurmio, Tokela och Jukka Gustavson.</p><p>På Esplanadestraden hör vi förutom bandets skivmaterial även Hoedowns egna arrangerade versioner av de fantastiska rotmusikklassikerna.</p><p>Sammansättning:<br>Mika Kuokkanen: sång, gitarr, piano<br>Jere Ijäs: sång, gitarr, piano<br>Olli Haavisto: pedal- och lap steel-gitarr, dobro<br>Jarmo Nikku: gitarr, mandolin<br>Masa Maijanen: basgitarr<br>Topi Kurki: trummor</p>",
                "en": "<p>Hoedown takes over the Espa Stage, finally!</p><p>Hoedown has proudly carried the flag of roots music in Finland for 23 years and for 22 years they’ve had their Hoedown Club at the famous restaurant Juttutupa.</p><p>Hoedown has released so far three album’s and also three albums with the fabulous artists and friends of the band Tuomari Nurmio, Tokela and Jukka Gustavson.</p><p>The audience at the Espa stage will experiece Hoedown band’s performance and playing music from their albums as well as good old roots music classics with their own Hoedown twist!</p><p><b>Line-up:</b> <br> Mika Kuokkanen: vocals, guitar, piano <br> Jere Ijäs: vocals, guitar, piano <br> Olli Haavisto: pedal and lap steel guitar, dobro <br> Jarmo Nikku: guitar, mandolin <br> Masa Maijanen: bass <br> Topi Kurki: drums</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/66A4A3F7B215BDA375A71328AE151841/Hoedown",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/66A4A3F7B215BDA375A71328AE151841/Hoedown",
                "en": "http://www.espanlava.fi/en/events/event/66A4A3F7B215BDA375A71328AE151841/Hoedown"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Hoedown Espan lavalla ensi kertaa!",
                "sv": "Hoedown kommer till Esplanadestraden för första gången!",
                "en": "Hoedown takes over the Espa Stage, finally!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66599/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66600",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 992191,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-11T06:12:36.724805Z",
                    "last_modified_time": "2025-06-11T06:12:36.724817Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765360.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/992191/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-11T06:12:36.675786Z",
            "last_modified_time": "2025-06-30T13:12:55.545106Z",
            "date_published": null,
            "start_time": "2025-08-30T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Päistikka – Espan lavan kauden päättäjäiset",
                "sv": "Päistikka",
                "en": "Päistikka"
            },
            "description": {
                "fi": "<p>Päistikka on täällä! Palkittu lastenmusiikkiyhtye siivittää kaikki seikkailuun sekä keskelle mielikuvitusmaailmaa. Kuka kumma metelöi maan alla?</p><p>Mitä käy, kun lattia onkin laavaa? Eikös hirviöt ole niitä hassuja höpönassuja? Musiikin ja tarinoiden täyttämässä show'ssa tarvitaan myös välillä yleisön apua.</p>",
                "sv": "<p>Päistikka är här! Den prisbelönta barnmusikgruppen tar med sig alla på äventyr ut i fantasivärlden. Vad är det märkvärdiga ting som väsnas under jorden?</p><p>Vad händer när det visar sig att golvet är lava? Är inte monstren de där tossiga sötnosarna? I showen fylld med musik och berättelser behövs ibland också publikens hjälp.</p>",
                "en": "<p>Päistikka is here! The award-winning children’s music group takes everyone on an adventure in the middle of an imaginary world. Who is making noise underground?</p><p>What happens when the floor is lava? And monsters are just silly little sweethearts, right? This show filled with music and stories will also need some help from the audience.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/43BDBA7179D679B7562CE1583782E498/Paistikka",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/43BDBA7179D679B7562CE1583782E498/Paistikka",
                "en": "http://www.espanlava.fi/en/events/event/43BDBA7179D679B7562CE1583782E498/Paistikka"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Päistikka on täällä! Palkittu lastenmusiikkiyhtye siivittää kaikki seikkailuun sekä keskelle mielikuvitusmaailmaa. Kuka kumma metelöi maan alla?",
                "sv": "Päistikka är här! Den prisbelönta barnmusikgruppen tar med sig alla på äventyr ut i fantasivärlden. Vad är det märkvärdiga ting som väsnas under jorden?",
                "en": "Päistikka is here! The award-winning children’s music group takes everyone on an adventure in the middle of an imaginary world. Who is making noise underground?"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66600/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66582",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986341,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:03.096937Z",
                    "last_modified_time": "2025-06-10T13:14:03.096953Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767517.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:02.993309Z",
            "last_modified_time": "2025-06-30T13:12:55.294279Z",
            "date_published": null,
            "start_time": "2025-08-29T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ben Granfelt",
                "sv": "Ben Granfelt",
                "en": "Ben Granfelt"
            },
            "description": {
                "fi": "<p>Kitaristilegenda Ben Granfelt julkaisee jo 21. studioalbuminsa It’s Personal ja juhlistaa tapausta Suomen- sekä Saksan-keikoilla.</p><p>Kyseessä on harvinainen tupla-albumi, studioalbumin ja livealbumin yhdistelmä. Studioalbumi on vaihteeksi instrumentaalilevytys, jollaista Granfeltilta on toivottu pitkään - kokoelma hienoja melodioita, riffejä ja toki myös kitarasooloja.</p><p>“Äänitimme pohjaraidat livenä Masa Maijasen (basso) ja Jari Salmisen (rummut) kanssa isossa huoneessa, ja sitten lukitsin itseni pieneen studioon äänittämään kitaroita ja luomaan soundeja. Mielestäni lopputulos on hieno ja henkilökohtainen, ja olen siitä ylpeä.”</p><p>Tupla-albumin live-levytys sisältää sekä laulettuja että instrumentaalibiisejä. Selvästi bändi todella nauttii yhdessä soittamisesta. Albumi on äänitetty vuoden 2024 Gratitude-kiertueen aikana.</p><p>“Haluamme tehdä biiseistämme uudenlaisia esittäessämme niitä livenä. Oli kiinnostavaa kuunnella hyvin erilaisia versioita ja vaikea valita, mikä niistä päätyi lopulta live-albumille.”</p><p>Ben ja hänen bändinsä kiertävät uuden tupla-albumin merkeissä kesällä Suomessa, josta jatkavat syksymmällä Saksan kiertueelle.</p><p><b>Kokoonpano:</b> <br>Ben Granfelt kitara, laulu <br>Masa Maijanen basso, laulu <br>Miri Miettinen rummut, laulu</p>",
                "sv": "<p>Gitarristlegenden Ben Granfelt släpper sitt 21:a studioalbum It's Personal och firar detta med spelningar i Finland och Tyskland.</p><p>Det är ett sällsynt dubbelalbum – en kombination av studioalbum och livealbum. Studioalbumet är en instrumentalinspelning som Granfelt länge önskat – en samling fina melodier, riff och naturligtvis gitarrsolon.</p><p>”Vi spelade in bakgrundsspåret med Masa Maijanen (basgitarr) och Jari Salminen (trummor) i ett stort rum, och sedan låste jag in mig i en liten studio för att spela in gitarrer och skapa sounden. Jag tycker att resultatet är bra och personligt och jag är stolt över det.”</p><p>Liveinspelningen av dubbelalbumet innehåller både låtar med sång och instrumentala låtar. Det är tydligt att bandet verkligen tycker om att spela tillsammans. Albumet spelades in under turnén Gratitude 2024.</p><p>”Vi vill göra våra låtar nya när vi framför dem live. Det var intressant att lyssna på de mycket olika versionerna och svårt att välja vilka vi skulle ta med i livealbumet.”</p><p>Under sommaren turnerar Ben och hans band i Finland i det nya dubbelalbumets tecken och fortsätter på hösten med en turné i Tyskland.</p><p>Sammansättning:<br>Ben Granfelt – gitarr, sång<br>Masa Maijanen – basgitarr, sång<br>Miri Miettinen – trummor, sång</p>",
                "en": "<p>Legendary guitarist Ben Granfelt is releasing his 21st studio album, It’s Personal, and is celebrating the event with gigs in Finland and Germany.</p><p>This piece is a rare double album; a combination of a studio recording and a live album. The studio album is an instrumental recording, which has been requested from Granfelt for a long time. It’s a collection of beautiful melodies, riffs and – naturally – guitar solos.</p><p>“We recorded the baselines live with Masa Maijanen (bass) and Jari Salminen (drums) in a large room, and then I locked myself into a tiny studio to record the guitar parts and create the sounds.<br>I think that the end result is great and personal, and I’m proud of it.”</p><p>The live recordings of the double album include both singing and instrumental songs. The band clearly loves playing together.</p><p>The album was recorded during their Gratitude tour in 2024.<br>“We want to create our songs anew when we play them live. It was interesting to listen to the very different versions and difficult to choose which to include on our live album.”</p><p>Ben and his band tour Finland in the summer to present their new double album, and will continue with a tour in Germany in the autumn</p><p>Line-up:<br>Ben Granfelt – guitar, vocals<br>Masa Maijanen – bass, vocals<br>Miri Miettinen – drums, vocals</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/13D44CE9A95AFFC4CF54C35B39DE0018/Ben_Granfelt",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/13D44CE9A95AFFC4CF54C35B39DE0018/Ben_Granfelt",
                "en": "http://www.espanlava.fi/en/events/event/13D44CE9A95AFFC4CF54C35B39DE0018/Ben_Granfelt"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kitaristilegenda Ben Granfelt julkaisee jo 21. studioalbuminsa It’s Personal ja juhlistaa tapausta Suomen- sekä Saksan-keikoilla.",
                "sv": "Gitarristlegenden Ben Granfelt släpper sitt 21:a studioalbum It's Personal och firar detta med spelningar i Finland och Tyskland.",
                "en": "Legendary guitarist Ben Granfelt is releasing his 21st studio album, It’s Personal, and is celebrating the event with gigs in Finland and Germany."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66583",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:02.764456Z",
                    "last_modified_time": "2025-06-10T13:14:02.764474Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767578.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986340/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:02.657370Z",
            "last_modified_time": "2025-06-30T13:12:55.115869Z",
            "date_published": null,
            "start_time": "2025-08-29T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Iron Country Sisters",
                "sv": "Iron Country Sisters",
                "en": "Iron Country Sisters"
            },
            "description": {
                "fi": "<p>Iron Country Sisters on helsinkiläinen siskotrio, jonka englanninkielisessä musiikissa kaikuu perinteisen ja modernin americanan vaikutus.</p><p>Bändin omaleimainen soundi nojaa vahvaan tulkintaan ja sielukkaisiin kolmiäänisiin lauluharmonioihin, jotka ovat hioutuneet lapsesta asti yhdessä laulamisen tuloksena. Siskosten persoonalliset lauluäänet soivat yhdessä upeasti, jokaisen toimiessa vuorollaan myös solistina.</p><p>Iron Country Sisters julkaisi toisen kokopitkän albuminsa Grace syksyllä 2024. Albumin kappaleet käsittelevät mm. luopumista, ystävyyttä ja yhteiskunnan normeista vapautumista. Albumi soi juurevana ja raikkaana, ja sillä vuorottelevat pelkistetyt tunnelmat sekä bändisoitto.</p>",
                "sv": "<p>Iron Country Sisters är en systertrio från Helsingfors med musik på engelska som påverkats av traditionell och modern americana.</p><p>Bandets särpräglade sound bygger på en stark tolkning och själfulla trestämmiga sångharmonier som har finslipats av att systrarna sjungit tillsammans sedan de var små. Systrarnas personliga sångröster ljuder tillsammans på ett fantastiskt sätt, medan var och en i tur och ordning också fungerar som solist.</p><p>Iron Country Sisters släppte sitt andra fullängdsalbum Grace hösten 2024. Låtarna på albumet handlar bland annat om att ge upp, vänskap och frigöra sig från samhällets normer. Albumet har ett robust och fräscht sound med omväxlande avskalade stämningar och bandspelande.</p>",
                "en": "<p>Iron Country Sisters is a trio of sisters from Helsinki. Their songs are written in English and draw clear inspiration from both traditional and modern Americana.</p><p>The band’s characteristic sound is built on strong expression and the soulful three-part song harmonies that have been finely refined, thanks to the sisters having sung together since they were children. The characterful singing voices of the sisters sound amazing together, and each sister also takes a turn as a soloist.</p><p>Iron Country Sisters released their second long play, Grace, in autumn 2024. The songs on the album deal with themes such as letting go, friendships and setting oneself free from the norms of society. The album’s sound is earthy and fresh, alternating between simplistic expression and band instrumentals.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DDDCC37D6A698D864C2BB8CCD93A398F/Iron_Country_Sisters_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DDDCC37D6A698D864C2BB8CCD93A398F/Iron_Country_Sisters_",
                "en": "http://www.espanlava.fi/en/events/event/DDDCC37D6A698D864C2BB8CCD93A398F/Iron_Country_Sisters_"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Iron Country Sisters on helsinkiläinen siskotrio, jonka englanninkielisessä musiikissa kaikuu perinteisen ja modernin americanan vaikutus.",
                "sv": "Iron Country Sisters är en systertrio från Helsingfors med musik på engelska som påverkats av traditionell och modern americana.",
                "en": "Iron Country Sisters is a trio of sisters from Helsinki. Their songs are written in English and draw clear inspiration from both traditional and modern Americana."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66583/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66628",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1147912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T12:12:55.535623Z",
                    "last_modified_time": "2025-06-30T12:12:55.535641Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775243.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T12:12:55.414483Z",
            "last_modified_time": "2025-06-30T12:12:55.706643Z",
            "date_published": null,
            "start_time": "2025-09-04T07:30:00Z",
            "end_time": "2025-09-04T08: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,
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussis skogssagor – En sagoutflykt i Björnklippans skog",
                "en": "Jussi's forest tales – Storytelling tour in Karhukallio forest"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.     <br>  <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.  <br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi</p><p>Vapaa pääsy  <br>Ryhmille pakolliset ennakkoilmoittautumiset 13.8. klo 10 alkaen: https://kultus.hel.fi/fi</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska     <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi<br>från och med 13.8 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish     <br>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi, from 13 August at 10 am</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/717B503E444E0D54DBCACE85B8977651/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/717B503E444E0D54DBCACE85B8977651/Jussis_skogssagor",
                "en": "http://www.stoa.fi/en/events/event/717B503E444E0D54DBCACE85B8977651/Jussi_s_forest_tales"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66628/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66627",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1147911,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T12:12:55.100047Z",
                    "last_modified_time": "2025-06-30T12:12:55.100064Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775242.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1147911/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T12:12:54.977122Z",
            "last_modified_time": "2025-06-30T12:12:55.271141Z",
            "date_published": null,
            "start_time": "2025-09-04T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussis skogssagor – En sagoutflykt i Björnklippans skog",
                "en": "Jussi's forest tales – Storytelling tour in Karhukallio forest"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.     <br>  <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.  <br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br> <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi</p><p>Vapaa pääsy  <br>Ryhmille pakolliset ennakkoilmoittautumiset 13.8. klo 10 alkaen: https://kultus.hel.fi/fi</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska     <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi<br>från och med 13.8 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish     <br>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi, from 13 August at 10 am</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5B628FF069F784514911BB860D10368C/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5B628FF069F784514911BB860D10368C/Jussis_skogssagor",
                "en": "http://www.stoa.fi/en/events/event/5B628FF069F784514911BB860D10368C/Jussi_s_forest_tales"
            },
            "provider": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66627/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}