Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19293,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=67",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=65"
    },
    "data": [
        {
            "id": "espoo_le:agmk2272oa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?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:agmk227vte/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227v7y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227wl4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227wyq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227xha/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227xty/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227ybe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227yni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227y2q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227zhy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227zvq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2272bu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150478,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-07T13:06:07.371387Z",
                    "last_modified_time": "2024-03-07T13:06:07.371477Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/senioorijooga-markku-680x380_2.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Markku Sosimäki ja joogaaja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150478/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-05-08T07:52:21.007313Z",
            "last_modified_time": "2025-05-08T07:52:21.007330Z",
            "date_published": null,
            "start_time": "2025-09-26T07:00:00Z",
            "end_time": "2025-12-12T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Seniorijoogaa",
                "sv": "Senioryoga",
                "en": "Senior yoga"
            },
            "provider": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniorijoogaa ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut jooganopettajana ympäri maailman jo 40 vuoden ajan.</p><p>Tarvitset vain tavalliset mukavat vaatteet ja alustan lattialla olemista varten. Alustaksi kelpaa joogamatto, makuualusta tai mikä tahansa viltti.</p>",
                "sv": "<p>Senioryogan leds Markku Sosimäki alias Dada Rasatmakananda. Han har undervisat i yoga runt om i världen i 40 år.</p><p>Allt du behöver är dina vanliga bekväma kläder och en plattform för att stå på golvet. En yogamatta, ett liggunderlag eller någon form av filt duger.</p>",
                "en": "<p>Senior yoga is led by the experienced Markku Sosimäki aka Dada Rasatmakananda. He has been teaching yoga around the world for 40 years.</p><p>All you need is your usual comfortable clothes and a platform to stand on the floor. A yoga mat, a sleeping pad or any kind of blanket will do.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Seniorijoogaa ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut jooganopettajana ympäri maailman jo 40 vuoden ajan.\n\n",
                "sv": "Senioryogan leds Markku Sosimäki alias Dada Rasatmakananda. Han har undervisat i yoga runt om i värld.",
                "en": "Senior yoga is led by the experienced Markku Sosimäki aka Dada Rasatmakananda. He has been teaching yoga around the world for 40 years."
            },
            "location_extra_info": {
                "fi": "Akseli-sali",
                "sv": "Akseli-salen",
                "en": "Akseli hall"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2272oa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2274ke",
            "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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?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:agmk22rntq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227224/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2273he/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2273su/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22736u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 153109,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2024-11-28T12:44:29.503581Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153109/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-08T07:34:38.078833Z",
            "last_modified_time": "2025-05-08T07:34:38.078850Z",
            "date_published": null,
            "start_time": "2025-05-27T13:00:00Z",
            "end_time": "2025-07-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "provider": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan.</p>",
                "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn.</p>",
                "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin",
                "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda",
                "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2274ke/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65680",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "39,90-205,60 €",
                        "en": "39,90-205,60 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3843699",
                        "en": "https://www.lippu.fi/eventseries/3843699"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 280531,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-28T12:14:50.869042Z",
                    "last_modified_time": "2025-02-28T12:14:50.869064Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765722.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/280531/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-28T12:14:50.810312Z",
            "last_modified_time": "2025-05-07T14:12:35.774994Z",
            "date_published": null,
            "start_time": "2025-05-13T16: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": "Natalia Osipova- Force of Nature",
                "en": "Natalia Osipova- Force of Nature"
            },
            "provider": {
                "fi": "Winstag Production OÜ",
                "en": "Winstag Production OÜ"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3061E8DBA01F92DE9C78635A5D2958CA/Natalia_Osipova-_Force_of_Nature_",
                "en": "http://www.savoyteatteri.fi/en/events/event/3061E8DBA01F92DE9C78635A5D2958CA/Natalia_Osipova-_Force_of_Nature_"
            },
            "description": {
                "fi": "<p>Ylimaallinen Natalia Osipova tuo “Force of Nature” -balettiteoksen Helsinkiin</p><p>Lontoon kuninkaallisen baletin pääballeriina, jonka The Independent on nimennyt maailman tavoitelluimmaksi balleriinaksi, on jo esittänyt \"Force of Nature\" -teoksen molemmin puolin Atlanttia. Tämä ainutlaatuinen esitys yhdistää klassisen baletin monimutkaisen varvastyöskentelyn ja koreografiat, jotka ovat luoneet osa maailman parhaista aikamme koreografeista. Osipova esiintyy yhdessä Yhdistyneen kuningaskunnan ja Yhdysvaltojen muiden soolotanssijoiden kanssa.</p><p>Osipova on jäljittelemätön. Hänen tekniikkansa on ainutlaatuinen ja taiteellisesti hän on hämmästyttävän viehättävä. Jo ennen kuin hän oli valmistunut Moskovan valtion koreografiakorkeakoulusta, balettiympyröissä puhuttiin hänen uskomattoman korkeista hypyistään. Bolshoi-teatterin balettiryhmän jäseneksi päästyään hän esitti kahdeksan sooloroolia ensimmäisellä kaudellaan. Elävänä kuin elohopea ja nopeana kuin salama hän vaikutti säteilevän lämpöä heti astuessaan lavalle. \"Villikissa!\", Osipova sanoo muistellessaan uransa alkua. \"Luonnonvoima,\" sanovat ne, jotka näkivät hänet tuolloin.</p><p>\"Pyydä, lainaa tai varasta liput!\" oli The Guardianin reaktio Osipovan häikäisevään Lontoon -debyyttiin. Tapahtuma sijoittuu vuoteen 2007, jolloin Britannian pääkaupunki sai vieraakseen Bolshoi-teatterin. Alexei Ratmanski, teatterin silloinen balettimestari, käytti voittokorttinsa valitessaan Osipovan Kitriksi Don Quijotessa. Menestys oli täydellinen.</p><p>2010-luvun alussa Osipovasta oli tullut yksi maailman kirkkain ja suosituin balleriina. Pariisin, Milanon, Berliinin ja New Yorkin suurimmat teatterit tavoittelivat häntä. Jokaisesta uudesta roolista - oli se sitten Giselle, Kitri tai nykyaikainen sankaritar – tuli suuri tapahtuma. Hänen taiteellisuutensa inspiroi joitakin parhaista nykykoreografeista, kuten Alexei Ratmanskya, Arthur Pitaa, Akram Khania ja Sidi Larbi Cherkaouta.</p><p>Vuonna 2013 Osipova allekirjoitti pysyvän sopimuksen Lontoon kuninkaallisen baletin kanssa, jossa hän esiintyy edelleen tänä päivänä.</p><p>Osipovan lahjakkuus on tuonut hänelle lukuisia kansainvälisiä palkintoja, kuten Kansallisia tanssipalkintoja ja Benois de la Danse -palkinnon. Vuonna 2018 brittiläinen ohjaaja Gerald Fox teki hänestä dokumentin Force of Nature. Natalia tarjoaa katsauksen hänen elämäänsä ja työhönsä kulissien takana sekä harjoituksiin Medusa -teoksen parissa aina hänen esitykseensä klassisessa baletissa La Bayadère.</p><p>Neljä vuotta myöhemmin Osipova loi oman 'Luonnon voimat' -baletti-illan, joka on ennennäkemättömän kaunis ja monimutkainen. Tässä esityksessä hän kunnioittaa ikonisia, esimerkillisiä ja keskenään täysin erilaisia roolejaan — klassisesta pas de deux'sta 'Merirosvosta' yhdessä kollegansa, Kuninkaallisen baletin ensitanssijan Marcelino Sambén kanssa Marius Petipan koreografiassa aina Alexei Ratmanskyn Sibeliuksen musiikkiin säveltämään 'Surullinen valssi' -miniatyyriin, joka on luotu erityisesti hänelle. Osipova esittää ensi-illassa 'Gravity’s Orphan' -teoksen, jonka hän on luonut yhdessä Jason Kittelbergerin kanssa, sekä laajan koreografisen triptyykin 'Ashes', jossa on mukana neljä tanssijaa. Illan päättää Mihail Fokinin ikoninen miniatyyri 'Kuoleva joutsen' Saint-Saënsin musiikkiin, jonka Osipova esittää yksin — jäähyväinen, rukous, muisto. Hänen ilmiömäisen uransa aikana, kuten hänen elämänkertojansa ovat laskeneet, Osipova on esittänyt 172 roolia, joten valinnanvaraa riitti.</p><p>Osipovan esitystä 13. toukokuuta Savoy-teatterissa kannattaa tulla katsomaan ainakin nähdäkseen hänen vertaansa vailla olevat fouetté-hyppynsä, jotka ovat vähintäänkin maailman parhaita. Force of Nature tarjoaa kuitenkin paljon enemmän kuin pelkkiä teknisiä ihmeitä: se tarjoaa yleisölle suuren taide-elämyksen ja ymmärrystä siitä, mitä tarkoittaa olla todellinen 2000-luvun balettitähti.</p><p>Kesto n. 2 h, sisältää väliajan.</p>",
                "en": "<p>Divine Natalia Osipova Brings the Grand Ballet Program \"Force of Nature\" to Helsinki</p><p>The prima ballerina of the Royal Ballet in London, hailed by The Independent as the most sought-after ballerina in the world, has already showcased \"Force of Nature\" on both sides of the Atlantic. This one-of-a-kind performance blends complex pointe work in classical ballet with numbers choreographed by some of the most outstanding contemporary choreographers. Osipova will be joined by her fellow soloists from the UK and the US.</p><p>Osipova is inimitable. Her technique is unique, and her artistic charm is astonishing. Even before she had completed her studies at the Moscow State Academy of Choreography, the ballet world was already abuzz with talk of her incredible, soaring jumps. Accepted into the Bolshoi Theatre as a corps de ballet member, she performed eight solo roles in her very first season there. Lively as quicksilver and swift as lightning, she seemed to radiate heat as soon as she appeared on stage. \"Wildcat!\" Osipova says, recalling the beginning of her career. \"A force of nature,\" say those who saw her at that time.</p><p>\"Beg, borrow, or steal tickets!\" was the reaction of The Guardian to Osipova’s dazzling London debut. The event took place in 2007, when the British capital welcomed the Bolshoi Theatre. Alexei Ratmansky, the company’s chief ballet master at the time, played his trump card by casting Osipova as Kitri in Don Quixote. The triumph was complete.</p><p>By the early 2010s, Osipova had become one of the most brilliant and in-demand ballerinas in the world. The major theaters of Paris, Milan, Berlin, and New York sought her out. Every new role—whether it be Giselle, Kitri, or a contemporary heroine—turned into a major event. Her artistry inspires some of the best modern choreographers, including Alexei Ratmansky, Arthur Pita, Akram Khan, and Sidi Larbi Cherkaoui.</p><p>In 2013, Osipova signed a permanent contract with the Royal Ballet in London, where she continues to perform to this day.</p><p>Osipova’s talent has earned her numerous international awards, including the National Dance Awards and the Benois de la Danse prize. In 2018, British director Gerald Fox made a documentary about her, Force of Nature. Natalia, offering a behind-the-scenes glimpse into her life and work, from rehearsals for Medusa to her performance in the classical ballet La Bayadère.</p><p>Four years later, Osipova has created her own Forces of Nature — an evening of unprecedented beauty and complexity. Here, she pays tribute to her signature, benchmark roles, which are as stylistically diverse as they are iconic — from the classical Le Corsaire pas de deux with Royal Ballet principal Marcelino Sambé, choreographed by Marius Petipa, to Alexei Ratmansky’s lyrical miniature Valse Triste, set to music by Sibelius and created especially for her. Osipova presents the world premiere of Gravity’s Orphan, a collaboration with Jason Kittelberger, as well as the expansive choreographic triptych Ashes, featuring four dancers. The evening concludes with the cult classic The Dying Swan by Mikhail Fokine, set to music by Saint-Saëns — a solo performed by Osipova as farewell, plea, and memory. Over the course of her phenomenal career, Osipova has performed 172 roles, as her biographers have counted — so there was certainly much to choose from.</p><p>Attending Osipova’s performance on May 13th at the Savoy Theatre is worth it, if only to witness her unparalleled fouettés—arguably the best in the world. But Force of Nature offers much more than mere technical marvels: it provides audiences with an encounter with great art and the chance to understand what it means to be a true ballet étoile of the 21st century.</p><p>Duration about 2 h, including intermission</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ylimaallinen Natalia Osipova tuo “Force of Nature” -balettiteoksen Helsinkiin",
                "en": "Divine Natalia Osipova Brings the Grand Ballet Program \"Force of Nature\" to Helsinki"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65680/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65366",
            "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:351/?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/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17 € / 9 €",
                        "sv": "17 € / 9 €",
                        "en": "17 € / 9 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubb-ankdamm-improvision-song-contest-2025-vuotalo-19615808/",
                        "sv": "https://www.lippu.fi/event/klubb-ankdamm-improvision-song-contest-2025-vuotalo-19615808/",
                        "en": "https://www.lippu.fi/event/klubb-ankdamm-improvision-song-contest-2025-vuotalo-19615808/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153642,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-02T09:15:55.409919Z",
                    "last_modified_time": "2025-01-02T09:15:55.409938Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761680.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-02T09:15:55.378752Z",
            "last_modified_time": "2025-05-07T13:13:53.353803Z",
            "date_published": null,
            "start_time": "2025-05-10T15: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": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm",
                "sv": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm",
                "en": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AF2D4051D22614498E6D630983F2E1C4/Teater_Stjarnfall_Improvision_Song_Contest_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AF2D4051D22614498E6D630983F2E1C4/Teater_Stjarnfall_Improvision_Song_Contest_",
                "en": "http://www.vuotalo.fi/en/events/event/AF2D4051D22614498E6D630983F2E1C4/Teater_Stjarnfall_Improvision_Song_Contest_"
            },
            "description": {
                "fi": "<p>Suomen jännittävin iskelmäkilpailu palaa Vuotaloon! Stjärnfall on improvisaatioryhmä, joka luo upeita, hulluja ja ihastuttavan viihdyttäviä musiikkinumeroita.</p><p>Improvisio-iltana jännitys kasvaa ja kaikki lavalla ja yleisössä ovat innoissaan! Haluaisitko olla mukana äänestämässä voittajaa Improvision Song Coenteistä 2025:ssä? Silloin toivotamme sinut tervetulleeksi! <br> <br>Klubi-ilta, Café Pokkari vastaa tarjoilusta, ovet avataan klo 17.30. <br>Kesto: noin 2 t, sis. väliajan.Tapahtuma on monikielinen ruotsi-englanti-suomi.</p><p>Liput à 17 € / 9 € osoitteesta lippu.fi:stä tai lipunmyyntiautomaatilta ovelta.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Alle 18-vuotiaat huoltajan seurassa. 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/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-19738815/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Finlands mest hisnande schlagertävling återvänder till Nordhuset!</p><p>Stjärnfall är improvisationsgruppen som för fulla hus och full hals skapar glamorösa, galna och underbart underhållande musiknummer. En helkväll då spänningen stiger och alla på scenen och i publiken är taggade. Vill du vara med och rösta fram vinnaren i Improvision Song Contest 2025? Då önskar vi dig välkommen! <br>  <br>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen, dörrarna öppnas kl. 17.30. <br>Längd: ca. 2h inkl. paus. Evenemanget är mångspråkigt svenska-finska-engelska.</p><p>Biljetter à 17 € / 9 € via Lippu.fi eller från biljettautomaten vid dörren.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-19738815/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Finland's most thrilling schlager competition returns to Vuotalo!</p><p>Stjärnfall is an improvisation group that creates splendid, crazy, and delightfully entertaining musical numbers. On this Improvision night, the excitement builds, and everyone on stage and in the audience is thrilled! Would you like to be part of voting for the winner of Improvision Song Contest 2025? Then we welcome you! <br> <br>Club night, Café Pokkari takes care of the refreshments, starting from 5:30 PM. Duration: about 2 hours, including intermission. The event is multilingual Swedish-English-Finnish.</p><p>Tickets at 17 € / 9 € from lippu.fi or from the ticket machine at the door.</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-19738815/?affiliate=FSF\">HERE</a></u></p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen jännittävin iskelmäkilpailu palaa Vuotaloon! Stjärnfall on improvisaatioryhmä, joka luo upeita, hulluja ja ihastuttavan viihdyttäviä musiikkinumeroita.",
                "sv": "Finlands mest hisnande schlagertävling återvänder till Nordhuset!",
                "en": "Finland's most thrilling schlager competition returns to Vuotalo!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65366/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65367",
            "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:32/?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:p1278/?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 € / 10,30 €",
                        "sv": "18 € / 10,30 €",
                        "en": "18 € / 10,30 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566937/",
                        "sv": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566937/",
                        "en": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566937/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153643,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-02T10:14:26.070741Z",
                    "last_modified_time": "2025-01-02T10:14:26.070760Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761789.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153643/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-02T10:14:26.021061Z",
            "last_modified_time": "2025-05-07T12:13:37.335596Z",
            "date_published": null,
            "start_time": "2025-05-07T15: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": "Vapaan Tanssikoulun kevätnäytökset 2025",
                "sv": "Vapaa Tanssikoulus vårföreställningar 2025",
                "en": "Dance school Vapaa’s spring shows 2025"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8FCB3E93B8D439FDC2472D06847746CE/Vapaan_Tanssikoulun_kevatnaytokset_2025",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8FCB3E93B8D439FDC2472D06847746CE/Vapaa_Tanssikoulus_varforestallningar_2025",
                "en": "http://www.vuotalo.fi/en/events/event/8FCB3E93B8D439FDC2472D06847746CE/Dance_school_Vapaa_s_spring_shows_2025"
            },
            "description": {
                "fi": "<p>Tervetuloa Vuotaloon katsomaan Vapaan Tanssikoulun kevätnäytöksiä!</p><p>Vapaa Tanssikoulu on tanssitaiteen perusopetusta antava tanssikoulu, joka toimii Itä-Helsingin alueella. Tanssikoulumme järjestää joka kevät oppilasnäytökset, joissa esiintyy eri ikäisiä oppilaitamme. Tule mukaan nauttimaan liikkeestä, vauhdista ja esiintymisen ilosta!</p><p>Kesto: n. 60 min</p>",
                "sv": "<p>Välkommen till Nordhuset för att se Vapaa Tanssikoulus vårföreställningar!</p><p>Vapaa Tanssikoulu är en dansskola som ger grundläggande dansundervisning i östra Helsingfors. Vår dansskola ordnar varje vår elevföreställningar där våra elever i olika åldrar uppträder. Kom med och njut av rörelse, fart och glädje som uppträdandet ger!</p><p>Längd: cirka 60 min.</p>",
                "en": "<p>Welcome to Vuotalo to see Dance school Vapaa’s spring shows!</p><p>Dance school Vapaa provides basic dance art education, operating in the Eastern Helsinki area. Every spring, our dance school organises student showcases featuring our students of various ages. Come and enjoy the movement, pace and the joy of performing!</p><p>Duration: approx. 60 min</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa Vuotaloon katsomaan Vapaan Tanssikoulun kevätnäytöksiä!",
                "sv": "Välkommen till Nordhuset för att se Vapaa Tanssikoulus vårföreställningar!",
                "en": "Welcome to Vuotalo to see Dance school Vapaa’s spring shows!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65367/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64830",
            "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/kulke:758/?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": "24,80 € / 18 €",
                        "sv": "24,80 € / 18 €",
                        "en": "24,80 € / 18 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/eid-al-fitr-juhlakonsertti-solistina-mais-harb-3764237/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/eid-al-fitr-juhlakonsertti-solistina-mais-harb-3764237/",
                        "en": "https://www.lippu.fi/artist/malmitalo/eid-al-fitr-juhlakonsertti-solistina-mais-harb-3764237/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152933,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-01T15:16:52.429715Z",
                    "last_modified_time": "2024-11-01T15:16:52.429806Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760393.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152933/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-01T15:16:52.390899Z",
            "last_modified_time": "2025-05-07T12:13:29.822226Z",
            "date_published": null,
            "start_time": "2025-03-29T18: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": "Mais Harb (SYR) – ميس حرب (سوريا)",
                "sv": "Mais Harb (SYR) – ميس حرب (سوريا)",
                "en": "Mais Harb (SYR) – ميس حرب (سوريا)"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8D540546FA780A4A383E90679FC9285F/Mais_Harb_SYR_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8D540546FA780A4A383E90679FC9285F/Mais_Harb_SYR_",
                "en": "http://www.malmitalo.fi/en/events/event/8D540546FA780A4A383E90679FC9285F/Mais_Harb_SYR_"
            },
            "description": {
                "fi": "<p>Nauti unohtumattomasta illasta Lähi-idän musiikin parissa maailmankuulun Mais Harbin johdolla.</p><p>On aika valmistautua Ramadanin kuukauden, paaston ja pohdiskelun ajan, päättymiseen! Illan aikana esiintymässä on itämainen orkesteri Mais Harbin johdolla, jonka vangitseva ääni on soinut konserttilavoilla ympäri maailmaa. <br> <br><i>Huom! Konsertin ajankohta ja esiintyjien tiedot ovat päivittyneet.</p><p>Aiemmin ostetut liput käyvät sellaisenaan konserttiin, mutta lippurahoja voi myös hakea takaisin. Lippurahojen palautuksia voi hakea 29.4.2025 mennessä tämän verkkolinkin kautta: <a href=\"https://web.lippu.fi/palautus/\">web.lippu.fi/palautus</a></p><p>Liput voi myös palauttaa postitse osoitteeseen:<br>Lippupiste Oy / ”Tapahtuman nimi” palautus<br>Kansikatu 5<br>33100 Tampere</i><br> <br>Tässä konsertissa syyrialainen Mais Harb saa seurakseen joukon paikallisia muusikoita, jotka tulevat eri taustoista. Mais Harb esittää valikoiman lauluja Syyriasta, Irakista, Libanonista, Egyptistä ja muista Lähi-idän maista. Jokainen laulu kertoo oman tarinansa ja vie kuulijan kulttuurimatkalle, tuoden esille alueen rikkaan ja monipuolisen musiikillisen perinnön.</p><p>Euroopan ja Lähi-idän lavoilla esiintynyt Mais Harb tunnetaan voimakkaasta äänestään sekä kyvystään koskettaa yleisöä arabimusiikin kauneuden kautta. Ilta tarjoaa erityisen tilaisuuden kokea hänen taitonsa ja arabialaisen musiikin ajattomat melodiat yhteen kietoutuneina, täynnä tunnetta ja yhteisöllisyyttä.</p><p><b>Esiintyjät:</b><br>Mais Harb – laulu<br>Rashid Hlel – viulu<br>Merve Abdurrahmani – piano<br>Mehrnoosh Zolfaghari – santoor<br>Khashayar Eshkevari – altokamancha<br>Hadi Hrekes – perkussiot<br>Lauri Salokoski – basso</p><p>Älä missaa tätä mahdollisuutta sukeltaa Lähi-idän musiikin ytimeen ja juhlistaa pian päättyvää Ramadania juhlailtana, joka on täynnä iloa, yhteenkuuluvuutta ja musiikin lumoa. <br> <br>Kesto: 1 h</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/eventseries/name-3819434/?affiliate=FSF\">täältä</a></u>.</p><p>ميس حرب (سوريا)</p>",
                "sv": "<p>Det är dags att förbereda sig för slutet av Ramadan, månaden av fasta och reflektion!</p><p>Under denna kväll får vi njuta av oförglömlig musik från hela Mellanöstern, ledd av den världsberömda Mais Harb, vars fängslande röst har ekat på konsertscener världen över.</p><p>Obs! Konsertens tidpunkt och information om artisterna har uppdaterats.</p><p>I denna konsert får den syriska sångerskan Mais Harb sällskap av en grupp lokala musiker med olika bakgrunder. Hon kommer att framföra ett urval av sånger från Syrien, Irak, Libanon, Egypten och andra länder i Mellanöstern. Varje sång berättar sin egen historia och tar lyssnaren med på en kulturell resa som lyfter fram regionens rika och mångsidiga musikaliska arv.</p><p>Mais Harb, som har uppträtt på scener i Europa och Mellanöstern, är känd för sin kraftfulla röst och sin förmåga att beröra publiken genom den arabiska musikens skönhet. Denna kväll erbjuder en unik möjlighet att uppleva hennes konstnärskap och den arabiska musikens tidlösa melodier, sammanvävda med känsla och gemenskap.</p><p><b>Medverkande:</b><br>Mais Harb – sång<br>Rashid Hlel – fiol<br>Merve Abdurrahmani – piano<br>Mehrnoosh Zolfaghari – santoor<br>Khashayar Eshkevari – altkamancha<br>Hadi Hrekes – slagverk<br>Lauri Salokoski – bas</p><p>Missa inte denna möjlighet att fördjupa dig i Mellanösterns musik och fira den snart avslutade Ramadan med en festlig kväll fylld av glädje, gemenskap och musikens magi.</p><p>Längd: 1 timme</p><p><a>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/eventseries/name-3819434/?affiliate=FSF\">här</a></u></p><p>ميس حرب (سوريا)</p>",
                "en": "<p>Enjoy an unforgettable evening filled with music from Middle East, sung by the world-renowned Mais Harb</p><p>It’s time to prepare for the end of Ramadan, the month of fasting and reflection! Free admission for young people between 7 and 19 with The Helsinki Youth Services membership card.</p><p>During this evening, we will enjoy unforgettable music from across the Middle East, led by the world-renowned Mais Harb, whose captivating voice has graced concert stages worldwide.</p><p><i>Note! The concert schedule and performer details have been updated.</p><p>Previously purchased tickets are valid as they are for the concert, but you can also request a refund.<br>Ticket refunds can be requested by April 29, 2025, via the following online link:<br><u><a href=\"https://web.lippu.fi/palautus/\">web.lippu.fi/palautus</a></u></p><p>Alternatively, tickets can also be returned by mail to the following address:<br>Lippupiste Oy / \"Event name\" refund<br>Kansikatu 5<br>33100 Tampere</i></p><p>In this concert, Syrian singer Mais Harb will be joined by a group of local musicians from diverse backgrounds. She will perform a selection of songs from Syria, Iraq, Lebanon, Egypt, and other Middle Eastern countries. Each song tells its own story, taking the listener on a cultural journey and showcasing the region’s rich and diverse musical heritage.</p><p>Having performed on stages across Europe and the Middle East, Mais Harb is known for her powerful voice and her ability to touch audiences through the beauty of Arabic music. This evening offers a unique opportunity to experience her artistry and the timeless melodies of Arabic music, woven together with deep emotion and a sense of community.</p><p><b>Performers:</b><br>Mais Harb – vocals<br>Rashid Hlel – violin<br>Merve Abdurrahmani – piano<br>Mehrnoosh Zolfaghari – santoor<br>Khashayar Eshkevari – alto kamancheh<br>Hadi Hrekes – percussion<br>Lauri Salokoski – bass</p><p>Don’t miss this opportunity to dive into the heart of Middle Eastern music and celebrate the approaching end of Ramadan with a festive evening full of joy, togetherness, and the magic of music.</p><p>Duration: 1 hour</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <a href=\"https://www.lippu.fi/en/eventseries/name-3819434/?affiliate=FSF\">here</a></p><p>ميس حرب (سوريا)</p>",
                "ar": "<p>حان الوقت للاستعداد لنهاية شهر رمضان، شهر الصيام والتأمل! خلال هذه الأمسية، سنستمتع بموسيقى لا تُنسى من مختلف أنحاء الشرق الأوسط، بقيادة الفنانة العالمية ميس حرب، التي أبهرت الجماهير بصوتها الآسر على مسارح العالم.</p><p>ملاحظة! تم تحديث جدول الحفل وتفاصيل المشاركين.</p><p>في هذا الحفل، ستنضم المغنية السورية ميس حرب إلى مجموعة من الموسيقيين المحليين من خلفيات متنوعة. ستؤدي مجموعة مختارة من الأغاني من سوريا، العراق، لبنان، مصر، ودول أخرى في الشرق الأوسط. تحكي كل أغنية قصة خاصة بها، وتأخذ المستمع في رحلة ثقافية تعكس التراث الموسيقي الغني والمتنوع للمنطقة.</p><p>بعد أدائها على مسارح في جميع أنحاء أوروبا والشرق الأوسط، تُعرف ميس حرب بصوتها القوي وقدرتها على ملامسة قلوب الجمهور من خلال جمال الموسيقى العربية. توفر هذه الأمسية فرصة فريدة للاستمتاع بفنها وسحر الألحان العربية الخالدة، الممزوجة بالمشاعر العميقة وروح المجتمع.</p><p>المشاركون :<br>ميس حرب :غناء <br>رشيد هلال : كمان <br>ميرفي عبد الرحماني : بيانو <br>ميهرنوش ذوالفقاري : سانتور <br>خشايار إشكيڤاري : ألتو كمنجة <br>هادي حريقص : إيقاع <br>لاوري سالوكوسكي : بايز غيتار</p><p>لا تفوِّت هذه الفرصة للغوص في قلب الموسيقى الشرق أوسطية والاحتفال باقتراب نهاية رمضان بسهرة مليئة بالفرح والتواصل وسحر الموسيقى.</p><p>المدة: ساعة واحدة</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nauti unohtumattomasta illasta Lähi-idän musiikin parissa maailmankuulun Mais Harbin johdolla.",
                "sv": "Det är dags att förbereda sig för slutet av Ramadan, månaden av fasta och reflektion!",
                "en": "Enjoy an unforgettable evening filled with music from Middle East, sung by the world-renowned Mais Harb"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64830/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66013",
            "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": "29-35 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20147715"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 546547,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-16T10:14:42.189710Z",
                    "last_modified_time": "2025-04-16T10:14:42.189730Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769728.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/546547/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-16T10:14:42.153932Z",
            "last_modified_time": "2025-05-07T10:14:01.271558Z",
            "date_published": null,
            "start_time": "2025-10-04T17: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": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!"
            },
            "provider": {
                "fi": "JL-Komediapaja Oy"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_K-18"
            },
            "description": {
                "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22766m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?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:agmk2275bm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275ny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275z4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2276f4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2276sm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T05:36:53.127637Z",
                    "last_modified_time": "2025-05-05T05:36:53.127652Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png",
                    "cropping": "75,0,360,285",
                    "photographer_name": "",
                    "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-05-07T10:00:59.621391Z",
            "last_modified_time": "2025-05-07T10:00:59.621405Z",
            "date_published": null,
            "start_time": "2025-05-13T07:00:00Z",
            "end_time": "2025-06-17T07:45: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": "Kesän tuolijumpat",
                "sv": "Sommarens stolgympa   ",
                "en": "Summer Chair Exercises"
            },
            "provider": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa 45 min</p>",
                "sv": "<p>Stolgympa 45 min</p><p><br></p>",
                "en": "<p> Chair Exercise 45 min</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ",
                "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar",
                "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June."
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64885",
            "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: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:47/?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: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": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749354/#tab=",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749354/#tab=",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749354/#tab="
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 155155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T14:15:40.080191Z",
                    "last_modified_time": "2025-01-16T14:15:40.080219Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760655.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/155155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T14:15:40.055042Z",
            "last_modified_time": "2025-05-07T08:13:35.675622Z",
            "date_published": null,
            "start_time": "2025-05-20T16: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": "KINO CAISA: Decolonial Lenses (15) – Feminist Film Experiments",
                "sv": "KINO CAISA: Decolonial Lenses (15) – Feminist Film Experiments",
                "en": "KINO CAISA: Decolonial Lenses (15) – Feminist Film Experiments"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1C5DB5AE9976548F6A0CD9E97E307979/KINO_CAISA_Decolonial_Lenses_15_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1C5DB5AE9976548F6A0CD9E97E307979/KINO_CAISA_Decolonial_Lenses_15_",
                "en": "http://www.caisa.fi/en/events/event/1C5DB5AE9976548F6A0CD9E97E307979/KINO_CAISA_Decolonial_Lenses_15_"
            },
            "description": {
                "fi": "<p>Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Toinen FFE-näytös sisältää kolme elokuvaa.</p><p>Näytökset kunnioittavat feminististä luovuutta yli sukupolvien ja tuovat esille elokuvia, jotka tutkivat ja haastavat edelleen ajankohtaisia epäoikeudenmukaisuuksia.</p><p>Elokuvat on valittu Cinenovan feministisestä elokuvakokoelmasta, ja ne ulottuvat 1970-luvulta 2000-luvun alkuun eri konteksteissa (Jamaika, Yhdysvallat ja Sri Lanka, muiden muassa).</p><p>Elokuvat käsittelevät sukupuolen, rodun, seksuaalisuuden ja yhteisön esityksiä ja kysyvät, miten voimme työskennellä (ja leikkiä) kuvitellaksemme toisenlaisen maailman.</p><p><b>DECOLONIAL LENSES | Näytöksen elokuvat</b></p><p><b>Back Inside Herself</b><br>Described by S. Pearl Sharp as “a visual poem on identity”, Back Inside Herself shows a Black woman finding her own sense of self and rejecting hegemonic societal expectations of who she should be and how she should behave. <br>S. Pearl Sharp (USA, 1984, 4 mins)</p><p><b>Memory Tracks</b> <br>A tribute to African-American women activists, whose violent actions were often characterised as being the result of mental illness. <br>Jamika Ajalon (USA, 1997, 7 mins)</p><p><b>A Song of Ceylon</b> <br>This non-narrative film presents multiple tableaus that address colonial histories, gender and the body. Its title, which is derived from the documentary by Basil Wright and John Grierson, evokes an erased country, while the soundtrack stages an interpretation of a Sri Lankan ritual of spirit possession and cure.<br>Laleen Jayamanne (Australia, 1985, 51 mins)</p><p>Kieli: englanti, ei suomenkielisiä tekstityksiä<br>Ikäsuositus: yli 15-vuotiaat</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 15–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/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750718/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.</p><p>Kom med i filmklubben Feminist Film Experiments, som inkluderar tre filmvisningar på Kino Caisa!</p><p>Visningarna hyllar feministisk kreativitet över generationerna, och visar filmer som utforskar och utmanar orättvisor som fortfarande är aktuella. Filmerna är valts ut ur Cinenovas feministiska filmsamling och sträcker sig från 1970-talet till början av 2000-talet i olika sammanhang (bland annat Jamaica, USA och Sri Lanka).</p><p>Filmerna behandlar framställningar av kön, ras, sexualitet och gemenskap och frågar hur vi kan arbeta (och leka) för att föreställa oss en annorlunda värld. I slutet av serien ordnar vi en paneldiskussion, där vi tillsammans reflekterar över filmerna.</p><p><b>Program:</b><br>13.5. Queering the Frame<br>20.5. Decolonial Lenses<br>27.5. Gender at Work</p><p>Som presentatör fungerar Adalmiina Erkkola, en kulturproducent baserad i Helsingfors, som är intresserad av filmens politiska potential. Hon är också programledare för radioprogrammet No Man's Land på IDA Helsinki.</p><p>Språk: engelska, inga undertexter på finska <br>Diskussion: Engelska, plus tecknad engelska (tbc) <br>Åldersrekommendation: över 15 år</p><p>Cinenova grundades år 1991 genom en sammanslagning av två feministiska film- och videodistributörer, Circles och Cinema of Women. Båda hade inlett sin verksamhet år 1979. Cinenovas samling består av mer än 400 verk, inklusive konstnärliga rörliga bildverk, narrativa filmer, dokumentärer och utbildningsvideor, som har producerats mellan 1910 och 2000.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 15–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett  <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750718/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Feminist Film Experiments is a series of film screenings which asks how we work together creatively to highlight injustice and imagine the world otherwise.</p><p>Honouring feminist creativity across generations, Feminist Film Experiments brings you films from the past which explore representations of women and structures of oppression. <br>Engaging with discourses of gender, race, sexuality and community, these filmmakers ask how we work (and play) to imagine the world otherwise. <br>The films are sourced from Cinenova’s feminist film collection, ranging from the 1970s to the early 2000s across contexts.</p><p><b>DECOLONIAL LENSES | Films</b></p><p><b>Back Inside Herself</b><br> S. Pearl Sharp (USA, 1984, 4 mins, English subtitles)<br>Described by S. Pearl Sharp as “a visual poem on identity”, Back Inside Herself shows a Black woman finding her own sense of self and rejecting hegemonic societal expectations of who she should be and how she should behave.</p><p><b>Memory Tracks</b> <br>Jamika Ajalon (USA, 1997, 7 mins)<br>A tribute to African-American women activists, whose violent actions were often characterised as being the result of mental illness.</p><p><b>A Song of Ceylon</b><br>Laleen Jayamanne (Australia, 1985, 51 mins, English subtitles)<br>This non-narrative film presents multiple tableaus that address colonial histories, gender and the body. Its title, which is derived from the documentary by Basil Wright and John Grierson, evokes an erased country, while the soundtrack stages an interpretation of a Sri Lankan ritual of spirit possession and cure.</p><p>The programme is presented by <b>Adalmiina Erkkola</b>, a Helsinki-based cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p><p><b>Cinenova</b> was founded in 1991 following the merger of two feminist film and video distributors, Circles and Cinema of Women, each formed in 1979. Cinenova distributes over 400 titles including artists’ moving image, narrative cinema, documentary and educational videos produced between the 1910s and 2000s. For more, visit: https://cinenova.org/</p><p>Language: English, no Finnish subtitles <br>Age recommendation: 15+</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 15–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750718/?affiliate=FSF\">HERE</a></u></p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Toinen FFE-näytös sisältää kolme elokuvaa.",
                "sv": "I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.",
                "en": "Feminist Film Experiments is a series of film screenings which asks how we work together creatively to highlight injustice and imagine the world otherwise."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64885/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64884",
            "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: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:47/?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: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": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749353/#tab=",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749353/#tab=",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749353/#tab="
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 155154,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-16T14:15:38.816172Z",
                    "last_modified_time": "2025-01-16T14:15:38.816201Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760651.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/155154/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-16T14:15:38.778996Z",
            "last_modified_time": "2025-05-07T08:13:34.211262Z",
            "date_published": null,
            "start_time": "2025-05-13T16: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": "KINO CAISA: Queering the Frame (15) – Feminist Film Experiments",
                "sv": "KINO CAISA: Queering the Frame (15) – Feminist Film Experiments",
                "en": "KINO CAISA: Queering the Frame (15) – Feminist Film Experiments"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/5937FE89681AECAB3FC405A00AFE7C40/KINO_CAISA_Queering_the_Frame_15_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/5937FE89681AECAB3FC405A00AFE7C40/KINO_CAISA_Queering_the_Frame_15_",
                "en": "http://www.caisa.fi/en/events/event/5937FE89681AECAB3FC405A00AFE7C40/KINO_CAISA_Queering_the_Frame_15_"
            },
            "description": {
                "fi": "<p>Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Ensimmäinen FFE-näytös sisältää viisi lyhytelokuvaa.</p><p>Näytökset kunnioittavat feminististä luovuutta yli sukupolvien ja tuovat esille elokuvia, jotka tutkivat ja haastavat edelleen ajankohtaisia epäoikeudenmukaisuuksia.</p><p>Elokuvat on valittu Cinenovan feministisestä elokuvakokoelmasta, ja ne ulottuvat 1970-luvulta 2000-luvun alkuun eri konteksteissa (Jamaika, Yhdysvallat ja Sri Lanka, muiden muassa).</p><p>Elokuvat käsittelevät sukupuolen, rodun, seksuaalisuuden ja yhteisön esityksiä ja kysyvät, miten voimme työskennellä (ja leikkiä) kuvitellaksemme toisenlaisen maailman.</p><p>Esittelijänä toimii Adalmiina Erkkola, Helsingissä toimiva kulttuurituottaja, joka on kiinnostunut elokuvan poliittisesta potentiaalista. Hän juontaa myös No Man’s Land -radio-ohjelmaa IDA Helsingissä.</p><p><b>QUEERING THE FRAME | Näytöksen elokuvat</b></p><p><b>17 Rooms (Or What Lesbians Do in Bed)</b><br>What do lesbians do in bed? With a star-studded soundtrack, we're shown women doing everything in bed from knitting and drinking tea to having raucous pillow-fights. <br>Caz Sheldon (UK, 1985, 10 mins).</p><p><b>Burden of Dykes</b> <br>Hilarious send-up of psychoanalytical propaganda films, illustrating every absurd cliché about the 'lesbian nature' and raising issues of self-representation and media production. <br>Anne Chamberlain (UK, 1995, 8 mins)</p><p><b>Chaahath (Desire)</b> <br>The film's central theme of desire/passion is deeply embedded in a culture which is given its own voice through the beat of the clay pot used in North India. <br>Lily Gupta (UK, 1996, 4 mins)</p><p><b>Blue Diary</b> <br>This experimental narrative tells the melancholy story of a young dyke pining over a one-night stand with a straight girl. <br>Jenni Olson (USA, 1997, 6 mins).</p><p><b>Loss of Heat</b><br>Focusing on two parallel lesbian relationships this film reflects the reality of living with an 'invisible' disability, challenging preconceived notions of the illness to reveal how it operates outside the epileptic fit on a daily basis.<br>Noski Deville (UK, 1994, 20 mins)</p><p>Kieli: englanti, ei suomenkielisiä tekstityksiä <br>Ikäsuositus: yli 15-vuotiaat</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 15–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/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750719/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.</p><p>Kom med i filmklubben Feminist Film Experiments, som inkluderar tre filmvisningar på Kino Caisa!</p><p>Visningarna hyllar feministisk kreativitet över generationerna, och visar filmer som utforskar och utmanar orättvisor som fortfarande är aktuella. Filmerna är valts ut ur Cinenovas feministiska filmsamling och sträcker sig från 1970-talet till början av 2000-talet i olika sammanhang (bland annat Jamaica, USA och Sri Lanka).</p><p>Filmerna behandlar framställningar av kön, ras, sexualitet och gemenskap och frågar hur vi kan arbeta (och leka) för att föreställa oss en annorlunda värld. I slutet av serien ordnar vi en paneldiskussion, där vi tillsammans reflekterar över filmerna.</p><p><b>Program:</b><br>13.5. Queering the Frame<br>20.5. Decolonial Lenses<br>27.5. Gender at Work</p><p>Som presentatör fungerar Adalmiina Erkkola, en kulturproducent baserad i Helsingfors, som är intresserad av filmens politiska potential. Hon är också programledare för radioprogrammet No Man's Land på IDA Helsinki.</p><p>Språk: engelska, inga undertexter på finska <br>Diskussion: Engelska<br>Åldersrekommendation: över 15 år</p><p>Cinenova grundades år 1991 genom en sammanslagning av två feministiska film- och videodistributörer, Circles och Cinema of Women. Båda hade inlett sin verksamhet år 1979. Cinenovas samling består av mer än 400 verk, inklusive konstnärliga rörliga bildverk, narrativa filmer, dokumentärer och utbildningsvideor, som har producerats mellan 1910 och 2000.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 15–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750719/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Join us for Feminist Film Experiments - three evenings of film screenings at Kino Caisa!</p><p>Honouring feminist creativity across generations, we bring you films from the past which explore and challenge injustices still in the present. The films are sourced from Cinenova’s feminist film collection, ranging from the 1970s to the early 2000s across contexts (Jamaica, USA & Sri Lanka, among others).</p><p>Engaging with representations of gender, race, sexuality and community, these filmmakers ask how we work (and play) to imagine the world otherwise.</p><p>The programme is presented by Adalmiina Erkkola, a Helsinki-based cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p><p><b>QUEERING THE FRAME | Films</b></p><p><b>17 Rooms (Or What Lesbians Do in Bed)</b><br>What do lesbians do in bed? With a star-studded soundtrack, we're shown women doing everything in bed from knitting and drinking tea to having raucous pillow-fights. <br>Caz Sheldon (UK, 1985, 10 mins).</p><p><b>Burden of Dykes</b> <br>Hilarious send-up of psychoanalytical propaganda films, illustrating every absurd cliché about the 'lesbian nature' and raising issues of self-representation and media production. <br>Anne Chamberlain (UK, 1995, 8 mins)</p><p><b>Chaahath (Desire)</b> <br>The film's central theme of desire/passion is deeply embedded in a culture which is given its own voice through the beat of the clay pot used in North India. <br>Lily Gupta (UK, 1996, 4 mins)</p><p><b>Blue Diary</b> <br>This experimental narrative tells the melancholy story of a young dyke pining over a one-night stand with a straight girl. <br>Jenni Olson (USA, 1997, 6 mins).</p><p><b>Loss of Heat</b><br>Focusing on two parallel lesbian relationships this film reflects the reality of living with an 'invisible' disability, challenging preconceived notions of the illness to reveal how it operates outside the epileptic fit on a daily basis.<br>Noski Deville (UK, 1994, 20 mins, English subtitles)</p><p>Language: English, no Finnish subtitles <br>Age recommendation: 15+</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 15–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750719/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Ensimmäinen FFE-näytös sisältää viisi lyhytelokuvaa.",
                "sv": "I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.",
                "en": "Join us for Feminist Film Experiments - three evenings of film screenings at Kino Caisa!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64884/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-3748849",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19863434/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19863434/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19863434/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350918/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350928/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350929/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350930/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350920/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350921/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350931/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350933/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350932/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350922/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350923/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350925/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350935/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350926/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19790131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350936/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350927/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19863433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19863434/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235432,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.590376Z",
                    "last_modified_time": "2025-02-17T11:16:41.590394Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/sinun-margot_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235432/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:10.692177Z",
            "last_modified_time": "2025-05-06T20:15:34.939524Z",
            "date_published": null,
            "start_time": "2025-02-19T16:30:00Z",
            "end_time": "2025-05-06",
            "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": "Sinun, Margot"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Meri Valkama – Tuomas Timonen<br><strong>Sinun, Margot</strong></p><p>Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nousi heti ilmestyttyään kirjallisuutemme merkkiteokseksi. Helsingin Kaupunginteatteri vastaa lukijoiden ja katsojien lukuisiin pyyntöihin valmistamalla Riikka Oksasen ohjaamana menestysromaanin pohjalta upean teatteriversion suurelle näyttämölle.</p><p>Vilja Siltasen isä Markus on juuri kuollut. Hänen asunnostaan löytyy nippu kirjeitä naiselta nimeltä Margot. Viljan äiti ei suostu sanomaan kirjeistä mitään, joten Viljan on matkustettava takaisin Berliiniin selvittämään, keneltä kirjeet ovat.</p><p>Vilja on varttunut DDR:ssä, jossa hänen isänsä työskenteli ulkomaankirjeenvaihtajana 1980-luvun alkupuolella. Perhe piti Itä-Saksaa ihannevaltiona. Sitten Berliinin muuri murtui ja perheonni hajosi. Miksi? Ja kuka kirjeiden Margot oikein on?</p><p>Sinun, Margot laajenee yksilön ja perheen tarinasta suureksi, kokonaista aikakautta tarkastelevaksi jännitysnäytelmäksi. Otteessaan pitävä draama onnistuu pohtimaan poikkeuksellisella tavalla ajankohtaisia kysymyksiä: Voiko menneisyyden muistaminen auttaa ymmärtämään nykyisyyttä?</p><p>Sinun, Margot on intensiivinen, psykologinen näytelmä siitä, mitä tapahtuu, kun ihanteelliseksi rakennettu kuva elämästä, aatteesta, tai ihmisestä alkaa särkyä. Kuka tai mitä ihminen lopulta on, jollei tiedä totuutta omasta menneisyydestään?</p><p>Viljan roolissa nähdään Jussi-palkittu Satu Tuuli Karhu. Margotina loistaa elokuvista ja televisiosta tuttu Sara Soulié. Viljan isää Markusta näyttelee useissa elokuvissa vaikutuksen tehnyt Martin Bahne ja Viljan äitiä Rosaa näyttelee upea Sanna-June Hyde.</p><p>Rooleissa: Satu Tuuli Karhu, Sara Soulié, Martin Bahne, Helena Haaranen, Vuokko Hovatta, Sanna-June Hyde, Tuukka Leppänen, Lasse Lipponen, Sanna Majuri, Risto Kaskilahti, Samuli Pajunen, Emma Pälsynaho, Raili Raitala</p><p>Kirjailija: Meri Valkama<br>Dramatisointi: Tuomas Timonen<br>Ohjaus: Riikka Oksanen<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Tiina Kaukanen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Milja Mensonen<br>Dramaturgi: Ari-Pekka Lahti<br>Ohjaajan assistentti: Kirsi Karlenius</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Meri Valkama – Tuomas Timonen Sinun, Margot Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nous"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748849/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66153",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": 699786,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-06T13:13:40.884145Z",
                    "last_modified_time": "2025-05-06T13:13:40.884163Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764959.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-06T13:13:40.778339Z",
            "last_modified_time": "2025-05-06T13:13:41.019555Z",
            "date_published": null,
            "start_time": "2025-06-12T08:00:00Z",
            "end_time": "2025-06-12T17: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": "Espan lavan Helsinki-päivä – Kalevauva.fi, Jaanat, Mikko Perkoila yhtyeineen",
                "sv": "Helsingforsdagen på Esplanadestraden – Kalevauva.fi, Jaanat, Mikko Perkoila med orkester",
                "en": "Helsinki Day on Espa Stage – Kalevauva.fi, Jaanat, Mikko Perkoila and band"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/66083CDB1C1162B9B0EE1585B431E2F0/Espan_lavan_Helsinki-paiva",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/66083CDB1C1162B9B0EE1585B431E2F0/Helsingforsdagen_pa_Esplanadestraden",
                "en": "http://www.espanlava.fi/en/events/event/66083CDB1C1162B9B0EE1585B431E2F0/Helsinki_Day_on_Espa_Stage"
            },
            "description": {
                "fi": "<p>Espan lavan Helsinki-päivää vietetään hauskojen konserttien kera! Tapahtumassa nimetään myös tämän vuoden Stadin Friidu ja Kundi.</p><p>Espan lavan Helsinki-päivä tarjoaa musiikin riemua koko perheelle. Päivä alkaa perinteiseen tapaan, kun Stadin Slangi ry julkistaa vuoden Stadin Friidun ja Kundin. Esiintymässä Frederik!</p><p>Kello 15 alkaen Espan lavalla hyvää mieltä ja meininkiä tarjoavat viihdyttävät artistit: Mikko Perkoila Trio, Jaanat, Mikko Perkoila & Vinkulelu ja päivän huipennus klo 19 Kalevauva.fi.</p><p><b>Ohjelma</b><br>klo 11–12.30 <br>Stadin Slangi ry:n ohjelma:<br>Stadin Friidun ja Kundin julkistaminen<br>Esiintymässä Frederik</p><p>klo 15 Mikko Perkoila Trio: Arvaa harmittiko<br>klo 16 Jaanat<br>klo 17 Mikko Perkoila & Vinkulelu (lastenkonsertti)<br>klo 19 Kalevauva.fi</p><p>Vapaa pääsy</p>",
                "sv": "<p>Helsingforsdagen på Esplanadestraden firas med roliga konserter! Vid evenemanget utses även årets Stadens Friidu och Kundi.</p><p>Helsingforsdagen på Esplanadestraden erbjuder musikglädje för hela familjen. Dagen börjar på ett traditionellt sätt då årets Stadens Friidu och Kundi utses av Stadin Slangi ry. Frederik uppträder!</p><p>Underhållande artister bjuder på gott humör och en bra stämning på Esplanadestraden från och med kl. 15: Mikko Perkoila Trio, Jaanat, Mikko Perkoila & Vinkulelu och dagens höjdpunkt klockan 19, Kalevauva.fi.</p><p><b>Program</b><br>kl. 11–12.30 <br>Stadin Slangi ry:s program:<br>Offentliggörande av Stadens Friidu och Kundi<br>Frederik uppträder</p><p>kl. 15 Mikko Perkoila Trio: Arvaa harmittiko<br>kl. 16 Jaanat<br>kl. 17 Mikko Perkoila & Vinkulelu (barnkonsert)<br>kl. 19 Kalevauva.fi</p><p>Fritt inträde</p>",
                "en": "<p>Espa Stage serves up fun concerts to celebrate Helsinki Day! This year’s Stadin Friidu and Kundi (Helsinki’s “Gal and Guy”) will also be crowned during the event.</p><p>Helsinki Day on Espa Stage<br>Kalevauva.fi, Jaanat, Mikko Perkoila and band<br>Espa Stage serves up fun concerts to celebrate Helsinki Day! This year’s Stadin Friidu and Kundi (Helsinki’s “Gal and Guy”) will also be crowned during the event.<br>Helsinki Day on Espa Stage offers the joy of music to the entire family. The day starts in a traditional manner when the Helsinki slang association Stadin Slangi ry announces the honorary titles of Stadin Friidu and Kundi for this year. Frederik will be performing!</p><p>Starting from 15.00, Espa Stage will pamper listeners with music to make you smile: Mikko Perkoila Trio, Jaanat, Mikko Perkoila & Vinkulelu and the culmination of the event at 19.00 – Kalevauva.fi.</p><p><b>Programme</b><br>11.00–12.30 <br>Stadin Slangi ry’s programme:<br>Announcement of Stadin Friidu and Kundi<br>Frederik on stage</p><p>15.00 Mikko Perkoila Trio: Arvaa harmittiko<br>16.00 Jaanat<br>17.00 Mikko Perkoila & Vinkulelu (children’s concert)<br>19.00 Kalevauva.fi</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Espan lavan Helsinki-päivää vietetään hauskojen konserttien kera! Tapahtumassa nimetään myös tämän vuoden Stadin Friidu ja Kundi.",
                "sv": "Helsingforsdagen på Esplanadestraden firas med roliga konserter! Vid evenemanget utses även årets Stadens Friidu och Kundi.",
                "en": "Espa Stage serves up fun concerts to celebrate Helsinki Day! This year’s Stadin Friidu and Kundi (Helsinki’s “Gal and Guy”) will also be crowned during the event."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66153/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65911",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3874163",
                        "sv": "https://www.lippu.fi/eventseries/name-3874163",
                        "en": "https://www.lippu.fi/eventseries/name-3874163"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 453155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-02T14:13:36.945058Z",
                    "last_modified_time": "2025-04-02T14:13:36.945078Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768347.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/453155/?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-04-02T14:13:36.908597Z",
            "last_modified_time": "2025-05-06T13:13:38.268460Z",
            "date_published": null,
            "start_time": "2025-05-24T14: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": "Kannelmäen voimistelijoiden kevätnäytös",
                "sv": "Kannelmäen voimistelijoiden kevätnäytös",
                "en": "Kannelmäen voimistelijoiden kevätnäytös"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8CEEE09695D44E2DD195F5BC7DE65DC1/Kannelmaen_voimistelijoiden_kevatnaytos",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8CEEE09695D44E2DD195F5BC7DE65DC1/Kannelmaen_voimistelijoiden_kevatnaytos",
                "en": "http://www.kanneltalo.fi/en/events/event/8CEEE09695D44E2DD195F5BC7DE65DC1/Kannelmaen_voimistelijoiden_kevatnaytos"
            },
            "description": {
                "fi": "<p>Kannelmäen Voimistelijat ry:n perinteisen kevätnäytöksen teemana on karnevaali!</p><p>Luvassa on iloa, liikettä ja upeita esityksiä, kun Kannelmäen Voimistelijat ry:n eri-ikäiset ryhmät perheen pienimmistä aikuisiin valtaavat lavan karnevaalitunnelmassa.</p><p>Kevätnäytös tuo yhteen voimistelun, tanssin ja juhlatunnelman, joka tempaa mukaansa kaikenikäiset katsojat.</p><p>Kesto: noin 1 tunti</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kannelmäen Voimistelijat ry:n perinteisen kevätnäytöksen teemana on karnevaali!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66038",
            "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/kulke:613/?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": "10 eur",
                        "sv": "10 eur",
                        "en": "10 eur"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vuotalo-tiistaimatinea-smokey-blues-band-vuotalo-20182293/",
                        "sv": "https://www.lippu.fi/event/vuotalo-tiistaimatinea-smokey-blues-band-vuotalo-20182293/",
                        "en": "https://www.lippu.fi/event/vuotalo-tiistaimatinea-smokey-blues-band-vuotalo-20182293/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 512680,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-11T14:14:22.318789Z",
                    "last_modified_time": "2025-04-11T14:14:22.318807Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761794.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/512680/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-11T14:14:22.294559Z",
            "last_modified_time": "2025-05-06T13:13:35.935271Z",
            "date_published": null,
            "start_time": "2025-05-13T11: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": "Smokey Blues Band – Tiistaimatinea",
                "sv": "Smokey Blues Band",
                "en": "Smokey Blues Band"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8AB44F26F55302E07051A10C3017EA2F/Smokey_Blues_Band",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8AB44F26F55302E07051A10C3017EA2F/Smokey_Blues_Band",
                "en": "http://www.vuotalo.fi/en/events/event/8AB44F26F55302E07051A10C3017EA2F/Smokey_Blues_Band"
            },
            "description": {
                "fi": "<p>Smokey Blues Band tarjoilee smooth jazzia, blues-standardeja ja balladeja 1900-luvun alusta tähän päivään.</p><p>Smokey Blues Band on toiminut jo yli 12 vuotta. Kokoonpanoon on liittynyt pitkän linjan kokeneita ammattimuusikoita, jotka takaavat laadukkaan sekä laajan ja vaihtelevan musiikkikattauksen. Smokey BB nousee 13.5. Vuotalon lavalle hellimään kaikkia blues-musiikin ystäviä!</p><p>Smokey Blues Band:<br>Yrjö Putkinen, kitara, laulu<br>Sami Saari, laulu, kitara<br>Kari Alanko, kontrabasso.<br>Juha ”Junnu” Kartano, huuliharppu, laulu<br>Markus Grönroos, rummut.<br>Kesto: 1 tunti</p>",
                "sv": "<p>Smokey Blues Band bjuder smooth jazz, bluesstandarder och ballader från början av 1900-talet till nutid.</p><p>Smokey Blues Band har varit verksamt över 12 år. Till ensemblen har anslutit professionella musiker med lång erfarenhet som garanterar ett högklassigt samt omfattande och varierande musikutbud. Smokey BB stiger på scenen i Nordhuset 13.5 för skämma bort alla bluesvänner!</p><p>Smokey Blues Band:<br>Yrjö Putkinen, gitarr.<br>Sami Saari, gitarr.<br>Kari Alanko, kontrabas.<br>Markus Grönroos, trummor.</p><p>Längd: 1 timme</p>",
                "en": "<p>Smokey Blues Band serves smooth jazz, blues standards and ballads from the early 20th century to the present.</p><p>Smokey Blues Band has been around for more than 12 years. A long line of experienced professional musicians have joined the ensemble, guaranteeing a high-quality, wide and varied music compilation. Smokey BB rises to the Vuotalo stage on 13 May to delight all blues lovers!</p><p>Smokey Blues Band:<br>Yrjö Putkinen, guitar<br>Sami Saari, guitar, singing<br>Kari Alanko, double bass<br>Markus Grönroos, drums</p><p>Duration: 1 hour<br>10 eur</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Smokey Blues Band tarjoilee smooth jazzia, blues-standardeja ja balladeja 1900-luvun alusta tähän päivään.",
                "sv": "Smokey Blues Band bjuder smooth jazz, bluesstandarder och ballader från början av 1900-talet till nutid.",
                "en": "Smokey Blues Band serves smooth jazz, blues standards and ballads from the early 20th century to the present."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66038/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66202",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "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": 699447,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-06T12:13:56.681244Z",
                    "last_modified_time": "2025-05-06T12:13:56.681262Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767584.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699447/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T12:13:56.584000Z",
            "last_modified_time": "2025-05-06T12:13:56.804504Z",
            "date_published": null,
            "start_time": "2025-05-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opera Tellus Ensemble – Open Stage",
                "sv": "Opera Tellus Ensemble – Open Stage",
                "en": "Opera Tellus Ensemble – Open Stage"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/7932827D96DA393EE2096D5B0D9CCB52/Opera_Tellus_Ensemble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/7932827D96DA393EE2096D5B0D9CCB52/Opera_Tellus_Ensemble",
                "en": "http://www.espanlava.fi/en/events/event/7932827D96DA393EE2096D5B0D9CCB52/Opera_Tellus_Ensemble"
            },
            "description": {
                "fi": "<p>Tämä upea musikaalikonsertti vie sinut matkalle tunteiden ja melodioiden maailmaan, kun lavalla esitetään musikaalien ja oopperoiden iloisimpia kappaleita.</p><p>Luvassa on unohtumaton iltapäiväkonsertti täynnä säihkettä ja riemua, joka sykähdyttää sydäntä. Esiintyjinä Opera Tellus Ensemblen laulajia. Tervetuloa nauttimaan musiikin ilosta konserttiin \"Seasons Of Love\"!</p><p>Laulu: Helena Kasper, Tiia Pelkonen, Sampo Rantalainen, Emmi Suominen, Anna Suominen-Tallberg, Senja Syrjälä</p><p>Piano: Sayoko Wada</p>",
                "sv": "<p>Denna fantastiska musikal-konsert tar dig med på en resa genom känslornas och melodiernas värld, med de mest glädjefyllda styckena från musikaler och operor.</p><p>Det blir en oförglömlig eftermiddagskonsert full av glans och glädje som kommer att beröra ditt hjärta. Sångarna är solister från Opera Tellus Ensemble. Välkommen till konserten \"Seasons Of Love\", där vi firar musikens glädje!</p>",
                "en": "<p>This wonderful musical concert will take you on a journey through a world of emotions and melodies, featuring the most joyful pieces from musicals and operas.</p><p>Prepare for an unforgettable afternoon concert filled with sparkle and delight that will touch your heart. The singers are members of Opera Tellus Ensemble. Welcome to the concert \"Seasons Of Love,\" where we celebrate the joy of music!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tämä upea musikaalikonsertti vie sinut matkalle tunteiden ja melodioiden maailmaan, kun lavalla esitetään musikaalien ja oopperoiden iloisimpia kappaleita.",
                "sv": "Denna fantastiska musikal-konsert tar dig med på en resa genom känslornas och melodiernas värld, med de mest glädjefyllda styckena från musikaler och operor.",
                "en": "This wonderful musical concert will take you on a journey through a world of emotions and melodies, featuring the most joyful pieces from musicals and operas."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66202/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66182",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "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": 690402,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T09:13:16.895126Z",
                    "last_modified_time": "2025-05-05T09:13:16.895147Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771201.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690402/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T09:13:16.820125Z",
            "last_modified_time": "2025-05-06T12:13:52.986231Z",
            "date_published": null,
            "start_time": "2025-05-20T14: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": "Aventur showkuoro – Open Stage",
                "sv": "Aventur showkör – Open Stage",
                "en": "Aventur show choir – Open Stage"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E7555393F52DB3D4B95651B9CDE5CC5D/Aventur_showkuoro",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/E7555393F52DB3D4B95651B9CDE5CC5D/Aventur_showkor",
                "en": "http://www.espanlava.fi/en/events/event/E7555393F52DB3D4B95651B9CDE5CC5D/Aventur_show_choir_"
            },
            "description": {
                "fi": "<p>Kuoromaailman yksisarvinen Aventur on helsinkiläinen showkuoro, joka viihdyttää yleisöä omaleimaisella tyylillään.</p><p>Aventur keskittyy ohjelmistossaan pop- ja rockhitteihin a cappellaa, beatboxia ja efektejä yhdistellen. Kuoroa johtaa Sini Kaukoranta.</p><p>It’s showtime!</p>",
                "sv": "<p>Körvärldens enhörning Aventur är en showkör från Helsingfors som underhåller publiken med sin unika stil.</p><p>Aventur fokuserar i sin repertoar på pop- och rockhits och kombinerar a cappella, beatbox och olika effekter. Kören leds av Sini Kaukoranta.</p><p>It’s showtime!</p>",
                "en": "<p>The unicorn of the choir world, Aventur, is a show choir from Helsinki that entertains audiences with its one-of-a-kind style.</p><p>Serving up pop and rock anthems with a twist, Aventur fuses a cappella vocals, beatboxing, and striking sound effects into unforgettable performances. The choir is led by Sini Kaukoranta.</p><p>It’s showtime!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kuoromaailman yksisarvinen Aventur on helsinkiläinen showkuoro, joka viihdyttää yleisöä omaleimaisella tyylillään.",
                "sv": "Körvärldens enhörning Aventur är en showkör från Helsingfors som underhåller publiken med sin unika stil.",
                "en": "The unicorn of the choir world, Aventur, is a show choir from Helsinki that entertains audiences with its one-of-a-kind style."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66197",
            "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:32/?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/yso:p1278/?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 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/flikun-kevaetnaeytoekset-3885083/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 699106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-06T11:13:59.060514Z",
                    "last_modified_time": "2025-05-06T11:13:59.060533Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761795.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699106/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T11:13:58.912012Z",
            "last_modified_time": "2025-05-06T11:13:59.201895Z",
            "date_published": null,
            "start_time": "2025-05-16T14: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": "Flikun kevätnäytökset – klo 17.00 & klo 18:30"
            },
            "provider": {
                "fi": "Fliku"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/46CE96F53B950012231A4812AFD759CB/Flikun_kevatnaytokset"
            },
            "description": {
                "fi": "<p>Lämpimästi tervetuloa seuraamaan Voimisteluseura Flikun kevätnäytöstä, jossa esiintyvät seuran kaikki ikäluokat.</p><p>Kun ihana kesä nukahtaa, niin syksy tulee ja tuulettaa!<br>Kunnes talvi ottaa vahvan vallan, laittaa peitoksi valkean hallan.<br>Vaan kevät taittaa talven selän,<br>ja taikoo takaisin ihanan kesän!<br>Laura Pennanen</p><p>Näytös 1: klo 17.00 (kesto 45min)<br>Näytös 2: klo 18:30 (kesto 45 min)<br>Liput: 20 €</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lämpimästi tervetuloa seuraamaan Voimisteluseura Flikun kevätnäytöstä, jossa esiintyvät seuran kaikki ikäluokat."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66197/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64749",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 160164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-20T09:15:31.533280Z",
                    "last_modified_time": "2025-01-20T09:15:31.533300Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759781.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/160164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-20T09:15:31.469475Z",
            "last_modified_time": "2025-05-06T11:13:37.450152Z",
            "date_published": null,
            "start_time": "2025-03-15",
            "end_time": "2025-08-30",
            "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": "Huudetaanko? – Ääniaiheinen näyttely",
                "sv": "Ska vi skrika? – Utställning med ljudtema",
                "en": "Should we shout? – Exhibition about sound"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1BAB34EFC6F17105D6CF3F12973A2D17/Huudetaanko_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1BAB34EFC6F17105D6CF3F12973A2D17/Ska_vi_skrika_",
                "en": "http://www.annantalo.fi/en/events/event/1BAB34EFC6F17105D6CF3F12973A2D17/Should_we_shout_"
            },
            "description": {
                "fi": "<p>Onko nyt aika pitää meteliä?</p><p>Lukukaudella 2024–25 Annantalo on ollut äänen vallassa. Talo on soinut monin eri tavoin, kun ääniteema on avautunut näyttelyissä ja työpajoissa. Nyt on aika avata ääni ja höristää korvia, kun kauden aikana työstetyt teokset pääsevät vihdoin näytteille!</p><p>Näyttely on jatkoa syksyllä 2024 Äänen äärellä-näyttelyn myötä käynnistynyttä ääniteemaa. Oppilasryhmien teokset ovat esillä yhdessä ammattitaiteilijoiden teosten kanssa.</p><p>Mukana näyttelyssä taiteilijat <b>Tomas De Rita</b> ja <b>Kikka Rytkönen</b> sekä <b>Helsingin Katutaidetoimisto</b>.</p><p>Esillä on teoksia myös koululuokilta:<br><b>The English School 5A & 5B<br>Kulosaaren ala-asteen koulu 6D <br>Malmin peruskoulu 6C<br>Paloheinän ala-asteen koulu 6C<br>Siltamäen ala-asteen koulu 5JR<br>Töölön ala-asteen koulu 5C <br>Helsingin Juutalainen Yhteiskoulu 3-5lk<br>Vesalan peruskoulu 4B</b></p><p>sekä Annantalon oppilasryhmiltä:<br><b>Digi-Murut</b> (5-6 v) ja <b>Digi-Gurut</b> (7-9 v)<br><b>Lempivärit</b> (7-9 v) ja <b>Väriläiskät</b> (10-12 v)<br><b>Moduli</b> (7-9 v) ja <b>Skaala</b> (10-12 v)<br><b>Kontrasti</b> (11-13 v) ja <b>Kohina</b> (15-18 v)<br><b>Suti ja roiske</b> (3-4 v)<br><b>Terra</b> (10-12 v) ja <b>Engobe</b> (13-18 v)</p><p>Opettajat: <b>Jukka Järvi, Sanna Kuusisto, Janne Kärkkäinen, Noomi Ljungdell, Saana Murtti, Heli Niska, Elina Rantasuo, Harri Piispanen, Jenna Saarinen, Samuli Turunen, Miila Vainio</b></p><p>_</p><p><b>Huom!</b> Näyttelytilassa järjestetään viittomakielisiä opastuksia <b>Ti 13.5. klo 9.30-10.15 ja klo 12-12.45</b> sekä <b>Ke 14.5. klo 10-10.45</b>, jolloin näyttely on muulta yleisöltä suljettu.</p>",
                "sv": "<p>Är det dags att hålla oljud?</p><p>Under terminen 2024–25 har Annegården tagits över av ljud. Huset har ljudit på många olika sätt när ljudtemat har utvecklats i utställningar och workshoppar. Nu är det dags att öppna rösten och spetsa öronen, eftersom de verk vi har arbetat med under säsongen äntligen kommer att visas upp!</p><p>Utställningen är en fortsättning på ljudtemat som lanserades hösten 2024 med utställningen Äänen äärellä (Vid ljudet). Studerandegruppernas verk ställs ut tillsammans med verk av professionella konstnärer.</p><p>Utställningens vernissage är fredag 14.3. kl. 17–19<br>Vernissagen är gratis att delta i, och det bjuds på fantastisk konst, deltagande dansjam, popcorn och återkomsten av vår favoritmaskot B-Ö!</p><p>Välkommen med att lyssna!</p>",
                "en": "<p>Is it time to make some noise?</p><p>During the 2024–2025 term, Annantalo has been dominated by sound. The house has been ringing in many ways as the sound theme has been used at exhibitions and workshops. Now is the time to warm up your voice and perk your ears as the artworks completed during the season will finally be on display!</p><p>The exhibition is a continuation of the sound theme launched in the autumn of 2024 with the exhibition World of Sound. The works of the student groups will be displayed together with the works of professional artists.</p><p>The opening of the exhibition is on Friday 14 March at 17.00–19.00. <br>There will be amazing art, interactive dance jams, popcorn, and the return of our beloved mascot B-Ö!</p><p>Welcome to listen!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Onko nyt aika pitää meteliä?",
                "sv": "Är det dags att hålla oljud?",
                "en": "Is it time to make some noise?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64749/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aglkkfdz3y",
            "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/kultus:13/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2315/?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:p9058/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "10",
                        "sv": "10",
                        "en": "10"
                    },
                    "info_url": null,
                    "description": {
                        "fi": "Vain korttimaksu.",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:40/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2025-05-06T10:11:44.784667Z",
            "last_modified_time": "2025-05-06T10:16:32.650059Z",
            "date_published": null,
            "start_time": "2025-05-10T08:30:00Z",
            "end_time": "2025-05-10T09: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": "2025-05-07T12:00:00+03:00",
            "enrolment_end_time": "2025-05-10T11:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Testitapahtuman nimi",
                "sv": "",
                "en": ""
            },
            "provider": null,
            "info_url": {
                "fi": "https://example.org/testitapahtuma/",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testitapahtuman kuvaus</p>\n",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Testitapahtuman lyhyt kuvaus",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aglkkfdz3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23auca",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-06T09:49:43.110978Z",
            "last_modified_time": "2025-05-06T09:49:43.110998Z",
            "date_published": "2025-05-06T10:00:38.657000Z",
            "start_time": "2025-05-23T13:00:00Z",
            "end_time": "2025-05-23T14: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": "Minna Canth nukketeatteri",
                "sv": "Minna Canth  dockteater",
                "en": "Minna Canth puppet theater"
            },
            "provider": null,
            "info_url": null,
            "description": {
                "fi": "<p>Nukketeatteri Minna Canthin näytelmästä. Esitys on kaikille avoin ja ilmainen. Tervetuloa!</p>",
                "sv": "<p>Dockteater ur Minna Canths pjäs.</p>",
                "en": "<p>Puppet theater about one of Minna Canth's plays.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nukketeatteri Minna Canthin näytelmästä.",
                "sv": "Dockteater ur Minna Canths pjäs.",
                "en": "Puppet theater about one of Minna Canth's plays."
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Lava",
                "en": "Lava"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23auca/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}