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

{
    "meta": {
        "count": 19453,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=101",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=99"
    },
    "data": [
        {
            "id": "lippupiste:serie-2640080",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2640080$13774673"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714694/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714695/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579525/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579524/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579536/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579526/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579537/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579538/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579539/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579527/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579528/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579529/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579530/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579540/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579541/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579542/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579544/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579543/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579531/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579532/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579533/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579534/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579535/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579545/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579546/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13579547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774675/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774676/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13774673/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152456,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:40.968558Z",
                    "last_modified_time": "2024-09-18T10:16:40.968571Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2019/tatu-patu-hkt_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/152456/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:17:07.167088Z",
            "last_modified_time": "2025-02-17T10:19:58.372162Z",
            "date_published": null,
            "start_time": "2021-09-06T15:30:00Z",
            "end_time": "2021-12-29",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aino Havukainen - Sami Toivonen - Sami Rannila Tatu ja Patu Helsingissä Outolalainen musiikkinäytelmä Suuri näyttämö – Eläintarhantie 5 Ensi-ilta 9."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2640080"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "name": {
                "fi": "Tatu Ja Patu Helsingissä"
            },
            "description": {
                "fi": "<p>Aino Havukainen - Sami Toivonen - Sami Rannila<br><strong>Tatu ja Patu Helsingissä</strong><br><strong>Outolalainen musiikkinäytelmä</strong></p><p>Suuri näyttämö – Eläintarhantie 5<br>Ensi-ilta 9.9.2020<br>Kesto varmistuu ensi-iltaviikolla<br>4-vuotiaasta ylöspäin<br>Lastenlippu 18/23 €, Opiskelijalippu 20/22,50 € (ma-to), Eläkeläislippu 37/42 € (ma-to), Peruslippu 40/45 €</p><p>Syksyn 2021 esitykset myydään turvavälein. Tämä tarkoittaa, että turvavälien mahdollistamiseksi istuinten väliin jätetään tyhjiä paikkoja, jotka eivät ole myynnissä. Mikäli pandemiatilanne helpottuu myöhemmin merkittävästi, yleisörajoitukset puretaan ja turvaväleistä luovutaan, nämä myymättä jätetyt turvavälipaikat voidaan vapauttaa myyntiin. <br>Huomaathan, että tässä tapauksessa kahta henkilöä suurempien seurueiden välissä – alun perin tyhjiksi jätettäviksi aiotuilla paikoilla – saattaa istua ihmisiä, eivätkä seurueenne paikat siis välttämättä ole enää vierekkäin. </p><p><strong>Lasten rakastamat, Suomen suosituimmat lastenkirjahahmot saapuvat vihdoin Helsingin Kaupunginteatteriin!</strong></p><p>Outolalaiset veljekset Tatu ja Patu saapuvat Helsinkiin vierailemaan serkkunsa Jorin luona. Jori on kaikkien aikojen menestynein outolalainen, mutta niin kiireinen, että veljeksillä on täysi työ pysyä Jorin perässä. Seikkaillessaan ympäri Helsinkiä Tatu ja Patu kohtaavat monia ihmeitä kuten feissarin, liikennevalot, ravintolapäivän sekä kurahaalareihin sonnustautuneet mahdollisesti vaaralliset liivijengit.</p><p>Sami Rannilan ohjaama ja Kari Mäkirannan säveltämä musiikkinäytelmä leikittelee lastenteatterin ja musikaalien perinteillä riemukkaasti. Lapset lumoava löytöretki on täynnä vauhtia, yllättäviä käänteitä, mehukasta huumoria ja visuaalista upeutta, jota vain Kaupunginteatterin suurella näyttämöllä voidaan tarjota.<br><strong><br>OHJEISTUS VIP-LIPUN OSTAJILLE</strong><br>Aikuisten ja lasten VIP-lippu sisältää osallistumisen kulissikävelylle, jolla käydään ennen esitystä tutustumassa miltä teatterin sisällä näyttää. Ohjatun 15 minuutin kierroksen aikana tutustutaan suureen näyttämöön, sen sivunäyttämöihin ja käydään lavastamossa. Kävely lähtee suuren näyttämön naulakon päädystä aina 60 minuuttia ennen näytöksen alkamisaikaa. Kävelyn vetäjinä toimivat teatterin vahtimestarit ja yhden vetäjän ryhmän maksimikoko on 25 henkeä. Kierrokselle tulevien toivotaan olevan paikalla teatterien ulko-ovien avautuessa, kierrokselle ei pääse liittymään enää sen lähdettyä.</p><p>Johtuen teatterin sisätilojen asettelusta kulissikävely ei ole esteetön.</p><p>KULISSIKÄVELYN AIKATAULU<br>13.00 alkava näytös -&gt; ovet 11.45 -&gt; kulissikävely 12.00-12.15<br>18.30 alkava näytös -&gt; ovet 17.15 -&gt; kulissikävely 17.30 - 17.45<br>19.00 alkava näytös -&gt; ovet 17.45 -&gt; kulissikävely 18.00-18.15</p><p>VIP-lippu sisältää myös esityksen käsiohjelman, jonka voi noutaa lippua esittämällä ravintolan myyntipisteesta tai teatterin lipunmyynnistä.</p><p>Tekijät<br>Sari Haapamäki<br>Sofia Hilli<br>Juha Jokela<br>Paavo Kerosuo<br>Paavo Kääriäinen<br>Joonas Luomala<br>Kai Lähdesmäki<br>Heidi Naakka<br>Unto Nuora<br>Emilia Nyman<br>Tiina Peltonen<br>Justus Pienmunne<br>Sanna Saarijärvi<br>Inka Tiitinen<br>Antti Timonen<br>Kaisa Torkkel<br>Leenamari Unho<br>Mikko Vihma</p><p>Sami Rannila<br>Ohjaus</p><p>Kari Mäkiranta<br>Sävellys</p><p>Marjo Kuusela<br>Koreografia</p><p>Markus Tsokkinen<br>Lavastus</p><p>Elina Kolehmainen<br>Pukusuunnittelu</p><p>Janne Brelih<br>Äänisuunnittelu</p><p>Nuutti Koskinen<br>Videosuunnittelu</p><p>Petteri Heiskanen<br>Valosuunnittelu</p><p>Jaana Nykänen<br>Naamiointi</p><p>Jenny Villikka<br>Tarpeistonsuunnittelu</p><p>Henna Piirto<br>Dramaturgi</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2640080/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2548270",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2548270$13638754"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638748/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638747/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638749/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638750/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638751/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638756/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638757/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13701561/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638759/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638754/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152464,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:47.196461Z",
                    "last_modified_time": "2024-09-18T10:16:47.196473Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2020/everstinna_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/152464/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:17:06.802581Z",
            "last_modified_time": "2025-02-17T10:19:58.293972Z",
            "date_published": null,
            "start_time": "2021-10-06T16:00:00Z",
            "end_time": "2021-12-27",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Rosa Liksom - Susanna Airaksinen Everstinna Väkevä ja unohtumaton Pieni näyttämö – Eläintarhantie 5 Ensi-ilta 2."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2548270"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "name": {
                "fi": "Everstinna",
                "sv": "Everstinna"
            },
            "description": {
                "fi": "<p>Rosa Liksom - Susanna Airaksinen <strong>Everstinna</strong><br>Väkevä ja unohtumaton</p><p>Pieni näyttämö – Eläintarhantie 5<br>Ensi-ilta 2.10.2019<br>Noin 2 t 10 min, sis. väliajan<br>Suositus 16-vuotiaasta alkaen</p><p>“Everstinna on moni-ilmeisen näyttelijäntyön juhlaa. Rosa Liksomin romaani levittäytyy kaupunginteatterin näyttämölle maagisella voimalla.” Helsingin Sanomat 3.10.2019 – Lauri Meri</p><p><strong>Näytelmä kertoo hersyvän ja rajun tarinan paraateja ja univormuja ihailevan nuoren työn kasvusta itsenäiseksi, aikuiseksi ja kirjailijaksi.</strong></p><p>Isän kuoleman jälkeen isän ystävä, 28 vuotta vanhempi Eversti, täyttää nuoren runotytön ajatukset ja hän heittäytyy kaikilla aisteillaan miehen syliin. Pariskunta käy eräretkillä, Rovaniemen natsieliitin juhlissa, Mannerheimin syntymäpäivillä ja soilla naimassa. Rakkaus kipunoi kilpaa revontulien kanssa mutta saa hiljalleen yhä julmempia sävyjä.</p><p>Samalla näytelmä on tarkka ja terävä erään aikakauden analyysi. Teoksessa seurataan myös Suomen vaiheita itsenäisyyden alkutaipaleilta, sotien läpi aina nykyhetkeen asti. Eletään Neuvostoliiton ja natsi-Saksan välissä ja ollaan lujasti kallellaan jälkimmäiseen, kunnes tuo liitto kaatuu.</p><p>Lapin kirpeässä yössä kerrottu tarina kuljettaa läpi yhden naisen koko elämän sekä yhden valtion kasvukipujen. Väkevän ja unohtumattoman tarinan tulkkina on upea Heidi Herala.</p><p>Oikeuksia valvoo Agency North ja Susanna Airaksinen.</p><p><strong>HUOM! Isompi väli kartalla ei ole käytävä, vaan osa näyttämöä, eikä siitä pääse kulkemaan.</strong></p><p>Rikkaan äänimaailmansa ansiosta esitys sopii hyvin myös näkövammaisille. Teatteri tarjoaa näkövammaisille mahdollisuuden näyttämökuvaan tutustumiseen ennen esitystä. Varaa tutustumistuokio viimeistään viikkoa ennen esitystä osoitteesta info@hkt.fi.</p><p>Tekijät<br>Heidi Herala<br>Dramatisointi ja ohjaus: Susanna Airaksinen<br>Lavastus ja puvut: Vilma Mattila<br>Valosuunnittelu: Vesa Ellilä<br>Äänisuunnittelu ja sävellys: Johanna Puuperä<br>Naamiointi ja kampaukset: Aino Hyttinen<br>Dramaturgi: Merja Turunen</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2548270/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2842726",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2842726$13647124"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717173/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717174/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647101/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647103/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647102/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647106/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647125/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647127/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647126/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647107/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647108/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647109/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647129/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647110/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647111/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647112/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647130/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647116/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647115/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647117/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647118/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647119/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647120/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647122/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647132/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13647124/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152462,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:46.214432Z",
                    "last_modified_time": "2024-09-18T10:16:46.214447Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2020/hunden_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/152462/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:17:06.295758Z",
            "last_modified_time": "2025-02-17T10:19:58.224470Z",
            "date_published": null,
            "start_time": "2021-10-01T16:00:00Z",
            "end_time": "2021-12-18",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Av Simon Stephens efter en roman av Mark Haddon Den besynnerliga händelsen med hunden om natten Lilla Teatern – Georgsgatan 30 Premiär hösten 2021 Christopher ä"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2842726"
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "name": {
                "fi": "Den Besynnerliga Händelsen Med Hunden Om Natten",
                "sv": "Den Besynnerliga Händelsen Med Hunden Om Natten"
            },
            "description": {
                "fi": "<p>Esitys on ruotsinkielinen ja se tekstitetään suomeksi THEA-mobiilisovelluksen kautta. Voit ladata sovellukseen Google Play:n kautta tai App storen kautta.</p><p>Milja Mensonen<br>Mask</p>",
                "sv": "<p>Av Simon Stephens efter en roman av Mark Haddon<br><strong>Den besynnerliga händelsen med hunden om natten</strong></p><p>Lilla Teatern – Georgsgatan 30<br>Premiär hösten 2021</p><p>Christopher är femton år. Han kan räkna alla primtal till 7507 och namnen på alla huvudstäder i hela världen. Men han kan inte äta mat som är gul eller brun. Han tycker inte om att umgås med andra människor men han besitter ett unikt perspektiv på världen och tillvaron.</p><p>Då Christopher börjar nysta upp det brutala mordet på grannens hund, blottläggs också förtigna familjehemligheter som tar honom på en resa genom vanliga människors värld, som han inte kan förstå. Det blir ett vackert och känslosamt äventyr om livets under i en lekfull och visuell gestaltning.</p><p>Den besynnerliga händelsen med hunden om natten baserar sig på Mark Haddons prisbelönta roman med samma namn. Simon Stephens hyllade dramatisering har setts av över 5 miljoner människor världen runt och den har vunnit pris på Broadway och West End för både bästa och viktigaste pjäs.</p><p>Pjäsen ses nu för första gången i Helsingfors och den är Paavo Westerbergs regidebut på Lillan.</p><p>Uppföranderätt: Agency North / Colombine Teaterförlag</p><p>Aktörer<br>Alexander Wendelin<br>Ulriikka Heikinheimo<br>Vuokko Hovatta<br>Robert Kock<br>Pia Runnakko<br>Cecilia Paul, gästande från Svenska Teatern<br>Joachim Wigelius</p><p>Paavo Westerberg<br>Regi</p><p>Anna Simberg<br>Översättning</p><p>Sven Dahlberg<br>Scenografi &amp; kostym</p><p>Toni Haaranen<br>Videodesign</p><p>Ville Aaltonen<br>Ljusdesign</p><p>Antero Mansikka<br>Ljuddesign</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2842726/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2904478",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2904478$13627369"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714785/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714788/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714786/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714796/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714789/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714798/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714790/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714799/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714800/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714791/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714801/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714802/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714792/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714793/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714803/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714804/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714794/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13714795/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627323/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627340/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627341/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627324/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627343/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627345/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627344/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627325/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627346/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627347/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627326/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627328/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627329/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627352/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627330/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627353/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627355/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627331/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627332/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627358/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627333/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627359/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627361/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627334/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627335/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627362/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627364/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627363/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627336/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627365/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627367/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627366/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627337/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627338/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13627369/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152452,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:39.155684Z",
                    "last_modified_time": "2024-09-18T10:16:39.155698Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2021/hkt-baskerville_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/152452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:17:06.225441Z",
            "last_modified_time": "2025-02-17T10:19:58.142266Z",
            "date_published": null,
            "start_time": "2021-08-23T16:00:00Z",
            "end_time": "2021-12-18",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ken Ludwig – Arthur Conan Doyle Baskervillen koira Klassikkotarinan koomisesti virittynyt versio Arthur Conan Doylen Sherlock Holmes -klassikkoon Baskervillen k"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2904478"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö"
            },
            "name": {
                "fi": "Baskervillen Koira"
            },
            "description": {
                "fi": "<p><strong>Ken Ludwig – Arthur Conan Doyle<br>Baskervillen koira</strong><br>Klassikkotarinan koomisesti virittynyt versio</p><p><strong>Arthur Conan Doylen Sherlock Holmes -klassikkoon Baskervillen koira perustuvassa, Ken Ludwigin sovittamassa dekkarikomediassa yleisö pääsee nauttimaan virtuoosimaisesta näyttelijäntyöstä ja seuraamaan, miten koomikot selviävät salamannopeiden roolivaihtojen liki mahdottomasta haasteesta.</strong></p><p>Maailmankuulu mestarietsivä Sherlock Holmes kohtaa uransa merkillisimmän tapauksen. Devonin utuisilla nummilla Baskervillen suvun miehiä vainoaa kirous. Legenda kertoo Sir Hugo Baskervillen saaneen surmansa painajaismaisen hirviökoiran hampaissa. Sata vuotta myöhemmin Baskervillen perillinen löytyy mystisesti kuolleena, vierellään valtavan koiran jälkiä. Sherlock Holmes ja hänen uskollinen apurinsa Tohtori Watson alkavat tutkia mysteeriä. He kohtaavat vaarallisen vastustajan ja pian on jälleen yhden Baskervillen henki uhattuna…</p><p>Arena-näyttämöllä nähdään klassikkotarinan koomisesti virittynyt versio, jossa salamannopean dekkarikomedian arvoitusta selättävät Santeri Kinnunen, Risto Kaskilahti, Emilia Sinisalo, Sauli Suonpää ja Mikko Virtanen.</p><p>Oikeuksia valvoo Nordic Drama Corner.</p><p>**********</p><p><strong>Baskervillen koira -näytelmän ensi-ilta on syksyllä 2021, mutta ensi-illan tarkka ajankohta vahvistetaan myöhemmin. Nyt myynnissä ovat liput loka-marras-joulukuun 2021 esityksiin.</strong></p><p>Huomaathan, että syksyn 2021 esitykset myydään turvavälein. Tämä tarkoittaa, että turvavälien mahdollistamiseksi istuinten väliin jätetään tyhjiä paikkoja, jotka eivät ole myynnissä. Mikäli pandemiatilanne helpottuu myöhemmin merkittävästi, yleisörajoitukset puretaan ja turvaväleistä luovutaan, nämä myymättä jätetyt turvavälipaikat voidaan tällöin vapauttaa myyntiin.</p><p>Käytännössä kahta henkilöä suurempien seurueiden välissä – alun perin tyhjiksi jätettäviksi aiotuilla paikoilla – saattaa istua ihmisiä, eivätkä seurueenne paikat siis välttämättä ole enää vierekkäin.</p><p>Santeri Kinnunen<br>Sherlock Holmes</p><p>Risto Kaskilahti<br>Tohtori Watson</p><p>Emilia Sinisalo<br>Sauli Suonpää<br>Mikko Virtanen</p><p>Reita Lounatvuori<br>Suomennos</p><p>Sakari Hokkanen<br>Ohjaus</p><p>Katariina Kirjavainen<br>Lavastus</p><p>Elina Vättö<br>Pukusuunnittelu</p><p>Paavo Kykkänen<br>Valosuunnittelu</p><p>Jaakko Virmavirta<br>Äänisuunnittelu</p><p>Aino Hyttinen<br>Naamioinnin suunnittelu</p><p>Sanna Niemeläinen<br>Dramaturgi</p>",
                "sv": "<p>Santeri Kinnunen<br>Sherlock Holmes</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2904478/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2842954",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2842954$13638936"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717180/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638927/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638928/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638929/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638930/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638931/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638932/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638933/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638935/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638936/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:42.623769Z",
                    "last_modified_time": "2024-09-18T10:16:42.623782Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2020/hkt-saikkua_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/152459/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:17:05.433206Z",
            "last_modified_time": "2025-02-17T10:19:58.044958Z",
            "date_published": null,
            "start_time": "2021-09-14T16:00:00Z",
            "end_time": "2021-12-15",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mikko Kivinen - Ville Keskilä - Kalle Pylvänäinen - Ismo Leikola Saikkua, kiitos! OSA 3 Nyt entistä hauskempi! Arena-näyttämö – Hämeentie 2 Ensi-ilta 27."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2842954"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö"
            },
            "name": {
                "fi": "Saikkua, Kiitos! Osa 3"
            },
            "description": {
                "fi": "<p>Mikko Kivinen - Ville Keskilä - Kalle Pylvänäinen - Ismo Leikola<br><strong>Saikkua, kiitos! OSA 3</strong><br>Nyt entistä hauskempi!</p><p>Arena-näyttämö – Hämeentie 2<br>Ensi-ilta 27.2.2020<br>Noin 2 t, sis. väliajan</p><p>Suomalainen terveydenhuolto lääkäreineen ja potilaineen on aiheena todellinen runsaudensarvi, josta riittää yhä uutta kerrottavaa ja naurut kirvoittavaa huumoria – ja nyt jos koskaan tekee hyvää saada nauraa kaikelle tälle! Niinpä Saikkua, kiitos! ja Lisää saikkua, kiitos! -menestysesitykset saavat kaivatun jatko-osan: Saikkua, kiitos! OSA 3.</p><p>Sama tuttu hulvaton työryhmä jatkaa kaikille suomalaisille samaistuttavien aiheiden käsittelyä hervottoman sketsihuumorin keinoin. Otto Kanervan ohjaamaa esitystä täydentää oivallisesti itsensä Ismo Leikolan kirjoittamat laulut, joita loistavat näyttelijät Mikko Kivinen, Ville Keskilä ja Kalle Pylvänäinen tulkitsevat antaumuksella.</p><p>Tuotanto Iltama Oy</p><p>Ratkiriemukkaat Saikkua, kiitos! ja Lisää saikkua, kiitos! -esitykset ovat keränneet jo lähes 200 000 katsojaa!</p><p>Tekijät<br>Ohjaus yhdessä työryhmän kanssa: Otto Kanerva<br>Laulut: Ismo Leikola<br>Lavalla: Mikko Kivinen, Ville Keskilä, Kalle Pylvänäinen</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2842954/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2906163",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2906163$13638565"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717160/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717161/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717159/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717166/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717162/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717168/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717163/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717169/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13717165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638566/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638567/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638568/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638569/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638557/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638571/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638570/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638558/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638579/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638581/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638580/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638559/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638572/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638560/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638561/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638575/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638562/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638576/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638577/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638563/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638565/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152457,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:41.042910Z",
                    "last_modified_time": "2024-09-18T10:16:41.042923Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2021/paahtimo_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/152457/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:17:00.663881Z",
            "last_modified_time": "2025-02-17T10:19:57.909666Z",
            "date_published": null,
            "start_time": "2021-09-06T16:00:00Z",
            "end_time": "2021-11-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mikko Reitala Paahtimo Rooleissa: Vappu Nalbantoglu, Sanna June Hyde, Riitta Havukainen, Pertti Koivula, Jarkko Niemi ja Jasir Osman Ohjaaja: Sini Pesonen Kolme"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2906163"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "name": {
                "fi": "Paahtimo"
            },
            "description": {
                "fi": "<p><strong>Mikko Reitala</strong><br><strong>Paahtimo</strong></p><p>Rooleissa: Vappu Nalbantoglu, Sanna June Hyde, Riitta Havukainen, Pertti Koivula, Jarkko Niemi ja Jasir Osman<br>Ohjaaja: Sini Pesonen</p><p>Kolmekymppisellä Annilla on kaksi loppututkintoa ja erinomaiset arvosanat, silti työnhaussa jokin aina sakkaa. Persoonalliselle ja sosiaalisesti lahjakkaalle sisarpuolelle Olivialle sen sijaan satelee työpaikkoja ja mahdollisuuksia. Kun Anni hakee unelmiensa työpaikkaa artesaanikahveja valmistavasta pienpaahtimo Kofista, väärinkäsitys tarjoaa odottamattoman tilaisuuden yhdistää Annin osaamisen ja Olivian persoonan.</p><p>Paahtimo on Mikko Reitalan kirjoittama riemukas komedia siitä, mitä menestyminen tämän päivän työelämässä vaatii, kun mikään ei enää ole sitä miltä näyttää. Aivan vastapaahdettu kotimainen komedia nauraa lempeästi työpaikoilla tapahtuville sukupolvien ja -puolien törmäyksille ja kysyy, riittääkö pelkkä osaaminen vai onko itsensä brändääminen jo nykyään kansalaistaito.</p><p>Ensi-ilta: syksylllä 2021 studio Pasila</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2906163/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2856914",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2856914$13638671"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638665/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638666/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638667/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638671/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:47.562119Z",
                    "last_modified_time": "2024-09-18T10:16:47.562131Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2020/turvamies_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/152465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:16:58.059853Z",
            "last_modified_time": "2025-02-17T10:19:57.840004Z",
            "date_published": null,
            "start_time": "2021-10-07T16:00:00Z",
            "end_time": "2021-11-15",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pasi Lampela Turvamies Ohjaus: Pasi Lampela Rooleissa: Martti Suosalo ja Katja Küttner Varakkaan teollisuussuvun raikulipoika Antti Granqvist valmistautuu elämä"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2856914"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö"
            },
            "name": {
                "fi": "Turvamies"
            },
            "description": {
                "fi": "<p>Pasi Lampela Turvamies </p><p>Ohjaus: Pasi Lampela <br>Rooleissa: Martti Suosalo ja Katja Küttner </p><p>Varakkaan teollisuussuvun raikulipoika Antti Granqvist valmistautuu elämänsä treffeille, mutta hänet yllättääkin isän palkkaama turvamies, joka sanoo, että nyt ei lähdetä yhtään mihinkään. Antin perhettä kiristetään, ja perheenjäsenten henki on vaarassa. Tästä seuraa kahden täysin erilaisista lähtökohdista nousevan henkilön yhteentörmäys. Turvamies on vauhdikas ja räväkkä komedia nykymaailmasta ja niistä hahmoista, joita voimme nähdä ympärillämme hyvinkin korkeissa viroissa.</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2856914/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-2906195",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&fun=evdetail&doc=evdetailb&key=2906195$13638723"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638704/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638706/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638707/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638705/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638709/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638711/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638718/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638719/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638712/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638713/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638714/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638720/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638721/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638715/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638716/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638717/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638722/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:13638723/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:39.954824Z",
                    "last_modified_time": "2024-09-18T10:16:39.954838Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2021/sorjen_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/152454/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T10:16:45.175938Z",
            "last_modified_time": "2025-02-17T10:19:57.780130Z",
            "date_published": null,
            "start_time": "2021-08-30T16:00:00Z",
            "end_time": "2021-09-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Anna Takanen Sörjen som blev På scen : Anna Takanen och Harri Kuusijärvi Regi: Mikaela Hasán Anna Takanens pappa var ett finskt krigsbarn, och i Sörjen som blev"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/tickets.html?affiliate=adv&doc=erdetaila&fun=erdetail&erid=2906195"
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "name": {
                "sv": "Sörjen Som Blev"
            },
            "description": {
                "fi": "<p>Sinä olet suruni, kertomus sotalapsesta ja sotalapsen lapsesta <br>Ruotsalainen teatteritähti Anna Takanen kerii auki isänsä tarinaa sekä sitä, mitä on olla sotalapsen lapsi. </p><p>Lisäys: Esitys on ruotsinkielinen ja se tekstitetään suomeksi THEA-mobiilisovelluksen kautta.</p><p>HUOM! VAIN 19 ESITYSTÄ!<br></p>",
                "sv": "<p>Anna Takanen<br><strong>Sörjen som blev</strong></p><p>På scen : Anna Takanen och Harri Kuusijärvi<br>Regi: Mikaela Hasán</p><p>Anna Takanens pappa var ett finskt krigsbarn, och i Sörjen som blev tar hon med oss på en omskakande resa i historien. I en intim och personlig föreställning nystar hon ömsint, långsamt och smärtsamt upp pappans familjehistoria, och det komplicerade i att vara ett krigsbarns barn.</p><p>– Det tar fyra generationer innan ett krig går ur en familj. Jag är den tredje generationen, säger Anna Takanen.</p><p>Premiär: 1.9.2021 Lilla Teatern</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2906195/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65142",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-19448992",
                        "sv": "https://www.lippu.fi/event/name-19448992",
                        "en": "https://www.lippu.fi/event/name-19448992"
                    },
                    "price": {
                        "fi": "45 €",
                        "sv": "45 €",
                        "en": "45 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153398,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T11:14:24.686572Z",
                    "last_modified_time": "2024-12-12T11:14:24.686592Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763177.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153398/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T11:14:24.640090Z",
            "last_modified_time": "2025-02-15T14:14:59.725314Z",
            "date_published": null,
            "start_time": "2025-10-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mamba-yhtyeen laulaja-lauluntekijä Tero Vaaran 60-vuotisjuhlakonsertti.",
                "sv": "60-årsjubileumskonsert för sångaren och låtskrivaren Tero Vaara från bandet Mamba.",
                "en": "Mamba band’s singer-songwriter Tero Vaara’s 60th anniversary concert."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8C2D0961657D4D8085A72FE5829E5109/Mamba_Tero_Vaara_60_vuotta",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8C2D0961657D4D8085A72FE5829E5109/Mamba_Tero_Vaara_60_vuotta",
                "en": "http://www.savoyteatteri.fi/en/events/event/8C2D0961657D4D8085A72FE5829E5109/Mamba_Tero_Vaara_60_vuotta"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mamba – Tero Vaara 60 vuotta",
                "sv": "Mamba – Tero Vaara 60 vuotta",
                "en": "Mamba – Tero Vaara 60 vuotta"
            },
            "description": {
                "fi": "<p>Mamba-yhtyeen laulaja-lauluntekijä Tero Vaaran 60-vuotisjuhlakonsertti.</p><p>Ohjelmistossa Valokuvia, Älä jätä minua, Lauantai-ilta, Vielä on kesää jäljellä, Mitä yhdestä särkyneestä sydämestä…<br>Juha Vainio -palkittu Mamba-yhtyeen solisti, lukuisten koskettavien hittien nikkari avaa juhlakonsertissaan biisien taustoja ja tarjoaa juhlakokoonpanonsa voimin yhtyeen valitut klassikot uusina sovituksina.<br> <br>Kesto n. 2 h, sisältää väliajan.<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>60-årsjubileumskonsert för sångaren och låtskrivaren Tero Vaara från bandet Mamba.</p><p>I programmet ingår Valokuvia, Älä jätä minua, Lauantai-ilta, Vielä on kesää jäljellä, Mitä yhdestä särkyneestä sydämestä...<br>På jubileumskonserten berättar Mamba-solisten, Juha Vainio-pristagaren och skaparen av många rörande hittar om bakgrunden till låtarna, och bjuder på nya arrangemang av bandets utvalda klassiker tillsammans med sin jubileumsensemble.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett F18 servering av alkoholdrycker. Ingen åldersgräns på balkongen, ingen servering av alkoholdrycker.</p>",
                "en": "<p>Mamba band’s singer-songwriter Tero Vaara’s 60th anniversary concert.</p><p>The repertoire will include songs like Valokuvia, Älä jätä minua, Lauantai-ilta, Vielä on kesää jäljellä, Mitä yhdestä särkyneestä sydämestä…<br>Juha Vainio -awarded soloist of the band Mamba, the maker of numerous touching hits, will open up the backgrounds of the songs in his festive concert and performs the band’s selected classics as new arrangements with his festive line-up.</p><p>Duration: approx. 2 h, including an intermission.</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p>"
            },
            "provider": {
                "fi": "Mamba Oy",
                "sv": "Mamba Oy",
                "en": "Mamba Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65142/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65032",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-19481607",
                        "sv": "https://www.lippu.fi/event/name-19481607",
                        "en": "https://www.lippu.fi/event/name-19481607"
                    },
                    "price": {
                        "fi": "11,10-35,40 €, ovelta 41,90 €",
                        "sv": "11,10-35,40 €, ovelta 41,90 €",
                        "en": "11,10-35,40 €, ovelta 41,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153100,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:35.407741Z",
                    "last_modified_time": "2024-11-27T11:14:35.407760Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763661.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153100/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:35.385322Z",
            "last_modified_time": "2025-02-15T14:14:59.600213Z",
            "date_published": null,
            "start_time": "2025-10-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8F1C404021EF84D16E9A7CBB9F6176CA/Netta_Skog_The_Greatest_Movies_Of_All_Time",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8F1C404021EF84D16E9A7CBB9F6176CA/Netta_Skog_The_Greatest_Movies_Of_All_Time",
                "en": "http://www.savoyteatteri.fi/en/events/event/8F1C404021EF84D16E9A7CBB9F6176CA/Netta_Skog_The_Greatest_Movies_Of_All_Time"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Netta Skog: The Greatest Movies Of All Time",
                "sv": "Netta Skog: The Greatest Movies Of All Time",
                "en": "Netta Skog: The Greatest Movies Of All Time"
            },
            "description": {
                "fi": "<p>Maailman paras digiharmonikan soittaja Netta Skog lähtee lokakuussa 2025 The Greatest Movies Of All Time -kiertueelle, jossa artisti esittää suurimpia elokuvasävelmiä vain haitarista saatavilla äänillä. Eokuvamusiikin ystävänä tunnettu Netta valmistelee kiertuettaan parhaillaan ja sovittaa kappaleita oman näköisekseen, sekä vahvistaa yleisön kokemusta suunnittelemalla visuaaleja konsertteihin. Kiertueen ohjelmistossa kuullaan kappaleita mm. Pirates Of The Caribbean, Leijonakuningas ja Titanic -elokuvista.</p><p>\"Rakastan leffamusaa yli kaiken ja oikeastaan tuntuu, että tuo mun digiharmonikka on oikein luotu siihen genreen! Haluan että ihmiset pystyvät näkemään elokuvat mielessään pelkän musiikin avulla, joten konsertissa ei tulla kuulemaan pelkästään elokuvien tunnuskappaleita, vaan melkein kokonaisia elokuvan soundtrackeja. Tää tulee olee maailman parasta”, iloitsee Netta tulevasta kiertueestaan.</p><p>Netta Skog on suomalainen, useita kertoja palkittu ja arvostettu harmonikan soittaja. Artisti on toiminut myös muusikkona mm. Turisas, Ensiferum -yhtyeissä, sekä vieraillut Mokoman, Nightwishin ja Children Of Bodomin kiertueilla. Keväällä 2022 Netta nähtiin esiintymässä Cirque du Soleilin Fuzion esityksen orkesterissa.</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>I oktober 2025 ger sig världens bästa digitala dragspelare Netta Skog ut på turnén The Greatest Movies Of All Time, där hon framför de största filmmelodierna enbart med ljud från dragspelet. Netta är känd som en vän av filmmusik, och förbereder för närvarande sin turné genom att arrangera låtar efter sin egen vision och förhöja publikens upplevelse genom att designa visualiseringar för konserterna. Programmet för turnén omfattar låtar från bland annat filmerna Pirates Of The Caribbean, Lejonkungen och Titanic.</p><p>“Jag älskar filmmusik mer än allt annat, och upplever egentligen att det digitala dragspelet är som gjort för den genren! Jag vill att folk ska kunna se filmerna framför sig enbart genom musiken, så på konserten får vi inte bara höra signaturlåtar från filmerna, utan nästan hela soundtrack. Det här kommer att bli fantastiskt”, gläder sig Netta inför den kommande turnén.</p><p>Netta Skog är en flerfaldigt prisbelönt och mycket uppskattad finländsk dragspelare. Artisten har också fungerat som musiker i band såsom Turisas, Ensiferum och har också turnerat med Mokoma, Nightwish och Children Of Bodom. Under våren 2022 sågs Netta uppträda i orkestern till Cirque du Soleils uppvisning Fuzion.</p><p>Längd ca 2 h, inklusive paus</p>",
                "en": "<p>The world's best digital harmonica player, Netta Skog, will embark on The Greatest Movies Of All Time tour in October 2025, where the artist will perform the biggest movie tunes with only the sounds from the accordion. Known as a lover of cinematic music, Netta is currently preparing her tour and adapting the songs to her own likeness, as well as strengthening the audience's experience by designing visuals for concerts. The tour will feature songs from such films as Pirates Of The Caribbean, The Lion King and Titanic.</p><p>“I love movie music above all else and actually feel that my digital harmonica is created for that genre! I want people to be able to see films in their minds with just music, so the concert will not only be about the theme songs of the films, but almost entire soundtracks of the film. This will be the best experience in the world,” Netta says about her upcoming tour.</p><p>Netta Skog is an awarded Finnish accordion player who has been awarded several times. Among others, the artist has also worked as a musician in Turisas and Ensiferum bands, and has visited Mokoma, Nightwish and Children Of Bodom tours. In spring 2022, Netta was seen performing in the orchestra of Cirque du Soleil's Fuzio performance.</p><p>Duration: approx. 2 h, including an intermission</p>"
            },
            "provider": {
                "fi": "Dex Viihde Oy",
                "sv": "Dex Viihde Oy",
                "en": "Dex Viihde Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65032/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64682",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-19276114",
                        "sv": "https://www.lippu.fi/event/name-19276114",
                        "en": "https://www.lippu.fi/event/name-19276114"
                    },
                    "price": {
                        "fi": "39,40/43,40 €",
                        "sv": "39,40/43,40 €",
                        "en": "39,40/43,40 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152777,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-10T13:16:21.294169Z",
                    "last_modified_time": "2024-10-10T13:16:21.294187Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759204.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152777/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-10T10:15:25.068690Z",
            "last_modified_time": "2025-02-15T14:14:59.410436Z",
            "date_published": null,
            "start_time": "2025-09-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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaseva on legendaarinen suomalainen pop rock -yhtye, joka tunnetaan herkästä musiikistaan ja stemmalaulustaan.",
                "sv": "Kaseva är ett legendariskt finländskt poprockband, känt för sin känsliga musik och sång i stämmor.",
                "en": "Kaseva is a legendary Finnish pop rock band known for its delicate music and stem vocals."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7C97E7C0D50073E2AEE1E672ACC18628/Kaseva_Kun_maailma_elaa_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7C97E7C0D50073E2AEE1E672ACC18628/Kaseva_Kun_maailma_elaa_",
                "en": "http://www.savoyteatteri.fi/en/events/event/7C97E7C0D50073E2AEE1E672ACC18628/Kaseva_Kun_maailma_elaa_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kaseva: Kun maailma elää",
                "sv": "Kaseva: Kun maailma elää",
                "en": "Kaseva: Kun maailma elää"
            },
            "description": {
                "fi": "<p>Kaseva on legendaarinen suomalainen pop rock -yhtye, joka tunnetaan herkästä musiikistaan ja stemmalaulustaan.</p><p>Yhtyeen lukuisat hitit (Mari, Vanha mies, Tyhjää, Striptease tanssija, Pena, Kun maailma elää jne.) ovat osa kansallista muistiamme alkaen jo vuodesta 1974 lähtien.</p><p>Kasevan ensimmäinen aktiivikausi käsitti vuodet 1974-86 ja 2000-luvun alussa yhtye kasattiin uudelleen esiintymään konserttisaleihin ja klubeihin ympäri Suomen.<br>Uudella kymmenluvulla hetken hiljaiseloa viettänyt Kaseva palasi taas keikoille loppuvuodesta 2015.<br>Nyttemmin yhtyeen alkuperäisen solistin Mikko Jokelan paikalle on liittynyt Mikon itsensä valtuuttamana Popedan alkuperäisen kitaristin Arwo Mikkosen poika Matti Mikkonen.</p><p>Kasevan klassikkobiisit elävät edelleen ja bändin arvokas herkkyys sekä karisma on vain kasvanut vuosien saatossa. Kuulijakunta ulottuu jo kolmanteen sukupolveen.</p><p>Kasevan vuoden 2024 menestyskonsertit saavat nyt paljon toivottua jatkoa Kasevan - Kun maailma elää -kiertueen myötä.</p><p>Vuosi 2025 tulee olemaan jälleen uusi virstanpylväs Kasevan monilukuisessa tarinassa!</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>Kaseva är ett legendariskt finländskt poprockband, känt för sin känsliga musik och sång i stämmor.</p><p>Bandets talrika hittar (Mari, Vanha mies, Tyhjää, Striptease tanssija, Pena, Kun maailma elää, etc.) har varit en del av vårt nationella minne sedan år 1974.</p><p>Kasevas första aktiva period inföll åren 1974–86, och i början av 2000-talet samlades bandet på nytt för att uppträda i konsertsalar och klubbar runt om i Finland.<br>På det nya tiotalet genomlevde Kaseva åter en kort paus, och återvände med spelningar i slutet av 2015.<br>Med Mikko Jokelas eget godkännande har numera Matti Mikkonen, son till Popedas ursprungliga gitarrist Arwo Mikkonen, ersatt bandets ursprungliga solist Mikko Jokela.</p><p>Kasevas klassiska låtar lever vidare och bandets dyrbara känslighet och karisma har bara ökat med åren. Publiken är nu inne på sin tredje generation.</p><p>Kasevas framgångsrika konserter år 2024 får nu en efterlängtad fortsättning med turnén Kaseva – Kun maailma elää.</p><p>År 2025 kommer att bli ytterligare en milstolpe i Kasevas mångfacetterade historia!</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>",
                "en": "<p>Kaseva is a legendary Finnish pop rock band known for its delicate music and stem vocals.</p><p>The band's numerous hits (Mari, Vanha mies, Tyhjää, Striptease tanssija, Pena, Kun maailma elää etc.) have been part of our national memory since 1974.</p><p>Kaseva’s first active season covered the years 1974-86, and in the early 2000s the band was reassembled to perform in concert halls and clubs all over Finland.<br>Kaseva, who spent some quiet time in the new decade, returned to the gigs again at the end of 2015.<br>Nowadays, Matti Mikkonen, son of Popeda's original guitarist Arwo Mikkonen, has joined the band’s the band to replace the original soloist Mikko Jokela, authorised by Mikko himself.</p><p>Kaseva’s classics are still alive and the band’s precious sensitivity and charisma has only grown over the years. The audience extends to the third generation.</p><p>Kaseva’s 2024 success concerts are now getting a much-needed follow-up with the Kaseva - Kun maailma elää tour.</p><p>The year 2025 will be yet another milestone in the multifaceted story of Kaseva!</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit</p>"
            },
            "provider": {
                "fi": "Dex Viihde Oy",
                "sv": "Dex Viihde Oy",
                "en": "Dex Viihde Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64682/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63906",
            "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: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-18737491",
                        "sv": "https://www.lippu.fi/event/name-18737491",
                        "en": "https://www.lippu.fi/event/name-18737491"
                    },
                    "price": {
                        "fi": "24,50 €",
                        "sv": "24,50 €",
                        "en": "24,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151312,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-28T13:12:46.260734Z",
                    "last_modified_time": "2024-05-28T13:12:46.260756Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751277.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151312/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-28T13:12:46.235695Z",
            "last_modified_time": "2025-02-15T13:14:48.448850Z",
            "date_published": null,
            "start_time": "2025-05-05T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nalleperheen pikkunallet Ti-Ti Nalle, Tau Nalle, Trioli ja pikkuinen Ti-Ri Vauva ovat seikkailumielellä!",
                "sv": "Småbjörnarna i teddyfamiljen Ti-Ti Nalle, Tau Nalle, Trioli och lilla Ti-Ri Vauva är på äventyrshumör!",
                "en": "Ti-Ti Teddy Bear, Tau Teddy Bear, Trioli and little Ti-Ri Baby are in the mood for adventure!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F456E9EA1FB73C12D657F81AD93EF602/Ti-Ti_Nalle-konsertti_Pikkunallejen_seikkailu",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F456E9EA1FB73C12D657F81AD93EF602/Ti-Ti_Nalle-konsert_Smabjornarnas_aventyr",
                "en": "http://www.savoyteatteri.fi/en/events/event/F456E9EA1FB73C12D657F81AD93EF602/Ti-Ti_Teddy_Bear_concert_the_adventure_of_the_little_teddy_bears"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ti-Ti Nalle-konsertti, Pikkunallejen seikkailu",
                "sv": "Ti-Ti Nalle-konsert, Småbjörnarnas äventyr",
                "en": "Ti-Ti Teddy Bear concert, the adventure of the little teddy bears"
            },
            "description": {
                "fi": "<p>Nalleperheen pikkunallet Ti-Ti Nalle, Tau Nalle, Trioli ja pikkuinen Ti-Ri Vauva ovat seikkailumielellä!</p><p>Ullakko on mielenkiintoinen ja salaperäinen paikka, minne johtaa pitkät portaat...mitähän siellä mahtaa olla?</p><p>Kuka kolistelee vanhan Nalletalon takapihalla? Pikkunallet pakkaavat reppunsa ja lähtevät masut täynnä kaurapuuroa kohti seikkailujen päivää!</p><p>Lähde mukaan riemukkaaseen matkaan Riitan ja nallejen kanssa!</p><p>Seikkailussa mukana myös Hirsimetsän muita asukkaita. Kuka kurkkaa Hirsimetsän korkeimman puun yläoksalta?</p><p>Koko perheen musiikkiseikkailu, missä jokainen saa olla mukana laulamassa, leikkimässä ja tanssimassa.”</p><p>Kesto n. 1 tunti, jonka jälkeen meet&greet ja Nallehalimiset!</p><p>Ikäsuositus: 0 vuodesta eteenpäin! Koko perheen musiikkiteatteria.<br>Alle 1vuotiaat pääsevät ilmaiseksi vanhempien sylissä.</p><p>Konsertissa Ti-Ti tuotteiden myynti.</p><p>Käsikirjoitus ja ohjaus Riitta Korpela</p>",
                "sv": "<p>Småbjörnarna i teddyfamiljen Ti-Ti Nalle, Tau Nalle, Trioli och lilla Ti-Ri Vauva är på äventyrshumör!</p><p>Vinden är en intressant och mystisk plats, dit man kan komma längs en lång trappa... vad kan där uppe finnas?</p><p>Vem skramlar på bakgården till det gamla Nallehuset? Småbjörnarna packar sina ryggsäckar och ger sig ut på en äventyrlig dag med magarna fulla av havregrynsgröt!</p><p>Följ med Riitta och teddybjörnarna på en glad resa!</p><p>Med på äventyr finns även andra invånare i Hirsimetsä-skogen. Vem är det som kikar ner från de högsta grenarna i det högsta trädet i Hirsimetsä-skogen?</p><p>Ett musikaliskt äventyr för hela familjen, där alla får vara med och sjunga, spela och dansa.</p><p>Längd ca 1 timme, följt av meet&greet och björnkramar!</p><p>Åldersrekommendation: 0 år och uppåt! Musikteater för hela familjen.<br>Fritt inträde för barn under 1 år i föräldrarnas famn.</p><p>Ti-Ti-produkter finns till försäljning på konserten.</p><p>Manus och regi Riitta Korpela</p>",
                "en": "<p>Ti-Ti Teddy Bear, Tau Teddy Bear, Trioli and little Ti-Ri Baby are in the mood for adventure!</p><p>The attic is an interesting and mysterious place, where do the long stairs lead...what do you think is there?</p><p>Who rattles around in the backyard of the old Teddy House? The little teddy bears pack their backpacks and set off for a day of adventures with their tummies full of oatmeal!</p><p>Join us on a hilarious journey with Riitta and the teddy bears!</p><p>Other residents of Hirsimetsä also participate in the adventure. Who takes a peek from the top of the tallest tree in Hirsimetsä?</p><p>A musical adventure for the whole family, where everyone can take part in singing, playing and dancing.”</p><p>Duration approx. 1 hour, followed by meet&greet and Teddy Bear hugs!</p><p>Age recommendation: From 0 years onwards! Music theatre for the whole family.<br>Children under 1 year get free access in the arms of their parents.</p><p>Sales of Ti-Ti products at the concert.</p><p>Scriptwriting and directing Riitta Korpela</p>"
            },
            "provider": {
                "fi": "Ti-Ti Tuotanto Oy 2024",
                "sv": "Ti-Ti Tuotanto Oy 2024",
                "en": "Ti-Ti Tuotanto Oy 2024"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63906/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64719",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/19299542",
                        "sv": "https://www.lippu.fi/event/19299542",
                        "en": "https://www.lippu.fi/event/19299542"
                    },
                    "price": {
                        "fi": "45,90 €",
                        "sv": "45,90 €",
                        "en": "45,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152824,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-16T09:15:35.008765Z",
                    "last_modified_time": "2024-10-16T09:15:35.008783Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759325.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152824/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-16T09:15:34.959599Z",
            "last_modified_time": "2025-02-15T13:14:46.859160Z",
            "date_published": null,
            "start_time": "2025-04-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kake Randelin 70-vuotisjuhlakiertueelle!",
                "sv": "Kake Randelin på 70-årsjubileumsturné!",
                "en": "Kake Randelin on a 70th anniversary tour!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/08F62E3657FA57D504CCDF2319891FF4/Kake_Randelin_70_vuotta",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/08F62E3657FA57D504CCDF2319891FF4/Kake_Randelin_70_vuotta",
                "en": "http://www.savoyteatteri.fi/en/events/event/08F62E3657FA57D504CCDF2319891FF4/Kake_Randelin_70_vuotta"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kake Randelin 70 vuotta",
                "sv": "Kake Randelin 70 vuotta",
                "en": "Kake Randelin 70 vuotta"
            },
            "description": {
                "fi": "<p>Kake Randelin 70-vuotisjuhlakiertueelle!</p><p>Täysiä katsomoita ympäri Suomen valloittanut <b>Kake Randelin</b> täyttää tammikuussa 70 vuotta ja lähtee sen kunniaksi mittavalle konserttisalikiertueelle ympäri Suomen. Kiertue alkaa Turun Logomosta 21. maaliskuuta ja päättyy Porvoon Taidetehtaalle 26. huhtikuuta. Muut kiertuepaikkakunnat ovat Pori, Ähtäri, Kokkola, Oulu, Kuopio, Kouvola, Mikkeli, Hyvinkää, Jyväskylä, Varkaus, Tampere ja Helsinki.</p><p>Kiertueen ohjelmisto koostuu Randelinin suurimmista suosikeista, joihin lukeutuvat muun muassa tuoreeksi kestohitiksi noussut, yhdessä <b>Portion Boysin</b> kanssa tehty <i>Juhannusyö</i>, <b>JVG</b>:n <i>Amatimies</i> eli <i>Pakko painaa pitkää päivää</i> -kappaleen sämpläys sekä jo vuosien takaiset <i>Nasta pimu, Tarja, Avaa hakas, Jannu huoleton, Tilipäivä koittaa</i> ja <i>Kielletyt tunteet</i>.</p><p>Kake Randelin täyttää 70 vuotta 26. tammikuuta 2025. Hän on todellinen ”koko Suomen Kake”, sillä hänen yleisönsä muodostuu kaikenikäisistä ihailijoista.</p><p>Randelin on tähän mennessä julkaissut yli 20 albumia. Hän oli pop jo 1970-luvulla, ja hän on kiistämättä pop yhäkin. Randelin on ahkera keikkailija ja yksi maamme kysytyimmistä kevyen musiikin artisteista.</p><p>Kesto n. 90 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>Kake Randelin på 70-årsjubileumsturné!</p><p>Kake Randelin, som har hänfört slutsålda läktare över hela Finland, fyller 70 år i januari. För att fira jubileumsåret ger han sig ut på en omfattande konsertturné runt om i Finland. Turnén inleds på Logomo i Åbo den 21 mars och avslutas på Konstfabriken i Borgå den 26 april. Övriga turnéorter är Björneborg, Ähtäri, Karleby, Uleåborg, Kuopio, Kouvola, S:t Michel, Hyvinge, Jyväskylä, Varkaus, Tammerfors och Helsingfors.</p><p>Turnéprogrammet består av Randelins största favoriter, som bland annat inkluderar den nya klassikern Juhannusyö, som han gjorde tillsammans med Portion Boys, JVG:n Amattimies eller samplingen av låten Pakko painaa pitkää päivää, samt äldre låtar såsom Nasta pimu, Tarja, Avaa hakas, Jannu huoleton, Tilipäivä koittaa och Kielletyt tunteet.</p><p>Kake Randelin fyller 70 år den 26 januari 2025. Eftersom hans publik består av fans i alla åldrar är han verkligen “hela Finlands Kake”.</p><p>Randelin har hittills gett ut mer än 20 album. Han var pop redan på 1970-talet, och han är onekligen fortfarande pop. Randelin är en flitigt turnerande artist och en av landets mest eftertraktade artister inom lätt musik.</p><p>Längd ca 90 min, utan paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>",
                "en": "<p>Kake Randelin on a 70th anniversary tour!</p><p>Kake Randelin, who played to full audiences all over Finland, will turn 70 in January and will embark on an extensive concert hall tour all over Finland. The tour will starts at Logomo Turku on 21 March and end at Porvoo Art Factory on 26 April. Other tour locations are Pori, Ähtäri, Kokkola, Oulu, Kuopio, Kouvola, Mikkeli, Hyvinkää, Jyväskylä, Varkaus, Tampere and Helsinki.</p><p>The tour’s repertoire consists of Randelin’s biggest favourites, which include Juhannusyö, performed together with Portion Boys, the sampling of JVG’s Amatimies eli Pakko painaa pitkää päivää, as well as Nasta pimu, Tarja, Avaa hakas, Jannu huoleton, Tilipäivä koittaa and Kielletyt tunteet from years ago.</p><p>Kake Randelin will turn 70 years on 26 January 2025. He is a true “Kake of all Finland”, as his audience consists of admirers of all ages.</p><p>Randelin has released more than 20 albums so far. He was a pop back in the 1970s, and he’s undeniably a pop still. Randelin is active in performing on gigs and one of the most sought-after light music artists in our country.</p><p>Duration: around 90 min, no intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>"
            },
            "provider": {
                "fi": "A Duuri Oy",
                "sv": "A Duuri Oy",
                "en": "A Duuri Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64719/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64752",
            "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: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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/19338824",
                        "sv": "https://www.lippu.fi/event/19338824",
                        "en": "https://www.lippu.fi/event/19338824"
                    },
                    "price": {
                        "fi": "40,90 €",
                        "sv": "40,90 €",
                        "en": "40,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152866,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-23T16:15:08.754460Z",
                    "last_modified_time": "2024-10-23T16:15:08.754478Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759654.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152866/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-22T15:16:53.890833Z",
            "last_modified_time": "2025-02-15T13:14:46.172169Z",
            "date_published": null,
            "start_time": "2025-04-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tanssi vie kaupungin sykkeeseen keväällä 2025",
                "sv": "Mot stadens puls med dans våren 2025",
                "en": "Dance takes to the beat of the city in spring 2025"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/083C64A02E65DA87C30B2CCB3A666771/Tanssien_Tahtiin_Show",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/083C64A02E65DA87C30B2CCB3A666771/Tanssien_Tahtiin_Show",
                "en": "http://www.savoyteatteri.fi/en/events/event/083C64A02E65DA87C30B2CCB3A666771/Tanssien_Tahtiin_Show"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssien Tähtiin Show",
                "sv": "Tanssien Tähtiin Show",
                "en": "Tanssien Tähtiin Show"
            },
            "description": {
                "fi": "<p>Tanssi vie kaupungin sykkeeseen keväällä 2025</p><p>Tanssien Tähtiin Show on vakiinnuttanut paikkansa Suomen teatteriohjelmistossa ja katsojien sydämissä. Yli 25000 katsojaa on tähän mennessä nähnyt nämä upeat tanssituotannot. Täysin uuden show´n ensi-ilta on 28.2.2025 Helsingissä Peacock näyttämöllä ja tästä esitys jatkaa yhteensä 20 näytöksen verran ympäri maan.</p><p>Valitettavan loukkaantumisen vuoksi Saana Akiola joutuu jäämään pois tulevalta kiertueelta. ”Olemme surullisia, ettei Saana pysty jatkamaan kanssamme tätä matkaa tällä kertaa loppuun asti” kertoo esityksen ohjaaja Sari Siikander. ”Jokainen tanssija on mukana tässä tuotannossa koko sydämellään enkä toivoisi tällaista tilannetta kenellekään” hän jatkaa.</p><p>”Tanssijan työvälineet ovat hänen jalkansa. Terveys edellä joudutaan menemään, välillä tehden ikäviä päätöksiä” kertoo Helena Ahti-Hallberg. ”Toivomme Saanan toipuvan pikaisesti ja pääsevän takaisin tanssilattioille jatkamaan työtään” Helena jatkaa. ”Showmme uusi tanssija on Liisa Setälä. Hän tuli katsojille tutuksi viime TTK-kaudella ja on loistava ammattilainen hyppäämään tähän täysillä kulkevaan junaan mukaan.”</p><p>Muut upeat ammattitanssijat ovat Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Emil Hallberg, Marius Toperczer-Muresan, Mikko Matikka, Sami Helenius sekä Valtteri Palin. Esityksen ohjaa Sari Siikander. ”Se miten tanssin, musiikin ja teatterin keinoin voidaan kertoa tarinaa, on aina yhtä maagista seurattavaa ja olen iloinen, että saan olla mukana tällä matkalla” hän jatkaa.</p><p>Esitys vie katsojat kaupungin sykkeeseen, työelämän pyörteisiin ja yöelämän hulinoihin. ”Mitä kaikkea voi päivän aikana tapahtua, ketä me kohtaamme, olemmeko illan tullen yksin vai juhlimassa. Näiden asioiden ympärille esitys rakentuu. Lavalla tulee olemaan koko tunteiden kirjo ja upeaa tanssia” Sari paljastaa.</p><p>Tällä kertaa mukaan on pyydetty kolme vierailevaa koreografia. Edward Simon on amerikkalainen tanssinopettaja ja koreografi, joka työskentelee Broadwayllä tv-ohjelmissa kuten So You Think You Can Dance. Nina Krook on argentiinalaisen tangon opettaja ja koreografi, hän kiertää opettamassa ympäri Suomea ja esiintyy myös teattereissa. Reija Wäre on tehnyt koreografioita niin musiikkiteatteriesityksiin, televisio-ohjelmiin kuin elokuviin. Hän on myös vieraillut koreografina ympäri maailmaa ja tekee koreografioita mm. UMK-artisteille.</p><p>”Olemme iloisia, että saimme nämä kolme oman alansa huippua mukaan tähän tuotantoon. He täydentävät loistavasti tanssijoidemme tekemää koreografiakokonaisuutta” kertoo Elevent Groupin toimitusjohtaja Helena Ahti-Hallberg. ”Tuotantoyhtiön johtajana ja esityksen puvustuksesta vastaavana olen superiloinen siitä, että yleisö on löytänyt meidät ja palaa katsomoon uuden show’n myötä aina uudelleen. Olemme siis onnistuneet tekemään jotain oikein” Helena hymyilee.</p><p>Ensi-illan jälkeen esitys kiertää aina huhtikuun loppupuolelle saakka. Kaikki esityspäivät ja -paikat löytyvät www.tanssientahtiin.fi sivulta ja somekanavista FB @tanssientahtiinshow sekä IG @tanssientahtiin.</p><p>Ikäraja: S</p><p>Kesto n. 65 min, ei väliaikaa</p>",
                "sv": "<p>Mot stadens puls med dans våren 2025</p><p>Tanssien Tähtiin Show produceras av Elevent Group, och har fängslat publiken med två olika shower och fått ett fantastiskt mottagande. Över 25 000 åskådare har hittills sett dessa fantastiska dansproduktioner, och nu är det dags att hämta en helt ny show till teatrarna.</p><p>Premiären för Tanssien Tähtiin Show går av stapeln 28.2.2025 i Helsingfors på Peacock-teaterns scen. Den nya showen för även med sig en förändring i dansensemblen, och våren 2025 stiger följande fantastiska professionella dansare på scenen: Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Saana Akiola, Emil Hallberg, Marius Tropercher, Mikko Matikka, Sami Helenius och Valtteri Palin. Föreställningen är regisserad av Sari Siikander.</p><p>“Vi har lyckats etablera vår plats i publikens hjärtan genom en skicklig dansshow och ribban ligger högt då vi lanserar en ny helhet”, berättar VD:n för Elevent Group Helena Ahti-Hallberg. “En motsvarande show har aldrig skådats tidigare, och vi har nu lyckats överraska publiken två gånger, så visst det är spännande”, fortsätter hon. “Jag är så glad att Sari Siikander fortsätter med oss och att showen är i trygga händer.”</p><p>“Jag är glad över att få fortsätta min resa med dansarna. Att skapa en helt ny helhet är en fantastisk utmaning som jag gärna tog mig an”, säger Sari. “Berättelser om stadens puls är grundidén för den nya helheten. Vad kan hända på en dag i staden eller i ett höghus, vilka möten för dagen med sig? Är vi ensamma då kvällen kommer, eller går vi ut och festar?” frågar Sari.</p><p>Premiären går av stapeln på Peacock-teatern i Helsingfors 28.2.2025, varefter föreställningen åker på turné. Mer information finns på www.tanssientahtiin.fi och i våra kanaler på sociala medier!</p><p>Åldersgräns: T</p><p>Längd ca 65 min, utan paus</p>",
                "en": "<p>Dance takes to the beat of the city in spring 2025</p><p>The Dance to the Stars Show, produced by Elevent Group, has conquered its audience with two different shows and had an amazing reception. More than 25,000 spectators have seen these stunning dance productions so far, and now it is time to bring a whole new show to the stage.</p><p>The premiere of the Dance to the Stars Show will take place on the stage of the Peacock Theatre in Helsinki on 28 February 2025. With the new show, the line-up of the dancers will also change, and in spring 2025, the following wonderful professional dancers will take to the stage: Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Saana Akiola, Emil Hallberg, Marius Tropercher, Mikko Matikka, Sami Helenius and Valtteri Palin. The show is directed by Sari Siikander.</p><p>“We have managed to establish a place in the hearts of the audience with an elaborate dance show, and the bar is high to start doing yet another show,” says Helena Ahti-Hallberg, CEO of Elevent Group. “We have never seen a similar show production before and we have now managed to surprise the audience twice, so this is exciting,” she continues. “I am so happy that Sari Siikander will continue with us and the show is in safe hands”.</p><p>“I am happy to continue my journey with the dancers. Creating a completely new show is a wonderful challenge, which I was happy to accept,” Sari says. “Stories about the city’s beat are the basic idea of the new show. What can happen in one day in a city or apartment building, what kind of encounters the day brings. Do we stay alone at night or go partying?,” says Sari.</p><p>The premiere will take place at the Peacock Theatre in Helsinki on 28 February 2025, after which the show will go on tour. More information can be found on www.tanssientahtiin.fi and on social media channels!</p><p>Age limit: All ages</p><p>Duration: around 65 min, no intermission</p>"
            },
            "provider": {
                "fi": "Elevent Group Oy",
                "sv": "Elevent Group Oy",
                "en": "Elevent Group Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64752/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65003",
            "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/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.ticketmaster.fi/event/kurtis-conner-lippuja/347857",
                        "sv": "https://www.ticketmaster.fi/event/kurtis-conner-lippuja/347857",
                        "en": "https://www.ticketmaster.fi/event/kurtis-conner-lippuja/347857"
                    },
                    "price": {
                        "fi": "37,50-42,50 €",
                        "sv": "37,50-42,50 €",
                        "en": "37,50-42,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153041,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-15T16:14:53.827312Z",
                    "last_modified_time": "2024-11-15T16:14:53.827332Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761812.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153041/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-15T16:14:53.779789Z",
            "last_modified_time": "2025-02-15T13:14:45.934946Z",
            "date_published": null,
            "start_time": "2025-04-23T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Loppuunmyydyile saleille esiintyvä kanadalaiskoomikko ja Youtube-sensaatio Kurtis Conner saapuu ensimmäistä kertaa Suomeen! Helsingin Savoy-teatterin show keskiviikkona 23. huhtikuuta 2025 on osa koomikon tähän mennessä suurinta maailmankiertuettaan.",
                "sv": "Den kanadensiska komikern och YouTube-sensationen Kurtis Conner, som uppträder för utsålda salonger, kommer till Finland för första gången! Föreställningen på Savoy-teatern i Helsingfors onsdagen den 23 april 2025 är en del av komikerns största världsturné hittills.",
                "en": "Canadian comedian and YouTube sensation Kurtis Conner is coming to Finland for the first time! The Savoy Theatre show in Helsinki on Wednesday 23 April 2025 is part of the comedian’s biggest world tour to date."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6ECF96D040CDB328A5A1666BE31621B8/Kurtis_Conner_CA_The_Goodfellow_World_Tour",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6ECF96D040CDB328A5A1666BE31621B8/Kurtis_Conner_CA_The_Goodfellow_World_Tour",
                "en": "http://www.savoyteatteri.fi/en/events/event/6ECF96D040CDB328A5A1666BE31621B8/Kurtis_Conner_CA_The_Goodfellow_World_Tour"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kurtis Conner (CA): The Goodfellow World Tour – Loppuunmyyty! / Sold out!",
                "sv": "Kurtis Conner (CA): The Goodfellow World Tour – SlutSåld!",
                "en": "Kurtis Conner (CA): The Goodfellow World Tour – Sold out!"
            },
            "description": {
                "fi": "<p>Loppuunmyydyile saleille esiintyvä kanadalaiskoomikko ja Youtube-sensaatio Kurtis Conner saapuu ensimmäistä kertaa Suomeen! Helsingin Savoy-teatterin show keskiviikkona 23. huhtikuuta 2025 on osa koomikon tähän mennessä suurinta maailmankiertuettaan.</p><p>Maailmanlaajuisesti yli 5 miljoonaa seuraajaa keränneen Kurtis Connerin täydellisesti ajoitetut vitsit ja koomiset sketsit ovat vihdoin nähtävissä livenä Suomessa, kun koomikko tuo The Goodfellow –maailmankiertueensa Helsingin Savoy-teatteriin. Persoonallisista sisällöistään ja karismastaan tunnetun Connerin show sisältää koomikon tuoreinta ja ennennäkemätöntä materiaalia.</p><p>Connerin urakiito sai alkunsa jo vuonna 2014 laajaa kiinnostusta herättäneillä sisällöillä Vine-videopalvelussa. Vuonna 2017 koomikon Youtube-kanava kasvoi räjähdysmäisesti huonojen elokuvien ja vaivaannuttavien internettrendien hulvattomien hauskojen ja viihdyttävien kommenttivideoiden myötä. Sittemmin Conner on kerännyt videoillaan Youtubessa yli puoli miljardia katselukertaa.</p><p>Vuosi 2023 oli Kurtis Connerille merkittävä, sillä hänet nimettiin virallisesti viikoittain ilmestyvän yhdysvaltalaislehden Varietyn kymmennen seurattavan koomikon joukkoon. Hän teki yhteistyötä suomalaisillekin tutun Just For Laughs (suom. Pilanpäiten) piilokamera-tositelevisiosarjan kanssa ja myi loppuun teattereita ympäri Austraaliaa ja Uutta-Seelantia.</p>",
                "sv": "<p>Den kanadensiska komikern och YouTube-sensationen Kurtis Conner, som uppträder för utsålda salonger, kommer till Finland för första gången! Föreställningen på Savoy-teatern i Helsingfors onsdagen den 23 april 2025 är en del av komikerns största världsturné hittills.</p><p>Kurtis Conners perfekt tajmade skämt och komiska sketcher, som har samlat över 5 miljoner följare världen över, kan äntligen ses live i Finland när komikern tar sin världsturné The Goodfellow till Savoy-teatern i Helsingfors. Conners show är känd för sitt personliga innehåll och sin karisma, och innehåller komikerns färskaste och mest oöverträffade material.</p><p>Conners karriär fick sin början redan år 2014 med ett innehåll som väckte stort intresse på videotjänsten Vine. Under 2017 exploderade komikerns YouTube-kanal med dråpligt roliga och underhållande kommentarvideor om dåliga filmer och irriterande internettrender. Sedan dess har Conners videor samlat över en halv miljard visningar på YouTube.</p><p>Året 2023 var ett stort år för Kurtis Conner, då han officiellt utsågs till en av de tio mest följda komikerna av den amerikanska veckotidningen Variety. Han samarbetade med den även i Finland välkända realityserien med dold kamera Just For Laughs (fi. 'Pilanpäiten') och sålde slut teatrar runt om i Australien och Nya Zeeland.</p>",
                "en": "<p>Canadian comedian and YouTube sensation Kurtis Conner is coming to Finland for the first time! The Savoy Theatre show in Helsinki on Wednesday 23 April 2025 is part of the comedian’s biggest world tour to date.</p><p>With over 5 million followers worldwide, Kurtis Conner’s perfectly timed jokes and comic sketches are finally live in Finland as the comedian brings his The Goodfellow World Tour to the Savoy Theatre in Helsinki. Known for his personal content and charisma, Conner’s show features the comedian’s latest and unprecedented material.</p><p>Conner’s career began to skyrocket already in 2014 with content that attracted widespread interest in the Vine video service. In 2017, the comedian’s YouTube channel exploded with hilariously funny and entertaining commentary videos about bad movies and troubling internet trends. Since then, Conner has collected over half a billion views on YouTube with his videos.</p><p>2023 was a significant year for Kurtis Conner, who was officially named the tenth comedian to be followed by Variety, a weekly US magazine. He collaborated with Just For Laughs hidden camera/reality TV show and sold out theatres all over Australia and New Zealand.</p>"
            },
            "provider": {
                "fi": "Live Nation Finland Oy",
                "sv": "Live Nation Finland Oy",
                "en": "Live Nation Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65003/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65176",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3790727",
                        "sv": "https://www.lippu.fi/eventseries/name-3790727",
                        "en": "https://www.lippu.fi/eventseries/name-3790727"
                    },
                    "price": {
                        "fi": "17,80-48,90 €",
                        "sv": "17,80-48,90 €",
                        "en": "17,80-48,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153289,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-05T11:14:15.509906Z",
                    "last_modified_time": "2024-12-05T11:14:15.509924Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764214.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153289/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-05T11:14:15.482773Z",
            "last_modified_time": "2025-02-15T13:14:40.103256Z",
            "date_published": null,
            "start_time": "2025-03-29T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Karstulan Mieslaulajat esittää The Beatles -musiikkiin perustuvan musiikkinäytelmän",
                "sv": "Karstulan Mieslaulajat presenterar en musikpjäs baserad på musik av The Beatles",
                "en": "Karstulan Mieslaulajat performs a musical play based on The Beatles music"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/57C0975DCD0E9832E3E533CA06667075/Karstulan_Mieslaulajat_Nuottikriisi",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/57C0975DCD0E9832E3E533CA06667075/Karstulan_Mieslaulajat_Nuottikriisi",
                "en": "http://www.savoyteatteri.fi/en/events/event/57C0975DCD0E9832E3E533CA06667075/Karstulan_Mieslaulajat_Nuottikriisi"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Karstulan Mieslaulajat: Nuottikriisi",
                "sv": "Karstulan Mieslaulajat: Nuottikriisi",
                "en": "Karstulan Mieslaulajat: Nuottikriisi"
            },
            "description": {
                "fi": "<p>Karstulan Mieslaulajat esittää The Beatles -musiikkiin perustuvan musiikkinäytelmän</p><p>Maailmanpoliittinen veijarimusikaali nuottien suomettamisesta<br>                                                                                                                   <br>Maailmassa vallitsi tasapaino. Ratkaiseva voimasuhteiden horjuttaminen saattaa olla kiinni yhdestä napin painalluksesta. Näinhän se on - kuka omistaa nuotit, sen lauluja laulat.<br>Valtakuntamme päämiehen kiipeillessä huolettomana palmuissa, idän ja lännen välille oli kehkeytynyt salamasotaa muistuttavalla nopeudella kaikkien aikojen kriisi. Faxin salausjärjestelmä oli pettänyt. Itä oli napannut kuulemma nerokkaalla vakoilu-järjestelmällään supersalaiseksi luokitellun Lännen sisäisen viestin. Tai – no niin – oikeastaan ei ollut napannut, vaan viestiin oli huolimattomasti syötetty Idän suuntanumero ja niinpä Lännen nuotit olivat putkahtaneet pyytämättä ja tilaamatta Idän faxista suoraan Nikitan nenän eteen.<br> <br>Onneksi Supo oli langoilla ja sai napattua pienen osan nuoteista. Näin maamme pääsi jyvälle idän röyhkeästä vallankaappauksesta. Länsi pyysi notkeudestaan tunnetulta maaltamme apua. Opintomatkalla ollut Urho kuuli viestin sisällöstä valtakuntamme 1. hovinarrin välityksellä.<br> <br>Toimittaja Pirkko Tarkka oli merkinnyt tarkasti kaiken muistiin ja julkaisee nyt teoksensa Nuottikriisi. Moneen ovat Karstulan mieslaulajat joutuneet kolmentoista omasta päästä tehdyn musiikkinäytelmän kanssa. Mutta että tämäkin pitää vielä nähdä ja kuulla! Sotkeutua nyt kansainväliseen politiikkaan! Onnistuvatko Karstulan Mieslaulajien ”vallanpitäjät” suomettamaan ryöstetyt nuotit ja palauttamaan tasapainon?<br>                                                                                                                                                                             <br>Kaiken harmin lisäksi painaa päälle ne Urhon syntymäpäivät – tai onko sittenkin onneksi!<br>Joka tapauksessa ”hovilta” kysytään luovia ratkaisuja ja näppäryyttä kansainvälisten vieraiden kanssa.<br> <br>Ehkä kuulemme kaksi Urhon voimasanaakin? Saatamme tarvita myös yleisön apua ennen kuin viimeinenkin nuotti on suometettu! Tarina ja Beatlesien 25 kappaletta yrittävät tukea juonen kulkua, joten olkaapa tarkkana kuten ”tarkkapirkko”!<br> <br>Tervetuloa kuulemaan Olli Oikarin mestarisovitukset kuorolle ja orkesterille kultaisen 60-luvun Beatles helmistä!  Juhani Lehtonen on yhdistellyt eri aikakausien ”silmäätekeviä” käsikirjoittajan vapaudella toteamalla: olisihan se näinkin voinut olla! Ainakin mikäli toimittaja Pirkko Tarkka oikein muistaa.<br> <br>Ohjaus Pasi Saarinen<br> <br>Kesto n. 2 h 30 min, sisältää väliajan.<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Karstulan Mieslaulajat presenterar en musikpjäs baserad på musik av The Beatles</p><p>Världspolitisk spjuvermusikal om finlandisering av noter</p><p>Världen var i balans. Maktbalansen i världen kan förändras på ett avgörande sätt bara genom att trycka på en knapp. Det är så det är – den som äger noterna bestämmer vilka sånger som sjungs.<br>Medan rikets överhuvud klättrade bekymmerslöst i palmer, hade en kris som påminde om ett blixtkrig snabbt utvecklats mellan öst och väst. Faxens krypteringssystem hade misslyckats. Öst påstod sig ha snappat upp ett superhemligt internt meddelande från väst med sitt sinnrika spionagesystem. Eller – egentligen inte snappat upp, utan meddelandet hade vårdslöst knappats in med Östs riktnummer, och på så sätt hade Västs noter oavsiktligt och obeställt hamnat från Östs faxmaskin direkt under näsan på Nikita.</p><p>Lyckligtvis var Skypo på tråden och kunde snappa åt sig en liten del av noterna. På så sätt fick vårt land nys om den fräcka statskuppen i öst. Väst bad vårt land, som är känt för sin smidighet, om hjälp. Urho, som hade varit på studieresa, fick höra om innehållet i budskapet via rikets 1:e hovnarr.</p><p>Journalisten Pirkko Tarkka hade noggrant antecknat allt, och ger nu ut verket Notkrisen. Mycket har Karstulan mieslaulajat varit med om under sina tretton självgjorda musikaliska pjäser. Men att få se och höra detta var verkligen något! Hur fick man för sig att blanda sig i internationell politik! Lyckas “makthavarna” i Karstulan mieslaulajat finlandisera de rånade noterna och återställa balansen?</p><p>Till råga på allt är det snart Urhos födelsedag – eller är det kanske en bra sak?<br>I vilket fall som helst tillfrågas “hovet” om kreativa lösningar och skicklighet med internationella gäster.</p><p>Kanske får vi även höra två av Urhos kraftord? Vi kan också behöva publikens hjälp innan den sista noten har finlandiserats! Berättelsen och 25 Beatles-låtar försöker stödja handlingen, så var uppmärksamma!</p><p>Välkommen till Olli Oikaris mästerliga arrangemang för kör och orkester av Beatles gyllene 60-talspärlor! Juhani Lehtonen har kombinerat “höjdare” från olika tidsepoker med en manusförfattares frihet: visst kunde det ha blivit så här också! Åtminstone om journalisten Pirkko Tarkka minns rätt.</p><p>Regi Pasi Saarinen</p><p>Längd ca 2 h 30 min., inklusive paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p>",
                "en": "<p>Karstulan Mieslaulajat performs a musical play based on The Beatles music</p><p>A global political trickster musical about the Finlandisation of notes</p><p>There was balance in the world. Crucial destabilisation of power relations may depend on a single push of a button. That’s the way it is - who owns the notes, their songs you sing.<br>As the head of our nation climbed carefree in palm trees, an all-time crisis had developed between the East and the West at a speed reminiscent of a lightning war. The fax encryption system had failed. The East had captured the West’s internal message, classified as super-secret, with its ingenious espionage system. Or – well – actually it had not captured it, but the message had carelessly been given the East’s area code and so the West’s notes had popped up from the East’s fax machine without being asked or ordered and directly in front of Nikita.</p><p>Luckily, Finnish Security and Intelligence Service Supo tapped the wire and was able to grab a small number of the notes. This is how our country came to grips with the brazen coup d 'état of the East. The West asked help from our country, which is known for its flexible attitude. Urho Kekkonen, the president of Finland at that time, who was on a study excursion, heard about the content of the message from our nation’s number one jester.</p><p>The journalist Pirkko Tarkka had accurately recorded everything and is now publishing her work Nuottikriisi. Karstulan mieslaulajat have ended up in various situations with the thirteen music plays they have invented on their own. But this that you even have to see and hear all this! Getting tangled up in international politics! Will the “powers that be” of Karstulan mieslaulajat succeed in Finlandising the stolen notes and restoring balance?</p><p>In addition to all the trouble, or perhaps luckily enough, Urho’s birthday is coming up.<br>In any case, the “court” is asked for creative solutions and cleverness with international guests.</p><p>Perhaps we can hear two of Urho’s power words as well? We may also need the audience’s help before the last note is finlandised! The story and 25 Beatles songs try to support the plot, so be attentive like a journalist!</p><p>Welcome to Olli Oikari’s masterpieces for choir and orchestra of the Beatles hits from the golden 60s! Juhani Lehtonen has combined the “influential people” of different eras with the freedom of a writer by stating “Things could also have been like this!” At least if the journalist Pirkko Tarkka remembers correctly.</p><p>Directed by Pasi Saarinen</p><p>Duration: approx. 2 h 30 min, including an intermission.</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area</p>"
            },
            "provider": {
                "fi": "Karstulan Mieslaulajat ry",
                "sv": "Karstulan Mieslaulajat ry",
                "en": "Karstulan Mieslaulajat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65176/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65526",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749342/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749342/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749342/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172646,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T14:13:45.656380Z",
                    "last_modified_time": "2025-01-27T14:13:45.656393Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760422.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172646/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-27T14:13:45.643407Z",
            "last_modified_time": "2025-02-14T14:14:01.427902Z",
            "date_published": null,
            "start_time": "2025-03-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Issa is a young Senegalese undocumented immigrant; trying to survive as best he can in Turin, Italy.",
                "sv": "Issa is a young Senegalese undocumented immigrant; trying to survive as best he can in Turin, Italy.",
                "en": "Issa is a young Senegalese undocumented immigrant; trying to survive as best he can in Turin, Italy."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2D56CAC3F7D6C3D7CFD26153072FFD65/KINO_CAISA_Anywhere_Anytime_S_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2D56CAC3F7D6C3D7CFD26153072FFD65/KINO_CAISA_Anywhere_Anytime_S_",
                "en": "http://www.caisa.fi/en/events/event/2D56CAC3F7D6C3D7CFD26153072FFD65/KINO_CAISA_Anywhere_Anytime_S_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "KINO CAISA: Anywhere Anytime (S) – Valtuusto 150v",
                "sv": "KINO CAISA: Anywhere Anytime (S) – Fullmäktige 150 år-fördel",
                "en": "KINO CAISA: Anywhere Anytime (S) – Council 150 years"
            },
            "description": {
                "fi": "<p>Issa is a young Senegalese undocumented immigrant; trying to survive as best he can in Turin, Italy.</p><p>When he’s fired by his previous employer for fear of being fined by the police, Issa’s friend helps him get started working as a food-delivery rider. This new gig gives him a sense of security and freedom, riding his bike around the city, controlling his destiny. But his newly gained sense of stability quickly collapses when, during a drop-off, the bicycle he’s just spent all of his money on is stolen. Issa then embarks on a desperate odyssey through the streets of the city to find his bike.</p><p>Age Limit: S<br>Duration: 82 min<br>Spoken language: Italian, Wolof<br>Subtitles: English</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837449/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Issa is a young Senegalese undocumented immigrant; trying to survive as best he can in Turin, Italy.</p><p>When he’s fired by his previous employer for fear of being fined by the police, Issa’s friend helps him get started working as a food-delivery rider. This new gig gives him a sense of security and freedom, riding his bike around the city, controlling his destiny. But his newly gained sense of stability quickly collapses when, during a drop-off, the bicycle he’s just spent all of his money on is stolen. Issa then embarks on a desperate odyssey through the streets of the city to find his bike.</p><p>Age Limit: S<br>Duration: 82 min<br>Spoken language: Italian, Wolof<br>Subtitles: English</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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837449/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Issa is a young Senegalese undocumented immigrant; trying to survive as best he can in Turin, Italy.</p><p>When he’s fired by his previous employer for fear of being fined by the police, Issa’s friend helps him get started working as a food-delivery rider. This new gig gives him a sense of security and freedom, riding his bike around the city, controlling his destiny. But his newly gained sense of stability quickly collapses when, during a drop-off, the bicycle he’s just spent all of his money on is stolen. Issa then embarks on a desperate odyssey through the streets of the city to find his bike.</p><p>Age Limit: S<br>Duration: 82 min<br>Spoken language: Italian, Wolof<br>Subtitles: English</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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837449/?affiliate=FSF\">HERE</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65520",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749346/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749346/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749346/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 174393,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-28T10:14:27.299693Z",
                    "last_modified_time": "2025-01-28T10:14:27.299714Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760416.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-28T10:14:27.270544Z",
            "last_modified_time": "2025-02-14T14:13:56.916875Z",
            "date_published": null,
            "start_time": "2025-02-18T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Julian Dennison ja Minnie Driver tähdittävät tätä hauskaa, sydäntä lämmittävää ja innoittavaa tarinaa nuoren miehen kamppailusta löytää oma aito äänensä.",
                "en": "A 17 year-old teenager is forced to clamber off the fence he has actively sat on all his life to stand up for himself, his whānau (family) and his future."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6D44F42C42DF59E3D5481EB0C91F5634/KINO_CAISA_Uproar_S_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6D44F42C42DF59E3D5481EB0C91F5634/KINO_CAISA_Uproar_S_",
                "en": "http://www.caisa.fi/en/events/event/6D44F42C42DF59E3D5481EB0C91F5634/KINO_CAISA_Uproar_S_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "KINO CAISA: Uproar (S) – Valtuusto 150v",
                "sv": "KINO CAISA: Uproar (S) – Fullmäktige 150 år",
                "en": "KINO CAISA: Uproar (S) – Council 150 years"
            },
            "description": {
                "fi": "<p>Julian Dennison ja Minnie Driver tähdittävät tätä hauskaa, sydäntä lämmittävää ja innoittavaa tarinaa nuoren miehen kamppailusta löytää oma aito äänensä.</p><p>Uusi-Seelanti, 1981. Taistelu maorikulttuurin tunnustamisesta kiehuttaa alkuperäiskansaa ja saa aikaan maanlaajuisia mielenosoituksia. 17-vuotiaalla Josh Waakalla on maori-juuret , ja hänellä on ulkopuolinen olo rugbysta intoilevassa yliopistossa.</p><p>Kun Joshin opettaja Madigan suosittelee hänelle teatterikurssia, hän löytää intohimon, jota ei tiennyt tuntevansa. Unelmaa ei kuitenkaan ole helppo tavoitella ympäristössä, jossa näyttää erilaiselta ja jossa oman äidin odotukset ovat jotain aivan muuta.</p><p>Kun mielenosoitukset eri puolilla maata herättävät Joshissa voimakkaan epäoikeudenmukaisuuden tunteen, hänen unelmansa on vaarassa hiipua ennen kuin on päässyt vauhtiin.</p><p>Kesto: 110 minuuttia<br>Ikäraja: sopii kaikenikäisille<br>Puhuttu kieli: englanti<br>Tekstityskieli: suomi</p><p>Ohjaaja: Paul Middleditch, Hamish Bennet</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837450/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Sunedin, 1981. The Springboks are touring New Zealand, sparking nationwide protests. Josh Waaka, 17, is a square peg in the round, rugby-obsessed hole that is St Gilbert’s College. He discovers a passion for acting as well as a greater awareness of his Māori heritage, a combination that ultimately sends him careening headlong into conflict with his oppressive environment when he is exposed for going on a protest march.</p><p>Under pressure from home and school to conform, Josh’s frustrations come to a head when he films a drama school audition tape that ends with a haka, speaking powerfully to the person Josh truly is. Josh’s mother sees the video and they reconcile, and in the final school rugby match of the season, Josh stages a protest and is joined by his family. Through sharing his true voice, Josh has started his family on the journey towards healing.</p><p>Duration: 110 min<br>Age Limit: S<br>Spoken language: English<br>Subtitles: Finnish<br>Director: Paul Middleditch, Hamish Bennet</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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837450/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>A 17 year-old teenager is forced to clamber off the fence he has actively sat on all his life to stand up for himself, his whānau (family) and his future.</p><p>Sunedin, 1981. The Springboks are touring New Zealand, sparking nationwide protests. Josh Waaka, 17, is a square peg in the round, rugby-obsessed hole that is St Gilbert’s College. He discovers a passion for acting as well as a greater awareness of his Māori heritage, a combination that ultimately sends him careening headlong into conflict with his oppressive environment when he is exposed for going on a protest march.</p><p>Under pressure from home and school to conform, Josh’s frustrations come to a head when he films a drama school audition tape that ends with a haka, speaking powerfully to the person Josh truly is. Josh’s mother sees the video and they reconcile, and in the final school rugby match of the season, Josh stages a protest and is joined by his family. Through sharing his true voice, Josh has started his family on the journey towards healing.</p><p>Duration: 110 min<br>Age Limit: S<br>Spoken language: English<br>Subtitles: Finnish<br>Director: Paul Middleditch, Hamish Bennet</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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837450/?affiliate=FSF\">HERE</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65520/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65519",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749339/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749339/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749339/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T14:13:43.688758Z",
                    "last_modified_time": "2025-01-27T14:13:43.688770Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760415.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-27T14:13:43.672512Z",
            "last_modified_time": "2025-02-14T14:13:56.737639Z",
            "date_published": null,
            "start_time": "2025-02-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.",
                "sv": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.",
                "en": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/69B77754819922F6CEC2E3E4EF9F412D/KINO_CAISA_April_12_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/69B77754819922F6CEC2E3E4EF9F412D/KINO_CAISA_April_12_",
                "en": "http://www.caisa.fi/en/events/event/69B77754819922F6CEC2E3E4EF9F412D/KINO_CAISA_April_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "KINO CAISA: April (12) – Valtuusto 150v",
                "sv": "KINO CAISA: April (12) – Fullmäktige 150 år",
                "en": "KINO CAISA: April (12) – Council 150 years"
            },
            "description": {
                "fi": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 12<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 12–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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837447/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 12<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837447/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 12<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</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/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837447/?affiliate=FSF\">HERE</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65519/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65309",
            "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: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: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:669/?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"
                },
                {
                    "@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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/global-club-nights-lapsille-kulttuurikeskus-caisa-19588577/",
                        "sv": "https://www.lippu.fi/event/global-club-nights-lapsille-kulttuurikeskus-caisa-19588577/",
                        "en": "https://www.lippu.fi/event/global-club-nights-lapsille-kulttuurikeskus-caisa-19588577/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-19T15:14:12.269850Z",
                    "last_modified_time": "2024-12-19T15:14:12.269867Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760725.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153528/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-12-19T15:14:12.243498Z",
            "last_modified_time": "2025-02-14T13:14:27.677820Z",
            "date_published": null,
            "start_time": "2025-03-01T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "INDABA on lämminhenkinen lastenkonsertti, joka tutkii afro-suomalaisten identiteettien rikasta kudelmaa musiikin, tanssin ja tarinankerronnan kautta.",
                "sv": "INDABA är en varmhjärtad barnkonsert som utforskar en rik väv av afro-finländska identiteter genom musik, dans och historieberättande.",
                "en": "INDABA is a warm-hearted children's performance that explores the rich tapestry of Afro-Finnish identities through music, dance and storytelling."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FDD442FDC7CDBF82FC160F8CF937019D/INDABA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/FDD442FDC7CDBF82FC160F8CF937019D/INDABA",
                "en": "http://www.caisa.fi/en/events/event/FDD442FDC7CDBF82FC160F8CF937019D/INDABA"
            },
            "location_extra_info": null,
            "name": {
                "fi": "INDABA – Global Club Nights lapsille / Valtuusto 150v",
                "sv": "INDABA – Global Club Nights för barn / Fullmäktige 150 år",
                "en": "INDABA – Global Club Nights for children / Council 150 years"
            },
            "description": {
                "fi": "<p>INDABA on lämminhenkinen lastenkonsertti, joka tutkii afro-suomalaisten identiteettien rikasta kudelmaa musiikin, tanssin ja tarinankerronnan kautta.</p><p>Indaba tarkoittaa zulun kielellä kokoontumista, jossa ihmiset päättävät heitä itseään koskevista asioista. Sana on vakiintunut osaksi myös muita eteläafrikkalaisia kieliä. Millaista on olla suomalainen, afrikkalainen tai molempia? Kuka kertoo tarinamme parhaiten?</p><p>Konsertti rohkaisee lempeästi jokaista kertomaan oman tarinansa haluamallaan tavalla.</p><p>Indaba-lastenkonsertissa on kyse nähdyksi ja kuulluksi tulemisesta – ja samalla toisten näkemisestä ja kuuntelemisesta.<br>Esityksessä puhutaan ja lauletaan suomeksi, englanniksi, kiswahiliksi ja kisumbwaksi.</p><p>INDABA on saanut inspiraationsa kirjasta Third Culture Kids, ja esitys juhlistaa monimuotoisuutta ja joustavuutta, rohkaisten jokaista kertomaan oman tarinansa omalla tavallaan. Pidetään indaba!</p><p><b>Esiintyjät:</b><br>Ayla Brinkmann (FIN/RSA)<br>Kasheshi Makena (TZA/FIN)<br>Pietari Kauppinen (FIN/ETH)</p><p>Kesto: 45 minuuttia</p><p><b>Global Club Nights</b><br>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/global-club-nights-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19738650/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>INDABA är en varmhjärtad barnkonsert som utforskar en rik väv av afro-finländska identiteter genom musik, dans och historieberättande.</p><p>På zulu betyder Indaba en sammankomst där människor beslutar om frågor som berör dem själva. Ordet har också etablerats på andra sydafrikanska språk. Hur är det att vara finländare, afrikan eller både och? Vem berättar vår historia bäst?<br>Konserten uppmuntrar milt alla att berätta sin egen historia på det sätt de vill.</p><p>Indaba-barnkonserten handlar om att bli sedd och hörd – och samtidigt om att se och lyssna på andra.<br>Föreställningen talas och sjungs på finska, engelska, kiswahili och kisumbwa.</p><p>INDABA är inspirerad av boken Third Culture Kids. Föreställningen hyllar mångfald och flexibilitet och uppmuntrar alla att berätta sin historia på sitt eget sätt. Vi håller en indaba!</p><p><b>Artister:</b><br>Ayla Brinkmann (FIN/RSA)<br>Kasheshi Makena (TZA/FIN)<br>Pietari Kauppinen (FIN/ETH)</p><p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</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/global-club-nights-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19738650/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>INDABA is a warm-hearted children's performance that explores the rich tapestry of Afro-Finnish identities through music, dance and storytelling.</p><p>How does it feel to be Finnish, African, or both? Who tells our stories best?</p><p>Derived from the isiZulu word for a meeting or meaningful discussion, INDABA invites you to experience a vibrant merge of bamboo flute grooves, Tanzanian rhythms, a taste of South African amapiano and solos on voice, trombone, flutes, timbila, percussion, and dance. The performers speak and sing in Finnish, English, Kiswahili and Kisumbwa.</p><p>Inspired by the book ´Third Culture Kids´, this performance celebrates diversity and fluidity and encourages each person to tell their own story in their own way. Let’s have an indaba!</p><p><b>Performers:</b><br>Ayla Brinkmann (FIN/RSA)<br>Kasheshi Makena (TZA/FIN)<br>Pietari Kauppinen (FIN/ETH)</p><p>Duration: 45 min.</p><p><b>Global Club Nights</b><br>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment. With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</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/global-club-nights-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19738650/?affiliate=FSF\">HERR</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65309/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}