Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27053,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=268",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=266"
    },
    "data": [
        {
            "id": "kulke:65464",
            "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": [],
                    "price": {
                        "fi": "18-24 €, kannatuslippu 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3813557"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T08:14:33.804714Z",
                    "last_modified_time": "2025-01-21T08:14:33.804730Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764863.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161528/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T14:15:24.324263Z",
            "last_modified_time": "2025-02-11T11:14:29.919310Z",
            "date_published": null,
            "start_time": "2025-02-22T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Humanistispeksi 2025 - Laulu Thebasta"
            },
            "provider": {
                "fi": "Humanistispeksi ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FC45D415329DCFCABAA23C24998D0872/Humanistispeksi_2025_-_Laulu_Thebasta"
            },
            "description": {
                "fi": "<p>Vehreiden laaksojen helmassa siintää seitsenporttinen Theban kaupunki. Kiireisten katujen ja torien keskellä kohoaa kuninkaan palatsi.<br> <br>Theban kuninkaalla on kaksi tytärtä. Toinen valmistautuu ottamaan vastaan tehtävän, jota on odottanut koko elämänsä. Toinen kerää rohkeutta tavoitellakseen rakkautta. Samaan aikaan kuninkaan palatsissa pitkään pinnan alle kätketty katkeruus uhkaa läikkyä yli. Kunnianjanoinen taiteilija on valmis tekemään lähes mitä tahansa noustakseen tähtiin. Kaksi rakastavaista epäröivät ottaa lopullisen askeleen toisiaan kohti.<br> <br>Theban yllä riippuu varjo, josta kukaan ei vaikuta välittävän. Theban sisällä hautuu sekasorto, jota kukaan ei vaikuta huomaavan.<br> <br>Kun kaikki sinulle rakas on uhattuna, kenen joukoissa seisot? Minkä hinnan olet valmis maksamaan kunniasta? Kuka laulaa muistolaulusi, kun et ole enää täällä?<br> <br>Antiikin kreikkalaisen teatterin inspiroima Laulu Thebasta on ikiaikainen tarina ihmisyydestä – kunniasta, rakkaudesta, kateudesta, ylpeydestä ja vääristä valinnoista.<br> <br>Ikäsuositus: 12+<br> <br>Kesto n. 3 h, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "short_description": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65464/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65463",
            "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": [],
                    "price": {
                        "fi": "18-24 €, kannatuslippu 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3813557"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161527,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T08:14:33.509168Z",
                    "last_modified_time": "2025-01-21T08:14:33.509186Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764862.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161527/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T14:15:23.949170Z",
            "last_modified_time": "2025-02-11T11:14:29.486409Z",
            "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,
            "name": {
                "fi": "Humanistispeksi 2025 - Laulu Thebasta"
            },
            "provider": {
                "fi": "Humanistispeksi ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2DB4E579B414D8F3A3BF6A746B8A53DD/Humanistispeksi_2025_-_Laulu_Thebasta"
            },
            "description": {
                "fi": "<p>Vehreiden laaksojen helmassa siintää seitsenporttinen Theban kaupunki. Kiireisten katujen ja torien keskellä kohoaa kuninkaan palatsi.<br> <br>Theban kuninkaalla on kaksi tytärtä. Toinen valmistautuu ottamaan vastaan tehtävän, jota on odottanut koko elämänsä. Toinen kerää rohkeutta tavoitellakseen rakkautta. Samaan aikaan kuninkaan palatsissa pitkään pinnan alle kätketty katkeruus uhkaa läikkyä yli. Kunnianjanoinen taiteilija on valmis tekemään lähes mitä tahansa noustakseen tähtiin. Kaksi rakastavaista epäröivät ottaa lopullisen askeleen toisiaan kohti.<br> <br>Theban yllä riippuu varjo, josta kukaan ei vaikuta välittävän. Theban sisällä hautuu sekasorto, jota kukaan ei vaikuta huomaavan.<br> <br>Kun kaikki sinulle rakas on uhattuna, kenen joukoissa seisot? Minkä hinnan olet valmis maksamaan kunniasta? Kuka laulaa muistolaulusi, kun et ole enää täällä?<br> <br>Antiikin kreikkalaisen teatterin inspiroima Laulu Thebasta on ikiaikainen tarina ihmisyydestä – kunniasta, rakkaudesta, kateudesta, ylpeydestä ja vääristä valinnoista.<br> <br>Ikäsuositus: 12+<br> <br>Kesto n. 3 h, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "short_description": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65463/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65462",
            "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": [],
                    "price": {
                        "fi": "18-24 €, kannatuslippu 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3813557"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161526,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T08:14:33.232222Z",
                    "last_modified_time": "2025-01-21T08:14:33.232238Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764861.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161526/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T13:15:19.692682Z",
            "last_modified_time": "2025-02-11T11:14:29.095920Z",
            "date_published": null,
            "start_time": "2025-02-20T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Humanistispeksi 2025 - Laulu Thebasta"
            },
            "provider": {
                "fi": "Humanistispeksi ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BB0EBB5A75055C5E0B7FEC3A96CAB63E/Humanistispeksi_2025_-_Laulu_Thebasta"
            },
            "description": {
                "fi": "<p>Vehreiden laaksojen helmassa siintää seitsenporttinen Theban kaupunki. Kiireisten katujen ja torien keskellä kohoaa kuninkaan palatsi.<br> <br>Theban kuninkaalla on kaksi tytärtä. Toinen valmistautuu ottamaan vastaan tehtävän, jota on odottanut koko elämänsä. Toinen kerää rohkeutta tavoitellakseen rakkautta. Samaan aikaan kuninkaan palatsissa pitkään pinnan alle kätketty katkeruus uhkaa läikkyä yli. Kunnianjanoinen taiteilija on valmis tekemään lähes mitä tahansa noustakseen tähtiin. Kaksi rakastavaista epäröivät ottaa lopullisen askeleen toisiaan kohti.<br> <br>Theban yllä riippuu varjo, josta kukaan ei vaikuta välittävän. Theban sisällä hautuu sekasorto, jota kukaan ei vaikuta huomaavan.<br> <br>Kun kaikki sinulle rakas on uhattuna, kenen joukoissa seisot? Minkä hinnan olet valmis maksamaan kunniasta? Kuka laulaa muistolaulusi, kun et ole enää täällä?<br> <br>Antiikin kreikkalaisen teatterin inspiroima Laulu Thebasta on ikiaikainen tarina ihmisyydestä – kunniasta, rakkaudesta, kateudesta, ylpeydestä ja vääristä valinnoista.<br> <br>Ikäsuositus: 12+<br> <br>Kesto n. 3 h, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "short_description": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65462/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65461",
            "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": [],
                    "price": {
                        "fi": "18-24 €, kannatuslippu 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3813557"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161525,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T08:14:33.013572Z",
                    "last_modified_time": "2025-01-21T08:14:33.013590Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764860.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161525/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T13:15:19.441448Z",
            "last_modified_time": "2025-02-11T11:14:28.734992Z",
            "date_published": null,
            "start_time": "2025-02-19T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Humanistispeksi 2025 - Laulu Thebasta"
            },
            "provider": {
                "fi": "Humanistispeksi ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E327F7A3E5D761BF84709ED95FD3D67A/Humanistispeksi_2025_-_Laulu_Thebasta"
            },
            "description": {
                "fi": "<p>Vehreiden laaksojen helmassa siintää seitsenporttinen Theban kaupunki. Kiireisten katujen ja torien keskellä kohoaa kuninkaan palatsi.<br> <br>Theban kuninkaalla on kaksi tytärtä. Toinen valmistautuu ottamaan vastaan tehtävän, jota on odottanut koko elämänsä. Toinen kerää rohkeutta tavoitellakseen rakkautta. Samaan aikaan kuninkaan palatsissa pitkään pinnan alle kätketty katkeruus uhkaa läikkyä yli. Kunnianjanoinen taiteilija on valmis tekemään lähes mitä tahansa noustakseen tähtiin. Kaksi rakastavaista epäröivät ottaa lopullisen askeleen toisiaan kohti.<br> <br>Theban yllä riippuu varjo, josta kukaan ei vaikuta välittävän. Theban sisällä hautuu sekasorto, jota kukaan ei vaikuta huomaavan.<br> <br>Kun kaikki sinulle rakas on uhattuna, kenen joukoissa seisot? Minkä hinnan olet valmis maksamaan kunniasta? Kuka laulaa muistolaulusi, kun et ole enää täällä?<br> <br>Antiikin kreikkalaisen teatterin inspiroima Laulu Thebasta on ikiaikainen tarina ihmisyydestä – kunniasta, rakkaudesta, kateudesta, ylpeydestä ja vääristä valinnoista.<br> <br>Ikäsuositus: 12+<br> <br>Kesto n. 3 h, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "short_description": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65461/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65587",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 213828,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-11T08:14:31.130753Z",
                    "last_modified_time": "2025-02-11T08:14:31.130767Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761786.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213828/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-11T08:14:31.092450Z",
            "last_modified_time": "2025-02-11T08:14:31.198920Z",
            "date_published": null,
            "start_time": "2025-04-08T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Romanikieli: kansainvälinen, tuntematon ja uhanalainen vähemmistökielemme – Tiistaimatinea / Romanien kansallispäivä",
                "sv": "Romanikieli: kansainvälinen, tuntematon ja uhanalainen vähemmistökielemme – Tisdagsmatiné / Romernas nationaldag",
                "en": "Romanikieli: kansainvälinen, tuntematon ja uhanalainen vähemmistökielemme – Tuesday matinee / Roma National Day"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0ECA958443E702C5B5F1689AFA7BAFE4/Romanikieli_kansainvalinen_tuntematon_ja_uhanalainen_vahemmistokielemme_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0ECA958443E702C5B5F1689AFA7BAFE4/Romanikieli_kansainvalinen_tuntematon_ja_uhanalainen_vahemmistokielemme_",
                "en": "http://www.vuotalo.fi/en/events/event/0ECA958443E702C5B5F1689AFA7BAFE4/Romanikieli_kansainvalinen_tuntematon_ja_uhanalainen_vahemmistokielemme_"
            },
            "description": {
                "fi": "<p>Romanien kansallispäivänä FT Kimmo Granqvist luennoi romanikielestä Vuotalossa.</p><p>Romanikieli on indoarjalainen kieli, jota puhuu eri puolilla maailmaa vähintään neljä miljoonaa ihmistä. Se monille suomalaisille paljolti tuntematon, vaikka sitä on puhuttu Suomessa 500 vuoden ajan.</p><p>Nykyään se on Suomessa vakavasti uhanalainen kieli, jota kuitenkin yritetään elvyttää vuoteen 2030 ulottuvan elvytysohjelman kautta.</p><p>Kesto: 90 min<br>Vapaa pääsy</p>",
                "sv": "<p>På romernas nationaldag föreläser FD Kimmo Granqvist om romani i Nordhuset.</p><p>Romani är ett indoariskt språk som talas av minst fyra miljoner människor runt om i världen. Det är i stort sett okänt för många finländare även om det har talats i Finland i 500 år. I dag är det ett allvarligt hotat språk i Finland som man försöker återuppliva genom ett återupplivningsprogram som pågår till 2030.</p><p>Längd: 90 min.</p><p>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>On the Roma National Day, PhD Kimmo Granqvist will give a lecture on the Roma language at Vuotalo.</p><p>Romani is an Indo-Aryan language spoken by at least four million people around the world. It is largely unknown to many Finns, although it has been spoken in Finland for 500 years. Today, it is a severely endangered language in Finland, but the aim is to revive it through a recovery programme lasting until 2030.</p><p>Duration: 90 min<br>Language: Finnish</p><p>Free of charge</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Romanien kansallispäivänä FT Kimmo Granqvist luennoi romanikielestä Vuotalossa.",
                "sv": "På romernas nationaldag föreläser FD Kimmo Granqvist om romani i Nordhuset.",
                "en": "On the Roma National Day, PhD Kimmo Granqvist will give a lecture on the Roma language at Vuotalo."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65601",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 213827,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-11T08:14:29.856596Z",
                    "last_modified_time": "2025-02-11T08:14:29.856611Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761784.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-11T08:14:29.803518Z",
            "last_modified_time": "2025-02-11T08:14:29.933013Z",
            "date_published": null,
            "start_time": "2025-04-04T15:00:00Z",
            "end_time": "2025-04-04T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "AKUSMATA POLYPHONIC 2025",
                "sv": "AKUSMATA POLYPHONIC 2025",
                "en": "AKUSMATA POLYPHONIC 2025"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/430B3C81E25403BA99042842DC7C4CA2/AKUSMATA_POLYPHONIC_2025",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/430B3C81E25403BA99042842DC7C4CA2/AKUSMATA_POLYPHONIC_2025",
                "en": "http://www.vuotalo.fi/en/events/event/430B3C81E25403BA99042842DC7C4CA2/AKUSMATA_POLYPHONIC_2025"
            },
            "description": {
                "fi": "<p>Akusmata Polyphonic 2025 on kokeellisen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.</p><p>Tapahtumaan kutsutut muusikot, säveltäjät ja äänitaiteilijat tarjoavat yleisölle laajan kirjon uutta äänellistä ilmaisua kokeellisen elektronisen musiikin, äänitaiteen ja ambient-musiikin alueilta.</p><p>Ohjelmaan kuuluu modulaarisia äänijärjestelmiä, tee-se-itse-musiikkisoittimia ja asenteella improvisoitua musiikkia. Tapahtumassa esiintyy taiteilijoita ympäri maailmaa!</p><p>Kesto: 2 t sis. väliajan.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Akusmata Polyphone 2025 är ett evenemang för experimentell ljudkonst och elektronisk musik i Nordhuset.</p><p>De inbjudna musikerna, kompositörerna och ljudkonstnärerna bjuder publiken på ett brett spektrum av nya ljudliga uttryck inom den experimentella elektroniska musiken, ljudkonsten och ambient-musiken.</p><p>På programmet står bland annat modulära ljudsystem, gör-det-själv-musikinstrument och musik som improviseras med attityd. Artister från hela världen uppträder på evenemanget!</p><p>Längd: 2 timmar inklusive paus</p><p>Fritt inträde</p>",
                "en": "<p>Akusmata Polyphonic 2025 is an experimental sound art and electronic music event in Vuotalo.</p><p>Musicians, composers and sound artists invited to the event offer the audience a wide range of new vocal expression from the areas of experimental electronic music, sound art and ambient music.</p><p>The programme includes modular sound systems, do-it-yourself musical instruments and music improvised with an attitude. The event will feature artists from around the world!</p><p>Duration: 2 hours, incl. intermission</p><p>Free admission</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Akusmata Polyphonic 2025 on kokeellisen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.",
                "sv": "Akusmata Polyphone 2025 är ett evenemang för experimentell ljudkonst och elektronisk musik i Nordhuset.",
                "en": "Akusmata Polyphonic 2025 is an experimental sound art and electronic music event in Vuotalo."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65601/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64838",
            "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:33/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22,80 € / 20,80 €",
                        "sv": "22,80 € / 20,80 €",
                        "en": "22,80 € / 20,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmintyoevaeennaeyttaemoe/",
                        "sv": "https://www.lippu.fi/artist/malmintyoevaeennaeyttaemoe/",
                        "en": "https://www.lippu.fi/artist/malmintyoevaeennaeyttaemoe/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153544,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:14:01.007817Z",
                    "last_modified_time": "2024-12-27T14:14:01.007832Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760461.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153544/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:14:00.983716Z",
            "last_modified_time": "2025-02-10T12:13:08.684048Z",
            "date_published": null,
            "start_time": "2025-03-11T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Malmin työväen näyttämö: Kuningas kuolee",
                "sv": "Malms arbetarscen: Kuningas kuolee (Kungen dör)",
                "en": "The Malmi Workers’ Theatre: Exit the King"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/57FBEB398EA50CD0701B9FEC6E0A0C44/Malmin_tyovaen_nayttamo_Kuningas_kuolee",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/57FBEB398EA50CD0701B9FEC6E0A0C44/Malms_arbetarscen_Kuningas_kuolee_Kungen_dor_",
                "en": "http://www.malmitalo.fi/en/events/event/57FBEB398EA50CD0701B9FEC6E0A0C44/The_Malmi_Workers_Theatre_Exit_the_King"
            },
            "description": {
                "fi": "<p>Kuningaskunta on rapistunut, sotakoneisto sakkaa ja kuningas kiistää väistämättömän – oman kuolemansa.</p><p><b>Eugène Ionescon</b> näytelmä on absurdia, komediallista teatteria, jossa rimpuillaan vääjäämätöntä muutosta vastaan. Sen monitasoinen teksti luo tilaa erilaisille tulkinnoille. Yhtymäkohtia voi löytää niin ihmisen itsekeskeisyyteen, jatkuviin sotiin kuin ilmastonmuutokseen. Näytelmä saa nauramaan oudoiltakin tuntuville asioille. Katsoja voi kysyä, kenelle tai mille naurankaan. Näytelmä tulee iholle. Muutoksen välttämättömyys koskettaa kaikkia. <br> <br>”Nyt on valtakunta täynnä reikiä niin kuin valtava emmentaali. <br> <br>Tämän hallituskauden alussa asukkaita oli yhdeksän miljardia - Nyt jäljellä on enää tuhatkunta vanhusta. <br> <br>Yhdelläkään koululaisella ei ole enää terveen papereita.”<br> <br>Ohjaus: Jouko Myllyoja <br> <br><a href=”https://malmintyovaentalo.fi/malmin-tyovaennayttamo/”>Tutustu Malmin työväennäyttämöön</a></p><p>Esitysoikeuksia valvoo Näytelmäkulma – Nordic Drama Corner Oy</p><p>Kesto: 2 t, sis. 20 min väliajan</p>",
                "sv": "<p>Kungariket har förfallit, krigsmaskineriet hackar och kungen förnekar det oundvikliga – sin egen död.</p><p><b>Eugène Ionescos</b> pjäs är absurd, komisk teater där man stretar emot en oundviklig förändring. Texten har flera nivåer och skapar utrymme för olika tolkningar. Man kan hitta beröringspunkter både till människans egocentricitet, kontinuerliga krig och klimatförändringen. Pjäsen får en att skratta åt saker som kan kännas konstiga. Åskådaren kan fråga sig vem eller vad han eller hon ska skratta åt. Pjäsen kommer nära inpå. Förändringens nödvändighet berör alla. <br> <br>“Nu är riket fullt av hål precis som en enorm emmentaler. <br> <br>I början av denna regeringsperiod fanns det nio miljarder invånare – Nu finns det endast ett tusentals åldringar. <br> <br>Inte en enda skolelev är frisk längre.”<br> <br>Regi: Jouko Myllyoja</p><p>Specialrättigheterna övervakas av Näytelmäkulma – Nordic Drama Corner Oy</p><p>Längd: 2h, inklusive en paus på 20 minuter<br>Språk: finska</p>",
                "en": "<p>The kingdom is decaying, the war machine is crumbling, and the king denies the inevitable – his own death.</p><p><b>Eugène Ionesco’s</b> play is absurdist, comedic theatre that struggles against inevitable change. Its multi-layered text creates room for different interpretations. You can draw parallels with human self-centredness, perpetual wars and climate change. This play makes you laugh at things that may even seem strange. The viewer may wonder, “Who or what am I actually laughing at?” The play gets under your skin. The inevitability of change affects everyone. <br> <br>“Now the kingdom is full of holes, like a giant Emmental cheese. <br> <br>At the beginning of this government term, there were nine billion inhabitants – now only about a thousand elderly people remain. <br> <br>Not a single schoolchild has a clean bill of health anymore.”<br> <br>Director: Jouko Myllyoja</p><p>Performance rights controlled by Näytelmäkulma – Nordic Drama Corner Oy</p><p>Duration: 2 h, incl. 20 min intermission<br>Language: Finnish</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kuningaskunta on rapistunut, sotakoneisto sakkaa ja kuningas kiistää väistämättömän – oman kuolemansa.",
                "sv": "Kungariket har förfallit, krigsmaskineriet hackar och kungen förnekar det oundvikliga – sin egen död.",
                "en": "The kingdom is decaying, the war machine is crumbling, and the king denies the inevitable – his own death."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64838/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64905",
            "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": [],
                    "price": {
                        "fi": "22,80 € / 20,80 € / 18,80 €",
                        "sv": "22,80 € / 20,80 € / 18,80 €",
                        "en": "22,80 € / 20,80 € / 18,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/valentines-celebration-with-middle-eastern-ensemble-3772713/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/valentines-celebration-with-middle-eastern-ensemble-3772713/",
                        "en": "https://www.lippu.fi/artist/malmitalo/valentines-celebration-with-middle-eastern-ensemble-3772713/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153538,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:58.225896Z",
                    "last_modified_time": "2024-12-27T14:13:58.225918Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761582.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153538/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:58.175783Z",
            "last_modified_time": "2025-02-10T12:13:04.700056Z",
            "date_published": null,
            "start_time": "2025-02-14T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ystävänpäivän juhla: Middle Eastern Ensemble ja Dima Zain",
                "sv": "Vändagsfest: Middle Eastern Ensemble & Dima Zain",
                "en": "Valentine’s Celebration: Middle Eastern Ensemble featuring Dima Zain"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/48720EC54D2E501B5D4C050C2EDCB0B2/Ystavanpaivan_juhla_Middle_Eastern_Ensemble_ja_Dima_Zain",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/48720EC54D2E501B5D4C050C2EDCB0B2/Vandagsfest_Middle_Eastern_Ensemble_Dima_Zain",
                "en": "http://www.malmitalo.fi/en/events/event/48720EC54D2E501B5D4C050C2EDCB0B2/Valentine_s_Celebration_Middle_Eastern_Ensemble_featuring_Dima_Zain"
            },
            "description": {
                "fi": "<p>Sukella Lähi-idän lumoaviin säveliin ystävänpäivänä Middle Eastern Ensemblen ja Dima Zainin kanssa!</p><p>Liity seuraamme ystävänpäivänä 14. helmikuuta ainutlaatuisen illan merkeissä. Malmisalissa esiintyvät Middle Eastern Ensemble sekä upea syyrialainen laulaja Dima Zain.</p><p>Illan aikana voit kokea perinteisten ja modernien sävelmien harmonisen yhdistelmän, joka herättää romantiikan eloon. Dima Zainin vangitseva ääni ja yhtyeen eläväinen musiikki vievät sinut rakkauden ja intohimon täyteiselle matkalle.</p><p>Kesto: 1 tunti, 30 min<br>Järjestäjä: Awtar ry</p><p>Avustaja ilmaiseksi ainoastaan pyörätuoliasiakkaan saattajana.</p>",
                "sv": "<p>Fira vändagen på en förtrollande konsert med Middle Eastern Ensembles och Dima Zains melodier.</p><p>På konserten får vi höra romantisk och själfull musik från olika delar av Mellanöstern med traditionella instrument och känslofulla framträdanden. Låt de förtrollande tonerna från oud, quanoun och andra instrument hämta värme till din vändag.</p><p>Längd: 1t 3min<br>Arrangör: Awtar ry</p>",
                "en": "<p>Celebrate Valentine's Day with the Middle Eastern Ensemble and Dima Zain in an enchanting evening of love and melody.</p><p>This Valentine’s Day, immerse yourself in the captivating sounds of the Middle East! Join us on February 14, 2025, at Malmitalo Hall for a magical evening featuring the Middle Eastern Ensemble and the extraordinary Syrian singer, Dima Zain. Experience a harmonious blend of traditional and modern melodies, bringing the essence of romance to life. Let Dima Zain’s enchanting voice and the ensemble's vibrant music take you on a journey of love and passion.</p><p>Duration: 1 hour 30 minutes<br>Organizer: Awtar ry</p><p>The assistant is free of charge only when accompanying a wheelchair customer.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sukella Lähi-idän lumoaviin säveliin ystävänpäivänä Middle Eastern Ensemblen ja Dima Zainin kanssa!",
                "sv": "Fira vändagen på en förtrollande konsert med Middle Eastern Ensembles och Dima Zains melodier.",
                "en": "Celebrate Valentine's Day with the Middle Eastern Ensemble and Dima Zain in an enchanting evening of love and melody."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64905/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:9ed67b19-892c-4294-8743-1f1daadf0e2f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/bd9f2240-c75a-ef11-bfe3-002248a0c02a?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus966990887",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/bd9f2240-c75a-ef11-bfe3-002248a0c02a?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus966990887",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/bd9f2240-c75a-ef11-bfe3-002248a0c02a?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus966990887"
                    },
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 210583,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-10T07:48:24.679297Z",
                    "last_modified_time": "2025-02-10T07:48:24.679315Z",
                    "name": "Kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/b6ca9fc4-82e7-ef11-be20-000d3ab0beb8",
                    "cropping": "",
                    "photographer_name": "N2 Albiino, Matti Pyykkö, Helsinki Partners",
                    "alt_text": "Henkilöitä keskustelemassa",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/210583/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                }
            ],
            "created_time": "2025-02-10T07:48:27.402335Z",
            "last_modified_time": "2025-02-10T07:48:27.402352Z",
            "date_published": "2025-02-10T07:28:20Z",
            "start_time": "2025-02-10T10:00:00Z",
            "end_time": "2025-02-10T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 250,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-02-10T08:00:00+02:00",
            "enrolment_end_time": "2025-02-10T11:30:00+02:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus",
                "sv": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus RU",
                "en": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus ENG"
            },
            "provider": {
                "fi": "Business Helsinki",
                "sv": "Business Helsinki",
                "en": "Business Helsinki"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>Suomenkielinen kuvaus tulisi abc</div></div>",
                "sv": "<div><div>Ruotsinkielinen kuvaus tulisi tähän abcde</div></div>",
                "en": "<div><div>Englanninkielinen kuvaus tulisi tähän abcd</div></div>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lyhyt kuvaus abc",
                "sv": "Lyhyt kuvaus abcde",
                "en": "Lyhyt kuvaus abcd"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:9ed67b19-892c-4294-8743-1f1daadf0e2f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65274",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?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:p22193/?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": [],
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T15:14:25.035496Z",
                    "last_modified_time": "2024-12-12T15:14:25.035509Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759687.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T15:14:25.009461Z",
            "last_modified_time": "2025-02-08T16:14:18.277204Z",
            "date_published": null,
            "start_time": "2025-02-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MUIAT - nykysirkusesitys | Loppuunmyyty – Akropatit",
                "sv": "MUIAT - nykysirkusesitys – Akropatit",
                "en": "MUIAT - nykysirkusesitys – Akropatit"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/206BC25054AA6824489F8844416AB684/MUIAT_-_nykysirkusesitys_Loppuunmyyty",
                "sv": "http://www.caisa.fi/sv/evenemang/event/206BC25054AA6824489F8844416AB684/MUIAT_-_nykysirkusesitys",
                "en": "http://www.caisa.fi/en/events/event/206BC25054AA6824489F8844416AB684/MUIAT_-_nykysirkusesitys"
            },
            "description": {
                "fi": "<p>MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.</p><p>Huulet painautuvat mutrulle, kun Anniinan posket liiskautuvat toisiaan vasten Kamillan reisilihasten väliin. Kamillan jalkapohjat ovat juurtuneet maahan ja hänen kylkiluunsa painautuvat sisäänpäin, kun Anniina puristaa käsiään niiden ympärille. Iitun hikinen tossu astuu Kamillan pään päälle sotkien juuri tehdyn kampauksen. Paine kasvaa Iitun pään sisällä, kun hän asettaa hartiansa Anniina jalkaterien päälle ja nostaa omat jalkansa ilmaan. Hameen helma nousee Iitun korvien ohi. Kamilla hymyilee.</p><p>MUIAT on rehellinen nykysirkusteos, jossa naiset saavat olla juuri sellaisia kuin he ovat, eikä heidän ominaisuuksiaan kyseenalaisteta. Teoksessa esiintyjät Kamilla Nisso, Iitu Kivimäki ja Anniina Peltovako tutkailevat naiseutta omien kokemustensa kautta hyödyntäen sirkusteniikan mahdollisuuksia ja fyysisen ilmaisun keinoja. Ihmispyramideja, nuorallatanssia ja akrobatiaa sisältävä esitys kyseenalaistaa vanhanaikaisia sukupuolirooleja ja pyrkii avartamaan katsojien mieltä, huumoria unohtamatta.</p><p>Esiintyjät/konsepti: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Pukusuunnittelu: Kitte Klemettilä  <br>Sävellys/musiikit: Joona Kukkola  <br>Valosuunnittelu: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Kieli: sanaton <br>Ikäsuositus: + 6-v <br>Tapahtuman kesto: 40 min, ei väliaikaa</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19738648/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.</p><p>Anniinas läppar pressas ihop när hennes kinder trycks samman mellan Kamillas lårmuskler. Kamillas fotsulor är rotade i marken och hennes revben pressas inåt när Anniina trycker sina händer runt dem. Iitu trampar på Kamillas huvud med sin svettiga toffel och förstör hennes nylagade frisyr. Trycket ökar i Iitu's huvud när hon lägger sina axlar på Anniina's fötter och lyfter sina egna ben upp i luften. Kjolens fåll lyfts upp över Iitus öron. Kamilla ler.</p><p>MUIAT är en ärlig modern cirkusföreställning där kvinnor får vara precis som de är och deras egenskaper inte ifrågasätts. Artisterna Kamilla Nisso, Iitu Kivimäki och Anniina Peltovako utforskar kvinnlighet genom sina egna erfarenheter, med hjälp av cirkusteknikens möjligheter och fysiska uttryck. Med mänskliga pyramider, lindans och akrobatik ifrågasätter föreställningen gammalmodiga könsroller och syftar till att öppna publikens sinnen, utan att glömma bort humorn.</p><p>Inget språk</p><p>Artister/koncept: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Kostymdesign: Kitte Klemettilä  <br>Komposition/musik: Joona Kukkola  <br>Ljusdesign: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Åldersrekommendation: 6+ <br>Evenemangets längd: 40 min, ingen paus</p>",
                "en": "<p>MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned.</p><p>Finnish circus artists Iitu Kivimäki, Kamilla Nisso and Anniina Peltovako explore feminity and their experience of living as female through their own experiences, using circus techniques as a way of expressing. The show includes human pyramids, tightwire dancing and acrobatics. It aims to question old fashioned gender roles and tries to broaden the minds of the public, without forgetting humour.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.",
                "sv": "MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.",
                "en": "MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65274/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64768",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 201802,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-07T14:15:27.689500Z",
                    "last_modified_time": "2025-02-07T14:15:27.689531Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760132.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201802/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-02-07T14:15:27.645084Z",
            "last_modified_time": "2025-02-07T14:15:27.786135Z",
            "date_published": null,
            "start_time": "2025-05-17T08:00:00Z",
            "end_time": "2025-05-17T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Barokkiateljee",
                "sv": "Annegårdens konstlördag: Barockateljé",
                "en": "Annantalo Art Saturday: Baroque studio"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E890DC2279922FC53FD5B0870916CF7A/Annantalon_taidelauantai_Barokkiateljee",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E890DC2279922FC53FD5B0870916CF7A/Annegardens_konstlordag_Barockatelj_",
                "en": "http://www.annantalo.fi/en/events/event/E890DC2279922FC53FD5B0870916CF7A/Annantalo_Art_Saturday_Baroque_studio"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Barokkiateljee</b></p><p>Barokki oli taidesuuntaus 1600-luvulla. Sen tunnusmerkkejä ovat koristeellisuus ja mahtipontisuus.  Lauantain avoimessa pajassa virittäydymme barokin tunnelmiin pukeutumalla ja tekemällä muotokuvia toisistamme. Barokkimusiikki luo ympärillemme juhlan tunnelmaa ja barokkimainen garderobi suhisee vaatteiden vaihtuessa ja liitujen tanssiessa paperilla.</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. 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>Barockateljé</b><br> <br>Barocken var en konstriktning på 1600-talet. Den kännetecknas av utsmyckning och storslagenhet. I den här workshoppen kommer vi i barockstämning genom att klä ut oss och måla porträtt av varandra. Barockmusik skapar en festlig stämning runt omkring oss och barockgarderoben prasslar när kläder byts och penslar dansar på papper!</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. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</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>Baroque studio</b></p><p>Baroque was an art movement in the 17th century. Its main features include decorativeness and flamboyance. In this workshop, we tune in to the Baroque style by dressing up and painting portraits of each other. Baroque music creates a festive atmosphere around us while the baroque wardrobe buzzes as we change clothes and let our brushes dance on paper!</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen 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."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64834",
            "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": [],
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19384267/",
                        "sv": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19384267/",
                        "en": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19384267/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152991,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-08T08:14:43.385291Z",
                    "last_modified_time": "2024-11-08T08:14:43.385305Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760398.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152991/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-08T08:14:43.345544Z",
            "last_modified_time": "2025-02-07T14:15:21.964827Z",
            "date_published": null,
            "start_time": "2025-04-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LOPPUUNMYYTY The Animals (UK) – Jäähyväiskiertue",
                "sv": "SLUTSÅLD The Animals (UK) – Avskedsturné",
                "en": "SOLD OUT The Animals (UK) – Farewell tour"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BC81F5B8A10B4841A744ECC6DCBEC5D/LOPPUUNMYYTY_The_Animals_UK_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6BC81F5B8A10B4841A744ECC6DCBEC5D/SLUTSALD_The_Animals_UK_",
                "en": "http://www.malmitalo.fi/en/events/event/6BC81F5B8A10B4841A744ECC6DCBEC5D/SOLD_OUT_The_Animals_UK_"
            },
            "description": {
                "fi": "<p>Legendaarinen The Animals saapuu jälleen Suomen-kiertueelle!</p><p>\"House of the Rising Sun\", \"We Gotta Get Out of This Place\", \"Dont Let Me Be Understood\", \"It´s My Life\", \"I Put A Spell On You\", \"Boom Boom\" och \"Bring It On Home To Me”… Tällä hittilistalla The Animalsista (UK) on kiistatta yksi maailman vaikutusvaltaisimmista yhtyeistä. Sen nimekkäiden fanien joukkoon lukeutuu muun muassa Bruce Springsteen.</p><p>Vuonna 1964 energisen rock and rollin aalto pyyhkäisi maailman nuorison yli ja sen harjalla ratsastivat The Beatles, The Rolling Stones - ja tietysti John Steelin ja Eric Burdonin perustama The Animals. Nimensä yhtye sai villistä lavaesiintymisestään. <br>Vaikka The Animalsin meno lavalla on sittemmin rauhoittunut, pian kuusikymppisiään juhlivan bändin musiikki on vähintäänkin voimissaan ja legenda vain kasvaa. Hiljattain Classic Rock magazine nosti yhtyeen debyyttialbumin ”50 Albums That Built Blues Rock” -listalleen.</p><p>Alkuperäisestä kokoonpanosta mukana on toinen perustajajäsen John Steel. Lisäksi yhtyeessä soittavat Danny Handley, Barney Williams ja Norman Helm.</p><p>Kesto: 1 h 15 min<br>Liput: 48,90 € (tulossa myyntiin lippu.fi)</p>",
                "sv": "<p>Legendariska The Animals återkommer till Malms kulturhus!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Dont Let Me Be Understood”, “It´s My Life”, “I Put A Spell On You”, “Boom Boom” och “Bring It On Home To Me”… Med denna hitlista är The Animals (UK) otvivelaktigt ett av världens med inflytelserika band. Bland annat Bruce Springsteen räknas bland dess berömda fans.</p><p>År 1964 svepte en våg av energisk rock and roll över världens ungdom och på dess krön red The Beatles, The Rolling Stones – och naturligtvis The Animals, som grundades av John Steel och Eric Burdon. Bandet fick sitt namn av det vilda framträdandet på scenen.</p><p>Även om The Animals fart på scenen har lugnat ner sig sedan dess, är det snart sextioåriga bandets musik i minst lika god form och legenden bara växer. Classic Rock Magazine tog nyligen upp bandets debutalbum på sin lista “50 Albums That Built Blues Rock”.</p><p>Av den ursprungliga ensemblen kvarstår en av de grundande medlemmarna, John Steel. Dessutom spelar Danny Handley, Barney Williams och Norman Helm i bandet.</p><p>Längd: 1 h 15 min.</p>",
                "en": "<p>The legendary The Animals are coming back to Malmitalo!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Don’t Let Me Be Misunderstood”, “It’s My Life”, “I Put A Spell On You”, “Boom Boom” and “Bring It On Home To Me”... With this hit list, The Animals (UK) are arguably one of the most influential bands in the world. Bruce Springsteen is one of their most prominent fans.</p><p>In 1964, a wave of energetic rock and roll swept the world’s youth, led by The Beatles, The Rolling Stones – and of course The Animals, founded by John Steel and Eric Burdon. The band’s name comes from their wild stage presence.</p><p>Although The Animals have since slowed down on stage, the music of a band about to celebrate their sixtieth anniversary is at least as powerful as ever, and their legend is only growing. Recently, Classic Rock magazine included the band’s debut album in its “50 Albums That Built Blues Rock” list.</p><p>John Steel is one of the two founding members of the original band, who is joined in the current line-up by musicians Danny Handley, Barney Williams and Norman Helm.</p><p>Duration: 1 h 15 min</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Legendaarinen The Animals saapuu jälleen Suomen-kiertueelle!",
                "sv": "Legendariska The Animals återkommer till Malms kulturhus!",
                "en": "The legendary The Animals are coming back to Malmitalo!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64834/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23dwvy",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxde/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T08:52:37.532898Z",
                    "last_modified_time": "2024-03-13T08:52:37.532917Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-07T13:00:09.977308Z",
            "last_modified_time": "2025-02-07T13:00:09.977399Z",
            "date_published": null,
            "start_time": "2025-05-20T15:00:00Z",
            "end_time": "2025-05-20T16: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,
            "name": {
                "fi": "SPR:n kielikahvila ",
                "sv": "Finskt språkcafé ",
                "en": "Finnish Language Cafe "
            },
            "provider": {
                "fi": "Suomen Punainen Risti ",
                "sv": "Suomen Punainen Risti ",
                "en": "Suomen Punainen Risti "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>",
                "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>",
                "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30",
                "sv": "Letar du efter en plats där du kan öva på att tala finska? ",
                "en": "Are you looking for a place to practice speaking Finnish?"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dwvy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23dxde",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dwvy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T08:52:37.532898Z",
                    "last_modified_time": "2024-03-13T08:52:37.532917Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-07T13:00:02.528167Z",
            "last_modified_time": "2025-02-07T13:00:02.528186Z",
            "date_published": null,
            "start_time": "2025-02-11T16:00:00Z",
            "end_time": "2025-05-20T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "SPR:n kielikahvila ",
                "sv": "Finskt språkcafé ",
                "en": "Finnish Language Cafe "
            },
            "provider": {
                "fi": "Suomen Punainen Risti ",
                "sv": "Suomen Punainen Risti ",
                "en": "Suomen Punainen Risti "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>",
                "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>",
                "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30",
                "sv": "Letar du efter en plats där du kan öva på att tala finska? ",
                "en": "Are you looking for a place to practice speaking Finnish?"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxde/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65591",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "44,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-19801994"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 201402,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-07T11:13:16.825349Z",
                    "last_modified_time": "2025-02-07T11:13:16.825363Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765415.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201402/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-07T11:13:16.809224Z",
            "last_modified_time": "2025-02-07T11:13:16.864729Z",
            "date_published": null,
            "start_time": "2025-05-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jari Sillanpää - 30 vuotta estradilla"
            },
            "provider": {
                "fi": "Bridgehead Productions Ltd Oy"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B6D67A7C4E1A0B147D34D1DAE8D64C80/Jari_Sillanpaa_-_30_vuotta_estradilla"
            },
            "description": {
                "fi": "<p>Jari Sillanpään päähän painettiin se jaloin tangokruunu 30 vuotta sitten. Hän täytti samana vuonna 30 vuotta, joka tekee sen, että tänä vuonna juhlitaan tuplasti, kun elokuussa mittariin tulee 60 täyteen!</p><p>\"Jari Sillanpää – 30 vuotta estradilla\" -konserttikiertue on upea läpileikkaus Jarin konserteista vuosien varrelta. Luvassa on unohtumaton ilta, täynnä Jarin tunnetuimpia hittejä ja rakastettuja lainakappaleita maailmalta – esitettynä ainutlaatuisella tunteella ja karismalla, joka on hurmannut yleisöjä jo vuosikymmenten ajan.</p><p>Lavalla Jaria säestää huikea kuusihenkinen orkesteri, joka koostuu Suomen huippumuusikoista. Tämä ilta on kunnianosoitus Jarin upealle uralle ja samalla musiikin juhlaa parhaimmillaan. Tule mukaan kokemaan ikimuistoinen konserttielämys!</p><p>Ja tämä on vasta alkua vuoden tuplajuhlalle, sillä konserttikiertue saa jatkoa syksyllä!</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jari Sillanpään päähän painettiin se jaloin tangokruunu 30 vuotta sitten. Hän täytti samana vuonna 30 vuotta, joka tekee sen, että tänä vuonna juhlitaan tuplasti, kun elokuussa mittariin tulee 60 täyteen!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65591/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64767",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 201401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-07T11:13:15.526327Z",
                    "last_modified_time": "2025-02-07T11:13:15.526341Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760131.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-02-07T11:13:15.509399Z",
            "last_modified_time": "2025-02-07T11:13:15.573076Z",
            "date_published": null,
            "start_time": "2025-04-26T08:00:00Z",
            "end_time": "2025-04-26T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Pyörät vauhdissa",
                "sv": "Annegårdens konstlördag: Hjul i rörelse",
                "en": "Annantalo Art Saturday: Wheels in action"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annantalon_taidelauantai_Pyorat_vauhdissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annegardens_konstlordag_Hjul_i_rorelse",
                "en": "http://www.annantalo.fi/en/events/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annantalo_Art_Saturday_Wheels_in_action"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Pyörät vauhdissa</b></p><p>Mikä se on, joka pyörät surraten perässä tulla vaapottaa? Aa aa ankka, sii sii siili vai keti keti kettu? Tule keksimään ja valmistamaan mukana vedettävä, pyörillä kulkeva ihme ja kumma. Siitä voi tulla pienoisveistos. Se voi olla luonnosta, saduista tai tarinoista muotonsa saanut olento. Tämä pyörillä kulkeva keksintö rakennetaan mm puuseppien työskentelystä syntyneistä ylijäämä palikoista ja luonnonmateriaaleista, kuten kävyt, oksat ja tammenterhot.</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>Hjul i rörelse</b><br>Vad är det som vaggar bakom mig med snurrande hjul? A a ankan, i i igelkotten eller re re räven? Kom och uppfinn och bygg en förunderlig varelse som man dra bakom sig på hjul. Det kan bli en liten skulptur! Det kan vara en varelse från naturen, sagor eller berättelser. Denna hjulförsedda uppfinning byggs bland annat av rester från snickares arbete och naturmaterial såsom kottar, kvistar och ekollon.</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. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>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>Wheels in action</b><br>What is it that comes with the wheels buzzing, wobbling behind you? Da da duck, mo mo mole or foxy foxy fox? Come invent with us and create your own draggable, wheeled wondrous creature. Maybe a small sculpture? It can be a creature inspired by nature, fairy tales or stories. This wheeled invention is built, for example, from surplus blocks left over from carpenters and natural materials, such as cones, branches and acorns.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä 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."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64767/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65023",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/jussu-poyhonen/jussu-poeyhoenen-helsinki-3787509/",
                        "sv": "https://www.lippu.fi/artist/jussu-poyhonen/jussu-poeyhoenen-helsinki-3787509/",
                        "en": "https://www.lippu.fi/artist/jussu-poyhonen/jussu-poeyhoenen-helsinki-3787509/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153223,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-03T15:14:44.018173Z",
                    "last_modified_time": "2024-12-03T15:14:44.018193Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763527.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153223/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-03T15:14:43.983607Z",
            "last_modified_time": "2025-02-07T11:13:10.566798Z",
            "date_published": null,
            "start_time": "2025-03-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussu Pöyhönen",
                "sv": "Jussu Pöyhönen",
                "en": "Jussu Pöyhönen"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3FDBBB54F81BF925D5C4FCCEC5CC0432/Jussu_Poyhonen",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3FDBBB54F81BF925D5C4FCCEC5CC0432/Jussu_Poyhonen",
                "en": "http://www.kanneltalo.fi/en/events/event/3FDBBB54F81BF925D5C4FCCEC5CC0432/Jussu_Poyhonen"
            },
            "description": {
                "fi": "<p>Jussu Pöyhönen tunnetaan parhaiten yli 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä ja yhtyeen lukuisten hittien tekijänä.</p><p>Emmalla ja useilla kulta- ja platinalevyllä palkitun Suurlähettiläiden lisäksi hän on julkaissut neljä soololevyä, viimeisimpänä Pinnalla-albumin vuonna 2023.</p><p>Tällä keikalla Jussu esittää laajasta tuotannostaan biisejä koko uransa varrelta, Suurlähettiläiden hittejä unohtamatta. Kokeneena esiintyjänä – myös teatterin puolelta – ja karismaattisena tarinankertojana tunnetun Jussun esiintymiset ovat vangitsevia ja päätyvät lähes poikkeuksetta yhteislauluun.</p><p>Riku Rajamaa tunnetaan parhaiten Sunrise Avenuen riveistä, tekee vakaata jälkeä myös sooloartistina.<br>Laura Airaksinen on rauhallisesti omaa uraansa rakentanut pianisti / solisti - hän on mm ollut Juha Vainio - sanoituskilpailun ehdokkaana 2023.</p><p>Kokoonpano:<br>Jussu Pöyhönen, laulu, kitara<br>Riku Rajamaa, kitara, laulu<br>Laura Airaksinen, piano, laulu</p><p>Kesto 75 min, ei väliaikaa</p>",
                "sv": "<p>Jussu Pöyhönen är mest känd för sin 30-åriga karriär som frontman för bandet Suurlähettiläät och upphovsman till bandets talrika hittar.</p><p>Utöver Suurlähettiläät som belönades med ett Emma-pris och flera guld- och platinaskivor har han släppt fyra soloalbum, senast albumet Pinnalla år 2023.</p><p>På denna spelning framför Jussu låtar ur sin breda produktion från hela sin karriär, utan att glömma Suurlähettilääts hittar. Jussu, en erfaren artist även inom teater och en karismatisk historieberättare, är fängslande på scenen och framträdandena slutar nästan alltid med allsång.</p><p>Riku Rajamaa är mest känd från bandet Sunrise Avenue, och gör också ett stadigt intryck som soloartist.<br>Laura Airaksinen är en pianist / solist som lugnt har byggt upp sin karriär – hon har bland annat varit nominerad i Juha Vainio-tävlingen för textförfattare år 2023.</p><p>Ensemble:<br>Jussu Pöyhönen, sång, gitarr<br>Riku Rajamaa, gitarr, sång<br>Laura Airaksinen, piano, sång</p><p>Längd: 75 min.</p>",
                "en": "<p>Jussu Pöyhönen is best known for his more than 30-year career as the frontman of the band Suurlähettiläät and the author of many of their hits.</p><p>In addition to Suurlähettiläät, which has been awarded an Emma and had several gold and platinum albums, he has released four solo albums, most recently the album Pinnalla in 2023.</p><p>At this show, Jussu will perform songs from his extensive catalogue from throughout his career, while not forgetting the hits of the Suurlähettiläät. As an experienced performer – who is also versed in theatre – and a charismatic storyteller, Jussu’s performances are captivating and almost invariably end in a sing-along.</p><p>Riku Rajamaa is best known for his time with Sunrise Avenue, but also has a solid track record as a solo artist.<br>Laura Airaksinen is a pianist/vocalist who has been quietly building her career – she was a candidate for the Juha Vainio songwriting competition 2023.</p><p>Ensemble:<br>Jussu Pöyhönen, vocals, guitar<br>Riku Rajamaa, guitar, vocals<br>Laura Airaksinen, piano, vocals</p><p>Duration: 75 mins.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jussu Pöyhönen tunnetaan parhaiten yli 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä ja yhtyeen lukuisten hittien tekijänä.",
                "sv": "Jussu Pöyhönen är mest känd för sin 30-åriga karriär som frontman för bandet Suurlähettiläät och upphovsman till bandets talrika hittar.",
                "en": "Jussu Pöyhönen is best known for his more than 30-year career as the frontman of the band Suurlähettiläät and the author of many of their hits."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65023/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65578",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189617,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:48.319882Z",
                    "last_modified_time": "2025-02-03T12:13:48.319927Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759008.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T12:13:48.307607Z",
            "last_modified_time": "2025-02-07T11:13:08.879770Z",
            "date_published": null,
            "start_time": "2025-03-01T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "A Complete Unknown (7) – Kino Helios",
                "sv": "A Complete Unknown (7) – Kino Helios",
                "en": "A Complete Unknown (7) – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E24D9C660FAE663BC39E1134CF357BA/A_Complete_Unknown_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E24D9C660FAE663BC39E1134CF357BA/A_Complete_Unknown_7_",
                "en": "http://www.malmitalo.fi/en/events/event/8E24D9C660FAE663BC39E1134CF357BA/A_Complete_Unknown_7_"
            },
            "description": {
                "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65578/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65575",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189495,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T11:13:52.461848Z",
                    "last_modified_time": "2025-02-03T11:13:52.461863Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759004.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189495/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T11:13:52.446012Z",
            "last_modified_time": "2025-02-07T11:13:08.480752Z",
            "date_published": null,
            "start_time": "2025-02-28T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Bridget Jones: Mad About the Boy (7) – Kino Helios",
                "sv": "Bridget Jones: Mad About the Boy (7) – Kino Helios",
                "en": "Bridget Jones: Mad About the Boy (7) – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/20842838647BE6CCE100F134535CFF1A/Bridget_Jones_Mad_About_the_Boy_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/20842838647BE6CCE100F134535CFF1A/Bridget_Jones_Mad_About_the_Boy_7_",
                "en": "http://www.malmitalo.fi/en/events/event/20842838647BE6CCE100F134535CFF1A/Bridget_Jones_Mad_About_the_Boy_7_"
            },
            "description": {
                "fi": "<p>Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin.</p><p>Bridget Jones valloitti kirjahyllyt Helen Fieldingin ilmiöksi nousseessa romaanissa Bridget Jones – elämäni sinkkuna, josta tuli maailmanlaajuinen bestseller ja menestyselokuva. Lontoossa asuva ja uraa luova sinkkunainen Bridget käänsi vastoinkäymiset voitokseen ja pääsi viimein naimisiin huippuasianajaja Mark Darcyn kanssa ja heidän poikavauvansa äidiksi. Onni koitti vihdoinkin.</p><p>Mutta elokuvassa Bridget Jones: Mad About the Boy Bridget on jälleen kerran yksin. Hän on jäänyt leskeksi neljä vuotta sitten Markin saatua surmansa hyväntekeväisyystyössä Sudanissa. Nyt hän on 9-vuotiaan Billyn ja 4-vuotiaan Mabelin yksinhuoltajaäiti, jonka tunne-elämä on jumissa eräänlaisessa limbossa ja joka kasvattaa lapsiaan uskollisten ystävien ja jopa entisen rakastajansa Daniel Cleaverin (Hugh Grant) tuella.</p><p>Kaikki painostavat Bridgetiä avaamaan uudelleen oven elämään ja rakkauteen: läheiset ystävät Shazzer, Jude ja Tom, työkaveri Miranda, oma äiti - ja jopa hänen gynekologinsa tohtori Rawlings (Oscar®-voittaja Emma Thompson). Bridget palaa töihin ja rekisteröityy deittisovellukseen, saaden kannoilleen komean ja innokkaan nuorukaisen (White Lotusista tuttu Leo Woodall). Taiteillessaan työn, kodin ja romanssin välillä Bridget kohtaa arvostelua lasten koulukavereiden täydellisten äitien taholta, huolehtii Billystä tämän surressa isänsä poismenoa ja joutuu noloihin tilanteisiin poikansa pätemisenhaluisen opettajan (Oscar®-ehdokas Chiwetel Ejiofor) kanssa.</p><p>Elokuvan Bridget Jones: Mad About the Boy on ohjannut Michael Morris (To Leslie, Better Call Saul) ja käsikirjoittanut BAFTA-ehdokas Helen Fielding oman romaaninsa pohjalta, yhteistyökumppaneinaan Emmy-voittaja Abi Morgan (Rautarouva, Eric) ja Oscar®-ehdokas Dan Mazer (I Give It a Year, Bridget Jones’s Baby).</p><p>Ikäraja: 7<br>Kesto: 125 min.<br>Ensi-ilta: 14.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65575/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65577",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189616,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:47.672586Z",
                    "last_modified_time": "2025-02-03T12:13:47.672598Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759002.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189616/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T12:13:47.653106Z",
            "last_modified_time": "2025-02-07T11:13:08.133594Z",
            "date_published": null,
            "start_time": "2025-02-26T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "A Complete Unknown (7) – Kino Helios",
                "sv": "A Complete Unknown (7) – Kino Helios",
                "en": "A Complete Unknown (7) – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_"
            },
            "description": {
                "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65577/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}