Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 1655,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=36",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=34"
    },
    "data": [
        {
            "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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758903.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "provider": null,
            "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>"
            },
            "short_description": {
                "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levoton Tuhkimo (7) – Kino Helios",
                "sv": "Levoton Tuhkimo (7) – Kino Helios",
                "en": "Levoton Tuhkimo (7) – Kino Helios"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "info_url": null,
                    "price": 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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760687.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "provider": null,
            "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>"
            },
            "short_description": {
                "fi": "Kaikkien suosikkisupersankariperhe palaa elokuvassa Ihmeperhe 2!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joululoman ilmaisleffa: Ihmeperhe 2 (7)",
                "sv": "Joululoman ilmaisleffa: Ihmeperhe 2",
                "en": "Joululoman ilmaisleffa: Ihmeperhe 2"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758900.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "provider": null,
            "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>"
            },
            "short_description": {
                "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levoton Tuhkimo (7) – Kino Helios",
                "sv": "Levoton Tuhkimo (7) – Kino Helios",
                "en": "Levoton Tuhkimo (7) – Kino Helios"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "info_url": null,
                    "price": 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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760686.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "provider": null,
            "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>"
            },
            "short_description": {
                "fi": "Mei Lee on 13-vuotias itsevarma nörtti, joka tasapainoilee äitinsä velvollisuudentuntoisena tyttärenä ja murrosiän tuoman kaaoksen keskellä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joululoman ilmaisleffa: Punainen (7)",
                "sv": "Joululoman ilmaisleffa: Punainen (7)",
                "en": "Joululoman ilmaisleffa: Punainen (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64936/?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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760467.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Osmo Ikonen Malmitalossa",
                "sv": "Osmo Ikonen i Malms kulturhus",
                "en": "Osmo Ikonen at Malmitalo"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760302.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "provider": null,
            "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>"
            },
            "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!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Traveling Jones feat. Pepe Ahlqvist",
                "sv": "Traveling Jones feat. Pepe Ahlqvist",
                "en": "Traveling Jones feat. Pepe Ahlqvist"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64819/?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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760585.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "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"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761629.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "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)"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761481.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "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"
            },
            "provider_contact_info": 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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760453.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sharon Lewis (US)",
                "sv": "Sharon Lewis (US)",
                "en": "Sharon Lewis (US)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64837/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63750",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ykspihlajan-kino-orkesteri-malmitalo-18707237/",
                        "sv": "https://www.lippu.fi/event/ykspihlajan-kino-orkesteri-malmitalo-18707237/",
                        "en": "https://www.lippu.fi/event/ykspihlajan-kino-orkesteri-malmitalo-18707237/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-12T14:13:35.943773Z",
                    "last_modified_time": "2024-07-12T14:13:35.943792Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751716.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-12T14:13:35.921531Z",
            "last_modified_time": "2024-12-20T01:14:43.113564Z",
            "date_published": null,
            "start_time": "2025-03-12T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7AD95E299039F54819D47728DFF90DD9/LOPPUUNMYYTY_Ykspihlajan_Kino-orkesteri",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7AD95E299039F54819D47728DFF90DD9/SLUTSALD_Ykspihlaja_Kino-orkestern",
                "en": "http://www.malmitalo.fi/en/events/event/7AD95E299039F54819D47728DFF90DD9/SOLD_OUT_Ykspihlaja_Kino_Orchestra"
            },
            "provider": null,
            "description": {
                "fi": "<p>Luvassa italoiskelmän ja suomalaisen tanssimusiikin innoittamaa elokuvamusiikkia.</p><p>Konsertti on siirtynyt. Aiemmin ilmoitettu päivämäärä konsertille oli 19.9.2024. Uusi päivämäärä on 12.3.2025. Aiemmin ostetut liput käyvät sellaisenaan maaliskuun konserttiin, mutta lippurahoja voi myös hakea takaisin. Lippurahojen palautuksia voi hakea tämän verkkolinkin kautta: https://web.lippu.fi/palautus/</p><p>Ykspihlajan Kino-orkesteri on Kokkolan satamakaupunginosassa Ykspihlajassa vuonna 2012 perustettu orkesteri, jonka ensimmäinen tehtävä oli säveltää musiikki ja säestää se livenä Juho Kuosmasen mykkäelokuvaan Romu-Mattila ja kaunis nainen.</p><p>Sen jälkeen Kino-orkesteri on alkanut elää omaa elämäänsä ja keikkailee esittäen pääasiassa elokuvista tuttua musiikkia uusina sovituksina. Sittemmin Kino-orkesteri on säveltänyt ja esittänyt musiikin myös Juho Kuosmasen mykkäelokuvatrilogian muihin osiin, vuonna 2017 valmistuneeseen Salaviinanpolttajat-lyhytelokuvaan sekä vuonna 2023 ensi-iltansa saaneeseen Kaukaiseen planeettaan. Myös Kuosmasen elokuvassa Hymyilevä mies (2016) kuullaan orkesterin musiikkia.</p><p>Kino-orkesteri on säveltänyt ja esittänyt musiikkia myös mykkäelokuvakauden klassikoihin, muun muassa William A. Wellmanin 1920-luvun elokuvaan Beggars of life.</p><p>Orkesteri on hakenut innoituksensa 1960-luvun italoiskelmästä ja kotimaisesta tanssimusiikista, mutta orkesterin omaperäiset sanoitukset valottavat nostalgisia sävelmaisemia uudesta kulmasta.</p><p>Ykspihlajan Kino-orkesterissa laulavat sisarukset Anna, Oona ja Laura Airola, ja se koostuu muista vapaan kentän muusikoista ja teatterialan ammattilaisista. Kino-orkesterissa soittavat kitaristit Miika Snåre sekä Tuomas Asanti, trumpetisti Miia Reko, basisti Reetta Kuisma sekä rumpali Ilkka Tolonen.</p><p>Orkesteri on esiintynyt ahkerasti muun muassa kansainvälisillä elokuvafestivaaleilla Kalifornian Palm Springsistä Pariisiin ja Pietarista Cannesiin, sekä kotimassa muun muassa Ahvenanmaan Katrina Kammarmusik -festivaalilla, Kaustisen kamarimusiikkijuhlilla sekä Karkkilan Kino Laikassa.</p><p>Kesto: 1 t</p>",
                "sv": "<p>Filmmusik inspirerad av Italo Pop och finländsk dansmusik utlovas.</p><p>Konserten har flyttats. Det tidigare meddelade datumet för konserten var den 19.9.2024. Det nya datumet är den 12.3.2025. Tidigare köpta biljetter gäller till konserten i mars, men återbetalning av biljetterna är också möjlig. Återbetalning kan begäras via denna webbplatslänk: https://web.lippu.fi/palautus/</p><p>Ykspihlaja Kino-orkestern grundades år 2012 i stadsdelen Ykspihlaja nära Karleby hamn. Dess första uppgift var att komponera musik och ackompanjera den live till Juho Kuosmanens stumfilm Romu-Mattila ja kaunis nainen (Skrot-Mattila och den vackra kvinnan).</p><p>Sedan dess har Kino-orkestern fått ett eget liv och spelar huvudsakligen nya arrangemang av musik som är välkänd från filmer. Sedan dess har Kino-orkestern även komponerat och framfört musik till de andra delarna i Juho Kuosmanens stumfilmstrilogi, kortfilmen Salaviinanpolttajat (Lönnbrännarna) från år 2017 och Kaukainen planeetta (Den fjärran planeten) som hade premiär år 2023. Även Kuosmanens film Hymyilevä mies (Den leende mannen) (2016) innehåller musik av orkestern.</p><p>Kino-orkestern har också komponerat och framfört musik till klassiker från stumfilmstiden, bland annat William A. Wellmans 1920-talsfilm Beggars of life.</p><p>Orkestern hämtar inspiration från 1960-talets Italo Pop och finländsk dansmusik, men dess säregna texter kastar ett ljus över nostalgiska tonlandskap ur ett nytt perspektiv.</p><p>I Ykspihlaja Kino-orkestern sjunger systrarna Anna, Oona och Laura Airola, och orkestern består av andra musiker och teaterproffs på det fria fältet. I Kino-orkestern spelar gitarristerna Miika Snåre och Tuomas Asanti, trumpetisten Miia Reko, basisten Reetta Kuisma och trummisen Ilkka Tolonen.</p><p>Orkestern har framträtt flitigt bland annat på internationella filmfestivaler från Palm Springs i Kalifornien till Paris och från S:t Petersburg till Cannes, och i Finland på Katrina Kammarmusikfestivalen på Åland, kammarmusikfesten i Kaustinen och Kino Laika i Högfors.</p>",
                "en": "<p>Film music inspired by Italian and Finnish dance music.</p><p>The concert has been postponed. The previously announced date for the concert was September 19, 2024. The new date is March 12, 2025. Tickets purchased earlier are valid for the March concert, but refunds are also available. You can request a refund through this web link: https://web.lippu.fi/palautus/</p><p>Ykspihlaja Kino Orchestra was founded in 2012 in Kokkola’s Ykspihlaja harbour district, tasked at first to compose music and accompany it live for Juho Kuosmanen's silent film Romu-Mattila ja kaunis nainen.</p><p>Since then, the Kino Orchestra has taken on a life of its own, performing mainly film music as new arrangements. Since then, the Kino Orchestra has also composed and performed music for other parts of Juho Kuosmanen's silent film trilogy, short films Moonshiners (2017) and Kaukainen planeetta, which premiered in 2023. Kuosmanen's film The Smiling Man (2016) also features music by the orchestra.</p><p>Kino Orchestra has also composed and performed music for classics from the silent film era, including William A. Wellman's 1920s film Beggars of Life.</p><p>The orchestra draws its inspiration from 1960s Italian music and Finnish dance music, but the orchestra's original lyrics shine a new light on nostalgic musical landscapes.</p><p>The Ykspihlaja Kino Orchestra’s vocalists are sisters Anna, Oona and Laura Airola, and it consists of other free musicians and theatre professionals. Kino Orchestra features guitarists Miika Snåre and Tuomas Asanti, trumpeter Miia Reko, bassist Reetta Kuisma and drummer Ilkka Tolonen.</p><p>The orchestra has performed extensively at international film festivals from Palm Springs, California to Paris and from St. Petersburg to Cannes, as well as at Katrina Kammarmusik Festival in Åland, Kaustinen Chamber Music Festival and Kino Laika in Karkkila.</p><p>Duration: 1 hour</p>"
            },
            "short_description": {
                "fi": "Luvassa italoiskelmän ja suomalaisen tanssimusiikin innoittamaa elokuvamusiikkia.",
                "sv": "Filmmusik inspirerad av Italo Pop och finländsk dansmusik utlovas.",
                "en": "Film music inspired by Italian and Finnish dance music."
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Ykspihlajan Kino-orkesteri",
                "sv": "SLUTSÅLD Ykspihlaja Kino-orkestern",
                "en": "SOLD OUT Ykspihlaja Kino Orchestra"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63750/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64665",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jarkko-martikainen-mierolaisuudesta-itse-tehtyyn-elaemaeaen-20-vuotisjuhlakiertue-malmitalo-19255109/",
                        "sv": "https://www.lippu.fi/event/jarkko-martikainen-mierolaisuudesta-itse-tehtyyn-elaemaeaen-20-vuotisjuhlakiertue-malmitalo-19255109/",
                        "en": "https://www.lippu.fi/event/jarkko-martikainen-mierolaisuudesta-itse-tehtyyn-elaemaeaen-20-vuotisjuhlakiertue-malmitalo-19255109/"
                    },
                    "price": {
                        "fi": "34,90 €",
                        "sv": "34,90 €",
                        "en": "34,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152931,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-01T11:15:04.829032Z",
                    "last_modified_time": "2024-11-01T11:15:04.829046Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758923.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152931/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-01T11:15:04.802765Z",
            "last_modified_time": "2024-12-20T01:14:40.374509Z",
            "date_published": null,
            "start_time": "2025-02-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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/21CD0C509C3B484D67FEC1F646F6AB77/LOPPUUNMYYTY_Jarkko_Martikainen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/21CD0C509C3B484D67FEC1F646F6AB77/SLUTSALD_Jarkko_Martikainen",
                "en": "http://www.malmitalo.fi/en/events/event/21CD0C509C3B484D67FEC1F646F6AB77/SOLD_OUT_Jarkko_Martikainen"
            },
            "provider": null,
            "description": {
                "fi": "<p>Arvostettu laulaja-lauluntekijä Jarkko Martikainen juhlistaa 20-vuotista soolouraansa juhlakonsertein alkuvuodesta 2025.</p><p>Mierolaisuudesta itse tehtyyn elämään -nimeä kantava kiertue kattaa yhteensä 13 paikkakuntaa ympäri Suomen. Martikainen esiintyy kiertueella yhdessä pitkäaikaisimman soittotoverin, kosketinsoittaja Petri Tiaisen kanssa. <br> <br>“On kulunut jo hieman yli kaksi vuosikymmentä ensimmäisen oman levyni Mierolaisen (2004) julkaisusta. Soololevyiksi kutsuttuja pitkäsoittoja on kaikkineen ehtinyt kertyä yhdeksän. Siksi onkin juhlan paikka, ja monistamme juhlan useammalle paikkakunnalle kiertueen muodossa. \"Me” tarkoittaa lisäkseni pitkäaikaisinta soittotoveriani, kosketisoitintaiteilija Petri Tiaista. Hän tuli YUP:n jäseneksi syksyllä 1994, joten kiertue edustaa myös reilun 30 vuoden yhteistyötä välillämme”, Martikainen kertoo. <br> <br>Kiertueen eteen on tehty pohjatöitä jo yli puolen vuoden ajan ja tullaan tekemään aina h-hetkiin saakka. Juhlakonsertit tulevat sisältämään soololevyjen materiaalin lisäksi tuoreita, vielä levyttämättömiä lauluja sekä otantoja YUP-vuosilta. Martikainen povaa juhlakonserteista muotoutuvan erikoisia ja tärkeitä iltoja. <br> <br>\"Pyrkimyksenä on voimistaa soittaen ja laulaen niitä juurisyitä, jotka ovat olleet kulloisenkin laulun synnyn taustalla. Se kysyy kosolti pohjatöitä, mutta palkitsee ja luo merkityksellisyyden tunteita. Uskon illoista muotoutuvan hyvin erikoisia, tärkeitä myös. Niistä syistä ennakoin vuoden 2025 helmi- ja maaliskuun iltoja jo nyt, toivottamalla tervemenoa meille ja tervetuloa teille\", artisti kertoo.</p><p><b>Kiertuekokoonpano:</b><br>Jarkko Martikainen: laulu ja kitarat <br>Petri Tiainen: kosketinsoittimet ja taustalaulu <br>Janne Teuronen: valotaide <br>Vesa Laasanen: miksaus</p><p>Kesto: 2 h 20 min, sis. 20 min väliajan</p>"
            },
            "short_description": {
                "fi": "Arvostettu laulaja-lauluntekijä Jarkko Martikainen juhlistaa 20-vuotista soolouraansa juhlakonsertein alkuvuodesta 2025."
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Jarkko Martikainen – Mierolaisuudesta itse tehtyyn elämään",
                "sv": "SLUTSÅLD Jarkko Martikainen – Mierolaisuudesta itse tehtyyn elämään",
                "en": "SOLD OUT Jarkko Martikainen – Mierolaisuudesta itse tehtyyn elämään"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64665/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65183",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153295,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-05T16:14:18.888973Z",
                    "last_modified_time": "2024-12-05T16:14:18.888992Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758908.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153295/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-05T16:14:18.863853Z",
            "last_modified_time": "2024-12-20T01:14:27.642028Z",
            "date_published": null,
            "start_time": "2025-01-04T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D0DD625E8B8398849E4E23670A2F8D6/Vaiana_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D0DD625E8B8398849E4E23670A2F8D6/Vaiana_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3D0DD625E8B8398849E4E23670A2F8D6/Vaiana_2_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios",
                "sv": "Vaiana 2 (7) – Kino Helios",
                "en": "Vaiana 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65182",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153294,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-05T16:14:18.581815Z",
                    "last_modified_time": "2024-12-05T16:14:18.581830Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758902.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153294/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-05T16:14:18.558895Z",
            "last_modified_time": "2024-12-20T01:14:27.016771Z",
            "date_published": null,
            "start_time": "2024-12-28T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/61D925694F174A5EB572C816C08C6B7B/Vaiana_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/61D925694F174A5EB572C816C08C6B7B/Vaiana_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/61D925694F174A5EB572C816C08C6B7B/Vaiana_2_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7 <br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios",
                "sv": "Vaiana 2 (7) – Kino Helios",
                "en": "Vaiana 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65181",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153293,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-05T16:14:18.352250Z",
                    "last_modified_time": "2024-12-05T16:14:18.352273Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758899.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153293/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-05T16:14:18.306363Z",
            "last_modified_time": "2024-12-20T01:14:26.735516Z",
            "date_published": null,
            "start_time": "2024-12-27T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/673F47E7706078254054809F2EB3ADCC/Vaiana_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/673F47E7706078254054809F2EB3ADCC/Vaiana_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/673F47E7706078254054809F2EB3ADCC/Vaiana_2_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios",
                "sv": "Vaiana 2 (7) – Kino Helios",
                "en": "Vaiana 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65181/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65047",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-22T13:14:29.045614Z",
                    "last_modified_time": "2024-11-22T13:14:29.045638Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745829.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-22T13:14:29.020827Z",
            "last_modified_time": "2024-12-20T01:14:26.365686Z",
            "date_published": null,
            "start_time": "2024-12-21T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4885C1E296221AE38F6E25BC07EF16AA/Vaiana_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4885C1E296221AE38F6E25BC07EF16AA/Vaiana_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/4885C1E296221AE38F6E25BC07EF16AA/Vaiana_2_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios",
                "sv": "Vaiana 2 (7) – Kino Helios",
                "en": "Vaiana 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65047/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65107",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:31.792598Z",
                    "last_modified_time": "2024-11-27T11:14:31.792619Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745826.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:31.773963Z",
            "last_modified_time": "2024-12-20T01:14:25.719043Z",
            "date_published": null,
            "start_time": "2024-12-20T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49600A25F59E5F0D18B7676A8344B846/Pieni_pala_kakkua_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/49600A25F59E5F0D18B7676A8344B846/Pieni_pala_kakkua_7_",
                "en": "http://www.malmitalo.fi/en/events/event/49600A25F59E5F0D18B7676A8344B846/Pieni_pala_kakkua_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina.</p><p>Pitkään leskenä omin päin elänyt Mahin viettää puheliasta iltaa tyttökaveriensa kanssa, ja päättää että elämässä voisi vielä kerran olla tilaa romanssille. Mahin kohtaa sympaattisen taksikuskin eläkeläisten lounaspaikassa. Faramarz saa ajaa Mahinin kotiin. Mahin kaivaa esiin pitkään piilotellun viinipullon ja leipoo herkullisen kakun. On aika jakaa yhteinen, onnellinen illallinen.</p><p>Naisia alistava mikroskooppisen tarkka sääntöjen ja kieltojen verkko tekee sympaattisista hetkistä Teheranissa harvinaista herkkua.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 97 min.<br>Ensi-ilta: 06.12.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "short_description": {
                "fi": "Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pieni pala kakkua (7) – Kino Helios",
                "sv": "Pieni pala kakkua (7) – Kino Helios",
                "en": "Pieni pala kakkua (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65107/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65106",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153097,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:31.600406Z",
                    "last_modified_time": "2024-11-27T11:14:31.600422Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745824.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153097/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:31.581571Z",
            "last_modified_time": "2024-12-20T01:14:25.352311Z",
            "date_published": null,
            "start_time": "2024-12-18T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6547DB0D5C38B8C7D44D5ECF43624A0E/Pieni_pala_kakkua_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6547DB0D5C38B8C7D44D5ECF43624A0E/Pieni_pala_kakkua_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6547DB0D5C38B8C7D44D5ECF43624A0E/Pieni_pala_kakkua_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina.</p><p>Pitkään leskenä omin päin elänyt Mahin viettää puheliasta iltaa tyttökaveriensa kanssa, ja päättää että elämässä voisi vielä kerran olla tilaa romanssille. Mahin kohtaa sympaattisen taksikuskin eläkeläisten lounaspaikassa. Faramarz saa ajaa Mahinin kotiin. Mahin kaivaa esiin pitkään piilotellun viinipullon ja leipoo herkullisen kakun. On aika jakaa yhteinen, onnellinen illallinen.</p><p>Naisia alistava mikroskooppisen tarkka sääntöjen ja kieltojen verkko tekee sympaattisista hetkistä Teheranissa harvinaista herkkua.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 97 min.<br>Ensi-ilta: 06.12.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "short_description": {
                "fi": "Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pieni pala kakkua (7) – Kino Helios",
                "sv": "Pieni pala kakkua (7) – Kino Helios",
                "en": "Pieni pala kakkua (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65106/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65103",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153095,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:31.296484Z",
                    "last_modified_time": "2024-11-27T11:14:31.296502Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745823.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153095/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:31.271410Z",
            "last_modified_time": "2024-12-20T01:14:25.112441Z",
            "date_published": null,
            "start_time": "2024-12-18T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D865520CA63A948D22A0B16EB2AE1C0D/Crossing_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D865520CA63A948D22A0B16EB2AE1C0D/Crossing_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D865520CA63A948D22A0B16EB2AE1C0D/Crossing_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.</p><p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan. Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa.</p><p>Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.</p><p>Ruotsin ehdokas Pohjoismaiden neuvoston vuoden 2024 elokuvapalkinnon saajaksi.</p><p>Ikäraja: 7<br>Kesto: 106 min.<br>Ensi-ilta: 08.11.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "short_description": {
                "fi": "Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Crossing (7) – Kino Helios",
                "sv": "Crossing (7) – Kino Helios",
                "en": "Crossing (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65103/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64662",
            "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:32/?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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/milagro-de-navidad-joulun-ihme-3656357/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/milagro-de-navidad-joulun-ihme-3656357/",
                        "en": "https://www.lippu.fi/artist/malmitalo/milagro-de-navidad-joulun-ihme-3656357/"
                    },
                    "price": {
                        "fi": "22,50 € / 17,50 €",
                        "sv": "22,50 € / 17,50 €",
                        "en": "22,50 € / 17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152742,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-07T09:15:35.773980Z",
                    "last_modified_time": "2024-10-07T09:15:35.773997Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758913.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-07T09:15:35.708560Z",
            "last_modified_time": "2024-12-20T01:14:24.933941Z",
            "date_published": null,
            "start_time": "2024-12-17T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4D48B40E8DA6646CB6A05854978DC386/Milagro_de_navidad_Joulun_ihme_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4D48B40E8DA6646CB6A05854978DC386/Milagro_de_navidad_Julens_under_",
                "en": "http://www.malmitalo.fi/en/events/event/4D48B40E8DA6646CB6A05854978DC386/Milagro_de_navidad_Miracle_of_Christmas_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Flamencotanssin ja -musiikin tunteiden paloa, upeita tanssiesityksiä alkeista ammattilaisiin.</p><p>Joulun ihme -näytös kuljettaa katsojan Korvatunturilta kuumaan Andalusiaan ja sieltä takaisin maagiseen Pohjolaan.</p><p>Tanssijoiden koreografioista ja musiikista vastaavat suomalaiset flamencotaiteilijat Anne Riikola-Sarkkila, Marianna Stråhlmann ja kitaristi-säveltäjä Toni Jokiniitty.</p><p>Kesto: 80 min, ei väliaikaa<br>Tuotanto: Fiesta Flamenca ja tmi Vuelta</p>",
                "sv": "<p>Flamencodansens och -musikens passion, fantastiska dansuppvisningar från nybörjare till proffs.</p><p>Uppvisningen Julens under sveper med publiken från Korvatunturi till det heta Andalusien och tillbaka till magiska Norden.</p><p>För dansarnas koreografi och musik svarar de finländska flamencoartisterna Anne Riikola-Sarkkila, Marianna Stråhlmann och gitarristen och kompositören Toni Jokiniitty.</p><p>Produktion: Fiesta Flamenca och fma Vuelta</p>",
                "en": "<p>The passion of flamenco dance and music, great dance performances from beginners to professionals.</p><p>The Christmas Miracle show transports the viewer from Korvatunturi to hot Andalusia and back again to the magical North.</p><p>The dancers' choreographies and music are performed by Finnish flamenco artists Anne Riikola-Sarkkila, Marianna Stråhlmann and guitarist-composer Toni Jokiniitty.</p><p>Production: Fiesta Flamenca and tmi Vuelta</p>"
            },
            "short_description": {
                "fi": "Flamencotanssin ja -musiikin tunteiden paloa, upeita tanssiesityksiä alkeista ammattilaisiin.",
                "sv": "Flamencodansens och -musikens passion, fantastiska dansuppvisningar från nybörjare till proffs.",
                "en": "The passion of flamenco dance and music, great dance performances from beginners to professionals."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Milagro de navidad – Joulun ihme – Fiesta Flamencan ja Vuelta Flamencon joulunäytös 2024",
                "sv": "Milagro de navidad – Julens under – Fiesta Flamencas och Vuelta Flamencos juluppvisning 2024",
                "en": "Milagro de navidad – Miracle of Christmas – Fiesta Flamenca and Vuelta Flamenco Christmas Show 2024"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64662/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}