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

{
    "meta": {
        "count": 27581,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=314",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=312"
    },
    "data": [
        {
            "id": "espoo_le:agmk23eyti",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-29T11:04:17.046656Z",
                    "last_modified_time": "2024-12-29T11:04:17.046676Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg",
                    "cropping": "426,0,2981,2556",
                    "photographer_name": "",
                    "alt_text": "Askarteluhetki, erilaisia tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-29T11:09:00.356210Z",
            "last_modified_time": "2024-12-29T11:09:00.356231Z",
            "date_published": null,
            "start_time": "2025-05-21T13:00:00Z",
            "end_time": "2025-05-21T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. "
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Askartelua Sellon kirjaston Pajassa",
                "sv": "Hantverk i Sellobibliotekets verkstad",
                "en": "Crafting in Sello Library's Makerspace"
            },
            "description": {
                "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p>",
                "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>",
                "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ey7q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exfa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ex3y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyhe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyti/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-29T11:04:17.046656Z",
                    "last_modified_time": "2024-12-29T11:04:17.046676Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg",
                    "cropping": "426,0,2981,2556",
                    "photographer_name": "",
                    "alt_text": "Askarteluhetki, erilaisia tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-29T11:08:54.805759Z",
            "last_modified_time": "2024-12-29T11:08:54.805780Z",
            "date_published": null,
            "start_time": "2025-01-08T14:00:00Z",
            "end_time": "2025-06-18T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. "
            },
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Askartelua Sellon kirjaston Pajassa",
                "sv": "Hantverk i Sellobibliotekets verkstad",
                "en": "Crafting in Sello Library's Makerspace"
            },
            "description": {
                "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p>",
                "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>",
                "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65283",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153456,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:26.193429Z",
                    "last_modified_time": "2024-12-13T14:14:26.193446Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758948.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153456/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:26.170816Z",
            "last_modified_time": "2024-12-29T06:13:46.640647Z",
            "date_published": null,
            "start_time": "2025-01-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DD96BFE9DB888EBF9E21E690920D110E/Levoton_Tuhkimo_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DD96BFE9DB888EBF9E21E690920D110E/Levoton_Tuhkimo_7_",
                "en": "http://www.malmitalo.fi/en/events/event/DD96BFE9DB888EBF9E21E690920D110E/Levoton_Tuhkimo_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levoton Tuhkimo (7) – Kino Helios",
                "sv": "Levoton Tuhkimo (7) – Kino Helios",
                "en": "Levoton Tuhkimo (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta.</p><p>Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65283/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65282",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/",
                        "sv": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/",
                        "en": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:12.527898Z",
                    "last_modified_time": "2024-12-13T14:14:12.527921Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758909.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:12.505361Z",
            "last_modified_time": "2024-12-29T06:13:45.599708Z",
            "date_published": null,
            "start_time": "2025-01-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5F94E5EC6C6211FE69D790D365BEEBD/Levoton_Tuhkimo_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5F94E5EC6C6211FE69D790D365BEEBD/Levoton_Tuhkimo_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D5F94E5EC6C6211FE69D790D365BEEBD/Levoton_Tuhkimo_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levoton Tuhkimo (7) – Kino Helios",
                "sv": "Levoton Tuhkimo (7) – Kino Helios",
                "en": "Levoton Tuhkimo (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65282/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65281",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/",
                        "sv": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/",
                        "en": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153443,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:11.939059Z",
                    "last_modified_time": "2024-12-13T14:14:11.939080Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758903.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:11.913505Z",
            "last_modified_time": "2024-12-29T06:13:45.096881Z",
            "date_published": null,
            "start_time": "2024-12-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ABE79E23BCE05140E8DF7F8C356586BD/Levoton_Tuhkimo_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/ABE79E23BCE05140E8DF7F8C356586BD/Levoton_Tuhkimo_7_",
                "en": "http://www.malmitalo.fi/en/events/event/ABE79E23BCE05140E8DF7F8C356586BD/Levoton_Tuhkimo_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levoton Tuhkimo (7) – Kino Helios",
                "sv": "Levoton Tuhkimo (7) – Kino Helios",
                "en": "Levoton Tuhkimo (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65281/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64937",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T16:13:59.007457Z",
                    "last_modified_time": "2024-11-06T16:13:59.007473Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760687.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152980/?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": "2024-11-06T16:13:58.992590Z",
            "last_modified_time": "2024-12-29T06:13:44.946688Z",
            "date_published": null,
            "start_time": "2024-12-28T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2",
                "en": "http://www.malmitalo.fi/en/events/event/F297058E88996EDE5C67F8337A0E8B22/Joululoman_ilmaisleffa_Ihmeperhe_2"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joululoman ilmaisleffa: Ihmeperhe 2 (7)",
                "sv": "Joululoman ilmaisleffa: Ihmeperhe 2",
                "en": "Joululoman ilmaisleffa: Ihmeperhe 2"
            },
            "description": {
                "fi": "<p>Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!</p><p>Tällä kertaa pääosaan nousee Elli, joka jättää Ilun kotiin selviytymään \"normaalin\" arjen sankarina yhdessä Ilonan ja Esan kanssa. Muutos on mullistava kaikille, ja tilannetta mutkistaa vielä se, ettei perhe tiedä, millaisia supervoimia Jaska-vauvalle vielä kehittyykään. Kun uusi konna punoo nerokkaan ja petollisen juonen, perheen tulee Hyytäjän avustuksella löytää keinot puhaltaa taas yhteen hiileen—mikä on helpommin sanottu kuin tehty, vaikka he nyt Ihmeperhe sattuvatkin olemaan.</p><p>Ohjaajanaan Brad Bird (Rautajätti, Ihmeperhe) ja tuottajina John Walker (Ihmeperhe) ja Nicole Grindle (Sanjay’s Super Team -lyhytelokuva, Toy Story 3 apulaistuottaja) Ihmeperhe 2 rynnistää elokuvateattereihin kesällä 2018.</p><p>Kesto 118 min<br>Ikäraja 7 <br>Elokuva on puhuttu suomeksi<br>Vapaa pääsy!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64937/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65280",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/",
                        "sv": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/",
                        "en": "https://www.lippu.fi/event/kino-helios-levoton-tuhkimo-malmitalo-19566639/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153442,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T14:14:11.651475Z",
                    "last_modified_time": "2024-12-13T14:14:11.651491Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758900.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153442/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-13T14:14:11.604856Z",
            "last_modified_time": "2024-12-29T06:13:44.842448Z",
            "date_published": null,
            "start_time": "2024-12-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BBEDEDB898319D1C20D1339CCE2B99E6/Levoton_Tuhkimo_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BBEDEDB898319D1C20D1339CCE2B99E6/Levoton_Tuhkimo_7_",
                "en": "http://www.malmitalo.fi/en/events/event/BBEDEDB898319D1C20D1339CCE2B99E6/Levoton_Tuhkimo_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levoton Tuhkimo (7) – Kino Helios",
                "sv": "Levoton Tuhkimo (7) – Kino Helios",
                "en": "Levoton Tuhkimo (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila, pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä, ja Ronja Keiramo. Käsikirjoitus Hanna Leivonniemi.</p><p>Levoton Tuhkimo elokuvateattereissa joulupäivänä 25.12. kautta maan.</p><p>Ikäraja: 7<br>Kesto: 88 min.</p><p>Ensi-ilta: 25.12.2024<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65280/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64936",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T16:13:58.882623Z",
                    "last_modified_time": "2024-11-06T16:13:58.882653Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760686.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-06T16:13:58.843764Z",
            "last_modified_time": "2024-12-29T06:13:44.671424Z",
            "date_published": null,
            "start_time": "2024-12-27T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3A0E5A182A355FF04FB16D0143FFE86C/Joululoman_ilmaisleffa_Punainen_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joululoman ilmaisleffa: Punainen (7)",
                "sv": "Joululoman ilmaisleffa: Punainen (7)",
                "en": "Joululoman ilmaisleffa: Punainen (7)"
            },
            "description": {
                "fi": "<p>Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä.</p><p>Hänen suojeleva ja määräilevä äitinsä Ming ei ole koskaan kaukana – mikä ei varsinaisesti ilahduta teini-ikäistä. Ja ihan kuin jatkuvat muutokset harrastuksissa, ihmissuhteissa ja kropassa eivät olisi tarpeeksi, aina kun Mei Lee innostuu liikaa (mitä tapahtuu käytännössä jatkuvasti), hän muuttuu jättimäiseksi kultapandaksi!</p><p>Ikäraja 7<br>Kesto 100 min<br>Elokuva on puhuttu suomeksi<br>Vapaa pääsy!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64936/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65017",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153551,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T16:15:16.467699Z",
                    "last_modified_time": "2024-12-27T16:15:16.467742Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153551/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T16:15:16.429302Z",
            "last_modified_time": "2024-12-27T16:15:16.580512Z",
            "date_published": null,
            "start_time": "2025-02-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjan kahvilan stagella starttaa vieraileva muusikko Ville ”Lefty” Leppänen.",
                "sv": "Börja veckan med fullt hålligång! Gästmusikern Ville “Lefty” Leppänen inleder vårens Juurilla-klubbserie på caféets stage.",
                "en": "Start your week with some catchy tunes! Visiting musician Ville “Lefty” Leppänen will be the first to start this spring’s At the Roots Club series at the café stage."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/49131E7E64DCD47C58F41C0B6A0C41BF/Juurilla_Ville_Lefty_Leppanen",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/49131E7E64DCD47C58F41C0B6A0C41BF/Juurilla-klubb_Ville_Lefty_Leppanen",
                "en": "http://www.kanneltalo.fi/en/events/event/49131E7E64DCD47C58F41C0B6A0C41BF/At_the_Roots_Ville_Lefty_Leppanen"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Juurilla: Ville “Lefty” Leppänen – Maksuttomat maanantait",
                "sv": "Juurilla-klubb: Ville ”Lefty” Leppänen – Kostnadsfria måndagar",
                "en": "At the Roots: Ville ”Lefty” Leppänen – Free Mondays"
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjan kahvilan stagella starttaa vieraileva muusikko Ville ”Lefty” Leppänen.</p><p>Pitkän linjan juurimuusikko Ville “Lefty” Leppänen esittää bluesin, countryn ja muunkin juurimusiikin klassikoita ja tuntemattomampia kappaleita. Kuulemme myös Leftyn omaa tuotantoa.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med fullt hålligång! Gästmusikern Ville “Lefty” Leppänen inleder vårens Juurilla-klubbserie på caféets stage.</p><p>Den erfarna rootsmusikern Ville “Lefty” Leppänen framför klassiker inom blues, country och annan rootsmusik samt okända låtar. Vi får även höra Leftys egen produktion.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 t</p>",
                "en": "<p>Start your week with some catchy tunes! Visiting musician Ville “Lefty” Leppänen will be the first to start this spring’s At the Roots Club series at the café stage.</p><p>Longtime roots musician Ville “Lefty” Leppänen performs classics and lesser-known blues, country, and other roots music. We’ll also hear Lefty’s original music.</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65017/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64841",
            "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/osmo-ikonen-malmitalossa-malmitalo-19495815/",
                        "sv": "https://www.lippu.fi/event/osmo-ikonen-malmitalossa-malmitalo-19495815/",
                        "en": "https://www.lippu.fi/event/osmo-ikonen-malmitalossa-malmitalo-19495815/"
                    },
                    "price": {
                        "fi": "34 € / 29 €, ovelta 38 €",
                        "sv": "34 € / 29 €, ovelta 38 €",
                        "en": "34 € / 29 €, ovelta 38 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153550,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T15:13:57.418851Z",
                    "last_modified_time": "2024-12-27T15:13:57.418867Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760467.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153550/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T15:13:57.391745Z",
            "last_modified_time": "2024-12-27T15:13:57.478490Z",
            "date_published": null,
            "start_time": "2025-03-27T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Rakastettu ja arvostettu musiikin monilahjakkuus Osmo Ikonen julkaisee uuden albumin keväällä 2025.",
                "sv": "Den älskade och uppskattade mångbegåvningen inom musik, Osmo Ikonen, släpper ett nytt album våren 2025.",
                "en": "Osmo Ikonen, the much-loved and acclaimed multi-talented musician, will release a new album in the spring of 2025."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D723E64DB1A09AD6C2E4A33385892664/Osmo_Ikonen_Malmitalossa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D723E64DB1A09AD6C2E4A33385892664/Osmo_Ikonen_i_Malms_kulturhus",
                "en": "http://www.malmitalo.fi/en/events/event/D723E64DB1A09AD6C2E4A33385892664/Osmo_Ikonen_at_Malmitalo"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Osmo Ikonen Malmitalossa",
                "sv": "Osmo Ikonen i Malms kulturhus",
                "en": "Osmo Ikonen at Malmitalo"
            },
            "description": {
                "fi": "<p>Rakastettu ja arvostettu musiikin monilahjakkuus Osmo Ikonen julkaisee uuden albumin keväällä 2025.</p><p>Vuonna 2021 ilmestyi artistin ensimmäinen suomenkielinen albumi Yhden miehen armeija, joka oli kiitelty menestys. Syksyllä 2024 suomenkielinen tuotanto sai jatkoa, kun mies julkaisi OI -nimeä kantavan EP:n.</p><p>Raikas ja mielenkiintoinen suomenkielinen tuotanto on tuonut mukanaan runsaasti radiosoittoa, esiintymisiä tv:ssä sekä lukuisilla eri festivaaleilla ympäri Suomen ja on pitänyt miehen kiireisenä peräti viiden oman konserttikiertueen osalta.</p><p>”Kuluneen syksyn kiertue muistutti siitä, miten paljon nautin esiintyä bändin kanssa ja tällä kertaa ollaan kovemmassa iskussa mitä koskaan! Keväällä jatketaan OI (Organic Intelligence) teemalla ja keskitytään ottamaan sekä bändin sisäisestä kemiasta, että interaktiosta yleisön kanssa kaikki mehut irti” artisti iloitsee.</p><p>Osmo Ikonen on tunnettu SuomiLovesta sekä lukuisista muista TV-tuotannoista, joissa hän on toiminut solistina, musiikkituottajana, sovittajana ja muusikkona. Ikonen oli myös vuonna 2022 lopettaneen Sunrise Avenue yhtyeen jäsen.</p><p>Kesto: 1 t 15 min</p>",
                "sv": "<p>Den älskade och uppskattade mångbegåvningen inom musik, Osmo Ikonen, släpper ett nytt album våren 2025.</p><p>Artistens första finskspråkiga album Yhden miehen armeija släpptes år 2021 och togs emot väl.</p><p>På hösten 2024 fick den finskspråkiga produktionen en fortsättning, då mannen publicerade EP:n OI.</p><p>Den fräscha och intressanta finskspråkiga produktionen har fört med sig rikligt med radiospelningar, framträdanden i TV och på talrika festivaler runt omkring i Finland, och har hållit mannen upptagen med hela fem egna konsertturnéer.</p><p>“Den gångna höstens turné påminde mig om hur mycket jag njuter av att framträda med bandet, och den här gången är vi i bättre form än någonsin!</p><p>På våren fortsätter vi med temat OI (Organic Intelligence) och fokuserar på att få ut allt av både bandets interna kemi och interaktionen med publiken”, gläder sig artisten.</p><p>Osmo Ikonen är känd från SuomiLove och talrika andra TV-produktioner, där han har fungerat som solist, musikproducent, arrangör och musiker. Ikonen var också med i bandet Sunrise Avenue som lade av år 2022.</p><p>Längd: 1 h 15 min.</p>",
                "en": "<p>Osmo Ikonen, the much-loved and acclaimed multi-talented musician, will release a new album in the spring of 2025.</p><p>In 2021, the artist released his first Finnish-language album, Yhden miehen armeija, to critical acclaim. In the autumn of 2024, the Finnish-language production continued with the release of an EP called OI.</p><p>His fresh and interesting Finnish-language music has brought him plenty of radio play, TV appearances and performances at numerous festivals around Finland, and has kept him busy with no less than five concert tours of his own.</p><p>“Last autumn’s tour was a reminder of how much I enjoy performing with the band, and this time, we’re going to be rocking harder than ever! In the spring, we’ll be picking back up with the OI (Organic Intelligence) theme and focusing on getting everything out of both the band’s internal chemistry and our interaction with the audience,” the artist explains.</p><p>Osmo Ikonen is known from SuomiLove and numerous other TV shows, where he has worked as a singer, music producer, arranger and musician. Ikonen was also a member of Sunrise Avenue, a band that split up in 2022.</p><p>Duration: 1 h 15 min</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64841/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64819",
            "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/traveling-jones-feat-pepe-ahlqvist-malmitalo-19385390/",
                        "sv": "https://www.lippu.fi/event/traveling-jones-feat-pepe-ahlqvist-malmitalo-19385390/",
                        "en": "https://www.lippu.fi/event/traveling-jones-feat-pepe-ahlqvist-malmitalo-19385390/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153547,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T15:13:56.133070Z",
                    "last_modified_time": "2024-12-27T15:13:56.133085Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760302.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153547/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T15:13:56.100502Z",
            "last_modified_time": "2024-12-27T15:13:56.199147Z",
            "date_published": null,
            "start_time": "2025-03-15T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Muusikkoveljesten Jakke Ahon ja Juha Sundqvistin 5-vuotias yhtye soittaa rennosti mutta intensiivisesti rouheaa rockia. Mukana myös ilmiömäinen Pepe Alhqvist!",
                "sv": "Musikerbröderna Jakke Ahos och Juha Sundqvists 5-åriga band spelar grov rock på ett avslappnat men intensivt sätt. Även den fenomenala Pepe Ahlqvist är med!",
                "en": "The five-year-old band of musician brothers Jakke Aho and Juha Sundqvist plays gritty rock in a relaxed but intense style. Also featuring the phenomenal Pepe Alhqvist!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C5DD8F63BE088BAB00A48AE40AF8AB3/Traveling_Jones_feat_Pepe_Ahlqvist",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C5DD8F63BE088BAB00A48AE40AF8AB3/Traveling_Jones_feat_Pepe_Ahlqvist",
                "en": "http://www.malmitalo.fi/en/events/event/0C5DD8F63BE088BAB00A48AE40AF8AB3/Traveling_Jones_feat_Pepe_Ahlqvist"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Traveling Jones feat. Pepe Ahlqvist",
                "sv": "Traveling Jones feat. Pepe Ahlqvist",
                "en": "Traveling Jones feat. Pepe Ahlqvist"
            },
            "description": {
                "fi": "<p>Muusikkoveljesten Jakke Ahon ja Juha Sundqvistin 5-vuotias yhtye soittaa rennosti mutta intensiivisesti rouheaa rockia. Mukana myös ilmiömäinen Pepe Alhqvist!</p><p>Viitisen vuotta sitten muusikkoveljet laulaja-basisti Jakke Aho ja kitaristi Juha Sundqvist päättivät perustaa yhtyeen ja kutsuivat matkalle mukaan kosketinsoittaja Pekka Qvistin ja rumpali Ossi Nykäsen. Syntyi TRAVELING JONES ja matka alkoi!</p><p>Intensiivisen treenaamisen, ahkeran keikkailun ja rennon studiotyöskentelyn tuloksena syntyi bändin ensimmäinen julkaisu ”Here Comes That Traveling Jones”. Alusta asti oli selvää, että bändi esittää omaa musaa ja tarkoin harkittua muiden tekemää musiikkia sekä keikoilla että levyillä.</p><p>Oli myös selvää, että bändin esittämä musiikki painottuu selkeästi rokkaavaan suuntaan – joku voisi sanoa, että tämä on southern rockia, joku voisi kutsua sitä west coast -rockiksi. Selvää on, että rock-asenne edellä mennään, mutta kuulija lokeroikoon musiikin minne haluaa. Olennaista on soiton rentous, svengaavuus, osaaminen ja soiton intensiivisyys.</p><p>Yhtye on aikaisemminkin tehnyt yhteistyötä muusikkolegendojen Eero Raittisen ja Pepe Ahlqvistin kanssa.  Hyvin on yhteinen musisointi kulkenut ja nyt sitä haluttiin jatkaa… ja nyt mennään todellakin americana edellä!</p><p><b>Pepe Ahlqvist</b><br>Suomibluesin legenda ei enemmälti esittelyjä kaivanne; jo 70-luvun alkanut ura on jatkunut aina meidän päiviimme asti. Laulaja-harpisti-kitaristi Pepe Ahlqvist on edelleen todella oivallisessa vedossa; laulu ja soitto toimivat tyylikkäästi ja letkeästi. Esiintymisten rentous välittyy myös yleisöön: Traveling Jonesin ja Pepen pitkä yhteistyö näkyy hyvin myös yhteisessä esiintymisessä; lavalla arvostetaan toisia muusikoita ja yleisölle tarjotaan elämyksiä eikä vähiten silloin, kun esitetään yhdessä Pepen 80-luvun huippubändin H.A.R.P:in tunnetuksi tekemiä biisejä... Ja kuullaanhan keikoilla Pepen tyylikästä harpunsoittoakin!</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Musikerbröderna Jakke Ahos och Juha Sundqvists 5-åriga band spelar grov rock på ett avslappnat men intensivt sätt. Även den fenomenala Pepe Ahlqvist är med!</p><p>För fem år sedan beslutade musikerbröderna sångaren och basisten Jakke Aho och Juha Sundqvist att grunda ett band och bjöd med keyboardisten Pekka Qvist och trummisen Ossi Nykänen. TRAVELING JONES föddes och resan började!</p><p>Intensiv träning, flitiga spelningar och ett avslappat studioarbete ledde till bandets första släpp “Here Comes That Traveling Jones”. Från början var det klart att bandet spelar sin egen musik och noggrant övervägd musik av andra både på spelningar och album.</p><p>Det var också klart att den musik som bandet spelar tydligt lutar mot rock – man kunde säga att detta är southern rock, någon skulle kunna kalla det för west coast rock. Det är tydligt att det är rockattityd som gäller, men lyssnaren får placera musiken i vilken genre han eller hon vill. Väsentligt är musikens avspändhet, svängighet, kompetens och intensitet.</p><p>Bandet har även tidigare samarbetat med musikerlegenderna Eero Raittinen och Pepe Ahlqvist.  Det gemensamma musicerandet har gått bra, och nu ville man fortsätta med det... och nu är det verkligen americana som gäller!</p><p><b>Pepe Ahlqvist</b><br>Suomibluesens legend behöver knappast någon närmare presentation; karriären som inleddes i början av 70-talet fortsätter än i dag. Sångaren-harpisten-gitarristen Pepe Ahlqvist är fortfarande i riktigt bra form; sången och musiken fungerar stiligt och lättsamt. Det avslappnade framträdandet förmedlas också till publiken: Det långa samarbetet mellan Traveling Jones och Pepe syns även väl i det gemensamma framträdandet; på scenen respekterar musikerna varandra och publiken bjuds på upplevelser, inte minst då de tillsammans framför låtar som Pepes toppbänd H.A.R.P. gjorde berömda på 80-talet. Och vi får också höra Pepes stiliga harpspel på spelningarna!</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>",
                "en": "<p>The five-year-old band of musician brothers Jakke Aho and Juha Sundqvist plays gritty rock in a relaxed but intense style. Also featuring the phenomenal Pepe Alhqvist!</p><p>Five years ago, singer-bassist Jakke Aho and guitarist Juha Sundqvist decided to form a band and invited keyboardist Pekka Qvist and drummer Ossi Nykänen to join them. TRAVELING JONES was born, and the journey began!</p><p>Intensive practice, diligent gigging and laid-back studio work led to the band’s first release, Here Comes That Traveling Jones. From the start, it was clear that the band would play their own music and carefully selected music by other artists, both at their live shows and on their records.</p><p>It was also clear that the music the band played had a clear orientation towards rock – some might say it was Southern rock, while others might call it West Coast rock. What’s obvious is that the band is forging ahead with a rock attitude, but listeners are free to categorise the music however they like. The key is relaxed, swinging, skilful and intense playing.</p><p>The band has also previously collaborated with legendary musicians Eero Raittinen and Pepe Ahlqvist.  The joint music-making had worked well and they wanted to continue it... and now they’re really leaning into Americana!</p><p><b>Pepe Ahlqvist</b><br>This Finnish blues legend needs little introduction; a career that started back in the '70s has continued right up to the present day. Singer/harpist/guitarist Pepe Ahlqvist is still in excellent form; his vocals and playing are stylish and relaxed. The relaxed nature of the performances is also passed on to audiences: The longstanding collaboration between the Traveling Jones and Pepe is also clearly visible in their joint performances. The mutual respect among the musicians on stage and the great experiences offered to the audience are apparent, not least when they perform the songs together that were made popular by Pepe's famous 80's band H.A.R.P.... And, of course, we’ll get to hear Pepe’s elegant harmonica playing at the gigs!</p><p>Duration: 2 h, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64819/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64624",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/jokeri-pokeri-box-ihan-simona-kanneltalo-19345420/",
                        "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-kanneltalo-19345420/",
                        "en": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-kanneltalo-19345420/"
                    },
                    "price": {
                        "fi": "16,80 € / 15,80 €",
                        "sv": "16,80 € / 15,80 €",
                        "en": "16,80 € / 15,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153546,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T15:13:52.074885Z",
                    "last_modified_time": "2024-12-27T15:13:52.074901Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758562.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153546/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T15:13:52.045313Z",
            "last_modified_time": "2024-12-27T15:13:52.146529Z",
            "date_published": null,
            "start_time": "2025-02-08T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten ja aikuisten kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.",
                "sv": "Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.",
                "en": "A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1F91A3ABD2B5E0B8373C6FD4A983AE04/JOKERI_POKERI_BOX_Ihan_Simona_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1F91A3ABD2B5E0B8373C6FD4A983AE04/JOKERI_POKERI_BOX_Ihan_Simona_",
                "en": "http://www.kanneltalo.fi/en/events/event/1F91A3ABD2B5E0B8373C6FD4A983AE04/JOKERI_POKERI_BOX_Ihan_Simona_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "JOKERI POKERI BOX – Ihan Simona!",
                "sv": "JOKERI POKERI BOX – Ihan Simona!",
                "en": "JOKERI POKERI BOX – Ihan Simona!"
            },
            "description": {
                "fi": "<p>Lasten ja aikuisten kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.</p><p>Uudessa Iloisessa show’ssa nähdään maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla. Simon johdolla kaikenikäiset katsojat pääsevät tunnin matkalle taikamaailmaan, jossa mikään ei ole mahdotonta.</p><p>Mukana seikkailevat Simon ja Kirstin eläinkaverit Erkki-kani ja Paloma kyyhky sekä itsepäinen papukaija Eino. Ja toki lapset pääsevät auttamaan taikuria lavalle asti!</p><p>Simon mukaansatempaava esiintyminen takaa, että taikapillerin vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Simon omin sanoin: ”Pitkän urani aikana on jo yksi sukupolvi, ysärilapset, kasvanut aikuisiksi ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa idolia, siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</p><p>Kesto 1 tunti <br>Ikäsuositus: 2–100 v</p>",
                "sv": "<p>Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.</p><p>I den nya glada showen får vi se världens bästa trollkonster smaksatta med en gladlynt scenshow. Under ledning av Simo får åskådare av alla åldrar åka på en timmes resa till trollkonsternas värld, där inget är omöjligt.</p><p>Med i äventyret är Simos och Kirstis djurkompisar kaninen Erkki och duvan Paloma samt den egensinniga papegojan Eino. Och visst får barnen vara med och hjälpa trollkarlen ända upp på scenen!</p><p>Simos medryckande framträdande garanterar att trollpillret verkar länge, humöret piggas upp och vardagens rutiner glöms bort. Med andra ord utlovas högklassig estradunderhållning!</p><p>Själv säger Simo: “Under min långa karriär har redan en generation, nittiotalsbarnen, hunnit växa upp, och de kommer nu för att se sin barndomsidol med sina egna barn. Därför vill jag bjuda på glädje och förundran för alla åldrar.”</p><p>Längd 1 h <br>Åldersrekommendation: 2–100 år</p>",
                "en": "<p>A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant.</p><p>The happy new show will feature some of the world’s best magic tricks accompanied by a light-hearted stage show. Simo leads audiences of all ages on a one-hour journey into a magical world where everything is possible.</p><p>Along for the adventure are Simo and Kirsti’s animal friends, Erkki the rabbit, Paloma the pigeon, and Eino, the stubborn parrot. And, of course, the kids get to assist the magician up on stage!</p><p>Simo’s engaging performance ensures that the magic pill lasts for a long time, refreshing your mind and making you forget the daily hustle and bustle. In a word, this will be high-quality entertainment on the stage!</p><p>In Simo’s own words, “During my long career, one generation – the ‘90s kids – have already grown up, and are now bringing their own children to see their childhood idol. That’s why I want to offer joy and wonder to people of all ages.”</p><p>Duration: 1 h <br>Age recommendation: 2–100 years</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64624/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65113",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153355,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:37.891616Z",
                    "last_modified_time": "2024-12-10T12:14:37.891633Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759412.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153355/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:37.864251Z",
            "last_modified_time": "2024-12-27T15:13:45.766580Z",
            "date_published": null,
            "start_time": "2025-01-08",
            "end_time": "2025-01-12",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tennilän fragmentaarista poetiikkaa tapaileva tekstuaalinen valoteos tutkii epigrammin, sisätilan, mielentilan, ulkopuolen ja kirjoituksen välisiä kytkentöjä.",
                "sv": "Olli-Pekka Tenniläs textuella fasadprojektion närmar sig en fragmentarisk poetik och utforskar kopplingarna mellan epigram, inomhusutrymmen, sinnestillstånd, utsidan och skrivande.",
                "en": "Olli-Pekka Tennilä’s textual façade projection, reminiscent of fragmentary poetics, explores the connections between epigrams, interior spaces, states of mind, exterior spaces and writing."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle",
                "en": "http://www.kanneltalo.fi/en/events/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki",
                "sv": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki",
                "en": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki"
            },
            "description": {
                "fi": "<p>Tennilän fragmentaarista poetiikkaa tapaileva tekstuaalinen valoteos tutkii epigrammin, sisätilan, mielentilan, ulkopuolen ja kirjoituksen välisiä kytkentöjä.</p><p><b>Olli-Pekka Tennilä</b> (s.1980) on jyväskyläläinen runoilija. Hänet tunnetaan fragmentaariseksi kutsutusta tiheästä kielimuodosta. Tennilä on osallistunut lukuisiin eri taidelajeja sekä tieteitä yhdistäviin projekteihin yhteistyössä mm. IC-98:n ja eri yliopistojen kanssa. Paraikaa hän tutkii elämän määritelmien, perimäinformaation ja kirjoituksen käsitteen välisiä kytkentöjä.</p><p>Hänen teoksensa Yksinkeltainen on kaksinkeltaista voitti kirjallisuuden Runeberg-palkinnon.</p><p>Näyttelyn on kuratoinut kuvataiteilija Kirsi Pitkänen ja näyttelyn toteutuksesta vastaa Suomen valotaiteen seura FLASH ry.</p><p>Paikka: Kanneltalon julkisivu ja galleria</p><p><b>8.–12.1. klo 17–20 Lux Helsinki -työpajat</b><br>Heittämällä! – hetken taidetta</p><p>Nyt on sinun vuorosi taiteilla. Tule kokoamaan oma sanaa ja kuvaa yhdistelevä kollaasi ja heijastamaan se Kanneltalon aulaan.</p><p>Luvassa piirtoheittimen taikaa!</p><p>Taidepaja toimii nonstoppina eli voit tulla ja lähteä milloin haluat. Työpaja sopii kaikenikäisille. Taidepajaa ohjaavat taidekasvattaja Aino Malinen, tekstitaituri Venla Niinistö, kuvataiteilija Leena Räsänen ja rap-artisti Anna Tihinen.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Olli-Pekka Tenniläs textuella fasadprojektion närmar sig en fragmentarisk poetik och utforskar kopplingarna mellan epigram, inomhusutrymmen, sinnestillstånd, utsidan och skrivande.</p><p><b>Olli-Pekka Tennilä</b> (f.1980) är en poet från Jyväskylä. Han är känd för sin täta språkform som kallas fragmentarisk. Tennilä har deltagit i talrika projekt som kombinerar olika konstformer och vetenskaper i samarbete med bland annat IC-98 och olika universitet. För tillfället undersöker han kopplingarna mellan olika definitioner, arvsinformation och begreppet skrivande.</p><p>Hans verk Yksinkeltainen on kaksinkeltaista har belönats med Runebergspriset i litteratur.</p><p>Utställningen har kuraterats av bildkonstnär Kirsi Pitkänen och för genomförandet av utställningen svarar Suomen valotaiteen seura FLASH ry.</p><p><b>Lux Helsinki-workshoppar</b><br>NONSTOP-KONSTWORKSHOP<br>Lätt som en plätt! – ögonblickskonst<br>Nu är det din tur att vara konstnärlig. Kom och gör ett eget collage av ord och bilder, och projicera det i Gamlasgårdens lobby. Magi med overheadprojektor utlovas! Konstworkshoppen fungerar nonstop och lämpar sig för alla åldrar. Konstworkshoppen leds av konstpedagog Aino Malinen, textkonstnär Venla Niinistö, bildkonstnär Leena Räsänen och rap-artist Anna Tihinen.</p><p>Fritt inträde</p>",
                "en": "<p>Olli-Pekka Tennilä’s textual façade projection, reminiscent of fragmentary poetics, explores the connections between epigrams, interior spaces, states of mind, exterior spaces and writing.</p><p><b>Olli-Pekka Tennilä</b> (b. 1980) is a poet from Jyväskylä. He is known for his dense, ‘fragmentary’ form of language. Tennilä has participated in numerous projects combining different arts and sciences in collaboration with IC-98 and various universities. He is currently exploring the links between definitions of life, genetic information and the concept of writing.</p><p>His book, Yksinkeltainen on kaksinkeltaista, won the Runeberg Prize for Literature.</p><p>The exhibition is curated by artist Kirsi Pitkänen and organised by the Finnish Light Art Society FLASH ry.</p><p><b>Lux Helsinki workshops</b><br>NONSTOP ART WORKSHOP<br>Heittämällä (projection)! – momentary art<br>Now it’s your turn to make art. Come put together your own collage combining words and images and project it in the Kanneltalo lobby. Experience the magic of overhead projectors! The art workshop runs non-stop and is suitable for all ages. The art workshop will be led by art educator Aino Malinen, text artist Venla Niinistö, visual artist Leena Räsänen and rap artist Anna Tihinen.</p><p>Free admission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65113/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65112",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:37.693762Z",
                    "last_modified_time": "2024-12-10T12:14:37.693780Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759417.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:37.639070Z",
            "last_modified_time": "2024-12-27T15:13:45.659922Z",
            "date_published": null,
            "start_time": "2025-01-08",
            "end_time": "2025-01-12",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lux Helsinki tuo säihkyvää mystisyyttä myös Kanneltalon sisälle. Uskallatko vierailla Totuus-oraakkelissa?",
                "sv": "Besök Totuus-oraklet i Gamlasgårdens galleri!",
                "en": "Visit Kanneltalo Gallery’s Truth oracle!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Totuus",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Totuus_Sanning_",
                "en": "http://www.kanneltalo.fi/en/events/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Truth"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pietu Pietiäinen & Juha Valkeapää: Totuus – Lux Helsinki",
                "sv": "Pietu Pietiäinen–Juha Valkeapää, Totuus (Sanning) – Lux Helsinki",
                "en": "Pietu Pietiäinen–Juha Valkeapää, Truth – Lux Helsinki"
            },
            "description": {
                "fi": "<p>Lux Helsinki tuo säihkyvää mystisyyttä myös Kanneltalon sisälle. Uskallatko vierailla Totuus-oraakkelissa?</p><p>Totuus on oraakkelimainen olio, jonka luona ihmiset vierailevat kuullakseen totuuden. Jotta oraakkelin huoneeseen pääsisi sisään, vierailijan on vastattava kysymykseen: Mikä on totuus? Vastaus kirjoitetaan tietokoneelle, ja se voi olla minkäkielinen tahansa. Opimme että totuus on suhteellinen.</p><p>Totuus on interaktiivinen installaatio, jossa kävijät jakavat totuutensa oraakkelin kanssa. Matala tietokoneääni lukee satunnaisessa järjestyksessä ihmisten kirjoittamia totuuksia. Projisoitu valokeila reagoi ääneen, jolloin siitä tulee sekä oraakkelin silmä että suu.</p><p>Installaatio on inspiroitunut, erinäisten oraakkelilegendojen ohella, arkkienkeli Gabrielin torvesta, johon hän puhaltaa tuomiopäivänä. Olion puhuvan suun kartiomainen muoto muistuttaa myös geometrista kuviota, joka on nimetty saman legendan mukaan ”Gabrielin torveksi”. Se on tunnettu matemaattinen paradoksi kuviosta, jolla on ääretön pinta-ala mutta rajallinen tilavuus. Muita inspiraation lähteitä ovat olleet mystinen roomalainen, marmorinen kaivonkansi La Bocca della Verità eli Totuuden suu ja Anthony McCallin Pure Sculpture -teokset.</p><p>Totuus on puhuva ja liikkuva suu tai silmä. Se muodostaa pimeään, teatterisavulla täytettyyn tilaan syvän, hypnoottisen, kolmiulotteisen tunnelin. Valokartion keskustaan, totuuden suuhun tai silmään astuva vierailija kuulee ei yhden vaan useita totuuksia, joita vierailijat ennen häntä ovat jakaneet oraakkelin kanssa.</p><p>Löydät Totuus-oraakkelin Kanneltalon Galleriasta, tervetuloa!</p><p><b>Pietu Pietiäinen</b> (1966) on valo- ja videosuunnittelija ja taiteilija, joka työskentelee pääasiassa suunnittelijana näyttämötuotannoissa ja musiikkiteollisuudessa. Hän toimii myös nykytaidekentällä tarjoten ratkaisuja av-installaatioihin museoihin, gallerioille ja näyttelyihin ympäri maailmaa. Pietiäinen asuu ja työskentelee Helsingissä ja Kotkassa.</p><p><b>Juha Valkeapää</b> (1967) on äänitaiteilija ja esityksentekijä. 30 vuotta kestäneen uransa aikana hän on luonut erimuotoisia, -kuuloisia ja -näköisiä esityksiä, installaatioita, radioteoksia ja äänimaisemia eri puolilla maailmaa.  Hänen taiteensa keskeiset elementit ovat ääni, läsnäolo, leikkisyys, improvisointi ja elävä kontakti yleisöön. Valkeapää asuu Helsingissä.</p><p><b>8.–12.1. klo 17–20 Lux Helsinki -työpajat</b><br>Heittämällä! – hetken taidetta</p><p>Nyt on sinun vuorosi taiteilla. Tule kokoamaan oma sanaa ja kuvaa yhdistelevä kollaasi ja heijastamaan se Kanneltalon aulaan.</p><p>Luvassa piirtoheittimen taikaa!</p><p>Taidepaja toimii nonstoppina eli voit tulla ja lähteä milloin haluat. Työpaja sopii kaikenikäisille. Taidepajaa ohjaavat taidekasvattaja Aino Malinen, tekstitaituri Venla Niinistö, kuvataiteilija Leena Räsänen ja rap-artisti Anna Tihinen.</p>",
                "sv": "<p>Besök Totuus-oraklet i Gamlasgårdens galleri!</p><p>Totuus är ett orakelaktigt väsen, som människor besöker för att få höra sanningen. För att få komma in i oraklets rum ska gästen svara på frågan: Vad är sanning? Svaret skrivs på en dator, och kan vara på vilket språk som helst. Vi lär oss att sanningen är relativ.</p><p>Totuus är en interaktiv installation, där besökarna delar sin sanning med oraklet. En låg datorröst läser upp de sanningar som människor har skrivit in i slumpmässig ordning. Den projicerade ljuskäglan reagerar på rösten och blir då både oraklets öga och mun.</p><p>Utöver av diverse orakellegender har installationen inspirerats av ärkeängeln Gabriels trumpet som han blåser i på domedagen. Väsendets konformiga talande mun påminner också om geometriska figurer, som enligt samma legend har kallats för “Gabriels trumpet”. Det är en känd matematisk paradox med en figur som har en oändlig yta men en begränsad volym. Andra källor till inspiration har varit det mystiska, romerska brunnslocket La Bocca della Verità, det vill säga sanningens mun, och Anthony McCalls verk Pure Sculpture.</p><p>Totuus är en talande och rörlig mun eller ett talande och rörligt öga. Det skapar en djup, hypnotisk, tredimensionell tunnel i det mörka utrymmet som är fyllt av teaterrök. Gästen som stiger in i centrum av ljuskäglan, sanningens mun eller öga får inte höra bara en, utan flera sanningar, som tidigare gäster har delat med oraklet.</p><p><b>Pietu Pietikäinen</b> (1966) är en ljus- och videodesigner och konstnär, som huvudsakligen jobbar som designer för scenproduktioner och inom musikindustrin. Han är också aktiv inom samtidskonsten och erbjuder lösningar till av-installationer för museer, gallerier och utställningar på olika håll i världen. Pietiläinen bor och arbetar i Helsingfors och Kotka.</p><p><b>Juha Valkeapää</b> (1967) är en ljudkonstnär och föreställningsskapare. Under sin 30-åriga karriär har han skapat föreställningar, installationer, radioverk och ljudlandskap av olika former, med olika ljud och utseenden runt om i världen.  De centrala elementen i hans konst är ljud, närvaro, lekfullhet, improvisation och en levande kontakt till publiken. Valkeapää bor i Helsingfors.</p><p><b>Lux Helsinki-workshoppar</b><br>NONSTOP-KONSTWORKSHOP<br>Lätt som en plätt! – ögonblickskonst<br>Nu är det din tur att vara konstnärlig. Kom och gör ett eget collage av ord och bilder, och projicera det i Gamlasgårdens lobby. Magi med overheadprojektor utlovas! Konstworkshoppen fungerar nonstop och lämpar sig för alla åldrar. Konstworkshoppen leds av konstpedagog Aino Malinen, textkonstnär Venla Niinistö, bildkonstnär Leena Räsänen och rap-artist Anna Tihinen.</p><p>Fritt inträde</p>",
                "en": "<p>Visit Kanneltalo Gallery’s Truth oracle!</p><p>Truth is an oracle-like entity that people visit to hear the truth. In order to enter the oracle’s room, a visitor must answer this question: What is truth? The answer is typed into a computer and <br>can be in any language. We learn that truth is relative.</p><p>Truth is an interactive installation where visitors share their truth with the oracle. A low computer voice reads the truths written by people in random order. A projected spotlight responds to sound, becoming both the eye and the mouth of the oracle.</p><p>The installation was inspired, along with various oracle legends, by the Archangel Gabriel’s horn, which he blows on the Day of Judgement. The conical shape of the being’s mouth that speaks also resembles a geometric pattern, which has been named “Gabriel’s horn” in accordance with this legend. It is a well-known mathematical paradox of a pattern with infinite area but finite volume. Other sources of inspiration include the mysterious Roman marble mask, La Bocca della Verità (The Mouth of Truth), and Anthony McCall’s Pure Sculpture pieces.</p><p>Truth is a talking and moving mouth or eye. It creates a deep, hypnotic, three-dimensional tunnel in a dark, theatrical space. A visitor stepping into the centre of the light cone – the mouth or eye of Truth – hears not only one but several truths that have been shared with the oracle by previous visitors.</p><p><b>Pietu Pietiäinen</b> (1966) is a lighting and video designer and artist who works mainly as a designer in stage productions and the music industry. He also works in contemporary art, providing solutions for AV installations for museums, galleries and exhibitions around the world. Pietiäinen lives and works in Helsinki and Kotka.</p><p><b>Juha Valkeapää</b> (1967) is a sound artist and performance creator. In a career spanning 30 years, he has created performances, installations, radio productions and soundscapes of all shapes, sizes and forms around the world.  The central elements of his art are sound, presence, playfulness, improvisation and direct interaction with the audience. Valkeapää lives in Helsinki.</p><p><b>Lux Helsinki workshops</b><br>NONSTOP ART WORKSHOP<br>Heittämällä (projection)! – momentary art<br>Now it’s your turn to make art. Come put together your own collage combining words and images and project it in the Kanneltalo lobby. Experience the magic of overhead projectors! The art workshop runs non-stop and is suitable for all ages. The art workshop will be led by art educator Aino Malinen, text artist Venla Niinistö, visual artist Leena Räsänen and rap artist Anna Tihinen.</p><p>Free admission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ezlm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-12-27T14:42:13.609573Z",
            "last_modified_time": "2024-12-27T14:42:13.609602Z",
            "date_published": "2024-12-27T14:39:00Z",
            "start_time": "2025-05-24T13:00:00Z",
            "end_time": "2025-05-24T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa koko perheen kanssa hauskan ajanvietoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinostuneille!"
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "Avoin satutunti arabiaksi"
            },
            "description": {
                "fi": "<p>Tervetuloa koko perheen kanssa hauskan ajanvietoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinostuneille!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ezlm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64865",
            "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/micke-lefty-feat-chef-25-vuotisjuhlakonsertti-malmitalo-19401510/",
                        "sv": "https://www.lippu.fi/event/micke-lefty-feat-chef-25-vuotisjuhlakonsertti-malmitalo-19401510/",
                        "en": "https://www.lippu.fi/event/micke-lefty-feat-chef-25-vuotisjuhlakonsertti-malmitalo-19401510/"
                    },
                    "price": {
                        "fi": "24,80 € / 20,80 €",
                        "sv": "24,80 € / 20,80 €",
                        "en": "24,80 € / 20,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153543,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:14:00.338032Z",
                    "last_modified_time": "2024-12-27T14:14:00.338046Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760585.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153543/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:14:00.311303Z",
            "last_modified_time": "2024-12-27T14:14:00.406193Z",
            "date_published": null,
            "start_time": "2025-03-06T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Micke Björklöf ja Lefty Leppänen muodostavat Chef Kivimäen kanssa yhden Euroopan kiinnostavimmista tämän päivän akustisista blues- ja juurimusiikkiyhtyeistä.",
                "sv": "Tillsammans med Chef Kivimäki bildar Micke Björklöf och Lefty Leppänen ett av Europas mest intressanta samtida akustiska blues- och rootsmusikband.",
                "en": "Together with Chef Kivimäki, Micke Björklöf and Lefty Leppänen form one of the most interesting acoustic blues and roots bands in Europe today."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DD2F40FC84CAA1C172599572DA506431/MICKE_LEFTY_feat_CHEF_25-vuotisjuhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DD2F40FC84CAA1C172599572DA506431/MICKE_LEFTY_feat_CHEF_25-arsjubileumskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/DD2F40FC84CAA1C172599572DA506431/MICKE_LEFTY_feat_CHEF_25-year_anniversary_concert"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MICKE & LEFTY feat. CHEF 25-vuotisjuhlakonsertti",
                "sv": "MICKE & LEFTY feat. CHEF 25-årsjubileumskonsert",
                "en": "MICKE & LEFTY feat. CHEF 25-year anniversary concert"
            },
            "description": {
                "fi": "<p>Micke Björklöf ja Lefty Leppänen muodostavat Chef Kivimäen kanssa yhden Euroopan kiinnostavimmista tämän päivän akustisista blues- ja juurimusiikkiyhtyeistä.</p><p>Micke & Lefty feat. Chef trio on viihdyttänyt ja valloittanut yleisönsä energisillä keikoillaan niin pienissä klubeissa kuin suurilla festivaaleillakin ympäri Eurooppaa. Yhtyettä onkin tituleerattu Suomen viihdyttävimmäksi blues & roots -bändiksi, jossa yhdistyy korkea musiikillinen ammattitaito sekä viihdyttäjän rooli.</p><p>Näiden kolmen multi-instrumentalistin muodostaman bändin tavaramerkiksi on muodostunut akustisten soitinten ja vahvan solistisen osaamisen lisäksi bluesille ei niin ominaista olevat kolmiääniset laulustemmat. Omaperäisen ja aidon blues-soundin viimeistelevät Lefty Leppäsen maailman luokkaa oleva virtuoosimainen slidekitara, matkalaukulla varustettu rumpusetti, erikoisrakenteinen akustinen basso sekä rosoinen huuliharppu.</p><p>Tänä keväänä yhtye juhlistaa 25-vuotista toimintaansa juhlakonsertein ympäri maan. Luvassa on siis neljännesvuosisadan mittaisen uran vauhdikasta juhlintaa. Juhlavuoden kunniaksi kokoonpano julkaisee livealbumin. Bändin viimeisin studioalbumi Let The Fire Lead oli kansainvälinen arvostelumenestys ja se nousi myös useille kansainvälisille radiosoittolistoille.</p><p>Trio on edustanut Suomea maailman suurimmassa bluestapahtumassa International Blues Challengessa Yhdysvaltain Memphisissä sekä European Blues Challenge tapahtumassa, Berliinissä.</p><p>“Omaperäisyys on Micke & Lefty feat. Chefin ehdoton valtti. Heissä yhdistyvät ainutkertainen ilmaisu sekä laadukas sävellys- ja muusikontyö. Elävässä tilanteessa huumori ja ilmeinen tekemisen ilo täydentävät kokonaisuuden, joka varmasti erottuu kansainvälisessä vertailussa” –Blues Finland <br> <br><b>Kokoonpano</b><br>Micke Björklöf: laulu, rummut, perkussiot, huuliharppu <br>Lefty Leppänen: laulu, slide- ja akustinen kitara, huuliharppu <br>Chef: laulu, basso</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Tillsammans med Chef Kivimäki bildar Micke Björklöf och Lefty Leppänen ett av Europas mest intressanta samtida akustiska blues- och rootsmusikband.</p><p>Micke & Lefty feat. Chef trio har underhållit och hänfört publiken på sina energiska spelningar, både i små klubbar och på stora festivaler omkring Europa.  Bandet har även titulerats Finlands mest underhållande blues & roots-band, som kombinerar en hög musikalisk yrkeskunskap med underhållarens roll.</p><p>Varumärket för bandet, som består av dessa tre multiinstrumentalister, har bildats av akustiska instrument och stark solistisk kunskap, men även trestämmiga sångstämmor som inte är så typiska för blues. Det originella och äkta bluessoundet fullbordas av Lefty Leppänens virtuosmässiga slidegitarr som är i världsklass, ett trumset som är försett med en resväska, en akustisk bas med specialkonstruktion samt ett strävt munspel.</p><p>Denna vår firar bandet sin 25-åriga verksamhet med jubileumskonserter på olika håll i landet. Fartfyllt firande av den kvartssekellånga karriären utlovas alltså. Till jubileumsårets ära släpper ensemblen ett livealbum. Bandets senaste studioalbum Let The Fire Lead var en internationell kritikerframgång, och togs även upp på flera internationella radiospellistor.</p><p>Trio har representerat Finland på världens största bluesevenemang International Blues Challenge i Memphis i USA samt på evenemanget European Blues Challenge i Berlin.</p><p>“Originalitet är utan tvivel trumfkortet för Micke & Lefty feat. Chef.  De är en kombination av unikt uttryck och högkvalitativt kompositörs- och musikerarbete. I livesituationer kompletteras helheten av humor och en uppenbar skaparglädje, som säkert framträder vid internationell jämförelse” – Blues Finland <br> <br><b>Ensemble</b><br>Micke Björklöf: sång, trummor, slagverk, munspel <br>Lefty Leppänen: sång, slide- och akustisk gitarr, munspel <br>Chef: sång, bas</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>",
                "en": "<p>Together with Chef Kivimäki, Micke Björklöf and Lefty Leppänen form one of the most interesting acoustic blues and roots bands in Europe today.</p><p>The trio Micke & Lefty feat. Chef has entertained and won over audiences with their energetic performances in small clubs and large festivals across Europe. The band has been dubbed the most entertaining blues & roots band in Finland, combining a high level of musical professionalism with the role of entertainer.</p><p>These three multi-instrumentalists have created a band characterised not only by their acoustic instruments and strong soloist skills, but also by three-part vocal harmonies that are not so typical of the blues. Their original and authentic blues sound is topped off by Lefty Leppänen’s world-class virtuosity on slide guitar, suitcase drum kit, custom-built acoustic bass, and gritty harmonica.</p><p>This spring, the band celebrates its 25th anniversary with a series of concerts around the country. In store is a lively celebration of a quarter-century career. The band will release a live album to celebrate their anniversary. The band’s latest studio album, Let The Fire Lead, was an internationally acclaimed success and reached many international radio playlists.</p><p>The trio has represented Finland at the world’s largest blues event, the International Blues Challenge in Memphis, USA and the European Blues Challenge in Berlin, Germany.</p><p>“Originality is Micke & Lefty feat.  Chef’s ultimate trump card. They combine their unique expression with high-quality composition and musicianship. In live settings, the humour and obvious joy of creating complete the whole package, which certainly stands out in international comparisons” - Blues Finland <br> <br><b>Ensemble:</b><br>Micke Björklöf: vocals, drums, percussion, harmonica <br>Lefty Leppänen: vocals, slide and acoustic guitar, harmonica <br>Chef: vocals, bass</p><p>Duration: 2 h, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64865/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64911",
            "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/johnny-burgin-usa-quique-gomez-esp-malmitalo-19357865/",
                        "sv": "https://www.lippu.fi/event/johnny-burgin-usa-quique-gomez-esp-malmitalo-19357865/",
                        "en": "https://www.lippu.fi/event/johnny-burgin-usa-quique-gomez-esp-malmitalo-19357865/"
                    },
                    "price": {
                        "fi": "24 € / 21 € / 11 €",
                        "sv": "24 € / 21 € / 11 €",
                        "en": "24 € / 21 € / 11 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:59.129190Z",
                    "last_modified_time": "2024-12-27T14:13:59.129203Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761629.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153540/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:59.101388Z",
            "last_modified_time": "2024-12-27T14:13:59.189528Z",
            "date_published": null,
            "start_time": "2025-02-25T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule kuulemaan miten Malmisalissa yhdistyvät Burginin voimakas ja villi kitaratyöskentely sekä Gomezin monipuolinen, jazz-vaikutteita sisältävä blues-laulu.",
                "sv": "Kom till Malmsalen för att höra hur Burgins kraftiga och vilda gitarrarbete kombineras med Gomez mångsidiga, jazzinspirerade bluessång.",
                "en": "Come to Malmisali to hear Burgin’s powerful and wild guitar work combined with Gomez’s versatile, jazz-influenced blues vocals."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A02D850559823D02706B935979C6484C/Johnny_Burgin_US_Quique_Gomez_ESP_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A02D850559823D02706B935979C6484C/Johnny_Burgin_US_Quique_Gomez_ESP_",
                "en": "http://www.malmitalo.fi/en/events/event/A02D850559823D02706B935979C6484C/Johnny_Burgin_US_Quique_Gomez_ESP_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Johnny Burgin (US) & Quique Gomez (ESP)",
                "sv": "Johnny Burgin (US) & Quique Gomez (ESP)",
                "en": "Johnny Burgin (US) & Quique Gomez (ESP)"
            },
            "description": {
                "fi": "<p>Tule kuulemaan miten Malmisalissa yhdistyvät Burginin voimakas ja villi kitaratyöskentely sekä Gomezin monipuolinen, jazz-vaikutteita sisältävä blues-laulu.</p><p>Amerikkalainen blueskitaristi ja laulaja Johnny Burgin sekä espanjalaissyntyinen harpisti Quique Gomez ovat molemmat luoneet pitkän ja kansainvälisen uran muusikkoina omilla tahoillaan. Blues-maailmassa molemmat tunnetaan erityisesti intensiivisistä kiertueistaan useilla eri mantereilla.</p><p>Etelä-Carolinasta Chicagoon muuttanut Johnny Burgin tuli tunnetuksi ja nousi kulttimaineeseen 1990-luvulla juuri Chicagossa. Johnnylla on jo kymmenien vuosien kokemus kyseisen kaupungin bluesklubien vetonaulana, muun muassa Buddy Guyn Legends -klubilla. Mittavan levytysuransa aikana hän on levyttänyt muun muassa seitsemän albumia maineikkaalle Delmark-levymerkille.</p><p>Madridista lähtöisin oleva Quique Gomez aloitti bluesharpun soiton sekä perusti ensimmäisen yhtyeensä 18-vuotiaana. Vuodesta 2008 lähtien hän on esiintynyt aktiivisesti molemmilla puolilla Atlantin valtamerta ja on työskennellyt muun muassa John Primerin, Eddie C. Campbellin sekä Bob Strogerin kanssa.</p><p>Muutaman vuoden ajan Burgin ja Gomez ovat kiertäneet blues-areenoja myös yhdessä. Heidän yhteistyönsä yhdistää Burginin voimakkaan ja villin kitaratyöskentelyn sekä Gomezin monipuolisen, jazz-vaikutteita sisältävän blues-laulannan. Heidän yhteinen soundinsa on bluesin perinteitä kunnioittava mutta silti uutta luova. Molemmat tunnetaan kyvystään vangita kuulijansa intensiivisellä energiallaan ja tunnepitoisella esiintymisellään.</p><p>Helmikuussa 2025 miehet ulottavat kiertueensa myös Suomeen ja yhdistävät voimansa heille jo ennestään tuttujen kiertuekumppaneiden, suomalaisen bluesin eturivin rytmiryhmän Jaska Prepulan ja Mikko Peltolan kanssa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Kom till Malmsalen för att höra hur Burgins kraftiga och vilda gitarrarbete kombineras med Gomez mångsidiga, jazzinspirerade bluessång.</p><p>Den amerikanska bluesgitarristen och sångaren Johnny Burgin och den spanskfödda harpisten Quique Gomes har haft en lång och internationell karriär som musiker, var och en på sitt håll. I bluesvärlden är båda kända särskilt för sina intensiva turnéer på flera olika kontinenter.</p><p>Johnny Burgin som flyttade från South Carolina till Chicago blev känd och uppnådde kultstatus på 1990-talet just i Chicago. Johnny har redan flera årtionden av erfarenhet som dragplåster för bluesklubbarna i denna stad, bland annat Buddy Guys klubb Legends. Under sin omfattande inspelningskarriär har han bland annat spelat in sju album för det välkända skivmärket Delmark.</p><p>Quique Gomez som är hemma från Madrid började spela bluesmunspel och grundade sitt första band som 18-åring. Från och med år 2008 har han framträtt aktivt på båda sidor av Atlanten och jobbat bland annat med John Primer, Eddie C. Campbell och Bob Stroger.</p><p>Under några års tid har Burgin och Gomez även turnerat bluesarenorna tillsammans. Deras samarbete kombinerar Burgins starka och vilda gitarrarbete med Gomez mångsidiga och jazzinspirerade bluessång. Deras gemensamma sound respekterar bluesens traditioner, men skapar ändå nytt. Båda är kända för sin förmåga att fängsla lyssnarna med sin intensiva energi och sitt känslostarka framträdande.</p><p>I februari 2025 omfattar männens turné även Finland, och de kombinerar sina styrkor med turnépartner de känner sedan tidigare, den framstående rytmgruppen inom finländsk blues Jaska Prepula och Mikko Peltola.</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>",
                "en": "<p>Come to Malmisali to hear Burgin’s powerful and wild guitar work combined with Gomez’s versatile, jazz-influenced blues vocals.</p><p>American blues guitarist and singer Johnny Burgin and Spanish-born harpist Quique Gomez have both forged long and international careers as musicians in their own right. In the blues world, both are known especially for their intensive touring on many continents.</p><p>Johnny Burgin, who moved to Chicago from South Carolina, came to prominence and rose to cult fame in Chicago in the 1990s. Johnny already has decades of experience headlining the city’s blues clubs, including Buddy Guy’s Legends. During his extensive recording career, he has recorded seven albums for the renowned Delmark label, among others.</p><p>Quique Gomez, hailing from Madrid, started playing the blues harp and formed his first band at the age of 18. Since 2008, he has been active on both sides of the Atlantic Ocean, working with John Primer, Eddie C. Campbell, and Bob Stroger, among others.</p><p>For several years, Burgin and Gomez have also toured blues arenas together. Their collaboration combines Burgin’s powerful and wild guitar work with Gomez’s versatile, jazz-influenced blues vocals. Their combined sound is respectful of the blues tradition, yet creative in new ways. Both are known for their ability to captivate audiences with their intense energy and emotional performances.</p><p>In February 2025, the men will expand their tour to Finland and join forces with their already familiar touring partners, the rhythm section at the forefront of Finnish blues, Jaska Prepula and Mikko Peltola.</p><p>Duration: 2 h, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64904",
            "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/nothingformoney/nothing-for-money-a-night-in-dire-straits-3769553/",
                        "sv": "https://www.lippu.fi/artist/nothingformoney/nothing-for-money-a-night-in-dire-straits-3769553/",
                        "en": "https://www.lippu.fi/artist/nothingformoney/nothing-for-money-a-night-in-dire-straits-3769553/"
                    },
                    "price": {
                        "fi": "24,80 € / 22,80 €",
                        "sv": "24,80 € / 22,80 €",
                        "en": "24,80 € / 22,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153539,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:58.890881Z",
                    "last_modified_time": "2024-12-27T14:13:58.890895Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761481.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153539/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:58.863750Z",
            "last_modified_time": "2024-12-27T14:13:58.954350Z",
            "date_published": null,
            "start_time": "2025-02-21T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nothing for Money on suomalainen kokoonpano, joka esittää tyylillä ja pieteetillä Dire Straits-yhtyeen musiikkia.",
                "sv": "Nothing for Money är en finländsk ensemble som framför musik av bandet Dire Straits med stil och pietet.",
                "en": "Nothing for Money is a Finnish band that performs the music of Dire Straits with style and attention to detail."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1706F319F149719378FCBD080663FFC/Nothing_for_Money_plays_Dire_Straits",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1706F319F149719378FCBD080663FFC/Nothing_for_Money_plays_Dire_Straits",
                "en": "http://www.malmitalo.fi/en/events/event/D1706F319F149719378FCBD080663FFC/Nothing_for_Money_plays_Dire_Straits"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nothing for Money plays Dire Straits",
                "sv": "Nothing for Money plays Dire Straits",
                "en": "Nothing for Money plays Dire Straits"
            },
            "description": {
                "fi": "<p>Nothing for Money on suomalainen kokoonpano, joka esittää tyylillä ja pieteetillä Dire Straits-yhtyeen musiikkia.</p><p>Luvassa on monien tuttujen Straits-hittien lisäksi livenä harvoin kuultuja helmiä. Vuonna 2025 tulee kuluneeksi 40 vuotta Brothers in Arms -albumin julkaisusta. Nothing for Money juhlistaa merkkivuotta No Arms, Only Guitars -kiertueella, jonka ohjelmistossa on useita Brothers in Arms -levyn kappaleita. <br> <br><b>Nothing for Money – orkesteri</b><br>Juha Ahvenainen – koskettimet <br>Mikko Huotari – basso <br>Susan Jaser – laulu, perkussiot <br>Ville ”Lefty” Leppänen – pedal steel <br>Joonas Metsäniemi – kitara <br>Jukka Metsäniemi – laulu, kitara <br>Tuomas Sipponen – huilu, saksofoni <br>Nicke von Weissenberg - rummut <br> <br> <br><b>Dire Straits</b><br>Lontoossa 1970-luvun lopulla, keskellä punk-kuumetta perustettu Dire Straits kipusi monista juurevista aineksista ammentaen ja jatkuvasti musiikillista ilmaisuaan kehittäen muutamassa vuodessa pubibändistä standionrock-koneeksi maailman suosituimpien yhtyeiden eliittiin. Yhtyeellä oli oma tunnistettava soundinsa, eikä vähiten keulakuvansa Mark Knopflerin ansiosta, jonka yhtye Dire Straits käytännössä oli. Suosion lakipisteen Dire Straits saavutti v. 1985 julkaistulla Brothers in Arms-levyllä, joka myi yli 30 miljoonaa kopiota.  Aikaan se oli ensimmäisiä nimenomaan syntyneitä CD-markkinoita varten äänitettyjä levyjä, jonka teossa oli hyödynnetty uutta digitaalista tekniikkaa.  Dire Straits hajosi lopullisesti vuonna 1995. Mark Knopfler puolestaan on jatkanut menestyksekästä soolouraansa näihin päiviin asti.</p><p>Kesto: 2 t 15 min, sis. 20 min väliajan</p>",
                "sv": "<p>Nothing for Money är en finländsk ensemble som framför musik av bandet Dire Straits med stil och pietet.</p><p>Utöver många välbekanta Straits-hittar utlovas även pärlor som sällan hörs live. År 2025 är det 40 år sedan albumet Brothers in Arms släpptes. Nothing for Money firar jubileumsåret med turnén No Arms, Only Guitars, vars program innehåller flera låtar från albumet Brothers in Arms. <br> <br><b>Nothing for Money – orkester</b><br>Juha Ahvenainen – keyboard <br>Mikko Huotari – bas <br>Susan Jaser – sång, slagverk <br>Ville “Lefty” Leppänen – pedal steel <br>Joonas Metsäniemi – gitarr <br>Jukka Metsäniemi – sång, gitarr <br>Tuomas Sipponen – flöjt, saxofon <br>Nicke von Weissenberg - trummor <br> <br>Längd: 2t 20min</p>",
                "en": "<p>Nothing for Money is a Finnish band that performs the music of Dire Straits with style and attention to detail.</p><p>In addition to many familiar hits from Dire Straits, there will also be some gems that are rarely heard live. In 2025, it will be 40 years since the release of the Brothers in Arms album. Nothing for Money celebrates its anniversary with the No Arms, Only Guitars tour, featuring several songs from the Brothers in Arms album. <br> <br><b>Nothing for Money – band</b><br>Juha Ahvenainen – keyboards <br>Mikko Huotari – bass <br>Susan Jaser – vocals, percussion <br>Ville “Lefty” Leppänen – pedal steel <br>Joonas Metsäniemi – guitar <br>Jukka Metsäniemi – vocals, guitar <br>Tuomas Sipponen – flute, saxophone <br>Nicke von Weissenberg – drums</p><p>Duration: 2 hours, 20 minutes (including break)</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64904/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64837",
            "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/sharon-lewis-usa-malmitalo-19384373/",
                        "sv": "https://www.lippu.fi/event/sharon-lewis-usa-malmitalo-19384373/",
                        "en": "https://www.lippu.fi/event/sharon-lewis-usa-malmitalo-19384373/"
                    },
                    "price": {
                        "fi": "34,90 € / 28,90 € / 23,80 €",
                        "sv": "34,90 € / 28,90 € / 23,80 €",
                        "en": "34,90 € / 28,90 € / 23,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153537,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T13:14:26.968802Z",
                    "last_modified_time": "2024-12-27T13:14:26.968819Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760453.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153537/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T13:14:26.908619Z",
            "last_modified_time": "2024-12-27T13:14:27.092171Z",
            "date_published": null,
            "start_time": "2025-02-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Bluesdiiva Sharon Lewis on yksi tämän päivän taitavimmista laulajista Chicagon blues-skenessä.",
                "sv": "Bluesdivan Sharon Lewis är en av dagens skickligaste sångare inom Chicagos bluesscen.",
                "en": "Blues diva Sharon Lewis is one of the finest vocalists on Chicago’s blues scene today."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A323B6B18DA73B823AD4E6EEF20F4CEA/Sharon_Lewis_US_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A323B6B18DA73B823AD4E6EEF20F4CEA/Sharon_Lewis_US_",
                "en": "http://www.malmitalo.fi/en/events/event/A323B6B18DA73B823AD4E6EEF20F4CEA/Sharon_Lewis_US_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sharon Lewis (US)",
                "sv": "Sharon Lewis (US)",
                "en": "Sharon Lewis (US)"
            },
            "description": {
                "fi": "<p>Bluesdiiva Sharon Lewis on yksi tämän päivän taitavimmista laulajista Chicagon blues-skenessä.</p><p>Lewisin vahva sekoitus soulia, bluesia ja R&B:tä toimivat täydellisenä soundtrackina artistin sielukkaille lyriikoille.</p><p>Sharon Lewis syntyi Texasissa ja aloitti musiikkiuransa jo varhain gospel-kuorossa. Hän muutti Chicagoon pysyvästi vuonna 1975, ja 90-luvun alussa hän alkoi esiintyä aktiivisesti kaupungin bluespiireissä. Sittemmin hän on julkaissut neljä albumia.</p><p><b>Kokoonpano</b><br>Sharon Lewis, laulu<br>Kenan Özdemir, kitara ja laulu<br>Erkan Özdemir, basso<br>Levent Özdemir, rummut</p><p>Kesto: 1t 15 min</p>",
                "sv": "<p>Bluesdivan Sharon Lewis är en av dagens skickligaste sångare inom Chicagos bluesscen.</p><p>En stark blandning av soul, blues och R&B fungerar som ett perfekt soundtrack för artistens själfulla låttexter.</p><p>Sharon föddes i Texas och inledde tidigt sin musikkarriär i en gospelkör. Hon flyttade permanent till Chicago år 1975, och i början av 90-talet började hon uppträda flitigt i stadens blueskretsar. Sedan dess har hon släppt fyra album.</p><p><b>Ensemble</b><br>Sharon Lewis, sång<br>Kenan Özdemir, gitarr och sång<br>Erkan Özdemir, bas<br>Levent Özdemir, trummor</p>",
                "en": "<p>Blues diva Sharon Lewis is one of the finest vocalists on Chicago’s blues scene today.</p><p>Her blend of soul, blues, and r&B delivers the perfect soundtrack for her lyrics. Born in Texas, Sharon’s earliest musical experience was as a member of a gospel choir. She moved to Chicago permanently in 1975, became active on the Chicago blues scene in the early 90s and has since released four albums.<br>Originating from Texas, Sharon is one of the most celebrated Chicago blues singers of today.</p><p><b>Band members</b><br>Sharon Lewis, vocals<br>Kenan Özdemir, guitar and vocals<br>Erkan Özdemir, bass<br>Levent Özdemir, drums</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64837/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65312",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3801230"
                    },
                    "price": {
                        "fi": "35,90-39,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T10:14:09.011140Z",
                    "last_modified_time": "2024-12-27T10:14:09.011157Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764459.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T10:14:08.959739Z",
            "last_modified_time": "2024-12-27T10:14:09.162632Z",
            "date_published": null,
            "start_time": "2025-05-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Julge eestlase rind on rasvane ja jultunud pealehakkamine tähendab poolt võitu?"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/152EAD1E3C87F4F69208E77DA2B4F084/Kalevipojad_Made_In_Finland"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kalevipojad – Made In Finland"
            },
            "description": {
                "fi": "<p>Julge eestlase rind on rasvane ja jultunud pealehakkamine tähendab poolt võitu?</p><p>Eestlased on alati uskunud endasse, ja sellele tõele on rajatud ka kahevaatuseline komöödia ”Kalevipojad – Made in Finland”. Näidendile pakub raamid Soome, aga sisu eest vastutavad julged eestlased. Eesti ja Soome rahvad on nüüdseks juba üle 30 aasta jagu marssinud ühisel rajal. On olnud rõõmu ja raskust, teineteisemõistmist ja mittemõistmist, nagu elus ikka.<br>  <br>Kalevipojad on käinud põhjanaabri juures rikkaks ja õndsaks saamas alati. Ka sellel korral seavad vahvad Eesti mehed sammud lombi taha ennast kehtestama. Tegus inimene leiab tööd alati, ja võtab vastu ka selliseid ülesandeid, millest jõud üle ei käi. Ehitamine, lammutamine, tohterdamine ja laulmine – käkitegu! Samas saame paralleelselt jälgida, kuidas ja milleks mindi Eestist Soome juba ennemuistsel ajal. Ja kas minemise põhjused on aastasadadega üldse väga muutunud.    <br> <br>Koduigatsus ei lase ühel õigel eestlasel välismaal olles rahulikult magada. Raha pärast võõrsil rabelemine ei sobi igale inimesele. Vahel juhtub ka nii, et lohutaja leidub kohalikust kõrtsist, ja sellest need jamad alles algavad. Ka kriminaalne maailm proovib meelitada ausaid, tööle tulnud mehi oma kleepuvasse võrgustikku. Soome on lihtne minna, aga seal on raske olla – nii usub vanarahvas.    <br> <br>Elumaitseline Kalevipojad lahendab iga olukorra huumoriga. Nii raske ei ole kunagi, et naerda ei jõuaks. Soome läinud mehed on suuremad kui nende saatus. Kohalike eelarvamused ei sega elamist ja töötamist.<br>         <br>”Kalevipojad – Made In Finland” on komöödia, milles reaalelu tragöödia, naabrimehelik huumor ja optimistlik eestlus moodustavad ühes säriseva terviku. Enne kui Soome tööle lähed, vaata ära see näidend! Ja äkki pärast ei lähegi, või kui ikka lähed, siis palju targemana.<br> <br>Antto Terras (s. 1973 Tallinnas) on Eesti päritolu Soome kirjanik, humorist ja lavastaja, kelle sulest on ilmunud 19 raamatut ja 7 näidendit. Kalevipojad on tema esimene teatritöö kodu-Eestis.</p><p>Lavastaja Antto Terras.<br> <br>Mängivad Jan Uuspõld, Indrek Taalmaa, Ott Sepp.<br> <br>Kesto n. 2 h 20 min, sisältää väliajan<br> <br>Ikäraja: K-18<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Vana Baskini Teater Oü"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}