Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19453,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=122",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=120"
    },
    "data": [
        {
            "id": "kulke:65113",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153355,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:37.891616Z",
                    "last_modified_time": "2024-12-10T12:14:37.891633Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759412.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153355/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:37.864251Z",
            "last_modified_time": "2024-12-27T15:13:45.766580Z",
            "date_published": null,
            "start_time": "2025-01-08",
            "end_time": "2025-01-12",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tennilän fragmentaarista poetiikkaa tapaileva tekstuaalinen valoteos tutkii epigrammin, sisätilan, mielentilan, ulkopuolen ja kirjoituksen välisiä kytkentöjä.",
                "sv": "Olli-Pekka Tenniläs textuella fasadprojektion närmar sig en fragmentarisk poetik och utforskar kopplingarna mellan epigram, inomhusutrymmen, sinnestillstånd, utsidan och skrivande.",
                "en": "Olli-Pekka Tennilä’s textual façade projection, reminiscent of fragmentary poetics, explores the connections between epigrams, interior spaces, states of mind, exterior spaces and writing."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle",
                "en": "http://www.kanneltalo.fi/en/events/event/F9621215D09DCDDADFD72422D04ADEDE/Olli-Pekka_Tennila_Apopteoosi_I_fragmentteja_ulkopuolelle"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki",
                "sv": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki",
                "en": "Olli-Pekka Tennilä: Apopteoosi I – fragmentteja ulkopuolelle – Lux Helsinki"
            },
            "description": {
                "fi": "<p>Tennilän fragmentaarista poetiikkaa tapaileva tekstuaalinen valoteos tutkii epigrammin, sisätilan, mielentilan, ulkopuolen ja kirjoituksen välisiä kytkentöjä.</p><p><b>Olli-Pekka Tennilä</b> (s.1980) on jyväskyläläinen runoilija. Hänet tunnetaan fragmentaariseksi kutsutusta tiheästä kielimuodosta. Tennilä on osallistunut lukuisiin eri taidelajeja sekä tieteitä yhdistäviin projekteihin yhteistyössä mm. IC-98:n ja eri yliopistojen kanssa. Paraikaa hän tutkii elämän määritelmien, perimäinformaation ja kirjoituksen käsitteen välisiä kytkentöjä.</p><p>Hänen teoksensa Yksinkeltainen on kaksinkeltaista voitti kirjallisuuden Runeberg-palkinnon.</p><p>Näyttelyn on kuratoinut kuvataiteilija Kirsi Pitkänen ja näyttelyn toteutuksesta vastaa Suomen valotaiteen seura FLASH ry.</p><p>Paikka: Kanneltalon julkisivu ja galleria</p><p><b>8.–12.1. klo 17–20 Lux Helsinki -työpajat</b><br>Heittämällä! – hetken taidetta</p><p>Nyt on sinun vuorosi taiteilla. Tule kokoamaan oma sanaa ja kuvaa yhdistelevä kollaasi ja heijastamaan se Kanneltalon aulaan.</p><p>Luvassa piirtoheittimen taikaa!</p><p>Taidepaja toimii nonstoppina eli voit tulla ja lähteä milloin haluat. Työpaja sopii kaikenikäisille. Taidepajaa ohjaavat taidekasvattaja Aino Malinen, tekstitaituri Venla Niinistö, kuvataiteilija Leena Räsänen ja rap-artisti Anna Tihinen.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Olli-Pekka Tenniläs textuella fasadprojektion närmar sig en fragmentarisk poetik och utforskar kopplingarna mellan epigram, inomhusutrymmen, sinnestillstånd, utsidan och skrivande.</p><p><b>Olli-Pekka Tennilä</b> (f.1980) är en poet från Jyväskylä. Han är känd för sin täta språkform som kallas fragmentarisk. Tennilä har deltagit i talrika projekt som kombinerar olika konstformer och vetenskaper i samarbete med bland annat IC-98 och olika universitet. För tillfället undersöker han kopplingarna mellan olika definitioner, arvsinformation och begreppet skrivande.</p><p>Hans verk Yksinkeltainen on kaksinkeltaista har belönats med Runebergspriset i litteratur.</p><p>Utställningen har kuraterats av bildkonstnär Kirsi Pitkänen och för genomförandet av utställningen svarar Suomen valotaiteen seura FLASH ry.</p><p><b>Lux Helsinki-workshoppar</b><br>NONSTOP-KONSTWORKSHOP<br>Lätt som en plätt! – ögonblickskonst<br>Nu är det din tur att vara konstnärlig. Kom och gör ett eget collage av ord och bilder, och projicera det i Gamlasgårdens lobby. Magi med overheadprojektor utlovas! Konstworkshoppen fungerar nonstop och lämpar sig för alla åldrar. Konstworkshoppen leds av konstpedagog Aino Malinen, textkonstnär Venla Niinistö, bildkonstnär Leena Räsänen och rap-artist Anna Tihinen.</p><p>Fritt inträde</p>",
                "en": "<p>Olli-Pekka Tennilä’s textual façade projection, reminiscent of fragmentary poetics, explores the connections between epigrams, interior spaces, states of mind, exterior spaces and writing.</p><p><b>Olli-Pekka Tennilä</b> (b. 1980) is a poet from Jyväskylä. He is known for his dense, ‘fragmentary’ form of language. Tennilä has participated in numerous projects combining different arts and sciences in collaboration with IC-98 and various universities. He is currently exploring the links between definitions of life, genetic information and the concept of writing.</p><p>His book, Yksinkeltainen on kaksinkeltaista, won the Runeberg Prize for Literature.</p><p>The exhibition is curated by artist Kirsi Pitkänen and organised by the Finnish Light Art Society FLASH ry.</p><p><b>Lux Helsinki workshops</b><br>NONSTOP ART WORKSHOP<br>Heittämällä (projection)! – momentary art<br>Now it’s your turn to make art. Come put together your own collage combining words and images and project it in the Kanneltalo lobby. Experience the magic of overhead projectors! The art workshop runs non-stop and is suitable for all ages. The art workshop will be led by art educator Aino Malinen, text artist Venla Niinistö, visual artist Leena Räsänen and rap artist Anna Tihinen.</p><p>Free admission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65113/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65112",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T12:14:37.693762Z",
                    "last_modified_time": "2024-12-10T12:14:37.693780Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759417.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T12:14:37.639070Z",
            "last_modified_time": "2024-12-27T15:13:45.659922Z",
            "date_published": null,
            "start_time": "2025-01-08",
            "end_time": "2025-01-12",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lux Helsinki tuo säihkyvää mystisyyttä myös Kanneltalon sisälle. Uskallatko vierailla Totuus-oraakkelissa?",
                "sv": "Besök Totuus-oraklet i Gamlasgårdens galleri!",
                "en": "Visit Kanneltalo Gallery’s Truth oracle!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Totuus",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Totuus_Sanning_",
                "en": "http://www.kanneltalo.fi/en/events/event/6E07D07A964F62F4D3295C6CD1F31316/Pietu_Pietiainen_Juha_Valkeapaa_Truth"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pietu Pietiäinen & Juha Valkeapää: Totuus – Lux Helsinki",
                "sv": "Pietu Pietiäinen–Juha Valkeapää, Totuus (Sanning) – Lux Helsinki",
                "en": "Pietu Pietiäinen–Juha Valkeapää, Truth – Lux Helsinki"
            },
            "description": {
                "fi": "<p>Lux Helsinki tuo säihkyvää mystisyyttä myös Kanneltalon sisälle. Uskallatko vierailla Totuus-oraakkelissa?</p><p>Totuus on oraakkelimainen olio, jonka luona ihmiset vierailevat kuullakseen totuuden. Jotta oraakkelin huoneeseen pääsisi sisään, vierailijan on vastattava kysymykseen: Mikä on totuus? Vastaus kirjoitetaan tietokoneelle, ja se voi olla minkäkielinen tahansa. Opimme että totuus on suhteellinen.</p><p>Totuus on interaktiivinen installaatio, jossa kävijät jakavat totuutensa oraakkelin kanssa. Matala tietokoneääni lukee satunnaisessa järjestyksessä ihmisten kirjoittamia totuuksia. Projisoitu valokeila reagoi ääneen, jolloin siitä tulee sekä oraakkelin silmä että suu.</p><p>Installaatio on inspiroitunut, erinäisten oraakkelilegendojen ohella, arkkienkeli Gabrielin torvesta, johon hän puhaltaa tuomiopäivänä. Olion puhuvan suun kartiomainen muoto muistuttaa myös geometrista kuviota, joka on nimetty saman legendan mukaan ”Gabrielin torveksi”. Se on tunnettu matemaattinen paradoksi kuviosta, jolla on ääretön pinta-ala mutta rajallinen tilavuus. Muita inspiraation lähteitä ovat olleet mystinen roomalainen, marmorinen kaivonkansi La Bocca della Verità eli Totuuden suu ja Anthony McCallin Pure Sculpture -teokset.</p><p>Totuus on puhuva ja liikkuva suu tai silmä. Se muodostaa pimeään, teatterisavulla täytettyyn tilaan syvän, hypnoottisen, kolmiulotteisen tunnelin. Valokartion keskustaan, totuuden suuhun tai silmään astuva vierailija kuulee ei yhden vaan useita totuuksia, joita vierailijat ennen häntä ovat jakaneet oraakkelin kanssa.</p><p>Löydät Totuus-oraakkelin Kanneltalon Galleriasta, tervetuloa!</p><p><b>Pietu Pietiäinen</b> (1966) on valo- ja videosuunnittelija ja taiteilija, joka työskentelee pääasiassa suunnittelijana näyttämötuotannoissa ja musiikkiteollisuudessa. Hän toimii myös nykytaidekentällä tarjoten ratkaisuja av-installaatioihin museoihin, gallerioille ja näyttelyihin ympäri maailmaa. Pietiäinen asuu ja työskentelee Helsingissä ja Kotkassa.</p><p><b>Juha Valkeapää</b> (1967) on äänitaiteilija ja esityksentekijä. 30 vuotta kestäneen uransa aikana hän on luonut erimuotoisia, -kuuloisia ja -näköisiä esityksiä, installaatioita, radioteoksia ja äänimaisemia eri puolilla maailmaa.  Hänen taiteensa keskeiset elementit ovat ääni, läsnäolo, leikkisyys, improvisointi ja elävä kontakti yleisöön. Valkeapää asuu Helsingissä.</p><p><b>8.–12.1. klo 17–20 Lux Helsinki -työpajat</b><br>Heittämällä! – hetken taidetta</p><p>Nyt on sinun vuorosi taiteilla. Tule kokoamaan oma sanaa ja kuvaa yhdistelevä kollaasi ja heijastamaan se Kanneltalon aulaan.</p><p>Luvassa piirtoheittimen taikaa!</p><p>Taidepaja toimii nonstoppina eli voit tulla ja lähteä milloin haluat. Työpaja sopii kaikenikäisille. Taidepajaa ohjaavat taidekasvattaja Aino Malinen, tekstitaituri Venla Niinistö, kuvataiteilija Leena Räsänen ja rap-artisti Anna Tihinen.</p>",
                "sv": "<p>Besök Totuus-oraklet i Gamlasgårdens galleri!</p><p>Totuus är ett orakelaktigt väsen, som människor besöker för att få höra sanningen. För att få komma in i oraklets rum ska gästen svara på frågan: Vad är sanning? Svaret skrivs på en dator, och kan vara på vilket språk som helst. Vi lär oss att sanningen är relativ.</p><p>Totuus är en interaktiv installation, där besökarna delar sin sanning med oraklet. En låg datorröst läser upp de sanningar som människor har skrivit in i slumpmässig ordning. Den projicerade ljuskäglan reagerar på rösten och blir då både oraklets öga och mun.</p><p>Utöver av diverse orakellegender har installationen inspirerats av ärkeängeln Gabriels trumpet som han blåser i på domedagen. Väsendets konformiga talande mun påminner också om geometriska figurer, som enligt samma legend har kallats för “Gabriels trumpet”. Det är en känd matematisk paradox med en figur som har en oändlig yta men en begränsad volym. Andra källor till inspiration har varit det mystiska, romerska brunnslocket La Bocca della Verità, det vill säga sanningens mun, och Anthony McCalls verk Pure Sculpture.</p><p>Totuus är en talande och rörlig mun eller ett talande och rörligt öga. Det skapar en djup, hypnotisk, tredimensionell tunnel i det mörka utrymmet som är fyllt av teaterrök. Gästen som stiger in i centrum av ljuskäglan, sanningens mun eller öga får inte höra bara en, utan flera sanningar, som tidigare gäster har delat med oraklet.</p><p><b>Pietu Pietikäinen</b> (1966) är en ljus- och videodesigner och konstnär, som huvudsakligen jobbar som designer för scenproduktioner och inom musikindustrin. Han är också aktiv inom samtidskonsten och erbjuder lösningar till av-installationer för museer, gallerier och utställningar på olika håll i världen. Pietiläinen bor och arbetar i Helsingfors och Kotka.</p><p><b>Juha Valkeapää</b> (1967) är en ljudkonstnär och föreställningsskapare. Under sin 30-åriga karriär har han skapat föreställningar, installationer, radioverk och ljudlandskap av olika former, med olika ljud och utseenden runt om i världen.  De centrala elementen i hans konst är ljud, närvaro, lekfullhet, improvisation och en levande kontakt till publiken. Valkeapää bor i Helsingfors.</p><p><b>Lux Helsinki-workshoppar</b><br>NONSTOP-KONSTWORKSHOP<br>Lätt som en plätt! – ögonblickskonst<br>Nu är det din tur att vara konstnärlig. Kom och gör ett eget collage av ord och bilder, och projicera det i Gamlasgårdens lobby. Magi med overheadprojektor utlovas! Konstworkshoppen fungerar nonstop och lämpar sig för alla åldrar. Konstworkshoppen leds av konstpedagog Aino Malinen, textkonstnär Venla Niinistö, bildkonstnär Leena Räsänen och rap-artist Anna Tihinen.</p><p>Fritt inträde</p>",
                "en": "<p>Visit Kanneltalo Gallery’s Truth oracle!</p><p>Truth is an oracle-like entity that people visit to hear the truth. In order to enter the oracle’s room, a visitor must answer this question: What is truth? The answer is typed into a computer and <br>can be in any language. We learn that truth is relative.</p><p>Truth is an interactive installation where visitors share their truth with the oracle. A low computer voice reads the truths written by people in random order. A projected spotlight responds to sound, becoming both the eye and the mouth of the oracle.</p><p>The installation was inspired, along with various oracle legends, by the Archangel Gabriel’s horn, which he blows on the Day of Judgement. The conical shape of the being’s mouth that speaks also resembles a geometric pattern, which has been named “Gabriel’s horn” in accordance with this legend. It is a well-known mathematical paradox of a pattern with infinite area but finite volume. Other sources of inspiration include the mysterious Roman marble mask, La Bocca della Verità (The Mouth of Truth), and Anthony McCall’s Pure Sculpture pieces.</p><p>Truth is a talking and moving mouth or eye. It creates a deep, hypnotic, three-dimensional tunnel in a dark, theatrical space. A visitor stepping into the centre of the light cone – the mouth or eye of Truth – hears not only one but several truths that have been shared with the oracle by previous visitors.</p><p><b>Pietu Pietiäinen</b> (1966) is a lighting and video designer and artist who works mainly as a designer in stage productions and the music industry. He also works in contemporary art, providing solutions for AV installations for museums, galleries and exhibitions around the world. Pietiäinen lives and works in Helsinki and Kotka.</p><p><b>Juha Valkeapää</b> (1967) is a sound artist and performance creator. In a career spanning 30 years, he has created performances, installations, radio productions and soundscapes of all shapes, sizes and forms around the world.  The central elements of his art are sound, presence, playfulness, improvisation and direct interaction with the audience. Valkeapää lives in Helsinki.</p><p><b>Lux Helsinki workshops</b><br>NONSTOP ART WORKSHOP<br>Heittämällä (projection)! – momentary art<br>Now it’s your turn to make art. Come put together your own collage combining words and images and project it in the Kanneltalo lobby. Experience the magic of overhead projectors! The art workshop runs non-stop and is suitable for all ages. The art workshop will be led by art educator Aino Malinen, text artist Venla Niinistö, visual artist Leena Räsänen and rap artist Anna Tihinen.</p><p>Free admission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ezlm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-12-27T14:42:13.609573Z",
            "last_modified_time": "2024-12-27T14:42:13.609602Z",
            "date_published": "2024-12-27T14:39:00Z",
            "start_time": "2025-05-24T13:00:00Z",
            "end_time": "2025-05-24T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa koko perheen kanssa hauskan ajanvietoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinostuneille!"
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "Avoin satutunti arabiaksi"
            },
            "description": {
                "fi": "<p>Tervetuloa koko perheen kanssa hauskan ajanvietoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinostuneille!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ezlm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64865",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/micke-lefty-feat-chef-25-vuotisjuhlakonsertti-malmitalo-19401510/",
                        "sv": "https://www.lippu.fi/event/micke-lefty-feat-chef-25-vuotisjuhlakonsertti-malmitalo-19401510/",
                        "en": "https://www.lippu.fi/event/micke-lefty-feat-chef-25-vuotisjuhlakonsertti-malmitalo-19401510/"
                    },
                    "price": {
                        "fi": "24,80 € / 20,80 €",
                        "sv": "24,80 € / 20,80 €",
                        "en": "24,80 € / 20,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153543,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:14:00.338032Z",
                    "last_modified_time": "2024-12-27T14:14:00.338046Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760585.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153543/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:14:00.311303Z",
            "last_modified_time": "2024-12-27T14:14:00.406193Z",
            "date_published": null,
            "start_time": "2025-03-06T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Micke Björklöf ja Lefty Leppänen muodostavat Chef Kivimäen kanssa yhden Euroopan kiinnostavimmista tämän päivän akustisista blues- ja juurimusiikkiyhtyeistä.",
                "sv": "Tillsammans med Chef Kivimäki bildar Micke Björklöf och Lefty Leppänen ett av Europas mest intressanta samtida akustiska blues- och rootsmusikband.",
                "en": "Together with Chef Kivimäki, Micke Björklöf and Lefty Leppänen form one of the most interesting acoustic blues and roots bands in Europe today."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DD2F40FC84CAA1C172599572DA506431/MICKE_LEFTY_feat_CHEF_25-vuotisjuhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DD2F40FC84CAA1C172599572DA506431/MICKE_LEFTY_feat_CHEF_25-arsjubileumskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/DD2F40FC84CAA1C172599572DA506431/MICKE_LEFTY_feat_CHEF_25-year_anniversary_concert"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MICKE & LEFTY feat. CHEF 25-vuotisjuhlakonsertti",
                "sv": "MICKE & LEFTY feat. CHEF 25-årsjubileumskonsert",
                "en": "MICKE & LEFTY feat. CHEF 25-year anniversary concert"
            },
            "description": {
                "fi": "<p>Micke Björklöf ja Lefty Leppänen muodostavat Chef Kivimäen kanssa yhden Euroopan kiinnostavimmista tämän päivän akustisista blues- ja juurimusiikkiyhtyeistä.</p><p>Micke & Lefty feat. Chef trio on viihdyttänyt ja valloittanut yleisönsä energisillä keikoillaan niin pienissä klubeissa kuin suurilla festivaaleillakin ympäri Eurooppaa. Yhtyettä onkin tituleerattu Suomen viihdyttävimmäksi blues & roots -bändiksi, jossa yhdistyy korkea musiikillinen ammattitaito sekä viihdyttäjän rooli.</p><p>Näiden kolmen multi-instrumentalistin muodostaman bändin tavaramerkiksi on muodostunut akustisten soitinten ja vahvan solistisen osaamisen lisäksi bluesille ei niin ominaista olevat kolmiääniset laulustemmat. Omaperäisen ja aidon blues-soundin viimeistelevät Lefty Leppäsen maailman luokkaa oleva virtuoosimainen slidekitara, matkalaukulla varustettu rumpusetti, erikoisrakenteinen akustinen basso sekä rosoinen huuliharppu.</p><p>Tänä keväänä yhtye juhlistaa 25-vuotista toimintaansa juhlakonsertein ympäri maan. Luvassa on siis neljännesvuosisadan mittaisen uran vauhdikasta juhlintaa. Juhlavuoden kunniaksi kokoonpano julkaisee livealbumin. Bändin viimeisin studioalbumi Let The Fire Lead oli kansainvälinen arvostelumenestys ja se nousi myös useille kansainvälisille radiosoittolistoille.</p><p>Trio on edustanut Suomea maailman suurimmassa bluestapahtumassa International Blues Challengessa Yhdysvaltain Memphisissä sekä European Blues Challenge tapahtumassa, Berliinissä.</p><p>“Omaperäisyys on Micke & Lefty feat. Chefin ehdoton valtti. Heissä yhdistyvät ainutkertainen ilmaisu sekä laadukas sävellys- ja muusikontyö. Elävässä tilanteessa huumori ja ilmeinen tekemisen ilo täydentävät kokonaisuuden, joka varmasti erottuu kansainvälisessä vertailussa” –Blues Finland <br> <br><b>Kokoonpano</b><br>Micke Björklöf: laulu, rummut, perkussiot, huuliharppu <br>Lefty Leppänen: laulu, slide- ja akustinen kitara, huuliharppu <br>Chef: laulu, basso</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Tillsammans med Chef Kivimäki bildar Micke Björklöf och Lefty Leppänen ett av Europas mest intressanta samtida akustiska blues- och rootsmusikband.</p><p>Micke & Lefty feat. Chef trio har underhållit och hänfört publiken på sina energiska spelningar, både i små klubbar och på stora festivaler omkring Europa.  Bandet har även titulerats Finlands mest underhållande blues & roots-band, som kombinerar en hög musikalisk yrkeskunskap med underhållarens roll.</p><p>Varumärket för bandet, som består av dessa tre multiinstrumentalister, har bildats av akustiska instrument och stark solistisk kunskap, men även trestämmiga sångstämmor som inte är så typiska för blues. Det originella och äkta bluessoundet fullbordas av Lefty Leppänens virtuosmässiga slidegitarr som är i världsklass, ett trumset som är försett med en resväska, en akustisk bas med specialkonstruktion samt ett strävt munspel.</p><p>Denna vår firar bandet sin 25-åriga verksamhet med jubileumskonserter på olika håll i landet. Fartfyllt firande av den kvartssekellånga karriären utlovas alltså. Till jubileumsårets ära släpper ensemblen ett livealbum. Bandets senaste studioalbum Let The Fire Lead var en internationell kritikerframgång, och togs även upp på flera internationella radiospellistor.</p><p>Trio har representerat Finland på världens största bluesevenemang International Blues Challenge i Memphis i USA samt på evenemanget European Blues Challenge i Berlin.</p><p>“Originalitet är utan tvivel trumfkortet för Micke & Lefty feat. Chef.  De är en kombination av unikt uttryck och högkvalitativt kompositörs- och musikerarbete. I livesituationer kompletteras helheten av humor och en uppenbar skaparglädje, som säkert framträder vid internationell jämförelse” – Blues Finland <br> <br><b>Ensemble</b><br>Micke Björklöf: sång, trummor, slagverk, munspel <br>Lefty Leppänen: sång, slide- och akustisk gitarr, munspel <br>Chef: sång, bas</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>",
                "en": "<p>Together with Chef Kivimäki, Micke Björklöf and Lefty Leppänen form one of the most interesting acoustic blues and roots bands in Europe today.</p><p>The trio Micke & Lefty feat. Chef has entertained and won over audiences with their energetic performances in small clubs and large festivals across Europe. The band has been dubbed the most entertaining blues & roots band in Finland, combining a high level of musical professionalism with the role of entertainer.</p><p>These three multi-instrumentalists have created a band characterised not only by their acoustic instruments and strong soloist skills, but also by three-part vocal harmonies that are not so typical of the blues. Their original and authentic blues sound is topped off by Lefty Leppänen’s world-class virtuosity on slide guitar, suitcase drum kit, custom-built acoustic bass, and gritty harmonica.</p><p>This spring, the band celebrates its 25th anniversary with a series of concerts around the country. In store is a lively celebration of a quarter-century career. The band will release a live album to celebrate their anniversary. The band’s latest studio album, Let The Fire Lead, was an internationally acclaimed success and reached many international radio playlists.</p><p>The trio has represented Finland at the world’s largest blues event, the International Blues Challenge in Memphis, USA and the European Blues Challenge in Berlin, Germany.</p><p>“Originality is Micke & Lefty feat.  Chef’s ultimate trump card. They combine their unique expression with high-quality composition and musicianship. In live settings, the humour and obvious joy of creating complete the whole package, which certainly stands out in international comparisons” - Blues Finland <br> <br><b>Ensemble:</b><br>Micke Björklöf: vocals, drums, percussion, harmonica <br>Lefty Leppänen: vocals, slide and acoustic guitar, harmonica <br>Chef: vocals, bass</p><p>Duration: 2 h, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64865/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64911",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/johnny-burgin-usa-quique-gomez-esp-malmitalo-19357865/",
                        "sv": "https://www.lippu.fi/event/johnny-burgin-usa-quique-gomez-esp-malmitalo-19357865/",
                        "en": "https://www.lippu.fi/event/johnny-burgin-usa-quique-gomez-esp-malmitalo-19357865/"
                    },
                    "price": {
                        "fi": "24 € / 21 € / 11 €",
                        "sv": "24 € / 21 € / 11 €",
                        "en": "24 € / 21 € / 11 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:59.129190Z",
                    "last_modified_time": "2024-12-27T14:13:59.129203Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761629.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153540/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:59.101388Z",
            "last_modified_time": "2024-12-27T14:13:59.189528Z",
            "date_published": null,
            "start_time": "2025-02-25T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule kuulemaan miten Malmisalissa yhdistyvät Burginin voimakas ja villi kitaratyöskentely sekä Gomezin monipuolinen, jazz-vaikutteita sisältävä blues-laulu.",
                "sv": "Kom till Malmsalen för att höra hur Burgins kraftiga och vilda gitarrarbete kombineras med Gomez mångsidiga, jazzinspirerade bluessång.",
                "en": "Come to Malmisali to hear Burgin’s powerful and wild guitar work combined with Gomez’s versatile, jazz-influenced blues vocals."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A02D850559823D02706B935979C6484C/Johnny_Burgin_US_Quique_Gomez_ESP_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A02D850559823D02706B935979C6484C/Johnny_Burgin_US_Quique_Gomez_ESP_",
                "en": "http://www.malmitalo.fi/en/events/event/A02D850559823D02706B935979C6484C/Johnny_Burgin_US_Quique_Gomez_ESP_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Johnny Burgin (US) & Quique Gomez (ESP)",
                "sv": "Johnny Burgin (US) & Quique Gomez (ESP)",
                "en": "Johnny Burgin (US) & Quique Gomez (ESP)"
            },
            "description": {
                "fi": "<p>Tule kuulemaan miten Malmisalissa yhdistyvät Burginin voimakas ja villi kitaratyöskentely sekä Gomezin monipuolinen, jazz-vaikutteita sisältävä blues-laulu.</p><p>Amerikkalainen blueskitaristi ja laulaja Johnny Burgin sekä espanjalaissyntyinen harpisti Quique Gomez ovat molemmat luoneet pitkän ja kansainvälisen uran muusikkoina omilla tahoillaan. Blues-maailmassa molemmat tunnetaan erityisesti intensiivisistä kiertueistaan useilla eri mantereilla.</p><p>Etelä-Carolinasta Chicagoon muuttanut Johnny Burgin tuli tunnetuksi ja nousi kulttimaineeseen 1990-luvulla juuri Chicagossa. Johnnylla on jo kymmenien vuosien kokemus kyseisen kaupungin bluesklubien vetonaulana, muun muassa Buddy Guyn Legends -klubilla. Mittavan levytysuransa aikana hän on levyttänyt muun muassa seitsemän albumia maineikkaalle Delmark-levymerkille.</p><p>Madridista lähtöisin oleva Quique Gomez aloitti bluesharpun soiton sekä perusti ensimmäisen yhtyeensä 18-vuotiaana. Vuodesta 2008 lähtien hän on esiintynyt aktiivisesti molemmilla puolilla Atlantin valtamerta ja on työskennellyt muun muassa John Primerin, Eddie C. Campbellin sekä Bob Strogerin kanssa.</p><p>Muutaman vuoden ajan Burgin ja Gomez ovat kiertäneet blues-areenoja myös yhdessä. Heidän yhteistyönsä yhdistää Burginin voimakkaan ja villin kitaratyöskentelyn sekä Gomezin monipuolisen, jazz-vaikutteita sisältävän blues-laulannan. Heidän yhteinen soundinsa on bluesin perinteitä kunnioittava mutta silti uutta luova. Molemmat tunnetaan kyvystään vangita kuulijansa intensiivisellä energiallaan ja tunnepitoisella esiintymisellään.</p><p>Helmikuussa 2025 miehet ulottavat kiertueensa myös Suomeen ja yhdistävät voimansa heille jo ennestään tuttujen kiertuekumppaneiden, suomalaisen bluesin eturivin rytmiryhmän Jaska Prepulan ja Mikko Peltolan kanssa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Kom till Malmsalen för att höra hur Burgins kraftiga och vilda gitarrarbete kombineras med Gomez mångsidiga, jazzinspirerade bluessång.</p><p>Den amerikanska bluesgitarristen och sångaren Johnny Burgin och den spanskfödda harpisten Quique Gomes har haft en lång och internationell karriär som musiker, var och en på sitt håll. I bluesvärlden är båda kända särskilt för sina intensiva turnéer på flera olika kontinenter.</p><p>Johnny Burgin som flyttade från South Carolina till Chicago blev känd och uppnådde kultstatus på 1990-talet just i Chicago. Johnny har redan flera årtionden av erfarenhet som dragplåster för bluesklubbarna i denna stad, bland annat Buddy Guys klubb Legends. Under sin omfattande inspelningskarriär har han bland annat spelat in sju album för det välkända skivmärket Delmark.</p><p>Quique Gomez som är hemma från Madrid började spela bluesmunspel och grundade sitt första band som 18-åring. Från och med år 2008 har han framträtt aktivt på båda sidor av Atlanten och jobbat bland annat med John Primer, Eddie C. Campbell och Bob Stroger.</p><p>Under några års tid har Burgin och Gomez även turnerat bluesarenorna tillsammans. Deras samarbete kombinerar Burgins starka och vilda gitarrarbete med Gomez mångsidiga och jazzinspirerade bluessång. Deras gemensamma sound respekterar bluesens traditioner, men skapar ändå nytt. Båda är kända för sin förmåga att fängsla lyssnarna med sin intensiva energi och sitt känslostarka framträdande.</p><p>I februari 2025 omfattar männens turné även Finland, och de kombinerar sina styrkor med turnépartner de känner sedan tidigare, den framstående rytmgruppen inom finländsk blues Jaska Prepula och Mikko Peltola.</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>",
                "en": "<p>Come to Malmisali to hear Burgin’s powerful and wild guitar work combined with Gomez’s versatile, jazz-influenced blues vocals.</p><p>American blues guitarist and singer Johnny Burgin and Spanish-born harpist Quique Gomez have both forged long and international careers as musicians in their own right. In the blues world, both are known especially for their intensive touring on many continents.</p><p>Johnny Burgin, who moved to Chicago from South Carolina, came to prominence and rose to cult fame in Chicago in the 1990s. Johnny already has decades of experience headlining the city’s blues clubs, including Buddy Guy’s Legends. During his extensive recording career, he has recorded seven albums for the renowned Delmark label, among others.</p><p>Quique Gomez, hailing from Madrid, started playing the blues harp and formed his first band at the age of 18. Since 2008, he has been active on both sides of the Atlantic Ocean, working with John Primer, Eddie C. Campbell, and Bob Stroger, among others.</p><p>For several years, Burgin and Gomez have also toured blues arenas together. Their collaboration combines Burgin’s powerful and wild guitar work with Gomez’s versatile, jazz-influenced blues vocals. Their combined sound is respectful of the blues tradition, yet creative in new ways. Both are known for their ability to captivate audiences with their intense energy and emotional performances.</p><p>In February 2025, the men will expand their tour to Finland and join forces with their already familiar touring partners, the rhythm section at the forefront of Finnish blues, Jaska Prepula and Mikko Peltola.</p><p>Duration: 2 h, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64904",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/nothingformoney/nothing-for-money-a-night-in-dire-straits-3769553/",
                        "sv": "https://www.lippu.fi/artist/nothingformoney/nothing-for-money-a-night-in-dire-straits-3769553/",
                        "en": "https://www.lippu.fi/artist/nothingformoney/nothing-for-money-a-night-in-dire-straits-3769553/"
                    },
                    "price": {
                        "fi": "24,80 € / 22,80 €",
                        "sv": "24,80 € / 22,80 €",
                        "en": "24,80 € / 22,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153539,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:58.890881Z",
                    "last_modified_time": "2024-12-27T14:13:58.890895Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761481.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153539/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:58.863750Z",
            "last_modified_time": "2024-12-27T14:13:58.954350Z",
            "date_published": null,
            "start_time": "2025-02-21T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nothing for Money on suomalainen kokoonpano, joka esittää tyylillä ja pieteetillä Dire Straits-yhtyeen musiikkia.",
                "sv": "Nothing for Money är en finländsk ensemble som framför musik av bandet Dire Straits med stil och pietet.",
                "en": "Nothing for Money is a Finnish band that performs the music of Dire Straits with style and attention to detail."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1706F319F149719378FCBD080663FFC/Nothing_for_Money_plays_Dire_Straits",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1706F319F149719378FCBD080663FFC/Nothing_for_Money_plays_Dire_Straits",
                "en": "http://www.malmitalo.fi/en/events/event/D1706F319F149719378FCBD080663FFC/Nothing_for_Money_plays_Dire_Straits"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nothing for Money plays Dire Straits",
                "sv": "Nothing for Money plays Dire Straits",
                "en": "Nothing for Money plays Dire Straits"
            },
            "description": {
                "fi": "<p>Nothing for Money on suomalainen kokoonpano, joka esittää tyylillä ja pieteetillä Dire Straits-yhtyeen musiikkia.</p><p>Luvassa on monien tuttujen Straits-hittien lisäksi livenä harvoin kuultuja helmiä. Vuonna 2025 tulee kuluneeksi 40 vuotta Brothers in Arms -albumin julkaisusta. Nothing for Money juhlistaa merkkivuotta No Arms, Only Guitars -kiertueella, jonka ohjelmistossa on useita Brothers in Arms -levyn kappaleita. <br> <br><b>Nothing for Money – orkesteri</b><br>Juha Ahvenainen – koskettimet <br>Mikko Huotari – basso <br>Susan Jaser – laulu, perkussiot <br>Ville ”Lefty” Leppänen – pedal steel <br>Joonas Metsäniemi – kitara <br>Jukka Metsäniemi – laulu, kitara <br>Tuomas Sipponen – huilu, saksofoni <br>Nicke von Weissenberg - rummut <br> <br> <br><b>Dire Straits</b><br>Lontoossa 1970-luvun lopulla, keskellä punk-kuumetta perustettu Dire Straits kipusi monista juurevista aineksista ammentaen ja jatkuvasti musiikillista ilmaisuaan kehittäen muutamassa vuodessa pubibändistä standionrock-koneeksi maailman suosituimpien yhtyeiden eliittiin. Yhtyeellä oli oma tunnistettava soundinsa, eikä vähiten keulakuvansa Mark Knopflerin ansiosta, jonka yhtye Dire Straits käytännössä oli. Suosion lakipisteen Dire Straits saavutti v. 1985 julkaistulla Brothers in Arms-levyllä, joka myi yli 30 miljoonaa kopiota.  Aikaan se oli ensimmäisiä nimenomaan syntyneitä CD-markkinoita varten äänitettyjä levyjä, jonka teossa oli hyödynnetty uutta digitaalista tekniikkaa.  Dire Straits hajosi lopullisesti vuonna 1995. Mark Knopfler puolestaan on jatkanut menestyksekästä soolouraansa näihin päiviin asti.</p><p>Kesto: 2 t 15 min, sis. 20 min väliajan</p>",
                "sv": "<p>Nothing for Money är en finländsk ensemble som framför musik av bandet Dire Straits med stil och pietet.</p><p>Utöver många välbekanta Straits-hittar utlovas även pärlor som sällan hörs live. År 2025 är det 40 år sedan albumet Brothers in Arms släpptes. Nothing for Money firar jubileumsåret med turnén No Arms, Only Guitars, vars program innehåller flera låtar från albumet Brothers in Arms. <br> <br><b>Nothing for Money – orkester</b><br>Juha Ahvenainen – keyboard <br>Mikko Huotari – bas <br>Susan Jaser – sång, slagverk <br>Ville “Lefty” Leppänen – pedal steel <br>Joonas Metsäniemi – gitarr <br>Jukka Metsäniemi – sång, gitarr <br>Tuomas Sipponen – flöjt, saxofon <br>Nicke von Weissenberg - trummor <br> <br>Längd: 2t 20min</p>",
                "en": "<p>Nothing for Money is a Finnish band that performs the music of Dire Straits with style and attention to detail.</p><p>In addition to many familiar hits from Dire Straits, there will also be some gems that are rarely heard live. In 2025, it will be 40 years since the release of the Brothers in Arms album. Nothing for Money celebrates its anniversary with the No Arms, Only Guitars tour, featuring several songs from the Brothers in Arms album. <br> <br><b>Nothing for Money – band</b><br>Juha Ahvenainen – keyboards <br>Mikko Huotari – bass <br>Susan Jaser – vocals, percussion <br>Ville “Lefty” Leppänen – pedal steel <br>Joonas Metsäniemi – guitar <br>Jukka Metsäniemi – vocals, guitar <br>Tuomas Sipponen – flute, saxophone <br>Nicke von Weissenberg – drums</p><p>Duration: 2 hours, 20 minutes (including break)</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64904/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64837",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sharon-lewis-usa-malmitalo-19384373/",
                        "sv": "https://www.lippu.fi/event/sharon-lewis-usa-malmitalo-19384373/",
                        "en": "https://www.lippu.fi/event/sharon-lewis-usa-malmitalo-19384373/"
                    },
                    "price": {
                        "fi": "34,90 € / 28,90 € / 23,80 €",
                        "sv": "34,90 € / 28,90 € / 23,80 €",
                        "en": "34,90 € / 28,90 € / 23,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153537,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T13:14:26.968802Z",
                    "last_modified_time": "2024-12-27T13:14:26.968819Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760453.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153537/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T13:14:26.908619Z",
            "last_modified_time": "2024-12-27T13:14:27.092171Z",
            "date_published": null,
            "start_time": "2025-02-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Bluesdiiva Sharon Lewis on yksi tämän päivän taitavimmista laulajista Chicagon blues-skenessä.",
                "sv": "Bluesdivan Sharon Lewis är en av dagens skickligaste sångare inom Chicagos bluesscen.",
                "en": "Blues diva Sharon Lewis is one of the finest vocalists on Chicago’s blues scene today."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A323B6B18DA73B823AD4E6EEF20F4CEA/Sharon_Lewis_US_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A323B6B18DA73B823AD4E6EEF20F4CEA/Sharon_Lewis_US_",
                "en": "http://www.malmitalo.fi/en/events/event/A323B6B18DA73B823AD4E6EEF20F4CEA/Sharon_Lewis_US_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sharon Lewis (US)",
                "sv": "Sharon Lewis (US)",
                "en": "Sharon Lewis (US)"
            },
            "description": {
                "fi": "<p>Bluesdiiva Sharon Lewis on yksi tämän päivän taitavimmista laulajista Chicagon blues-skenessä.</p><p>Lewisin vahva sekoitus soulia, bluesia ja R&B:tä toimivat täydellisenä soundtrackina artistin sielukkaille lyriikoille.</p><p>Sharon Lewis syntyi Texasissa ja aloitti musiikkiuransa jo varhain gospel-kuorossa. Hän muutti Chicagoon pysyvästi vuonna 1975, ja 90-luvun alussa hän alkoi esiintyä aktiivisesti kaupungin bluespiireissä. Sittemmin hän on julkaissut neljä albumia.</p><p><b>Kokoonpano</b><br>Sharon Lewis, laulu<br>Kenan Özdemir, kitara ja laulu<br>Erkan Özdemir, basso<br>Levent Özdemir, rummut</p><p>Kesto: 1t 15 min</p>",
                "sv": "<p>Bluesdivan Sharon Lewis är en av dagens skickligaste sångare inom Chicagos bluesscen.</p><p>En stark blandning av soul, blues och R&B fungerar som ett perfekt soundtrack för artistens själfulla låttexter.</p><p>Sharon föddes i Texas och inledde tidigt sin musikkarriär i en gospelkör. Hon flyttade permanent till Chicago år 1975, och i början av 90-talet började hon uppträda flitigt i stadens blueskretsar. Sedan dess har hon släppt fyra album.</p><p><b>Ensemble</b><br>Sharon Lewis, sång<br>Kenan Özdemir, gitarr och sång<br>Erkan Özdemir, bas<br>Levent Özdemir, trummor</p>",
                "en": "<p>Blues diva Sharon Lewis is one of the finest vocalists on Chicago’s blues scene today.</p><p>Her blend of soul, blues, and r&B delivers the perfect soundtrack for her lyrics. Born in Texas, Sharon’s earliest musical experience was as a member of a gospel choir. She moved to Chicago permanently in 1975, became active on the Chicago blues scene in the early 90s and has since released four albums.<br>Originating from Texas, Sharon is one of the most celebrated Chicago blues singers of today.</p><p><b>Band members</b><br>Sharon Lewis, vocals<br>Kenan Özdemir, guitar and vocals<br>Erkan Özdemir, bass<br>Levent Özdemir, drums</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64837/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65312",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3801230"
                    },
                    "price": {
                        "fi": "35,90-39,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T10:14:09.011140Z",
                    "last_modified_time": "2024-12-27T10:14:09.011157Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764459.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T10:14:08.959739Z",
            "last_modified_time": "2024-12-27T10:14:09.162632Z",
            "date_published": null,
            "start_time": "2025-05-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Julge eestlase rind on rasvane ja jultunud pealehakkamine tähendab poolt võitu?"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/152EAD1E3C87F4F69208E77DA2B4F084/Kalevipojad_Made_In_Finland"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kalevipojad – Made In Finland"
            },
            "description": {
                "fi": "<p>Julge eestlase rind on rasvane ja jultunud pealehakkamine tähendab poolt võitu?</p><p>Eestlased on alati uskunud endasse, ja sellele tõele on rajatud ka kahevaatuseline komöödia ”Kalevipojad – Made in Finland”. Näidendile pakub raamid Soome, aga sisu eest vastutavad julged eestlased. Eesti ja Soome rahvad on nüüdseks juba üle 30 aasta jagu marssinud ühisel rajal. On olnud rõõmu ja raskust, teineteisemõistmist ja mittemõistmist, nagu elus ikka.<br>  <br>Kalevipojad on käinud põhjanaabri juures rikkaks ja õndsaks saamas alati. Ka sellel korral seavad vahvad Eesti mehed sammud lombi taha ennast kehtestama. Tegus inimene leiab tööd alati, ja võtab vastu ka selliseid ülesandeid, millest jõud üle ei käi. Ehitamine, lammutamine, tohterdamine ja laulmine – käkitegu! Samas saame paralleelselt jälgida, kuidas ja milleks mindi Eestist Soome juba ennemuistsel ajal. Ja kas minemise põhjused on aastasadadega üldse väga muutunud.    <br> <br>Koduigatsus ei lase ühel õigel eestlasel välismaal olles rahulikult magada. Raha pärast võõrsil rabelemine ei sobi igale inimesele. Vahel juhtub ka nii, et lohutaja leidub kohalikust kõrtsist, ja sellest need jamad alles algavad. Ka kriminaalne maailm proovib meelitada ausaid, tööle tulnud mehi oma kleepuvasse võrgustikku. Soome on lihtne minna, aga seal on raske olla – nii usub vanarahvas.    <br> <br>Elumaitseline Kalevipojad lahendab iga olukorra huumoriga. Nii raske ei ole kunagi, et naerda ei jõuaks. Soome läinud mehed on suuremad kui nende saatus. Kohalike eelarvamused ei sega elamist ja töötamist.<br>         <br>”Kalevipojad – Made In Finland” on komöödia, milles reaalelu tragöödia, naabrimehelik huumor ja optimistlik eestlus moodustavad ühes säriseva terviku. Enne kui Soome tööle lähed, vaata ära see näidend! Ja äkki pärast ei lähegi, või kui ikka lähed, siis palju targemana.<br> <br>Antto Terras (s. 1973 Tallinnas) on Eesti päritolu Soome kirjanik, humorist ja lavastaja, kelle sulest on ilmunud 19 raamatut ja 7 näidendit. Kalevipojad on tema esimene teatritöö kodu-Eestis.</p><p>Lavastaja Antto Terras.<br> <br>Mängivad Jan Uuspõld, Indrek Taalmaa, Ott Sepp.<br> <br>Kesto n. 2 h 20 min, sisältää väliajan<br> <br>Ikäraja: K-18<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Vana Baskini Teater Oü"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiojoerf4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/6rrSCSBJo",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoepuu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqb4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqhq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqzq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeq5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerbm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qs6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtha/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qts4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qt3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quem/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-07-24T11:31:00.501603Z",
            "last_modified_time": "2024-12-23T10:49:30.849987Z",
            "date_published": null,
            "start_time": "2024-08-29T13:00:00Z",
            "end_time": "2025-05-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon! Maksuton, ei ennakkoilmoittautumista.",
                "sv": "Välkommen på en trevlig pysselstund på Hagalunds bibliotek. Evenemanget är gratis, ingen förhandsanmälan krävs.",
                "en": "Welcome to join in the cheerful crafting at Tapiola Library!\nFree of charge, no advance registration required."
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "Askartelupaja",
                "sv": "Pysselverkstad",
                "en": "Craft Workshop"
            },
            "description": {
                "fi": "<p>Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon!</p><p>Maksuton, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen på en trevlig pysselstund på Hagalunds bibliotek.</p><p>Evenemanget är gratis, ingen förhandsanmälan krävs.</p>",
                "en": "<p>Welcome to join in the cheerful crafting at Tapiola Library!</p><p>Free of charge, no advance registration required.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerf4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:2-2801",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": ""
                    },
                    "price": {
                        "fi": "6.50 - 41.00 €",
                        "sv": "6.50 - 41.00 €",
                        "en": "6.50 - 41.00 €"
                    },
                    "description": {
                        "fi": "Hinta",
                        "sv": "Priset",
                        "en": "Price"
                    }
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:u4804001030",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-21T00:06:47.379454Z",
            "last_modified_time": "2024-12-21T00:06:47.379474Z",
            "date_published": null,
            "start_time": "2025-03-18T17:00:00Z",
            "end_time": "2025-03-18T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Amazing concert coming up.\n\n...",
                "sv": "Amazing concert coming up.\n\n...",
                "en": "Amazing concert coming up.\n\n..."
            },
            "info_url": {
                "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2801",
                "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/2801",
                "en": "https://helsinginkaupunginorkesteri.fi/en/node/2801"
            },
            "location_extra_info": {
                "fi": "Carnegie Hall"
            },
            "name": {
                "fi": "HKO: Kuratoin ",
                "sv": "HKO: Kuratoin ",
                "en": "HKO: Kuratoin "
            },
            "description": {
                "fi": "<p>Amazing concert coming up....</p>",
                "sv": "<p>Amazing concert coming up....</p>",
                "en": "<p>Amazing concert coming up....</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2801/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agj6jdplny",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41835/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-12-20T14:52:06.398031Z",
            "last_modified_time": "2024-12-20T14:52:06.398049Z",
            "date_published": "2024-12-20T14:52:06.033000Z",
            "start_time": "2024-12-21",
            "end_time": "2024-12-28",
            "custom_data": {
                "spots": "1",
                "org_name": "Bar",
                "website_url": "",
                "contact_email": "fsdf@sdffds.local",
                "contact_phone": "132123123",
                "contact_last_name": "adsffsad",
                "contact_first_name": "asdsfd"
            },
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "asdasdsaddsa"
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "Foo"
            },
            "description": {
                "fi": "asdasdsaddsa"
            },
            "provider": {
                "fi": "Vaisu haamusäätiö sr",
                "sv": "7772192-2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6jdplny/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agj6jbk7re",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51489/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-12-20T14:42:46.330308Z",
            "last_modified_time": "2024-12-20T14:42:46.330329Z",
            "date_published": "2024-12-20T14:42:45.893000Z",
            "start_time": "2024-12-21",
            "end_time": "2024-12-22",
            "custom_data": {
                "spots": "1",
                "org_name": "afdsdsf",
                "website_url": "",
                "contact_email": "fdsafds@asfdafds.local",
                "contact_phone": "123213321321",
                "contact_last_name": "asfdsafd",
                "contact_first_name": "afdsafds"
            },
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "asdfadsf"
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "asfdsafd"
            },
            "description": {
                "fi": "asdfadsf"
            },
            "provider": {
                "fi": "Vaisu haamusäätiö sr",
                "sv": "7772192-2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6jbk7re/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agj6i6qy74",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:72921/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-12-20T14:30:27.378972Z",
            "last_modified_time": "2024-12-20T14:30:27.378992Z",
            "date_published": "2024-12-20T14:30:26.862000Z",
            "start_time": "2024-12-22",
            "end_time": "2024-12-27",
            "custom_data": {
                "spots": "1",
                "org_name": "sad",
                "website_url": "",
                "contact_email": "safd@adfsasf.local",
                "contact_phone": "132213123",
                "contact_last_name": "asd",
                "contact_first_name": "asad"
            },
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "asdffds"
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "ads"
            },
            "description": {
                "fi": "asdffds"
            },
            "provider": {
                "fi": "Vaisu haamusäätiö sr",
                "sv": "7772192-2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6i6qy74/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65246",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://stellapolaris.tapahtumiin.fi/fi/events/e/maaginen-matka-koko-perheen-improvisoitu-seikkailu/675ad9b63e835dcc248b4573",
                        "sv": "https://stellapolaris.tapahtumiin.fi/fi/events/e/maaginen-matka-koko-perheen-improvisoitu-seikkailu/675ad9b63e835dcc248b4573",
                        "en": "https://stellapolaris.tapahtumiin.fi/fi/events/e/maaginen-matka-koko-perheen-improvisoitu-seikkailu/675ad9b63e835dcc248b4573"
                    },
                    "price": {
                        "fi": "16,30 €/kpl, 4 henkilön perhelippu 50 €",
                        "sv": "16,30 €/kpl, 4 henkilön perhelippu 50 €",
                        "en": "16,30 €/kpl, 4 henkilön perhelippu 50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-13T13:14:07.685103Z",
                    "last_modified_time": "2024-12-13T13:14:07.685120Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764275.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153438/?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-12-13T13:14:07.646843Z",
            "last_modified_time": "2024-12-20T13:14:19.401581Z",
            "date_published": null,
            "start_time": "2025-01-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.",
                "sv": "I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.",
                "en": "In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E4054BCACE4EF19EACD3EC945FFD87C/Stella_Polaris_Maaginen_matka_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9E4054BCACE4EF19EACD3EC945FFD87C/Stella_Polaris_En_magisk_resa",
                "en": "http://www.annantalo.fi/en/events/event/9E4054BCACE4EF19EACD3EC945FFD87C/Stella_Polaris_A_magical_journey"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Stella Polaris: Maaginen matka – koko perheen improvisoitu seikkailu",
                "sv": "Stella Polaris: En magisk resa – improviserat äventyr för hela familjen",
                "en": "Stella Polaris: A magical journey – an improvised adventure for the whole family"
            },
            "description": {
                "fi": "<p>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.</p><p>Improvisoidussa näytelmässä ei ole käsikirjoitusta, vaan näyttelijät, muusikko ja valosuunnittelija improvisoivat kaiken lapsilta saatujen ehdotusten pohjalta.</p><p>Tulkaa viihtymään kanssamme ja ihmettelemään, kuinka lukuisat roolihahmot, laulut, tarinat ja lopulta kokonainen näytelmä syntyy yleisön silmien edessä.</p><p>Taitavat improvisoijat venyvät mitä yllätyksellisimpiin tilanteisiin ja varmaa on, ettei naurun pyrskähdyksiltä ja pähkähulluilta käänteiltä vältytä.</p><p>Ikäsuositus: 6-vuotiaasta ylöspäin.<br>Esityksen kesto: noin 45 minuuttia.<br>Esityksen kieli: suomi</p>",
                "sv": "<p>I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.</p><p>Det finns inget manus i föreställningen, utan skådespelarna, musikern och ljusdesignern improviserar allt utgående från förslag som de får av barnen.</p><p>Kom och trivs med oss och förundras över hur talrika rollfigurer, låtar, berättelser och till slut ett helt skådespel uppstår framför publikens ögon.</p><p>De skickliga improvisatörerna klarar av de mest överraskande situationerna, och det är säkert att vi får skratta högt och se vettlösa vändningar.</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 6+</p>",
                "en": "<p>In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are.</p><p>The improvised performance has no script: the actors, musician and lighting designer improvise everything based on suggestions from the children.</p><p>Come have fun with us and witness how numerous roles, songs, stories and, ultimately, the entire play are created right in front of the audience.</p><p>The skilled improvisers can adapt to the most surprising situations, and what’s certain is there will be no shortage of laughs and crazy twists.</p><p>Duration: approx. 45 min<br>Age recommendation: 6+</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65246/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64760",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153143,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-03T13:15:38.326950Z",
                    "last_modified_time": "2024-12-03T13:15:38.326966Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760011.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153143/?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-12-03T13:15:38.275509Z",
            "last_modified_time": "2024-12-20T13:14:19.306386Z",
            "date_published": null,
            "start_time": "2025-01-18T09:00:00Z",
            "end_time": "2025-01-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/070BFC3A33F593AE0A11C1C9D27CB889/Annantalon_taidelauantai_Kohti_kesaa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/070BFC3A33F593AE0A11C1C9D27CB889/Annegardens_konstlordag_Mot_sommaren_",
                "en": "http://www.annantalo.fi/en/events/event/070BFC3A33F593AE0A11C1C9D27CB889/Annantalo_Art_Saturday_Towards_summer_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Annantalon taidelauantai: Kohti kesää",
                "sv": "Annegårdens konstlördag: Mot sommaren",
                "en": "Annantalo Art Saturday: Towards summer"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kohti kesää</b></p><p>Bzzzzzzzzz, surrrrrrrrrrr, pörrrrrrrrrr...... Muistatko minkälaisia ääniä kukkapenkeistä ja metsistä kuuluu? Nyt siirretään ajatukset jo kohti tulevaa kesää ja kuvitellaan kaikenlaisia rapistelevia, surisevia ja iniseviä otuksia. Tule ja tee oma hyönteisesi osaksi yhteistä taideteosta!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Mot sommaren</b><br>Bzzzzzzzzzzz, surrrrrrrrrrrrrrrrrrr, pörrrrrrrrrrrrrrrr...... Kommer du ihåg vilka ljud man kan höra i blomsterrabatter och skogar? Vi riktar tankarna mot den annalkande sommaren och föreställer oss alla möjliga skrapande, surrande och pipande varelser.</p><p>Kom och gör din egen insekt till en del av ett gemensamt konstverk!</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Konstlördagen på Annegården är avgiftsfri. <br>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Towards summer</b><br>Bzzzzzzzzz, hummmmmmm, whirrrrrrrrrrrrr...... Do you remember the sounds of flower beds and forests? We are already shifting our thoughts towards the coming summer and imagining all sorts of crunchy, buzzing and whirling creatures. Come and make your own insect as part of a common work of art!</p><p>No advance skills are required to participate. The language of instruction in the workshops is Finnish, but all languages and language skills are welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space.</p><p>The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64760/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65115",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153133,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-02T11:13:54.629235Z",
                    "last_modified_time": "2024-12-02T11:13:54.629252Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764065.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153133/?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-12-02T11:13:54.586664Z",
            "last_modified_time": "2024-12-20T13:14:18.666663Z",
            "date_published": null,
            "start_time": "2025-01-16T14:00:00Z",
            "end_time": "2025-01-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa Mölymyrsky-kuvakirjan julkaisutilaisuuteen! Ohjelmassa lukuhetki, kasvomaalausta, värityskuvia sekä omien lempi- ja inhokkiäänien jakamista.",
                "sv": "Välkommen till lanseringen av bilderboken Mölymyrsky! I programmet ingår bland annat en lässtund, ansiktsmålning, färgläggning och att dela med sig av ljud som man gillar och ogillar.",
                "en": "Welcome to the release of the Mölymyrsky picture book! The programme includes reading, face painting, colouring pictures and sharing the sounds you love and hate."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Metelia_hiljaisuuden_puolesta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Metelia_hiljaisuuden_puolesta_Ovasen_for_tystnaden_",
                "en": "http://www.annantalo.fi/en/events/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Make_some_noise_for_silence_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Meteliä hiljaisuuden puolesta! – Mölymyrsky-kirjan julkaisutilaisuus",
                "sv": "Meteliä hiljaisuuden puolesta! (Oväsen för tystnaden!) – Boklansering av Mölymyrsky-boken",
                "en": "Make some noise for silence! – Book release for Mölymyrsky"
            },
            "description": {
                "fi": "<p>Tervetuloa Mölymyrsky-kuvakirjan julkaisutilaisuuteen! Ohjelmassa lukuhetki, kasvomaalausta, värityskuvia sekä omien lempi- ja inhokkiäänien jakamista.</p><p>Juhlan kunniaksi kuunnellaan myös juhlamaljojen kilistelyä ja herkutellaan.</p><p>Mölymyrsky on viisas ja lempeä kuvakirja herkästä Saulista, joka kaipaa hiljaisuutta meluisan arjen keskellä. Kaikkialla on kiljuntaa, mölinää, ölinää, räminää ja ryminää. Sauli taas rakastaa sadepäiviä ja pieniä ääniä, avaimen rapinaa lukossa ja sukkapuikkojen kilahtelua. Kun hän tutustuu äänekkääseen Remiin, hermot joutuvat koetukselle. Onneksi yhteinen sävel on mahdollista löytää – avuksi tarvitaan vain… Shhhmies!</p><p>Teos on suunnattu 3-vuotiaasta ylöspäin ja se on WSOY:n kustantama.</p><p>Tilaisuudessa on mahdollista ostaa kirjoja julkkarihintaan.</p><p>Kirjajulkkarit järjestävät kirjantekijät Heli Rantala ja Netta Lehtola yhdessä Annantalon kanssa.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen till lanseringen av bilderboken Mölymyrsky! I programmet ingår bland annat en lässtund, ansiktsmålning, färgläggning och att dela med sig av ljud som man gillar och ogillar.</p><p>Festen till ära kommer vi också att klinga i glasen och njuta av läckerheter.</p><p>Mölymyrsky är en klok och mild bilderbok om den känslige Sauli, som längtar efter tystnad mitt i den bullriga vardagen. Överallt är det skrik, vrål, tjut, skräll och dunk. Men Sauli älskar regniga dagar och små ljud, skrapet av en nyckel i låset och klinket av strumpstickor. När han träffar den högljudda Remi sätts hans nerver på prov. Lyckligtvis går det att hitta en gemensam melodi – man behöver bara hjälp av... Shhhmannen!</p><p>Boken är riktad till barn från 3 år och uppåt och ges ut av WSOY.<br>På evenemanget finns böcker att köpa till lanseringspris.</p><p>Boklanseringen arrangeras av bokens upphovsmän Heli Rantala och Netta Lehtola tillsammans med Annegården.</p><p>Fritt inträde, ingen förhandsanmälan.</p>",
                "en": "<p>Welcome to the release of the Mölymyrsky picture book! The programme includes reading, face painting, colouring pictures and sharing the sounds you love and hate.</p><p>In honour of the celebration, we will also listen to the clinking of festive drinks and feast.</p><p>Mölymyrsky is a wise and gentle picture book of the sensitive Sauli, who needs some peace and quiet in the middle of a noisy everyday life. Wherever you go, there is so much screaming, rumbling, clamouring, rattling and clattering. Sauli, on the other hand, loves rainy days and small noises, like the rattling of a key in the lock and the clinking of knitting needles. When he gets to know the noisy Remi, his nerves are put to the test. Fortunately, it is possible to find a common tune. All it takes is… Shhhmies!</p><p>The book is meant for children aged 3 and up. The book is published by WSOY.</p><p>The book will be on sale at a special release price at the event.<br>The book launch is organised by authors Heli Rantala and Netta Lehtola together with Annantalo.</p><p>Free admission, no advance registration.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64489",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27260/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5759/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/savoy-world-2024-syksy-savoy-teatteri-18685001/",
                        "sv": "https://www.lippu.fi/event/savoy-world-2024-syksy-savoy-teatteri-18685001/",
                        "en": "https://www.lippu.fi/event/savoy-world-2024-syksy-savoy-teatteri-18685001/"
                    },
                    "price": {
                        "fi": "15-67 €",
                        "sv": "15-67 €",
                        "en": "15-67 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152469,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T13:13:56.363531Z",
                    "last_modified_time": "2024-09-18T13:13:56.363546Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757597.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152469/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-30T18:15:56.553993Z",
            "last_modified_time": "2024-12-20T01:14:51.629390Z",
            "date_published": null,
            "start_time": "2025-10-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0F4B8B4D71FDA9A986F87D0EFB3EC744/Savoy_WORLD_Oumou_Sangar_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0F4B8B4D71FDA9A986F87D0EFB3EC744/Savoy_WORLD_Oumou_Sangar_",
                "en": "http://www.savoyteatteri.fi/en/events/event/0F4B8B4D71FDA9A986F87D0EFB3EC744/Savoy_WORLD_Oumou_Sangar_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Savoy WORLD: Oumou Sangaré – Vuodelta 2024 siirtynyt konsertti",
                "sv": "Savoy WORLD: Oumou Sangaré",
                "en": "Savoy WORLD: Oumou Sangaré"
            },
            "description": {
                "fi": "<p>Grammy-voittaja, afrikkalaisen musiikin supertähti, naisten oikeuksien esitaistelija – laulajaikoni Oumou Sangaré Suomeen 16 vuoden tauon jälkeen!</p><p>Pitkä odotus palkitaan, kun malilaisen laulajalegenda Oumou Sangarén kiertue ulottuu vihdoin Helsinkiin osana Savoy WORLD -konserttisarjaa.</p><p>Köyhissä oloissa kasvanut Sangare sai kipinän naisasiaan jo nuorena: Sangarén ollessa vain kaksivuotias, isä lähti jättäen hänen äitinsä kasvattamaan yksin neljää lasta. Pienen Oumoun poikkeuksellinen laulutaito huomattiin hänen ollessaan vain viisivuotias, ja esikoisalbumi Moussoloun ilmestymisen jälkeen Sangaren ura lähti kansainväliseen nousukiitoon. Grammy-palkittu laulaja on sittemmin tehnyt yhteistyötä mm. Alicia Keysin, Beyoncen ja Herbie Hancockin kanssa ja konsertoinut maailman arvostetuimmilla konserttilavoilla Sydneyn oopperatalosta Lontoon Queen Elisabet Halliin. Hänen syvä ja vivahteikas lauluäänensä sekä karismaattinen lavaesiintymisensä on valloittanut ihmiset ympäri maailmaa, Suomessa vuonna 2009.</p><p>Menestys ei ole saanut Sangaréa unohtamaan taustaansa, vaan sukupuolten välisen tasa-arvon teema kuuluu vahvasti hänen lauluissaan. Hänet on myös nimitetty YK:n Hyvän tahdon lähettilääksi, ja yhtenä maanosansa tunnetuimmista laulajista hän hyödyntää kuuluisuuttaan nostaakseen esiin afrikkalaisia arvoja sekä edistääkseen wassoulou-musiikin tunnettuutta.</p><p>Wassoulou-musiikki on länsiafrikkalainen kansanmusiikin genre, joka on peräisin Wassoulon alueelta Etelä-Malista ja sittemmin juurtunut syvälle malilaiseen kulttuuriin. Vahvan lauluperinteen lisäksi musiikissa kuuluvat kielisoittimet n'goni sekä kora. Musiikkityylille ovat ominaisia tarttuvat rytmit ja melodiat, jotka usein liittyvät arkipäivän elämään, kuten maatalouteen, perhe-elämään ja perinteisiin tapoihin. Wassouloun kuningattareksikin tituleerattu Oumou Sangaré on musiikkityylin tunnetuin edustaja, ja hän on vaikuttanut merkittävästi sen kehittymiseen yhdistämällä perinteeseen blues- ja rock-vivahteita.</p><p>Uusin levy Timbuktu ilmestyi 2022 keräten ylistäviä arvioita.</p><p>”Musiiikki on osa minua\", Sangaré kuvailee.</p><p>”Olen panostanut levyyn kaikkeni - koko elämäni, jossa olen kokenut nöyryyttävää nälkää, köyhyyttä ja pelkoa. Elämäni, josta tänään ammennan kunniaa.”</p><p>Tule kokemaan ikimuistoinen konsertti upean Oumou Sangarén seurassa!</p><p>Konsertin kesto n. 1,5 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>*****<br>Siirtyneen Savoy WORLD: Oumou Sangaré -konsertin (19.9.2024) liput käyvät sellaisenaan torstaina 9.10.2025 klo 19 alkavaan konserttiin. Lippuja ei tarvitse vaihtaa.</p><p>*****<br>Kuuntele Oumou Sangarén kappale Wassulu Don Youtubesta.</p>",
                "sv": "<p>Grammyvinnaren, den afrikanska musikstjärnan, förkämpen för kvinnornas rättigheter – efter ett uppehåll på 16 år anländer den ikoniska sångerskan Oumou Sangaré till Finland!</p><p>Den 16-åriga väntan kommer att belönas när den legendariska maliska sångerskan Oumou Sangarés turné äntligen når Helsingfors som en del av konsertserien Savoy WORLD.</p><p>Sangaré växte upp under fattiga förhållanden och gnistan för för kvinnosaken tändes redan i ung ålder: När Sangaré var bara två år gammal lämnade fadern hennes mor att uppfostra de fyra barnen ensam. Lilla Oumous exceptionella sångröst upptäcktes när hon var bara fem år gammal, och efter att debutalbumet Moussolou släpptes fick Sangarés karriär en internationell rivstart. Sedan dess har den Grammy-belönade sångerskan samarbetat med bland annat Alicia Keys, Beyoncé och Herbie Hancock, och uppträtt på världens mest prestigefyllda konsertscener från operahuset i Sydney till Queen Elizabeth Hall i London. Hennes djupa och nyanserade sångröst och karismatiska scenframträdanden har hänfört människor över hela världen, i Finland 2009.</p><p>Framgången har inte fått Sangaré att glömma sin bakgrund, utan temat jämställdhet mellan könen är starkt närvarande i hennes låtar. Hon har också utnämnts till FN:s goodwillambassadör, och i egenskap av en av sin kontinents mest kända sångare använder hon sin berömmelse för att lyfta fram afrikanska värderingar och främja wassoulou-musiken.</p><p>Wassoulou-musiken är en västafrikansk folkmusikgenre som har sitt ursprung i Wassoulo-regionen i södra Mali, och som sedermera blivit djupt rotad i den maliska kulturen. Förutom den starka sångtraditionen omfattar musiken stränginstrumenten n'goni och kora. Musikstilen kännetecknas av medryckande rytmer och melodier som ofta förknippas med det vardagliga livet, såsom jordbruk, familjeliv och traditionella seder. Oumou Sangaré, även känd som Wassoulous drottning, är musikstilens mest kända representant och har påverkat dess utveckling märkbart genom att kombinera traditionen med blues- och rocknyanser.</p><p>Det senaste albumet Timbuktu släpptes 2022 och fick strålande recensioner.</p><p>“Musiken är en del av mig”, beskriver Sangaré.</p><p>”Jag har satsat allt på albumet – hela mitt liv med förödmjukande hunger, fattigdom och rädsla. Mitt liv, ur vilket jag i dag inhämtar ära.”</p><p>Kom och upplev en minnesvärd konsert med den magnifika Oumou Sangaré!</p><p>Konserten varar i ca 1,5 timme, ingen paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p><p>*****<br>Savoy WORLD: Oumou Sangaré föreställning 19.9.2024 har flyttats. Det nya datumet är on 9.10.2025 kl 19. Redan köpta biljetterna är giltiga till den nya konserten och behövs inte bytas.</p>",
                "en": "<p>Grammy winner, African music superstar, women’s rights champion and iconic singer Oumou Sangaré returns to Finland after a 16-year break!</p><p>The long wait will be rewarded when the legendary Malian singer Oumou Sangaré’s tour finally comes to Helsinki as part of the Savoy WORLD concert series.</p><p>Sangare, who grew up in poverty, was drawn to women’s issues at a young age: when Sangaré was only two years old, her father left, leaving her mother to raise four children alone. Little Oumou’s exceptional singing ability was noticed when she was only five years old, and after the release of her debut album Moussolou, Sangare’s career skyrocketed internationally. The Grammy Award-winning singer has since collaborated with Alicia Keys, Beyoncé and Herbie Hancock, among others, and performed on the world’s most prestigious concert stages, from the Sydney Opera House to the Queen Elizabeth Hall in London. Her deep and nuanced singing voice and charismatic stage presence have taken people by storm worldwide, including in Finland in 2009.</p><p>Success has not made Sangaré forget her background, and gender equality continues to be a theme that is strongly present in her songs. She has also been appointed a United Nations Goodwill Ambassador, and as one of the most famous singers on the African continent, she uses her fame to promote African values and raise awareness of Wassoulou music.</p><p>Wassoulou music is a genre of West African folk music that originated in the Wassoulo region of southern Mali and has since become deeply rooted in Malian culture. In addition to a strong vocal tradition, the music includes the string instruments n’goni and kora. The music style is characterized by catchy rhythms and melodies that are often associated with everyday life, such as agriculture, family life, and traditional customs. Oumou Sangaré, also called the queen of Wassoulou, is the most famous representative of the style and has contributed significantly to its development by combining blues and rock influences.</p><p>Her latest album, Timbuktu, was released in 2022 to rave reviews.</p><p>“Music is a part of me”, says Sangaré.</p><p>“I’ve invested everything in this album – my entire life, during which I’ve experienced humiliating hunger, poverty and fear. My life, from which I draw glory today.”</p><p>Come and experience an unforgettable concert with the magnificent Oumou Sangaré!</p><p>Concert duration: approx. 1.5 hours, no intermission.</p><p>*****<br>Savoy WORLD: Oumou Sangaré concert was rescheduled from September 19th 2024 to October 9th 2025 at 7 pm. The tickets that have already been purchased will be valid for the new event date as they are.</p>"
            },
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64489/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65198",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/itaekuskus-stand-up-klubi-k-18-stoa-19479730/",
                        "sv": "https://www.lippu.fi/event/itaekuskus-stand-up-klubi-k-18-stoa-19479730/",
                        "en": "https://www.lippu.fi/event/itaekuskus-stand-up-klubi-k-18-stoa-19479730/"
                    },
                    "price": {
                        "fi": "20 € / 17 €",
                        "sv": "20 € / 17 €",
                        "en": "20 € / 17 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153329,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-09T14:15:48.601854Z",
                    "last_modified_time": "2024-12-09T14:15:48.601876Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764234.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-09T14:15:48.566108Z",
            "last_modified_time": "2024-12-20T01:14:51.374492Z",
            "date_published": null,
            "start_time": "2025-05-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"",
                "sv": "Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”",
                "en": "The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9340F64A9F28E05AE921BF619E7B2288/Itakuskus_stand-up_-klubi_K18_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9340F64A9F28E05AE921BF619E7B2288/Itakuskus_stand_up-klubb_18_",
                "en": "http://www.stoa.fi/en/events/event/9340F64A9F28E05AE921BF619E7B2288/The_Itakuskus_stand_up_Club_18_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Itäkuskus stand-up -klubi (K18)",
                "sv": "Itäkuskus stand up-klubb (18)",
                "en": "The Itäkuskus stand up Club (18+)"
            },
            "description": {
                "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p><b>Aikataulu</b><br>klo 18 ovet ja Teatterisalin baari avoinna<br>klo 19 show time</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi Suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on myös tuottaja ja MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"</p><p>Klubia ei suositella herkkähipiäisille! Toisinaan poliittinen korrektius tuntuu illoissa kaukaiselta aatteelta. Roustauksesta saavat osansa niin Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot kuin suomenkieliset fraasitkin, joita edes kantasuomalaiset eivät aina osaa lausua oikein.</p><p><b>Yleisön suusta:</b><br>”Täällä kuulen erinomaista läppää, mitä muualla en kuule.” <br>”Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.”</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin, illat myydään nopeasti loppuun.</p><p>Klubi-illan tarjoiluista vastaa ravintola Box Stoa ja Teatterisalin baari aukeaa klo 18.00. Tule ajoissa ja varaa parhaat paikat.</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus esiintyjä vetää englanniksi</p>",
                "sv": "<p>Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”</p><p>På klubben glömmer du dina bekymmer och din stress. Denna unika show sveper med dig på en resa mot öst och bjuder på dråplig komik, unika inblickar i kulturella skillnader och det finska språket. Varje föreställning har flera varierande komiker med invandrarbakgrund – och naturligtvis framträder också en varierande känd kvotfinländsk komiker varje kväll.</p><p>Underhållningsstjärnan Fabe uppträder på alla klubbar. Det går inte att undvika Fabes videor, som visas över en miljon gånger och delas över 50 000 gånger i månaden i Finland. Varför har klubben blivit ett fenomen? Fabe svarar: “För att finländarna älskar mitt handhår och att skämta om det. Med hjälp av humor kan vi hantera alla ämnen och sammanföra kulturer. Det här är något helt unikt och otroligt. Det är värt att komma på plats!”</p><p>En av Finlands mest mångsidiga komiker fungerar som värd för klubbkvällarna: Komikern Mebe! Mebe är också producent och MC! Han är sympatisk, liknar en teddybjörn och charmar publiken med sina vassa repliker och skämt! “Detta får du inte se eller höra någon annanstans, den dråpliga Itäkuskus-showen är full av overraskningar och unika skämt och observationer. Detta är som Fazers mjölkchoklad, man blir beroende med en gång! Kom och upplev den unika Itäkuskus-showen, vi är många som aldrig missar en enda.”</p><p>Klubben rekommenderas inte för ömhudade! På kvällarna kan politisk korrekthet vara blott en avlägsen tanke. Både Skatteverket, Alko, Vanda, invandrarnas kulturella skillnader och finska fraser som inte ens infödda finländare alltid kan uttala på rätt sätt får sin del av roastningen.</p><p><b>Sagt bland publiken:</b><br>“Vi vill stödja invandrarartister.” <br>“Här slänger man käft som ingen annanstans.” <br>“Ett fantastiskt koncept och en kväll full av fantastiska artister, var och en så olika och bra på sitt eget sätt.”</p><p>Kom och upplev showen själv och ta med dig dina vänner!<br>Det är bra att köpa biljetter i god tid, eftersom kvällarna säljer slut snabbt. Restaurang Box Stoa svarar för serveringen under klubbkvällen.</p><p>Språk: finska</p>",
                "en": "<p>The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”</p><p>At the club, you can forget about your worries and stress. This unique show takes you on a trip to the East with hilarious comedy and unique insights into cultural differences and the Finnish language. There are several rotating immigrant comedians at each gig – and, of course, there is also a rotating, well-known Finnish comedian every evening.</p><p>All clubs feature entertainer Fabe. Fabe’s videos will have been hard to avoid, as they accumulate more than a million views per month in Finland and have been shared more than 50,000 times. Why has the club become a such a phenomenon? Fabe replies: “Because Finns love my arm hair and making jokes about them. You can talk about anything and create connections between cultures through humour. This is something totally unique and unbelievable. Be there!”</p><p>Club evenings are hosted by one of the most versatile comedians in Finland: Mebe! Mebe is also a producer and an MC! He is a sympathetic teddy bear-like person who charms the audience with quick one-liners and jokes! “You can't see and hear this anywhere else, the hilarious Itäkuskus show is full of surprises, unique jokes and observations. This is like Fazer's milk chocolate, the first time is all it takes to get you hooked! Come and experience the unique Itäkuskus show, like many others that visit every time.”</p><p>The club is not recommended for people without a thick skin! Sometimes political correctness feels like a distant ideal in these evenings. The Tax Authority, Alko, the City of Vantaa, the cultural differences between immigrants, as well as phrases in Finnish that even native Finns can not always speak correctly all get roasted.</p><p><b>From the audience:</b><br>“We want to support immigrant performers.” <br>“The jokes here are excellent, the kind I don't hear anywhere else.” <br>\"The concept is great and the evening is full of good performers, everyone so different from one another and good in their own way.”</p><p>Come and experience it for yourself and bring your friends!<br>We recommend buying tickets in advance, as the events sell out quickly.<br>Restaurant Box Stoa is responsible for service during the club evening.</p><p>Language: Mainly Finnish</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65013",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153373,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T13:14:17.593133Z",
                    "last_modified_time": "2024-12-10T13:14:17.593148Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763499.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153373/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-12-10T13:14:17.557161Z",
            "last_modified_time": "2024-12-20T01:14:51.114369Z",
            "date_published": null,
            "start_time": "2025-05-19T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/66A42D118DE83DC8D2AFB68AD83554EB/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/66A42D118DE83DC8D2AFB68AD83554EB/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/66A42D118DE83DC8D2AFB68AD83554EB/Let_us_sing_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 tunti<br>Vapaa pääsy</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65303",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153505,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T14:14:59.987277Z",
                    "last_modified_time": "2024-12-18T14:14:59.987293Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760136.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153505/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-12-18T14:14:59.958797Z",
            "last_modified_time": "2024-12-20T01:14:50.591465Z",
            "date_published": null,
            "start_time": "2025-05-06T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit",
                "en": "http://www.stoa.fi/en/events/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "en": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa"
            },
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Kesto: 1 tunti<br>Ohjauskieli: suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65303/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}