Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 26957,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=23",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=21"
    },
    "data": [
        {
            "id": "lippupiste:20000150",
            "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:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000150/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000150/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000150/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.278306Z",
            "last_modified_time": "2025-08-20T05:17:53.290199Z",
            "date_published": null,
            "start_time": "2025-08-28T15: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,
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Kuningatarnäytelmä Ensi-Ilta"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000150/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999843",
            "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:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999843/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999843/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999843/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.182714Z",
                    "last_modified_time": "2025-03-17T22:17:20.182730Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.154427Z",
            "last_modified_time": "2025-08-20T05:17:53.137682Z",
            "date_published": null,
            "start_time": "2025-08-28T15: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,
            "description": {
                "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Sari Haapamäki, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Let'S Play Business Ennakko"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella."
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999843/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000149",
            "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:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000149/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000149/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000149/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.027115Z",
            "last_modified_time": "2025-08-20T05:17:52.963501Z",
            "date_published": null,
            "start_time": "2025-08-27T15: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,
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Kuningatarnäytelmä Ennakko"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000149/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000147",
            "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:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000147/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000147/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000147/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:19.886464Z",
            "last_modified_time": "2025-08-20T05:17:52.783403Z",
            "date_published": null,
            "start_time": "2025-08-26T15: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,
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Kuningatarnäytelmä Ennakko"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000147/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000361",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 408450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-26T08:16:01.191774Z",
                    "last_modified_time": "2025-03-26T08:16:01.191790Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:19.790317Z",
            "last_modified_time": "2025-08-20T05:17:52.550423Z",
            "date_published": null,
            "start_time": "2025-08-20T15: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,
            "description": {
                "fi": "<p>Sara Koiranen, Iida Hägglund &amp; työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund &amp; työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Little_Star95 - Ooksä Online?"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000361/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20303853",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2505849/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-20303853/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-20303853/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-20303853/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235447,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:10.162814Z",
                    "last_modified_time": "2025-02-17T11:17:10.162829Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkekulissi222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235447/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-27T15:15:39.946108Z",
            "last_modified_time": "2025-08-20T05:17:52.391176Z",
            "date_published": null,
            "start_time": "2025-08-20T13: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,
            "description": {
                "fi": "<p><strong>Tervetuloa tutustumaan peruskorjattuun yli 50-vuotiaaseen teatteritaloon sekä kurkistamaan kulissien taakse. </strong></p><p>Kierroksen sisältö vaihtelee ajankohdan mukaan. Kierrokselle on rajattu paikkamäärä. Kesto noin 1h. </p><p>Huomioithan, että Keskiviikon kulissikierros ei ole valitettavasti esteetön vaan sisältää paljon portaita. </p><p>Kierros lähtee pääovilta: Eläintarhantie 5. Ovet avataan varttia ennen kierroksen alkua.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Keskiviikon Kulissikierros"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Tervetuloa tutustumaan peruskorjattuun yli 50-vuotiaaseen teatteritaloon sekä kurkistamaan kulissien taakse."
            },
            "location_extra_info": {
                "fi": "Suuri näyttämö LÄMPIÖ"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303853/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22avtq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22av6u/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-12T09:46:19.568033Z",
                    "last_modified_time": "2025-08-12T09:46:19.568046Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/04eb0abe-d32a-4c92-9ef6-e25440f8053e.png",
                    "cropping": "46,0,443,398",
                    "photographer_name": "",
                    "alt_text": "vaaleanpunaisella taustalla pörröinen kani istuskelee sängyllä. teksti: reading buddy",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490119/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-08-12T09:53:49.374086Z",
            "last_modified_time": "2025-08-20T05:09:32.637719Z",
            "date_published": null,
            "start_time": "2025-08-30T09:00:00Z",
            "end_time": "2025-08-30T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tule harjoittelemaan lukemista lukukani Cloudin pehmoisessa seurassa. </p>",
                "sv": "<p>Kom och öva på att läsa i sällskap med läskaninen Cloud – mjuk och mysig!</p>",
                "en": "<p>Come practice reading in the soft and cuddly company of Reading Bunny Cloud!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Lukukani",
                "sv": "Läskanin",
                "en": "Reading bunny"
            },
            "provider": null,
            "short_description": {
                "fi": "Lukukani Cloud odottaa sinua lasteenalueella.",
                "sv": "Läskaninen Cloud väntar på dig på barnavdelningen.",
                "en": "Reading buddy Cloud is waiting for you in the Childrens area."
            },
            "location_extra_info": {
                "fi": "Saturiutta",
                "sv": "Saturiutta",
                "en": "Saturiutta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22avtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66781",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/",
                        "sv": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/",
                        "en": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1272051,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T13:12:46.669395Z",
                    "last_modified_time": "2025-07-16T13:12:46.669409Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774935.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272051/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T13:12:46.609147Z",
            "last_modified_time": "2025-08-20T02:14:12.135101Z",
            "date_published": null,
            "start_time": "2025-11-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,
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!</p><p>Strandberg Project tunnetaan erityisesti fuusion, progen ja jazzin saumattomasta yhdistelmästä, joka on tuonut yhtyeelle laajan ja uskollisen kuulijakunnan. Yhtye on vuosien varrella tehnyt yhteistyötä lukuisten kansainvälisten huippumuusikoiden kanssa, ja sen musiikki on rikastuttanut niin levyjä kuin live-esiintymisiäkin.</p><p>Illan juhlakonsertissa kuullaan sekä vanhoja klassikoita että uusia sävellyksiä, jotka vievät kuulijat matkalle yhtyeen monipuoliseen musiikilliseen maailmaan. Lavalla nähdään myös erityisvieraita, jotka ovat olleet mukana luomassa Strandberg Projectin ainutlaatuista soundia.</p><p>Liity mukaan juhlimaan tätä merkittävää virstanpylvästä ja nauttimaan unohtumattomasta musiikki-illasta!</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</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/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Välkommen att fira Strandberg Projects 30-åriga resa!</p><p>Strandberg Project är särskilt känt för sin sömlösa blandning av fusion, prog och jazz, vilket har gett bandet en bred och lojal publik. Under åren har bandet samarbetat med många internationella toppmusiker, och deras musik har berikat både skivor och liveframträdanden.</p><p>Kvällens jubileumskonsert kommer att bjuda på både gamla klassiker och nya kompositioner, som tar lyssnarna med på en resa genom bandets mångsidiga musikaliska värld. På scenen kommer vi också att se speciella gäster som har varit med och skapat Strandberg Projects unika sound.</p><p>Följ med och fira denna betydande milstolpe och njut av en oförglömlig musikkväll!</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Join us for a celebration of the 30th anniversary of Strandberg Project!</p><p>Strandberg Project is known particularly for its seamless blend of fusion, prog and jazz, which has earned the band a large and loyal following. Over the years, the band has collaborated with numerous international top-class musicians, and its music has enriched both records and live performances.</p><p>The evening’s celebratory concert will feature both old classics and new compositions, taking listeners on a journey through the band’s diverse musical world. There will also be special guests on stage who have helped create Strandberg Project’s unique sound.<br>Join us for a celebration of this milestone and come enjoy an unforgettable evening of music!</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p><p>Duration: roughly 120 min, incl. intermission</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30v_feat_Felix_Zenger",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30_ar_feat_Felix_Zenger",
                "en": "http://www.vuotalo.fi/en/events/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30_yrs_feat_Felix_Zenger"
            },
            "name": {
                "fi": "Strandberg Project 30v feat. Felix Zenger – Klubb Ankdamm",
                "sv": "Strandberg Project 30 år feat. Felix Zenger – Klubb Ankdamm",
                "en": "Strandberg Project 30 yrs feat. Felix Zenger – Klubb Ankdamm"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!",
                "sv": "Välkommen att fira Strandberg Projects 30-åriga resa!",
                "en": "Join us for a celebration of the 30th anniversary of Strandberg Project!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66781/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66779",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "10€ / 8€",
                        "sv": "10€ / 8€",
                        "en": "10€ / 8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271735,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T12:14:26.283312Z",
                    "last_modified_time": "2025-07-16T12:14:26.283328Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775285.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271735/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T12:14:26.158835Z",
            "last_modified_time": "2025-08-20T02:14:10.640222Z",
            "date_published": null,
            "start_time": "2025-11-04T12: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,
            "description": {
                "fi": "<p>Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.</p><p>Ohjelmassa on runsas ja monipuolinen kattaus Evert Tauben laululyriikkaa ja monia hänen rakastetuimmista teoksistaan sekä harvemmin kuultuja ”unohdettuja” helmiä.</p><p>Saaristolaisvalssien ja luonnonkuvausten ohella luvassa on myös lauluja, joiden inspiraation lähteenä on Evertin Argentiinassa viettämä aika (1910–1915).</p><p>Argentiinalainen kansanmusiikki ja tango ovat olleet erittäin tärkeitä molemmille artisteille: Pentti on sekä opiskellut että tehnyt yhteistyötä kuuluisien argentiinalaisten kitaristien, kuten Eduardo ja Juan Falún, Jorge Cardoson ja Jorge Morelin kanssa. Bandoneónvirtuoosi Mikko on ollut kiertueella tangolaulaja Martin Alvaradon säestäjänä. Tämän lisäksi Mikko on säestänyt muun muassa Sven Bertil Taubea.</p><p>Pentti Hildén: laulu ja kitara<br>Mikko Helenius: bandoneón, haitari, piano ja laulu<br>Kesto n. 60 min. <br>Kieli: ruotsi.</p>",
                "sv": "<p>Svenska veckans tisdagsmatiné</p><p>Skärgårdsvalserna och naturskildringarna har sin givna plats men programmet tar lika mycket  sånger inspirerade av Everts vistelse (1910-1915) i Argentina.</p><p>Argentinsk folkmusik och tango har varit väldigt viktiga för båda artisterna: Pentti har både studerat för och samarbetat med Argentinska gitarrens stora namn såsom Eduardo oah Juan Falú, Jorge Cardoso och Jorge Morel.   Bandoneonvirtuosen Mikko har turnerat flirtigt som ackompanjatör för tangosångaren Martin Alvarado. Utöver Tango kan det nämnas att Mikko  ackompanjerat  bl.a. Sven Bertil Taube.</p><p>Pentti Hildén: sång och gitarr<br>Mikko Helenius bandoneon, dragspel, piano och sång. <br>Längd ca 60 min. <br>Språk: svenska.</p>",
                "en": "<p>From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish.</p><p>The programme offers a rich and varied selection of Evert Taube’s songs and includes many of his most beloved works alongside more rarely heard, \"forgotten\" gems.</p><p>The waltzes about the archipelago and descriptions of nature have their rightful place, but the programme also includes songs inspired by Evert's stay in Argentina (1910–1915).</p><p>Argentine folk music and tango have been very important to both artists: Pentti has both studied under and collaborated with great names within Argentine guitar, such as Eduardo and Juan Falú, Jorge Cardoso and Jorge Morel. Bandoneon virtuoso Mikko has toured extensively accompanying tango singer Martin Alvarado. In addition to Tango, Mikko has accompanied Sven Bertil Taube, among others.</p><p>Pentti Hildén: vocals and guitar<br>Mikko Helenius: bandoneon, accordion, piano and vocals<br>Duration apx 60 min.<br>Language: swedish.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar_kusten_-_",
                "en": "http://www.vuotalo.fi/en/events/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar"
            },
            "name": {
                "fi": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius",
                "sv": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår kusten - – Pentti Hildén & Mikko Helenius",
                "en": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius"
            },
            "provider": null,
            "short_description": {
                "fi": "Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.",
                "sv": "Svenska veckans tisdagsmatiné",
                "en": "From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66710",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1218497,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:12:45.901540Z",
                    "last_modified_time": "2025-07-09T11:12:45.901553Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774927.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1218497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T11:12:45.803856Z",
            "last_modified_time": "2025-08-20T02:14:08.633225Z",
            "date_published": null,
            "start_time": "2025-10-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,
            "description": {
                "fi": "<p>Magnum Bonum perustettiin Huddingessa 1970-luvun puolivälissä.</p><p>Ensimmäinen laulaja oli Orup, mutta myöhemmin Lasse Liström otti päälaulajan roolin, ja bändi levytti kappaleen Skateboard vuonna 1978.</p><p>Magnum Bonumilla oli useita hittejä 1980-luvulla. Kappaleet kuten Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer ja Skateboard soivat radiossa.</p><p>Magnum Bonumilla oli viisi \"viikon smashhit\"-hittiä Poporama-ohjelmassa, jota juonsi Kaj Kindvall ennen Tracks-ohjelmaa, ja bändi on ollut ykkösenä myös Europatoppen-listalla.</p><p>Magnum Bonum on myynyt yli 500 000 levyä ja kiersi ahkerasti Ruotsissa ja Suomessa vuosina 1978–1985. He tekivät yli 100 keikkaa vuodessa, kunnes laulaja Lasse Liström kuoli syöpään vuonna 1983. Jan Johansen otti laulajan paikan ennen kuin bändi lopetti toimintansa vuonna 1985 (Magnum Bonumilla on aina ollut jaettu päälauluvastuu).</p><p>Bändi piti muutaman vuoden tauon, ennen kuin alkoi soittaa jälleen 1990-luvun alussa.</p><p>Yhtyeen kokoonpanoon kuuluvat:<br>• Mats Hedström – kitara ja laulu, joka on jatkanut musiikin parissa ja elättää itsensä lauluntekijänä ja tuottajana, mm. yhdellä Billboard-ykköshittillä Yhdysvalloissa.<br>• Per Schiller – kitara ja laulu, työskentelee rakennusalalla.<br>• Mark Tysper – basso, yrittäjä.<br>• Dan Mazreliez – rummut, työskentelee ääniteknikkona elokuva- ja tv-alalla, mm. Millennium-trilogian parissa.</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p>",
                "sv": "<p>Magnum Bonum bildades i Huddinge i mitten av 70-talet.</p><p>Första sångaren hette Orup, sen tog lasse liström över leadsången och bandet spelade in skateboard 1978. <br> <br>Magnum Bonum  hade ett knippe hits på 80-talet. Låtar som  Hög Hatt , Marie, Loverboy, Digital Panik, Radio Love,<br>Gigolo, Vi vill ha mer och Skateboard  hördes på radion och i folkparkerna.</p><p>Magnum Bonum Hade 5  veckans smashhit på poporama ,  kaj kindvalls program före tracks och varit etta på Europatoppen <br> <br>Magnum Bonum har sålt över 500.000 plattor och turnerade flitigt runt i</p><p>Sverige och Finland från 1978-1985 .  Gjorde över 100  gig per år tills sångaren Lasse liström gick bort 1983 i cancer , jan johansen tog över sången innan bandet slutade 1985 ( magnum bonum  har alltid delat på leadsången i bandet )<br> <br>Bandet hade uppehåll ett par år innan de började spela igen i början av 90-talet.<br> <br>Gruppen består av , Mats Hedström-gitarr och sång,  som har fortsatt med musiken och försörjt sig som låtskrivare och producent med bland annat en billboard 1 i USA Per Schiller-gitarr och sång som jobbar i byggbranchen  Mark Tysper bas , entreprenör   ,   /Dan Mazreliez trummor.  jobbar som ljudtekniker inom film och tv bland annat gjort Millenium trilogin.<br> <br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p>",
                "en": "<p>Swedish pop group from Huddinge, formed in 1977.</p><p>They had several chart successes in Sweden during the 1970s and 1980s. Famous songs are Skateboard (LA Run), \"Marie\", \"Lover Boy\", \"We Want More\", \"High Hat\" and \"Digital Panic\".<br> <br>When the singer, Lars Liström (1960–1983), died of cancer, Magnum Bonum continued to tour, but they divided the responsibility for the song among themselves. The group's breakthrough came with the song \"Skateboard\" (cover of \"LA Run\") in 1978.<br> <br>Today, Magnum Bonum plays at various nostalgia events. They are still sought after by the organizers. In total, the band has sold over 600,000 records.<br> <br>Member:<br> Lars Liström - Lead Vocals<br> Mats Hedström - Guitar, Vocals<br> Per Schiller - Guitar, Vocals<br> Anders Sjöberg - Bass, Vocals<br> Kim Lindholm - Percussions, Vocals<br>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30.<br> <br>Duration: apx. 120 min. with intermission.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_",
                "en": "http://www.vuotalo.fi/en/events/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_"
            },
            "name": {
                "fi": "Magnum Bonum (SVE) – Klubb Ankdamm",
                "sv": "Magnum Bonum (SVE) – Klubb Ankdamm",
                "en": "Magnum Bonum (SVE) – Klubb Ankdamm"
            },
            "provider": null,
            "short_description": {
                "fi": "Magnum Bonum perustettiin Huddingessa 1970-luvun puolivälissä.",
                "sv": "Magnum Bonum bildades i Huddinge i mitten av 70-talet.",
                "en": "Swedish pop group from Huddinge, formed in 1977."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66710/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66819",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1418519,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-05T12:12:48.623662Z",
                    "last_modified_time": "2025-08-05T12:12:48.623674Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775282.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1418519/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2025-08-05T12:12:48.548398Z",
            "last_modified_time": "2025-08-20T02:14:04.155024Z",
            "date_published": null,
            "start_time": "2025-10-07T11: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,
            "description": {
                "fi": "<p>Näyttelijä Johanna Ringbom ja trubaduuri-muusikko Magnus Gräsbeck kutsuvat sinut ranskalaisten ja ruotsalaisten chansoneiden konserttiin. Ruotsinkielinen senioriverkostotapaaminen.</p><p>Konsertissa on intiimi tunnelma. Laulujen joukossa on sekä tunnettuja että vähemmän tunnettuja kappaleita, esimerkiksi ranskankieliset ”Ne me quitte pas”, ”Milord” ja ”Les feuilles mortes” sekä ruotsinkieliset ”Loppan och pianisten” ja ”Fabeln om spindeln och flugan”. Lauluja on yhteensä yhdeksän, ja niiden välissä on leppoisaa rupattelua, joka pohjautuu Pariisin kevääseen 1968. Artistit laulavat sekä yhdessä että soolona, ja Gräsbeck säestää kitaralla. Yleisö saa nauttia erittäin hyvästä ääntämyksestä, sillä molemmat artistit puhuvat ranskaa.</p><p>Konsertti kestää noin 50 minuuttia.<br>Laulut ranskaksi ja ruotsiksi, välispiikit ruotsiksi. Infotori senioreille ruotsiksi.</p>",
                "sv": "<p>Skådespelaren Johanna Ringbom och trubaduren, musikern Magnus Gräsbeck bjuder in till en konsert med franska och svenska chansoner.</p><p>En konsert i det intima formatet. Det blir både kända och mindre kända sånger. Bland annat “Ne me quitte pas”, “Milord”, “Les feuilles mortes” på franska, och “Loppan och pianisten” samt “Fabeln om spindeln och flugan” på svenska. Mellan de 9 sångerna lättsamt småprat som tar avstamp i Parisvåren 1968. Artisterna sjunger såväl solo som tillsammans och Gräsbeck ackompanjerar på gitarr. Publiken bjuds på mycket gott uttal då båda behärskar det franska språket.</p><p>Konserten räcker ca 50 minuter. Sångerna är på franska och svenska, mellansnacket på svenska liksom infotorget för seniorer. Kaffeservering - Johannes och Matteus församlingar bjuder på kaffe.</p>",
                "en": "<p>Actor Johanna Ringbom and troubadour and musician Magnus Gräsbeck invite you to a concert of French and Swedish chansons. Network meeting for seniors in swedish.</p><p>This is a concert with an intimate format. There will be both well-known and less well-known songs. These include \"Ne me quitte pas\", \"Milord\", \"Les feuilles mortes\" in French, and \"Loppan och pianisten\" and \"Fabeln om spindeln och flugan\" in Swedish. Between the nine songs there will be light talk based on Paris in the spring of 1968. The artists sing both solo and together and Gräsbeck accompanies on guitar. The audience is treated to very good pronunciation as both artists are fluent in French.</p><p>The concert lasts approximately 50 minutes. The songs are in french and swedish, the talk and information square for seniors in swedish.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CDDF2B73F1DCB1117D337CDC3093FEFD/S_IL_VOUS_PLAIT_ranskalaisvaikutteinen_konsertti_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CDDF2B73F1DCB1117D337CDC3093FEFD/S_IL_VOUS_PLAIT_-_en_franskinspirerad_konsert_",
                "en": "http://www.vuotalo.fi/en/events/event/CDDF2B73F1DCB1117D337CDC3093FEFD/S_IL_VOUS_PLAIT_a_French-inspired_concert_"
            },
            "name": {
                "fi": "S´IL VOUS PLAIT! – ranskalaisvaikutteinen konsertti – Seniornätverksträff med Johanna Ringbom och Magnus Gräsbeck",
                "sv": "S´IL VOUS PLAIT! - en franskinspirerad konsert – Seniornätverksträff med Johanna Ringbom och Magnus Gräsbeck",
                "en": "S´IL VOUS PLAIT! – a French-inspired concert – Seniornätverksträff med Johanna Ringbom och Magnus Gräsbeck"
            },
            "provider": null,
            "short_description": {
                "fi": "Näyttelijä Johanna Ringbom ja trubaduuri-muusikko Magnus Gräsbeck kutsuvat sinut ranskalaisten ja ruotsalaisten chansoneiden konserttiin. Ruotsinkielinen senioriverkostotapaaminen.",
                "sv": "Skådespelaren Johanna Ringbom och trubaduren, musikern Magnus Gräsbeck bjuder in till en konsert med franska och svenska chansoner.",
                "en": "Actor Johanna Ringbom and troubadour and musician Magnus Gräsbeck invite you to a concert of French and Swedish chansons. Network meeting for seniors in swedish."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66819/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66768",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@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": [],
                    "description": null,
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-underbara-kvinnor-vid-sandladskanten-3933506/",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-underbara-kvinnor-vid-sandladskanten-3933506/",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-underbara-kvinnor-vid-sandladskanten-3933506/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1270151,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T07:12:44.554790Z",
                    "last_modified_time": "2025-07-16T07:12:44.554809Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774916.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270151/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T07:12:44.485958Z",
            "last_modified_time": "2025-08-20T02:14:03.095509Z",
            "date_published": null,
            "start_time": "2025-10-02T15: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,
            "description": {
                "fi": "<p>Maanläheinen musikaalikonsertti ruotsiksi, Underbara kvinnor vid sandlådskanten (Ihanat naiset hiekkalaatikolla), lavalla Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo ja Puro Paju.</p><p>Tervetuloa ruotsinkieliseen musikaalikonserttiin kuulemaan vuosaarelaisen laulaja-näyttelijä Marika Westerlingin sanoittamia sekä kääntämiä kappaleita.<br> <br>Marika ja hänen kollegansa Minna Kettunen-Enberg kohtaavat jälleen näyttämöllä jakaakseen avioliiton ratkiriemukkaita tilanteita, kärsimystä hiekkalaatikon reunalla, ajatuksia vanhenemisesta sekä niin yksinäisyyden kuin syvän ystävyydenkin hetkiä. Lavalla heidän kanssaan on kaksi muusikkoa, tutkapari Suvi Isotalo (piano) ja Puro Paju (basso ja perkussiot). Uunituoreiden laulujen, jotka on säveltänyt mm. Suvi Isotalo, lisäksi kvartetti tarjoaa lauluja muun muassa musikaaleista Raka Rör! (Kraanat auki!, Susanna Haavisto/Juha Tikka), Det perfekta livet (Amity Dry) sekä Follies (Stephen Sondheim).</p><p>Tyylillisesti kvartetti liikkuu kevyesti musikaaliballadeista aina poppiin, salsaan ja jopa tangoon asti.<br> <br>Konsertin mahdollistaa Svenska Kulturfondenin tuki.<br> <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.<br>Kesto: n. 120 min. sis. väliaika. <br>Kieli: ruotsi</p>",
                "sv": "<p>En jordnära musikalkonsert på svenska med Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo och Puro Paju.</p><p>Välkommen på en musikalkonsert på svenska med översättningar och även ny sånglyrik av nordsjöbon, sångaren och skådespelaren Marika Westerling.</p><p>Hon och kollegan Minna Kettunen-Enberg möts igen på scen för att dela med sig av dråpliga situationer i äktenskapet, leda vid sandlådskanten, tankar kring åldrande och stunder av såväl ensamhet som djup vänskap. Med sig har de musikerna, radarduon Suvi Isotalo (piano) och Puro Paju (bas och percussion). Utöver splitternytt material, som är tonsatt av bl.a. Suvi Isotalo, kommer kvartetten också att bjuda på sånger ur bland annat musikalerna Raka Rör! (Susanna Haavisto/Juha Tikka), Det perfekta livet (Amity Dry), samt Follies, (Stephen Sondheim).</p><p>Genremässigt rör sig kvartetten ledigt mellan allt från musikalballader och pop till salsa och tango.</p><p>Förverkligat med understöd av Svenska Kulturfonden.<br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus. <br>Språk: svenska</p>",
                "en": "<p>A down-to-earth musical concert in Swedish, Underbara kvinnor vid sandlådskanten (Lovely Ladies in the Sandbox), with Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo and Puro Paju on stage.</p><p>Join us for a musical concert in Swedish, where you will get to hear songs written and translated by singer and actress Marika Westerling.<br> <br>Marika and her colleague Minna Kettunen-Enberg will once again meet on stage to share hilarious situations from marriage, suffering at the edge of the sandbox, thoughts on growing old, and moments of both loneliness and deep friendship. They will be joined on stage by two musicians, the dynamic duo of Suvi Isotalo (piano) and Puro Paju (bass and percussion). In addition to brand-new songs composed by Suvi Isotalo and others, the quartet will perform songs from musicals such as Raka Rör! (Kraanat auki!, Susanna Haavisto/Juha Tikka), Det perfekta livet (Amity Dry) and Follies (Stephen Sondheim).</p><p>Stylistically, the quartet will navigate lightly between musical ballads and pop, salsa and even tango.<br> <br>The concert is made possible with the support of the Swedish Cultural Foundation in Finland.<br> <br>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.<br>Duration: roughly 120 min, incl. intermission<br>Language: Swedish</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/45E6F9E888BE4C96658B6AC7E82296DB/Underbara_kvinnor_vid_sandladskanten",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/45E6F9E888BE4C96658B6AC7E82296DB/Underbara_kvinnor_vid_sandladskanten",
                "en": "http://www.vuotalo.fi/en/events/event/45E6F9E888BE4C96658B6AC7E82296DB/Underbara_kvinnor_vid_sandladskanten"
            },
            "name": {
                "fi": "Underbara kvinnor vid sandlådskanten – Klubb Ankdamm",
                "sv": "Underbara kvinnor vid sandlådskanten – Klubb Ankdamm",
                "en": "Underbara kvinnor vid sandlådskanten – Klubb Ankdamm"
            },
            "provider": null,
            "short_description": {
                "fi": "Maanläheinen musikaalikonsertti ruotsiksi, Underbara kvinnor vid sandlådskanten (Ihanat naiset hiekkalaatikolla), lavalla Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo ja Puro Paju.",
                "sv": "En jordnära musikalkonsert på svenska med Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo och Puro Paju.",
                "en": "A down-to-earth musical concert in Swedish, Underbara kvinnor vid sandlådskanten (Lovely Ladies in the Sandbox), with Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo and Puro Paju on stage."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66814",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/pettson-och-findus/pettson-och-findus-firar-jul-vuotalo-3937031/",
                        "sv": "https://www.lippu.fi/artist/pettson-och-findus/pettson-och-findus-firar-jul-vuotalo-3937031/",
                        "en": "https://www.lippu.fi/artist/pettson-och-findus/pettson-och-findus-firar-jul-vuotalo-3937031/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1411510,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T13:14:15.413972Z",
                    "last_modified_time": "2025-08-04T13:14:15.413989Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775289.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1411510/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-04T13:14:15.253565Z",
            "last_modified_time": "2025-08-20T01:14:47.149717Z",
            "date_published": null,
            "start_time": "2025-12-03T16: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,
            "description": {
                "fi": "<p>Ruotsinkielinen Pettson och Findus firar jul (Viirun ja Pesosen joulua) on turkulaisen Barnens Estrad-teatterin vierailu Vuotalossa.</p><p>Joulun lähestyessä Viirun ja Pesosen kotona tapahtuu yhtä sun toista. Pesonen liukastuu ja loukkaa jalkansa ennen kuin he ovat ehtineet hakea joulukuusta tai laittaa jouluruokaa.</p><p>Ja miten käy joulupukin, jota Viiru niin kovasti odottaa...<br>Onneksi on olemassa avuliaita naapureita, ja onneksi Viiru ja Pesonen ovat niin kekseliäitä!</p><p>Hauska, iloinen ja tunnelmallinen näytelmä viehättävästä parivaljakosta ja heidän jouluaskareistaan.<br>Pekka Sonck on luonut näytelmän Sven Nordqvistin kirjojen pohjalta.</p><p>Ohjaus: Samuel Karlsson<br> Puvut: Marjo Haapasalo<br> Lavastus, kuvat ja grafiikka: Lasse Andersson<br> Musiikki ja ääniefektit: Stefan ”Kilju” Lindblom ja Anders Grönroos<br> Rekvisiitta: Pia Lindén-Lamoureux<br> Tuottaja: Anders Grönroos<br> Rooleissa: Petra Rauhala, Jesper Fransson ja Catrine Krusberg<br> Kustantamo: Draken Teaterförlag<br> Kohderyhmä: 2–9-vuotiaat perheineen<br> Kesto: 35–40 minuuttia<br>Kieli: Ruotsi</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! <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/pettson-och-findus-helsingin-kaupunki-nuorisolippu-vuotalo-20470584/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Barnens Estrad från Åbo gästspelar i Nordhuset med Pettson och Findus på svenska.</p><p>När julen närmar sig hemma hos katten Findus och gubben Pettson händer det ett och annat. Pettson halkar och gör sig illa i foten innan de hunnit hämta julgran eller lagat julmat.</p><p>Och hur blir det med julgubben som Findus så längtar efter…<br>Nog är det tur att det finns hjälpsamma grannar och att både Pettson och Findus är så påhittiga!</p><p>En rolig, glad och stämningsfull pjäs om det tjusiga paret och deras julbestyr.<br>Av Pekka Sonck efter Sven Nordqvists böcker.</p><p>Regi: Samuel Karlsson<br>Dräkter: Marjo Haapasalo<br>Dekor, foto & grafik: Lasse Andersson<br>Musik och ljudeffekter: Stefan ”Kilju” Lindblom och Anders Grönroos<br>Rekvisitör: Pia Lindén-Lamoureux<br>Producent: Anders Grönroos<br>I rollerna: Petra Rauhala, Jesper Fransson och Catrine Krusberg<br>Förlag: Draken Teaterförlag<br>Publik: 2-9-åringar och deras familjer.<br>Längd: 35-40 minuter.<br>Språk: Svenska</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!<br>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/pettson-och-findus-helsingin-kaupunki-nuorisolippu-vuotalo-20470584/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Barnens Estrad-theatre group from Turku visits Vuotalo with the swedishspeaking performance Pettson och Findus firar jul (Findus at Christmas).</p><p>As Christmas approaches at the home of the cat Findus and old man Pettson, a few things happen. Pettson slips and hurts his foot before they have had time to get the Christmas tree or cook Christmas dinner.</p><p>And what about Father Christmas that Findus longs for so much...</p><p>Luckily there are helpful neighbours, and both Pettson and Findus are very inventive!</p><p>A funny, cheerful and atmospheric play about the lovely duo and their Christmas endeavours.</p><p>By Pekka Sonck, based on the books by Sven Nordqvist.</p><p>Directed by: Samuel Karlsson<br>Costumes: Marjo Haapasalo<br>Decor, photo & graphics: Lasse Andersson<br>Music and sound effects: Stefan \"Kilju\" Lindblom and Anders Grönroos<br>Props master: Pia Lindén-Lamoureux<br>Producer: Anders Grönroos<br>Starring: Petra Rauhala, Jesper Fransson and Catrine Krusberg<br>Publisher: Draken Teaterförlag<br>Audience: 2–9-year-olds and their families<br>Length: 35–40 minutes<br>Language: Swedish</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! <br>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/pettson-och-findus-helsingin-kaupunki-nuorisolippu-vuotalo-20470584/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2A3C973403329EF88C55821F692A0D3C/Findus_och_Pettson_firar_jul",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2A3C973403329EF88C55821F692A0D3C/Findus_och_Pettson_firar_jul",
                "en": "http://www.vuotalo.fi/en/events/event/2A3C973403329EF88C55821F692A0D3C/Findus_och_Pettson_firar_jul"
            },
            "name": {
                "fi": "Findus och Pettson firar jul – Barnens Estrad",
                "sv": "Findus och Pettson firar jul – Barnens Estrad",
                "en": "Findus och Pettson firar jul – Barnens Estrad"
            },
            "provider": null,
            "short_description": {
                "fi": "Ruotsinkielinen Pettson och Findus firar jul (Viirun ja Pesosen joulua) on turkulaisen Barnens Estrad-teatterin vierailu Vuotalossa.",
                "sv": "Barnens Estrad från Åbo gästspelar i Nordhuset med Pettson och Findus på svenska.",
                "en": "Barnens Estrad-theatre group from Turku visits Vuotalo with the swedishspeaking performance Pettson och Findus firar jul (Findus at Christmas)."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66809",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "10€ / 8€",
                        "sv": "10€ / 8€",
                        "en": "10€ / 8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1410897,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T11:14:44.273937Z",
                    "last_modified_time": "2025-08-04T11:14:44.273954Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775281.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1410897/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2025-08-04T11:14:44.144025Z",
            "last_modified_time": "2025-08-20T01:14:30.089855Z",
            "date_published": null,
            "start_time": "2025-09-16T11: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,
            "description": {
                "fi": "<p>A Tribute to Billie on 1930-luvun hengessä toteutettu konsertti, jossa kuullaan jazzlegenda Billie Holidayn rakastetuimpia kappaleita tarinoineen.</p><p>Lavalla kuulemme Mirella Pendolinin tulkitsevan Holidayn kappaleita yhdessä pianisti Kalle Katzin, basisti Ulf Krokforsin ja rumpali Thomas Törnroosin kanssa.</p><p>Illan aikana yleisö saa kuulla henkilökohtaisia tulkintoja muun muassa kappaleista Fine and Mellow, Gloomy Sunday, God Bless the Child ja monista muista.</p><p>Mirella Pendolin on laulaja, joka tunnetaan monista eri kokoonpanoista sekä sooloartistina. Hänellä on erityinen rakkaus vanhaa jazzperinnettä kohtaan – erityisesti naisartisteja – joita hän oppi tuntemaan jo lapsena kotonaan. Hänen äitinsä, jazzlaulaja Raili Pendolin, soitti usein mm. Ella Fitzgeraldin, Sarah Vaughanin ja Dinah Washingtonin musiikkia.</p><p>Tervetuloa kokemaan tunnelmallinen ja inspiroiva konserttielämys, lämpimästi tervetuloa! Kesto n. 90 min.</p>",
                "sv": "<p>A Tribut to Billie är en konsert i 30-tals anda med jazzlegenden Billie Holidays mest älskade låtar varvat med anekdoter ur hennes spännande och dramatiska liv.</p><p>På scenen hör vi Mirella Pendolin tolka Holidays låtar, tillsammans med pianisten Kalle Katz, basisten Ulf Krokfors och Thomas Törnroos på trummor.</p><p>Vi bjuder på en helkvälls konsert var tolkningarna av Billie Holidays låtar, deras personlighet, sårbarhet och Billies livsöde, inte lämnar någon oberörd. Under kvällen får publiken höra personliga tolkningar av låtar som Fine and mellow, Gloomy sunday, God bless the child och många fler.</p><p>Mirella Pendolin är en sångerska välkänd från många olika ensembler samt som soloartist. Mirella har en förkärlek för den gamla jazz traditionen, och speciellt de kvinnliga artisterna, som hon blev bekant med redan som barn hemma där hennes mamma, jazzsångerskan Raili Pendolin, spelade musik av sångerskor som bl.a Ella Fitzgerald, Sarah Vaughan och Dinah Washington.</p><p>Vi vill bjuda på en stämningsfull och inspirerande konsertupplevelse, varmt välkomna! Längd ca 90 min.</p>",
                "en": "<p>‘A Tribute to Billie’ is a 1930s-inspired concert featuring some of jazz legend Billie Holiday’s most beloved songs and their stories.</p><p>On stage, we will hear Mirella Pendolin interpret Holiday’s songs together with pianist Kalle Katz, bassist Ulf Krokfors and drummer Thomas Törnroos.</p><p>During the evening, the audience will hear personal interpretations of songs such as Fine and Mellow, Gloomy Sunday, God Bless the Child and many others.</p><p>Mirella Pendolin is a singer known for her work in various ensembles and as a solo artist. She has a special love for the old jazz tradition – especially the women artists – that she got to know as a child at home. Her mother, jazz singer Raili Pendolin, would often play the music of Ella Fitzgerald, Sarah Vaughan and Dinah Washington, among others.</p><p>Join us for an atmospheric and inspiring concert experience. We are looking forward to seeing you! Duration apx 90 min.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E88372C15B438316D942AD01CCE67BCF/A_Tribute_to_Billie",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E88372C15B438316D942AD01CCE67BCF/A_Tribute_to_Billie",
                "en": "http://www.vuotalo.fi/en/events/event/E88372C15B438316D942AD01CCE67BCF/A_Tribute_to_Billie"
            },
            "name": {
                "fi": "A Tribute to Billie – Mirella Pendolin",
                "sv": "A Tribute to Billie – Mirella Pendolin",
                "en": "A Tribute to Billie – Mirella Pendolin"
            },
            "provider": null,
            "short_description": {
                "fi": "A Tribute to Billie on 1930-luvun hengessä toteutettu konsertti, jossa kuullaan jazzlegenda Billie Holidayn rakastetuimpia kappaleita tarinoineen.",
                "sv": "A Tribut to Billie är en konsert i 30-tals anda med jazzlegenden Billie Holidays mest älskade låtar varvat med anekdoter ur hennes spännande och dramatiska liv.",
                "en": "‘A Tribute to Billie’ is a 1930s-inspired concert featuring some of jazz legend Billie Holiday’s most beloved songs and their stories."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66809/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000360",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000360/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000360/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000360/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 408450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-26T08:16:01.191774Z",
                    "last_modified_time": "2025-03-26T08:16:01.191790Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:19.551910Z",
            "last_modified_time": "2025-08-19T22:16:41.987755Z",
            "date_published": null,
            "start_time": "2025-08-19T15: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,
            "description": {
                "fi": "<p>Sara Koiranen, Iida Hägglund &amp; työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund &amp; työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Little_Star95 - Ooksä Online?"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000360/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66539",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1218824,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T12:14:16.611029Z",
                    "last_modified_time": "2025-07-09T12:14:16.611045Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775000.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1218824/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T12:14:16.481359Z",
            "last_modified_time": "2025-08-19T15:14:43.064192Z",
            "date_published": null,
            "start_time": "2025-08-30T10:00:00Z",
            "end_time": "2025-08-30T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Suomen luonnon päivänä mennään yhdessä Karhukallion metsään nauttimaan musiikista, saduista ja riippumatossa lepäilystä.</p><p>Lähimetsät ovat tärkeitä viherkäytäviä, levon ja leikin paikkoja. Kun Stoa menee metsään, on tarjolla muun muassa metsäsatuja, akustista musiikkia ja riippumatoissa lepäilyä. Metsä kutsuu myös tutkimiseen ja taiteen tekemiseen. Hengähdä kanssamme hetkinen ja vaikutu kaupunkiluonnon ihmeistä! Tapahtuma sopii monen ikäisille.</p><p>klo 13 ja 13.30: Metsäsatutuokiot. Ikäsuositus 3–7-vuotiaille. Tukiot ovat samansisältöiset.</p><p>klo 14: Ötökkäelämää -työpaja<br>Tutustutaan yhdessä lähimetsän ötököihin. Mitä muurahaiset puuhastelevat loppukesällä? Missä siirat ja hämähäkit piileksivät? Vieläkö näkyy kimalaisia, ja minne ne katoavat talveksi? Työpaja ohjaa biologi, tietokirjailija Sanja Hakala.</p><p>klo 14.45: Metsäinen kirjavinkkaus aikuisille</p><p>klo 15.30: Karhukallion metsäkonsertti: Kielo Kärkkäinen<br>Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista. Laulaja-lauluntekijä esittää folkia suomeksi, espanjaksi ja englanniksi, minkä lisäksi myös yleisö pääsee laulamaan. Tilaisuuden dramaturgia muotoutuu ympäristön, läsnäolijoiden ja sään yhteistyönä. Metsä on salliva konserttisali, jossa voi istua tai kuljeskella, havainnoida, nauttia eväistä sekä tutustua muihin eläviin.</p><p>***</p><p>Näin pääset paikalle:</p><p>Pääset paikalle esimerkiksi Itäkeskuksesta pikaratikalla 15. Jää pois Kauppamyllyntien pysäkillä.</p><p>Kävellen tai pyörällä matka on Stoalta n. 1,7 kilometriä.</p><p>Astu metsään sen eteläisestä reunasta, Holkkitien ja Viilarintien risteyksestä.</p><p>***</p><p>Tapahtuman järjestää Stoa: Itäkeskuksen kirjasto, Kulttuuripalvelut, Helsingin työväenopisto ja Nuorisopalvelut.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Under Finska naturens dag går man tillsammans till skogen i Björnklippan för att njuta av musik, sagor och vila i hängmattan.</p><p>Skogarna i närheten är viktiga grönkorridorer, platser för vila och lek. Då Stoa går till skogs erbjuds bland annat sagor i skogen, akustisk musik och vila i hängmattor. Maten tillreds med trangia och skogen kallar även till att skapa konst. Pusta ut en stund tillsammans med oss och bli fascinerad av stadsnaturens under!</p><p>Programmet fastslås i början av augusti.</p><p>Sagostunder i skogen kl. 13 och 13.30. Åldersrekommendation: 3–7-åringar.<br>Björnklippans skogskonsert kl. 15: Kielo Kärkkäinen</p><p>Kielo Kärkkäinens uppträdande i augusti består av musik, dikter och gemensamma berättelser.Sångaren-låtskrivaren framför folkmusik på finska, spanska och engelska. Även publiken får möjlighet att sjunga. Dramaturgin i evenemanget uppstår som ett samarbete mellan miljön, deltagarna och vädret. Skogen är en tolerant konsertsal där man kan sitta eller vandra, iaktta, njuta av sin matsäck samt bekanta sig med andra levande varelser.</p><p>Fritt inträde</p><p>Evenemanget ordnas av Stoa: Östra centrums bibliotek, Kulturtjänster, Helsingfors arbetarinstitut och Ungdomstjänster</p>",
                "en": "<p>On Finnish Nature Day, we go to Karhukallio Forest together to enjoy music, fairytales and relaxation in a hammock.</p><p>Local forests are important green corridors, as well as places of rest and play. When Stoa goes into the woods, the forest will also offer things such as woodland fairytales, acoustic music and hammocks to relax in. The catering is prepared on a portable stove, and the forest also invites you to make art. Take a moment to breathe with us and let yourself be amazed by the wonders of urban nature!</p><p>More details of the event will be available in early August.<br>at 13:00 and 13:30: forest fairytales Recommended for ages 3–7.<br>at 15:00 Forest Concert at Karhukallio: Kielo Kärkkäinen</p><p>Kielo Kärkkäinen’s performance in August promises music, poems and shared storytelling. The singer-songwriter will perform folk music in Finnish, Spanish and English, and the audience will also have a chance to sing along. The dramaturgy of the event is shaped by the environment, the people present and the weather. The forest is an approachable concert hall where you can sit down or stroll around, observe, enjoy your snacks and meet other living beings.</p><p>Free entry</p><p>The event is organised by Stoa: Itäkeskus Library, Cultural Services, Helsinki Finnish Adult Education Centre and Youth Services</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_menee_metsaan",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_gar_till_skogs",
                "en": "http://www.stoa.fi/en/events/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_goes_into_the_woods"
            },
            "name": {
                "fi": "Stoa menee metsään",
                "sv": "Stoa går till skogs",
                "en": "Stoa goes into the woods"
            },
            "provider": null,
            "short_description": {
                "fi": "Suomen luonnon päivänä mennään yhdessä Karhukallion metsään nauttimaan musiikista, saduista ja riippumatossa lepäilystä.",
                "sv": "Under Finska naturens dag går man tillsammans till skogen i Björnklippan för att njuta av musik, sagor och vila i hängmattan.",
                "en": "On Finnish Nature Day, we go to Karhukallio Forest together to enjoy music, fairytales and relaxation in a hammock."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66539/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmfbwn7i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwqxi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490474,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T12:30:04.575533Z",
                    "last_modified_time": "2025-08-19T12:30:04.575560Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/474f6874-9d98-4c8f-a355-609cfca2d96e.png",
                    "cropping": "69,0,321,252",
                    "photographer_name": "",
                    "alt_text": "Vanhuksia laulamassa yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490474/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-08-19T12:41:05.626240Z",
            "last_modified_time": "2025-08-19T12:41:05.626261Z",
            "date_published": null,
            "start_time": "2025-12-03T15:30:00Z",
            "end_time": "2025-12-03T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Matinkylä-seura ry ja Espoon Eläkeläiset ry järjestävät kerran kuukaudessa Ison Omenan kirjaston Stagella yhteislaulua. </p><p>Tilaisuus on hyvin suosittu ja lämmintunnelmainen. Tervetuloa mukaan nauttimaan virvokkeista, ihanista ikivihreistä kappaleista ja hyvästä seurasta. </p><p><br></p><p>Keskiviikkona 3.9. kello 17:30-19:30 lauletaan 1970- ja 1980-luvun Finnhits levytyksiä Reetta Aholaisen (laulu) ja Riitta Koiviston (harmonikka) johdolla. </p><p><br></p><p>Syksyn loput lauluillat järjestetään  Ke 1.10. Ke 5.11. Ke 3.12.</p><p>Iltojen säestäjät selviävät myöhemmin. </p><p><br></p><p>Lämpimästi tervetuloa mukaan laulamaan!</p><p><br></p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Matinkylän lauluillat"
            },
            "provider": null,
            "short_description": {
                "fi": "Yhteislaulua Ison Omenan kirjastossa"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwn7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmfbwo3y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwqxi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490474,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T12:30:04.575533Z",
                    "last_modified_time": "2025-08-19T12:30:04.575560Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/474f6874-9d98-4c8f-a355-609cfca2d96e.png",
                    "cropping": "69,0,321,252",
                    "photographer_name": "",
                    "alt_text": "Vanhuksia laulamassa yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490474/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-08-19T12:41:05.342404Z",
            "last_modified_time": "2025-08-19T12:41:05.342427Z",
            "date_published": null,
            "start_time": "2025-11-05T15:30:00Z",
            "end_time": "2025-11-05T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Matinkylä-seura ry ja Espoon Eläkeläiset ry järjestävät kerran kuukaudessa Ison Omenan kirjaston Stagella yhteislaulua. </p><p>Tilaisuus on hyvin suosittu ja lämmintunnelmainen. Tervetuloa mukaan nauttimaan virvokkeista, ihanista ikivihreistä kappaleista ja hyvästä seurasta. </p><p><br></p><p>Keskiviikkona 3.9. kello 17:30-19:30 lauletaan 1970- ja 1980-luvun Finnhits levytyksiä Reetta Aholaisen (laulu) ja Riitta Koiviston (harmonikka) johdolla. </p><p><br></p><p>Syksyn loput lauluillat järjestetään  Ke 1.10. Ke 5.11. Ke 3.12.</p><p>Iltojen säestäjät selviävät myöhemmin. </p><p><br></p><p>Lämpimästi tervetuloa mukaan laulamaan!</p><p><br></p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Matinkylän lauluillat"
            },
            "provider": null,
            "short_description": {
                "fi": "Yhteislaulua Ison Omenan kirjastossa"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwo3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmfbwpqa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwqxi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490474,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T12:30:04.575533Z",
                    "last_modified_time": "2025-08-19T12:30:04.575560Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/474f6874-9d98-4c8f-a355-609cfca2d96e.png",
                    "cropping": "69,0,321,252",
                    "photographer_name": "",
                    "alt_text": "Vanhuksia laulamassa yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490474/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-08-19T12:41:04.869058Z",
            "last_modified_time": "2025-08-19T12:41:04.869082Z",
            "date_published": null,
            "start_time": "2025-10-01T14:30:00Z",
            "end_time": "2025-10-01T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Matinkylä-seura ry ja Espoon Eläkeläiset ry järjestävät kerran kuukaudessa Ison Omenan kirjaston Stagella yhteislaulua. </p><p>Tilaisuus on hyvin suosittu ja lämmintunnelmainen. Tervetuloa mukaan nauttimaan virvokkeista, ihanista ikivihreistä kappaleista ja hyvästä seurasta. </p><p><br></p><p>Keskiviikkona 3.9. kello 17:30-19:30 lauletaan 1970- ja 1980-luvun Finnhits levytyksiä Reetta Aholaisen (laulu) ja Riitta Koiviston (harmonikka) johdolla. </p><p><br></p><p>Syksyn loput lauluillat järjestetään  Ke 1.10. Ke 5.11. Ke 3.12.</p><p>Iltojen säestäjät selviävät myöhemmin. </p><p><br></p><p>Lämpimästi tervetuloa mukaan laulamaan!</p><p><br></p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Matinkylän lauluillat"
            },
            "provider": null,
            "short_description": {
                "fi": "Yhteislaulua Ison Omenan kirjastossa"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwpqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmmfbwqfq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwqxi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490474,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T12:30:04.575533Z",
                    "last_modified_time": "2025-08-19T12:30:04.575560Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/474f6874-9d98-4c8f-a355-609cfca2d96e.png",
                    "cropping": "69,0,321,252",
                    "photographer_name": "",
                    "alt_text": "Vanhuksia laulamassa yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490474/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-08-19T12:41:04.425147Z",
            "last_modified_time": "2025-08-19T12:41:04.425166Z",
            "date_published": null,
            "start_time": "2025-09-03T14:30:00Z",
            "end_time": "2025-09-03T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Matinkylä-seura ry ja Espoon Eläkeläiset ry järjestävät kerran kuukaudessa Ison Omenan kirjaston Stagella yhteislaulua. </p><p>Tilaisuus on hyvin suosittu ja lämmintunnelmainen. Tervetuloa mukaan nauttimaan virvokkeista, ihanista ikivihreistä kappaleista ja hyvästä seurasta. </p><p><br></p><p>Keskiviikkona 3.9. kello 17:30-19:30 lauletaan 1970- ja 1980-luvun Finnhits levytyksiä Reetta Aholaisen (laulu) ja Riitta Koiviston (harmonikka) johdolla. </p><p><br></p><p>Syksyn loput lauluillat järjestetään  Ke 1.10. Ke 5.11. Ke 3.12.</p><p>Iltojen säestäjät selviävät myöhemmin. </p><p><br></p><p>Lämpimästi tervetuloa mukaan laulamaan!</p><p><br></p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Matinkylän lauluillat"
            },
            "provider": null,
            "short_description": {
                "fi": "Yhteislaulua Ison Omenan kirjastossa"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmfbwqfq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}