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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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&max_duration=3d&page=60
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 26416,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=61",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=59"
    },
    "data": [
        {
            "id": "espoo_le:agmtrcke6a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrckggu/?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": 1490132,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-22T10:37:50.147627Z",
                    "last_modified_time": "2025-04-22T10:37:50.147644Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/9ce152c9-0c7b-40d0-970b-f69437beeec0.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lukukoira Kossi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490132/?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-09-11T10:29:27.775063Z",
            "last_modified_time": "2025-09-11T10:29:27.775248Z",
            "date_published": null,
            "start_time": "2025-11-10T16:00:00Z",
            "end_time": "2025-11-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa tapaamaan lukukoira Kossia Sellon kirjaston lastenmaahan.",
                "sv": "Välkommen att träffa läshunden Kossi i Sellobiblioteket's barnland.",
                "en": "\nWelcome to meet the reading dog Kossi in Sello Library's children's section."
            },
            "info_url": null,
            "name": {
                "fi": " Lukukoira Kossi",
                "sv": "Läshund Kossi",
                "en": " Reading dog Kossi"
            },
            "description": {
                "fi": "<p>Tervetuloa tapaamaan lukukoira Kossia Sellon lastenmaahan. Jos haluat harjoitella lukemista, Kossi kuuntelee mielellään eikä koskaan hauku tai arvostele. Kossi pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p><p><br></p><p>Kossi paikalla:</p><p>15.9. klo 18</p><p>13.10. klo 18</p><p>10.11. klo 18</p><p>15.12. klo 18</p>",
                "sv": "<p>Välkommen att träffa läshunden Kossi i Sellos barnland. Vill du träna på att läsa lyssnar Kossi gärna och skäller eller kritiserar aldrig. Kossi gillar att bli klappad och gosad.</p>",
                "en": "<p>Welcome to meet the reading dog Kossi in Sello's children's section. If you want to practice reading, Kossi is happy to listen and never barks or criticizes. Kossi likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrcke6a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtrckfk4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrckggu/?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": 1490132,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-22T10:37:50.147627Z",
                    "last_modified_time": "2025-04-22T10:37:50.147644Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/9ce152c9-0c7b-40d0-970b-f69437beeec0.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lukukoira Kossi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490132/?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-09-11T10:29:27.565941Z",
            "last_modified_time": "2025-09-11T10:29:27.565960Z",
            "date_published": null,
            "start_time": "2025-10-13T15:00:00Z",
            "end_time": "2025-10-13T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa tapaamaan lukukoira Kossia Sellon kirjaston lastenmaahan.",
                "sv": "Välkommen att träffa läshunden Kossi i Sellobiblioteket's barnland.",
                "en": "\nWelcome to meet the reading dog Kossi in Sello Library's children's section."
            },
            "info_url": null,
            "name": {
                "fi": " Lukukoira Kossi",
                "sv": "Läshund Kossi",
                "en": " Reading dog Kossi"
            },
            "description": {
                "fi": "<p>Tervetuloa tapaamaan lukukoira Kossia Sellon lastenmaahan. Jos haluat harjoitella lukemista, Kossi kuuntelee mielellään eikä koskaan hauku tai arvostele. Kossi pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p><p><br></p><p>Kossi paikalla:</p><p>15.9. klo 18</p><p>13.10. klo 18</p><p>10.11. klo 18</p><p>15.12. klo 18</p>",
                "sv": "<p>Välkommen att träffa läshunden Kossi i Sellos barnland. Vill du träna på att läsa lyssnar Kossi gärna och skäller eller kritiserar aldrig. Kossi gillar att bli klappad och gosad.</p>",
                "en": "<p>Welcome to meet the reading dog Kossi in Sello's children's section. If you want to practice reading, Kossi is happy to listen and never barks or criticizes. Kossi likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrckfk4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtrckfze",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrckggu/?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": 1490132,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-22T10:37:50.147627Z",
                    "last_modified_time": "2025-04-22T10:37:50.147644Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/9ce152c9-0c7b-40d0-970b-f69437beeec0.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lukukoira Kossi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490132/?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-09-11T10:29:27.376476Z",
            "last_modified_time": "2025-09-11T10:29:27.376495Z",
            "date_published": null,
            "start_time": "2025-09-15T15:00:00Z",
            "end_time": "2025-09-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa tapaamaan lukukoira Kossia Sellon kirjaston lastenmaahan.",
                "sv": "Välkommen att träffa läshunden Kossi i Sellobiblioteket's barnland.",
                "en": "\nWelcome to meet the reading dog Kossi in Sello Library's children's section."
            },
            "info_url": null,
            "name": {
                "fi": " Lukukoira Kossi",
                "sv": "Läshund Kossi",
                "en": " Reading dog Kossi"
            },
            "description": {
                "fi": "<p>Tervetuloa tapaamaan lukukoira Kossia Sellon lastenmaahan. Jos haluat harjoitella lukemista, Kossi kuuntelee mielellään eikä koskaan hauku tai arvostele. Kossi pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p><p><br></p><p>Kossi paikalla:</p><p>15.9. klo 18</p><p>13.10. klo 18</p><p>10.11. klo 18</p><p>15.12. klo 18</p>",
                "sv": "<p>Välkommen att träffa läshunden Kossi i Sellos barnland. Vill du träna på att läsa lyssnar Kossi gärna och skäller eller kritiserar aldrig. Kossi gillar att bli klappad och gosad.</p>",
                "en": "<p>Welcome to meet the reading dog Kossi in Sello's children's section. If you want to practice reading, Kossi is happy to listen and never barks or criticizes. Kossi likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrckfze/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtrckgui",
            "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: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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "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": 1490748,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-11T10:16:49.867266Z",
                    "last_modified_time": "2025-09-11T10:16:49.867281Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7bea4056-f1e8-44d9-b949-0b2e21fba102.png",
                    "cropping": "48,0,543,495",
                    "photographer_name": "",
                    "alt_text": "AI-lla luotu kuva jossa kolme tyttöä kerää roskia syksyisessä maisemassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490748/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-11T10:23:12.004571Z",
            "last_modified_time": "2025-09-11T10:23:12.004589Z",
            "date_published": "2025-09-11T10:00:00Z",
            "start_time": "2025-09-16T13:00:00Z",
            "end_time": "2025-09-16T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nuorille suunnattu ulkoiluretki lähiluontoa putsaamaan. "
            },
            "info_url": null,
            "name": {
                "fi": "Tee päivän hyvä työ, ja tule keräämään roskia lähiluonnosta Pidä luonto siistinä -päivänä."
            },
            "description": {
                "fi": "<p>Tee päivän hyvä työ ja tule mukaan keräämään roskia lähiluonnosta.</p><p>Kirjasto lainaa roskapihdit ja kirjastolta lähdetään yhdessä retkelle ulos siivoamaan lähiluontoa. Sateen sattuessa jäädään sisälle ja tehdään aiheeseen liittyvä kahoot-visailu.</p>"
            },
            "location_extra_info": {
                "fi": "Vox"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtrckgui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65835",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "22,80 € / 17,80 €",
                        "sv": "22,80 € / 17,80 €",
                        "en": "22,80 € / 17,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/fat-chance-old-school-rhythm-blues-malmitalo-20040184/",
                        "sv": "https://www.lippu.fi/event/fat-chance-old-school-rhythm-blues-malmitalo-20040184/",
                        "en": "https://www.lippu.fi/event/fat-chance-old-school-rhythm-blues-malmitalo-20040184/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178693,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T09:13:56.713036Z",
                    "last_modified_time": "2025-07-04T09:13:56.713054Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767589.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178693/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T09:13:56.601384Z",
            "last_modified_time": "2025-09-11T08:12:49.249525Z",
            "date_published": null,
            "start_time": "2025-10-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kansainvälisesti huomioidun Fat Chance -yhtyeen Rhythm & Blues on tarttuvaa, reipasta ja svengaavaa.",
                "sv": "Den internationellt uppmärksammade gruppen Fat Chance Rhythm & Blues är smittande, rask och svängig.",
                "en": "The internationally acclaimed Fat Chance band's Rhythm & Blues is catchy, lively and swinging."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FC872E3615EE8D6474DC6AEE838DF453/Fat_Chance_Old_School_Rhythm_Blues",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FC872E3615EE8D6474DC6AEE838DF453/Fat_Chance_Old_School_Rhythm_Blues",
                "en": "http://www.malmitalo.fi/en/events/event/FC872E3615EE8D6474DC6AEE838DF453/Fat_Chance_Old_School_Rhythm_Blues"
            },
            "name": {
                "fi": "Fat Chance: Old School Rhythm & Blues",
                "sv": "Fat Chance: Old School Rhythm & Blues",
                "en": "Fat Chance: Old School Rhythm & Blues"
            },
            "description": {
                "fi": "<p>Kansainvälisesti huomioidun Fat Chance -yhtyeen Rhythm & Blues on tarttuvaa, reipasta ja svengaavaa.</p><p>Bändi ammentaa tyylinsä 40–50-lukujen ajalta. Yhtyeen pitkäsoittolevy ”Second Chance” äänestettiin Finnish Blues News- kriitikoiden puolesta vuoden 2023 parhaaksi kotimaiseksi roots-musiikin levyksi.</p><p>Esiintymässä:<br>Merikukka Kiviharju, laulu<br>Gona Lehtinen, kitara<br>Jan Smedberg, basso<br>Arto Taskinen, rummut<br>Hessu Pirhonen, piano</p><p>Kesto: 2 t, sis. 20 min väliajan</p>",
                "sv": "<p>Den internationellt uppmärksammade gruppen Fat Chance Rhythm & Blues är smittande, rask och svängig.</p><p>Bandet inhämtar sin stil från 40- och 50-talen. Gruppens lp-skiva Second Chance röstades fram av kritikerna av Finnish Blues News som den bästa inhemska roots-musikskivan 2023.</p><p>Artister:<br>Merikukka Kiviharju, sång<br>Gona Lehtinen, gitarr<br>Jan Smedberg, kontrabas<br>Arto Taskinen, trummor<br>Hessu Pirhonen, piano</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>",
                "en": "<p>The internationally acclaimed Fat Chance band's Rhythm & Blues is catchy, lively and swinging.</p><p>The band draws its style from the 40s and 50s. Their full-length album, Second Chance, was voted the best Finnish roots music album of 2023 by the Finnish Blues News critics.</p><p>Performers:<br>Merikukka Kiviharju: vocals<br>Gona Lehtinen: guitar<br>Jan Smedberg: bass<br>Arto Taskinen: drums<br>Hessu Pirhonen: piano</p><p>Duration: 2 hours, incl. a 20-min intermission</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65835/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtpkivwq",
            "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: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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "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": 1490746,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-11T07:00:29.277633Z",
                    "last_modified_time": "2025-09-11T07:00:29.277648Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1795db00-fb15-4ae7-bdbd-1bf49d4b00ff.png",
                    "cropping": "192,0,601,408",
                    "photographer_name": "",
                    "alt_text": "vihreä tausta jonka päällä saara hyrkön, Sirpa hertellin ja Tuula Suomisen kuvat ja teksti: Senioreiden palvelut",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490746/?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-09-11T07:04:53.104565Z",
            "last_modified_time": "2025-09-11T07:04:53.104583Z",
            "date_published": "2025-09-11T06:59:00Z",
            "start_time": "2025-09-15T11:30:00Z",
            "end_time": "2025-09-15T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "keskustelutilaisuus"
            },
            "info_url": null,
            "name": {
                "fi": "Vihreiden keskustelutilaisuus: Senioreiden palvelut"
            },
            "description": {
                "fi": "<p>Vihreät keskustelevat senioreiden palveluista.</p>"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": {
                "fi": "Vihreät"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtpkivwq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000259",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849163/?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/hyenans-dagar-helsingin-kaupunginteatteri-20000259/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000259/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000259/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1490709,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T07:16:38.476528Z",
                    "last_modified_time": "2025-09-10T07:16:38.476549Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/67/1b/hyenans-dagar-tickets_438240_3555827_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/1490709/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:22.394208Z",
            "last_modified_time": "2025-09-10T22:14:40.995161Z",
            "date_published": null,
            "start_time": "2025-09-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Saara Turunen HYENANS DAGAR Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=en"
            },
            "name": {
                "sv": "Hyenans Dagar Förhandsvisning"
            },
            "description": {
                "fi": "<p>Saara Turunen<br><strong>HYENANS DAGAR</strong></p><p>Hyenans dagar (Hyeenan päivät) perustuu osittain Saara Turusen samannimiseen romaaniin.</p><p>Teos uppoutuu erääseen lisääntymiskertomukseen, se valottaa yhden naisen tarinaa hedelmöityshoidoista lapsen saamiseen. Esitys on raportinomainen seurantakertomus sekä yhden ajanjakson kuvaus, jossa yksityinen ja yhteiskunnallinen risteytyvät ja menevät sekaisin. Pinnan alla teos käsittelee kehollisuutta, kontrollia ja pärjäämisen kulttuuria. Draama sijaitsee kuvien ulkopuolella, osittain katsojan omassa mielessä. Esitys ei tarjoile valmiita vastauksia, pikemminkin se vain näyttää kohtauksia, hetkiä ja tilanteita, joista katsoja voi tehdä omat tulkintansa.</p><p>Kuten Turusen aiemmissakin töissä, myös Hyenans dagar -esityksessä musiikilla ja kuvallisuudella on keskeinen osansa.<br>Hyenans dagar on suunnattu kaikille, jotka ovat joskus tavoitelleet jotakin, kohdanneet vaikeuksia tai tulleet sysätyiksi itselleen tuntemattomaan maailmaan.</p>",
                "sv": "<p>Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam.</p><p>Föreställningen skildrar en kvinnas erfarenhet av fertilitetsbehandlingar och vägen till att få barn. Med ett dokumentärartat grepp skildras en tidsperiod i livet där gränsen mellan det privata och det samhälleliga suddas ut. Under ytan behandlar verket frågor om kroppslighet, kontroll och att alltid behöva klara sig själv. Dramat utspelar sig inte bara på scenen, utan också i åskådarens egna tankar och reflektioner. Föreställningen ger inga färdiga svar, utan bjuder istället på scener och ögonblick som publiken får tolka på sitt eget sätt.</p><p>Musiken och bildspråket spelar en central roll, precis som i Saara Turunens tidigare föreställningar.<br>Hyenans dagar riktar sig till alla som någonsin strävat efter något, upplevt motgångar eller kastats in i en okänd värld.</p><p>******</p><p>Aktörer: Kreeta Salminen, Elmer Bäck, Katja Küttner, Pia Runnakko, Alexander Wendelin</p><p>Manus och regi: Saara Turunen<br>Översättning: Kasimir Koski<br>Scenografi: Milja Aho<br>Dräktdesign: Liisa Pesonen<br>Ljusdesign: Ainu Palmu<br>Ljuddesign: Tuuli Kyttälä<br>Maskdesign: Jaana Nykänen</p>"
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999879",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?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/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999879/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999879/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999879/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.766941Z",
                    "last_modified_time": "2025-03-17T22:17:20.766955Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_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/360032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:22.296295Z",
            "last_modified_time": "2025-09-10T22:14:40.918626Z",
            "date_published": null,
            "start_time": "2025-09-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Sutinaa Ja Säätöä"
            },
            "description": {
                "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>",
                "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999879/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19714950",
            "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-3532975/?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/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19714950/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19714950/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19714950/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_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/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:20.855608Z",
            "last_modified_time": "2025-09-10T22:14:40.842301Z",
            "date_published": null,
            "start_time": "2025-09-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19714950/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66367",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 892918,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-30T07:12:47.968145Z",
                    "last_modified_time": "2025-05-30T07:12:47.968158Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773638.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/892918/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-30T07:12:47.904973Z",
            "last_modified_time": "2025-09-10T13:14:28.220145Z",
            "date_published": null,
            "start_time": "2025-09-16T13:00:00Z",
            "end_time": "2025-09-16T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!",
                "sv": "Welcome Day välkomnar Finlands nyinflyttade invånare välkomna till Helsingfors!",
                "en": "Cultural Centre Kanneltalo welcomes the recently arrived international residents to Helsinki!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/710C620C888DCAF55051854D3C0F34FE/Welcome_Day_Kanneltalo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/710C620C888DCAF55051854D3C0F34FE/Welcome_Day_Kanneltalo",
                "en": "http://www.kanneltalo.fi/en/events/event/710C620C888DCAF55051854D3C0F34FE/Welcome_Day_Kanneltalo"
            },
            "name": {
                "fi": "Welcome Day Kanneltalo",
                "sv": "Welcome Day Kanneltalo",
                "en": "Welcome Day Kanneltalo"
            },
            "description": {
                "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu energisestä ja tanssittavasta musiikista tunnetun BaranBand-yhtyeen vauhdikkaaseen esitykseen!</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/6BE3D8DFEEB99EB7\">Ilmoittaudu mukaan!</a></u></p><p><b>BaranBand</b> tanssittaa ja hurmaa kurdilaisesta ja persialaisesta musiikista vaikutteita ottavalla soundillaan! Baranin (kurdiksi sade) omaperäiset tulkinnat ovat peräisin bändin jäsenten monenkirjavista taustoista erilaisten musiikkikulttuurien parissa. Bändiä johtavat veljekset Gian ja Marouf Majidi.</p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p>",
                "sv": "<p>Welcome Day välkomnar Finlands nyinflyttade invånare välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemensamt program för personer i alla åldrar. Programmet kulminerar i ett fartfyllt uppträdande av gruppen BaranBand som är känt för sin energiska och dansanta musik!</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan. <br><u><a href=\"https://link.webropolsurveys.com/EP/6BE3D8DFEEB99EB7\">Anmäl dig!</a></u><br> <br>BaranBand lockar till dans och charmerar med ett sound som hämtar inspiration från kurdisk och persisk musik! Barans (på kurdiska regn) originella tolkningar har sitt ursprung i de många olika bakgrunderna i olika musikkulturer. Bandet leds av bröderna Gian och Marouf Majidi.</p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p>",
                "en": "<p>Cultural Centre Kanneltalo welcomes the recently arrived international residents to Helsinki!</p><p>Cultural Centre Kanneltalo welcomes the recently arrived international residents to Helsinki! In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods. <br> <br>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. Finally, the event will end with a bang as BaranBand raises the energy with their fun and electrifying musical performance!</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/6BE3D8DFEEB99EB7\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>The program for Welcome Day Kanneltalo</b></p><p><b>16.00</b>: The services of the City of Helsinki, local art schools and NGOs present their activities in the lobby of Kanneltalo. This part of the program will end at 18.45.</p><p><b>16.30–18.30: Fun activities for people of all ages:</b></p><p><b>African and Street Dances (Outdoors at Sitratori square)</b><br>16.30-17.00: Performance and dance workshop<br>17.30-18.00: Performance and dance workshop<br>Organizer: Just Dance Finland</p><p><b>Circus for Kids! (Outdoors at Sitratori square)</b><br>Organizer: Sirkus Magenta</p><p><b>Decorate your tote bag! (Library)</b><br>Decorate your own Helsinki tote bag!<br>Organizer: Helsinki Urban Art</p><p><b>Stories about integration art workshop (Library)</b><br>Organizer: Africans and African European Association</p><p><b>Baroque-style photoshoot & music (Library)</b><br>Organizer: Finnish Baroque Orchestra</p><p><b>17.00-18.15 Music at the Café Stage</b> <br> <br><b>18.30: The host of the evening, Noor Assad, will share his experiences on living/working in Helsinki. (Kanneltalo Theatre and Concert Hall)</b></p><p><b>18.40–19.30: BaranBand will perform (Kanneltalo Theatre and Concert hall)</b><br>BaranBand is known for getting people on the dance floor with their sound that takes inspiration from Kurdish and Persian music. Baran (rain in Kurdish) creates unique compositions out of diverse musical traditions represented by the band members. The band is led by brothers Gian and Marouf Majidi.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66367/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66753",
            "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 € / 17,80 / 0 €",
                        "sv": "20 € / 17,80 / 0 €",
                        "en": "20 € / 17,80 / 0 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255730,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T09:14:08.649845Z",
                    "last_modified_time": "2025-07-14T09:14:08.649865Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774906.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255730/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T09:14:08.508444Z",
            "last_modified_time": "2025-09-10T13:14:26.819072Z",
            "date_published": null,
            "start_time": "2025-09-12T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!",
                "sv": "Atomirotta startar igen sin traditionella förortsturné från Nordhuset!",
                "en": "Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta",
                "en": "http://www.vuotalo.fi/en/events/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta"
            },
            "name": {
                "fi": "Klubi-ilta: Atomirotta",
                "sv": "Klubi-ilta: Atomirotta",
                "en": "Klubi-ilta: Atomirotta"
            },
            "description": {
                "fi": "<p>Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!</p><p>”On suuri ilo ja kunnia jälleen startata Vuotalolta meidän perinteinen Lähiö-rundimme ja tietysti myös toimia legendaarisen venuen syyskauden itseoikeutettuna käyntiinpolkaisijana! Ja nämähän ovat aina todella upeita ja uniikkeja vetoja, koska perheen pienimmätkin pääsevät mukaan joraamaan! Hyvän mielen paikka numero yksi!”, yhtye iloitsee.</p><p>Ystävänpäivänä 2014 perustettu Atomirotta on alusta asti seurannut vanhaa hienoa viisautta: tekemällä oppii! Yhtye on pitänyt aina langat täysin omissa käsissään ja vaalinut tiukasti hienoa DIY-perinnettä.<br> <br>Vuonna 2025 on kulunut yksitoista vuotta: viisi albumia, lukuisia kulta- ja platinasinkkuja, oma levy-yhtiö, ohjelmatoimisto ja verkkokauppa sekä satoja räjäyttäviä keikkoja ennakkoluulottomasti kuumilta lähiöklubeilta aina suurimmille festarilavoille, joilla Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!<br> <br>Kesto: 75 min (ei väliaikaa)<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.<br>Sali avautuu klo 17.30.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Hanki Jässäri ja lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Atomirotta startar igen sin traditionella förortsturné från Nordhuset!</p><p>\"Det är ett stort nöje och en ära att återigen få starta vår traditionella förortsturné på Nordhuset och naturligtvis också att få vara den berättigade inledaren av den legendariska evenemangsplatsens höstsäsong! Och det här är alltid riktigt bra och unika evenemang, eftersom även de yngsta familjemedlemmarna kan vara med! Den främsta platsen för gott humör!\", säger bandet glatt.<br> <br>Atomirotta grundades på alla hjärtans dag 2014 och har alltid följt ett gammalt ordspråk: övning ger färdighet! Bandet har alltid hållit tyglarna helt i sina egna händer och har alltid strikt upprätthållit en fin DIY-tradition.<br> <br>År 2025 har elva år gått: fem album, många guld- och platinasinglar, eget skivbolag, artistförmedling och webbutik, och hundratals explosiva spelningar från heta förortsklubbar till de största festivalscenerna, vilket har cementerat Atomirottas rykte som ett av de tuffaste och mest kompromisslösa livebanden i landet!</p><p>Längd: 75 minuter (utan paus)<br>Klubbkväll: Café Pokkari står för serveringen, A-rättigheter. Under 18 år i sällskap med en vuxen.<br>Dörrarna till salen öppnas kl. 17.30.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. 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/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!</p><p>“It is a great pleasure and honour to once again start our traditional Lähiö tour at Vuotalo and, of course, to also be the self-appointed kickstarter of the autumn season of this legendary venue! And these are always really great and unique gigs, because even the youngest members of the family can join the fun! The number one feelgood place!” the band enthuses.<br> <br>Founded on Valentine’s Day 2014, Atomirotta has always followed a great old adage: you learn by doing! The band has always kept the reins completely in their own hands and has always strictly maintained a fine DIY tradition.<br> <br>In 2025, eleven years have passed: five albums, numerous gold and platinum singles, the band’s own record label, promotion agency and online store, and hundreds of explosive gigs with no prejudice from hot suburban clubs to the biggest festival stages, cementing Atomirotta’s reputation as one of the best and most uncompromising live bands in the country!</p><p>Duration: 75 min (no intermission)<br>Club night: catering by Café Pokkari, licensed to serve alcohol. People under the age of 18 must be accompanied by an adult.<br>The doors of the hall will open at 17.30.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. 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/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HERE</a></u></p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66753/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmo7smczm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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": null,
            "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": 1490601,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-02T12:37:04.746316Z",
                    "last_modified_time": "2025-09-02T12:37:04.746331Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b75cc648-faee-47f1-b8e4-6f1c0d118597.png",
                    "cropping": "284,0,661,378",
                    "photographer_name": "",
                    "alt_text": "Kuvituskuva.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490601/?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-28T07:47:27.094022Z",
            "last_modified_time": "2025-09-10T12:48:05.181070Z",
            "date_published": null,
            "start_time": "2025-09-26T07:00:00Z",
            "end_time": "2025-09-26T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lapsiperheille suunnattu maksuton tapahtuma pitää sisällään vauvoille ja isommillekin lapsille sopivia konsertteja, valokylvyn ja perhekahvilatoimintaa. ",
                "sv": "Detta kostnadsfria evenemang för barnfamiljer omfattar konserter som passar för bebisar och småbarn, en ljusbad och ett familjecafé. ",
                "en": "Baby's Day is a family-friendly event that includes concerts suitable for babies and toddlers, a light bath, and a family café."
            },
            "info_url": null,
            "name": {
                "fi": "Vauvan päivä Lippulaivan kirjastossa ",
                "sv": "Babydagen på Lippulaivabiblioteket ",
                "en": "Baby's Day at Lippulaiva Library"
            },
            "description": {
                "fi": "<p>Tule juhlistamaan Vauvan päivää 26. syyskuuta Lippulaivan kirjastoon Espoonlahteen! Lapsiperheille suunnattu maksuton tapahtuma pitää sisällään vauvoille ja isommillekin lapsille sopivia konsertteja, valokylvyn ja perhekahvilatoimintaa. Tilaisuudessa lanseerataan Lastenkulttuurikortti, joka tarjoaa espoolaisille lapsiperheille vinkkejä luovaan tekemiseen kotona ja kaupungin kulttuuripalveluiden parissa.&nbsp;&nbsp;</p><p><br></p><p><br></p>\nOhjelma:&nbsp;<p>&nbsp;</p><p><strong>10.00–10.30 |&nbsp;Sinfoniettan kvartetti: Pötköttelykonsertti | Salonki&nbsp;&nbsp;&nbsp;</strong></p><p>Tapiola Sinfoniettan jousikvartetti soittaa noin puolen tunnin konsertin, jossa kuullaan tuttuja klassikoita ja muita kivoja kappaleita.&nbsp;</p><p>Voit kuunnella musiikkia makoillen tai köllötellen patjoilla, tai vaikka istua vanhemman sylissä. Konsertti sopii kaikille lapsille ja aikuisille – ja on ihan ilmainen!&nbsp;</p><p>Jukka Rantamäki, viulu&nbsp;</p><p>Kati Rantamäki, viulu&nbsp;</p><p>Tuula Saari, alttoviulu&nbsp;</p><p>Jukka Kaukola, sello&nbsp;</p><p>&nbsp;</p><p><strong>10.45–12.00 | Valokylpy&nbsp;| Salonki&nbsp;&nbsp;</strong></p><p>Veikeillään värikkäissä varjoissa ja kujeillaan kuvastimissa. Pienten ikiomassa kummastelussa tankataan sylikaupalla valoa varastoon. Ikäsuositus 4-14 kk. Valokylpy toimii non-stop-periaatteella.&nbsp;</p><p>Ohjaaja: Jenni Vilander, Lasten kulttuurikeskus Aurora&nbsp;&nbsp;</p><p>&nbsp;</p><p><strong>11.15–12.00 | Vauvamuskari | Perhealue</strong></p><p>Vauvamuskarissa tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Vauvamuskarin kesto on noin 30 minuuttia. Voi osallistua kielitaidosta ja musiikkitaustasta riippumatta.&nbsp;</p><p>Ohjaaja: Lauri Iljin, Espoon kaupunginkirjasto&nbsp;</p><p>&nbsp;</p><p><strong>10.00–12.00 | Kohtaamispiste&nbsp;| Yhteisökeittiö Kapyysi&nbsp;</strong></p><p>Tervetuloa tutustumaan muihin vanhempiin ja kuulemaan samalla Espoon kaupunginkirjaston tapahtumatoiminnasta. Jaamme perheille ruokalappuja. Jos perheen pienokaisella iskee nälkäkiukku kesken tapahtuman Muru Baby ❤ Miu-smoothie auttaa! Tarjolla Muru Babyn ja Fanniemotionsin kanssa yhteistyössä tehtyjä Miu-smoothieitä.&nbsp;&nbsp;</p><p>&nbsp;</p><p>Vauvan päivän järjestää KulttuuriEspoon lastenkulttuurin toimijat, mukaan lukien Espoon kaupunginkirjasto, Lasten kulttuurikeskus Aurora ja Tapiola Sinfonietta. Yhteistyökumppanina Vauvan päivässä on Muru Baby, joka sponsoroi tapahtumaan Muru Baby ❤ Miu-smoothiet. Tapahtuma on osa valtakunnallista Vauvan päivää.&nbsp;&nbsp;</p>",
                "sv": "<p>Kom och fira Babydagen den 26 september på Lippulaivabiblioteket i Espoonlahti! Detta kostnadsfria evenemang för barnfamiljer erbjuder konserter för spädbarn och småbarn, ljusbad och ett familjecafé. Evenemanget markerar lanseringen av Barnens kulturkort, som ger barnfamiljer i Esbo tips på kreativa aktiviteter hemma och med stadens kulturtjänster.&nbsp;&nbsp; &nbsp;</p><p>&nbsp;&nbsp;</p>\nProgram:&nbsp; &nbsp;<p>&nbsp;&nbsp;</p><p><strong>10:00–10:30 | Sinfonietta kvartett: liggande konsert | Salonki &nbsp;</strong></p><p>Tapiola Sinfonietta stråkkvartett spelar en halvtimmes konsert med välkända klassiker och andra roliga stycken.&nbsp; &nbsp;</p><p>Barnen kan lyssna på konserten medan de ligger eller ligger på madrasser eller sitter i föräldrarnas knä. Konserten passar alla barn och vuxna – och den är helt gratis!&nbsp; &nbsp;</p><p>Jukka Rantamäki, fiol&nbsp;</p><p>Kati Rantamäki, fiol&nbsp;</p><p>Tuula Saari, viola&nbsp; &nbsp;</p><p>Jukka Kaukola, cello&nbsp; &nbsp;</p><p>&nbsp;</p><p><strong>10:45–12:00 | Ljusbad | Salonki &nbsp;</strong></p><p>Lek i färgglada skuggor och ha kul med speglar. Låt dina små fylla på med ljus i sitt eget sagoland. Rekommenderad ålder: 4–14 månader. Ljusbadet är öppet non-stop.&nbsp;&nbsp; &nbsp;</p><p>Instruktör: Jenni Vilander, Barnkulturcenter&nbsp;Aurora&nbsp;</p><p><br></p><p><strong>11:15–12:00 | Musiklekis för bebisar | Familjeområdet &nbsp;</strong></p><p>Musiklekis för bebisar är ett tillfälle att utforska musik och ha roligt tillsammans med ditt barn. Ingen tidigare erfarenhet av att spela instrument eller sjunga krävs. Lektionen varar i cirka 30 minuter. Alla är välkomna att delta, oavsett språkkunskaper eller musikalisk bakgrund. &nbsp;</p><p>Instruktör: Lauri Iljin, Esbo stadsbibliotek&nbsp;&nbsp; &nbsp;</p><p>&nbsp;&nbsp;</p><p><strong>10:00–12:00 | Mötesplats | Kapyysi gemenskaps kök&nbsp;&nbsp; &nbsp;</strong></p><p>Kom och träffa andra föräldrar och få mer information om de evenemang som Esbo stadsbibliotek anordnar. Vi delar ut haklappar till familjerna. Om ditt barn blir hungrigt under evenemanget finns Muru Baby ❤ Miu-smoothies till hands! Miu-smoothies, som tillverkas i samarbete med Muru Baby och Fanniemotions, kommer att finnas tillgängliga.&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;</p><p><br></p><p>Babydagen&nbsp;anordnas av KulturEsbos barnkulturarrangörer, bland annat Esbo stadsbibliotek, barnkulturcentret Aurora och Tapiola Sinfonietta. Muru Baby är partner i&nbsp;Babydagen&nbsp;och sponsrar Muru Baby ❤ Miu-smoothies till evenemanget. Evenemanget är en del av de nationella Babydagen-firandena.&nbsp;&nbsp;&nbsp; </p>",
                "en": "<p>Come celebrate Baby’s Day on September 26 at Lippulaiva Library in Espoonlahti! This free event for families with children includes concerts suitable for babies and toddlers, a light bath, and a family café. The event will launch the Children's Culture Card, which offers families with children in Espoo tips for creative activities at home and with the city's cultural services.&nbsp;&nbsp;</p><p>&nbsp;</p>\nProgram:&nbsp;<p><br></p><p><strong>10:00–10:30 a.m. | Sinfonietta Quartet: Lie-Down Concert | Salonki&nbsp;</strong></p><p>The Tapiola Sinfonietta string quartet will play a half-hour concert featuring familiar classics and other&nbsp;fun pieces.&nbsp;</p><p>Children may listen to the concert while lying down or lounging on mattresses or sitting on their parent's lap. The concert is suitable for all children and adults – and it's completely free!&nbsp;</p><p>Jukka Rantamäki, violin&nbsp;</p><p>Kati Rantamäki, violin&nbsp;</p><p>Tuula Saari, viola&nbsp;</p><p>Jukka Kaukola, cello&nbsp;</p><p><br></p><p><strong>10:45 a.m.–12:00 p.m. | Light Bath | Salonki&nbsp;</strong></p><p>Play in colorful shadows and have fun with mirrors.&nbsp;Let your little ones fill up on light in their own wonderland.&nbsp;Recommended age: 4–14 months. The light bath is open non-stop.&nbsp;&nbsp;</p><p>Instructor: Jenni Vilander, Aurora Children's Cultural Center&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;</p><p><strong>11:15 a.m.–12:00 p.m. | Baby Music Class | Family Area&nbsp;</strong></p><p>Baby Music Class is an opportunity to explore music and enjoy yourself with your child. No prior experience of playing an instrument or singing is necessary. The class lasts about 30 minutes. Everyone is welcome to participate, regardless of their language skills or musical background.&nbsp;</p><p>Instructor: Lauri Iljin, Espoo City Library&nbsp;&nbsp;</p><p>&nbsp;&nbsp;</p><p><strong>10:00 a.m.–12:00 p.m. | Meeting Point | Kapyysi Community Kitchen&nbsp;&nbsp;</strong></p><p>Come and meet other parents and find out more about the events organized by Espoo City Library. We will be handing out bibs to families. If your little one gets hungry during the event, Muru Baby ❤ Miu smoothies are here to help! Miu smoothies, made in collaboration with Muru Baby and Fanniemotions, will be available.&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;</p><p>Baby's Day is organised by CultureEspoo's children's cultural operators, including Espoo City Library, Children's Cultural Centre Aurora and Tapiola Sinfonietta. Muru Baby is a partner in Baby's Day, sponsoring Muru Baby ❤ Miu smoothies for the event. The event is part of the national Baby's Day celebrations.&nbsp;&nbsp;</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "KulttuuriEspoo",
                "sv": "KulturEsbo",
                "en": "CultureEspoo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmo7smczm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmthud4vy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/lyckokattervocal/?locale=fi_FI",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/lyckokattervocal/",
                    "language": "fi"
                }
            ],
            "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": 1490745,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:22:07.063399Z",
                    "last_modified_time": "2025-09-10T12:22:07.063414Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/98631bac-598b-4daa-a28c-7a7cbd77a123.jpg",
                    "cropping": "420,0,1505,1084",
                    "photographer_name": "Ana Belcic",
                    "alt_text": "Perhosia beigellä pohjalla, sekä teksti \"Wings of light, wings of life - International repertoire for hig voices\"",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490745/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T12:25:49.133278Z",
            "last_modified_time": "2025-09-10T12:25:49.133296Z",
            "date_published": "2025-09-10T12:10:00Z",
            "start_time": "2025-10-04T11:00:00Z",
            "end_time": "2025-10-04T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lyckokatter Vocal Ensemble (2017–) on Tapiolassa toimiva kansainvälinen a cappella -yhtye, jossa lauletaan sopraano- ja alttoäänillä.",
                "sv": "Lyckokatter Vocal Ensemble (2017–) är en internationell a cappella-grupp med sopran- och altstämmor, baserad i Hagalund.",
                "en": "Lyckokatter Vocal Ensemble (2017–) is a Tapiola-based international a capella group of soprano and alto voices."
            },
            "info_url": null,
            "name": {
                "fi": "Wings of Light, Wings of Life - International repertoire for high voices",
                "sv": "Wings of Light, Wings of Life - International repertoire for high voices",
                "en": "Wings of Light, Wings of Life - International repertoire for high voices"
            },
            "description": {
                "fi": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Taiteellinen johtaja Kristina Bogataj esittää</p><p>Syksyn kirjastosarja:</p><p>WINGS OF LIGHT, WINGS OF LIFE - International repertoire for high voices.</p><p>Lyckokatter Vocal Ensemble (2017–) on Tapiolassa toimiva kansainvälinen a cappella -yhtye, jossa lauletaan sopraano- ja alttoäänillä. Yhtyeen taiteellinen johtaja on Kristina Bogataj, slovenialainen kuoronjohtaja ja mezzosopraano.</p><p>Seuraa LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info:&nbsp;lyckokattervocal@gmail.com</p><p><br></p><p>Design: Ana Belcic</p>",
                "sv": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Konstnärlig ledare Kristina Bogataj presenterar</p><p>Höstens biblioteksserie: WINGS OF LIGHT, WINGS OF LIFE</p><p>Lyckokatter Vocal Ensemble (2017–) är en internationell a cappella-grupp med sopran- och altstämmor, baserad i Hagalund. Deras konstnärliga ledare är Kristina Bogataj, slovensk körledare och mezzosopran.</p><p><br></p><p>Följ LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info:&nbsp;lyckokattervocal@gmail.com</p><p>Design: Ana Belcic</p>",
                "en": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Artistic leader Kristina Bogataj presents</p><p>Autumn Library Series:</p><p>WINGS OF LIGHT, WINGS OF LIFE - International repertoire for high voices.</p><p>Lyckokatter Vocal Ensemble (2017–) is a Tapiola-based international a capella group of soprano and alto voices. Their artistic leader is Kristina Bogataj, a Slovenian choral conductor and mezzosoprano.</p><p><br></p><p>Follow LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook:&nbsp;Lyckokatter Vocal Ensemble</p><p>Info:&nbsp;lyckokattervocal@gmail.com</p><p><br></p><p>Design: Ana Belcic</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Lyckokatter Vocal Ensemble",
                "sv": "Lyckokatter Vocal Ensemble",
                "en": "Lyckokatter Vocal Ensemble"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmthud4vy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:a5c66f5e-2ef8-4f99-b959-4e2b4c632698",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:22967/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=A_Projektin_nyttely1619104037"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1490736,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-10T12:21:51.792119Z",
                    "last_modified_time": "2025-09-10T12:21:51.792133Z",
                    "name": "Kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/9135e53f-c987-f011-b4cc-000d3a6811bd",
                    "cropping": "",
                    "photographer_name": "Nimekäs Kuvaaja",
                    "alt_text": "Kuva hinnihiirestä. Hiiri on hieno.",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490736/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "created_time": "2025-09-10T12:07:55.915778Z",
            "last_modified_time": "2025-09-10T12:21:52.257488Z",
            "date_published": "2025-09-10T10:55:48Z",
            "start_time": "2025-12-23T08:00:00Z",
            "end_time": "2025-12-25T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "A Projektin näyttelyA Projektin näyttely",
                "sv": "Täytetty",
                "ar": "تعلم لغات جديدة ممتع"
            },
            "info_url": null,
            "name": {
                "fi": "A Projektin näyttely",
                "sv": "Täytetty",
                "ar": "تعلم لغات جديدة ممتع"
            },
            "description": {
                "fi": "<div><p>A Projektin näyttelyA Projektin näyttely</p><p>TÄTÄ ON MUOKATTU</p></div>",
                "sv": "<div><p>Täytetty mutta täyttyykö muualle?</p></div>",
                "ar": "<div><p>هذه هي اللغة الفنلندية.</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></div>"
            },
            "location_extra_info": {
                "fi": "Patsas"
            },
            "provider": {
                "fi": "KPMG suomeksi",
                "sv": "KPMG ruotsiksi",
                "ar": "KPMG arabiaksi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a5c66f5e-2ef8-4f99-b959-4e2b4c632698/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67003",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "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/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490726,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T12:14:55.067752Z",
                    "last_modified_time": "2025-09-10T12:14:55.067775Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773705.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490726/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T12:14:54.940327Z",
            "last_modified_time": "2025-09-10T12:14:55.229122Z",
            "date_published": null,
            "start_time": "2025-11-30T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.",
                "sv": "Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.",
                "en": "Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_",
                "en": "http://www.stoa.fi/en/events/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_"
            },
            "name": {
                "fi": "Poropudas & Savolainen: Object trouvé",
                "sv": "Poropudas & Savolainen: Object trouvé",
                "en": "Poropudas & Savolainen: Object trouvé"
            },
            "description": {
                "fi": "<p>Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.</p><p>Object trouvé mielikuvailee, draamailee ja tavoittelee mahdottomuutta. Abstrakti teos kytkeytyy tanssiin, jossa Merce Cunningham on kummitus ja teoksen kohtalo määrittyy osaksi chance-metodin eli sattumanvaraisuuden keinoin.</p><p>Teos kutsuu esiin olevaisuutta, joka ilmentyy ja purkautuu moninaisilla tavoilla tulvahtaen tähän hetkeen. Esiintyjät tanssivat ihmeellisyyttä, joka elää rinnan ääni- ja valomaiseman kanssa. Merce Cunninghamista inspiroitunut geometrisuus, tarkkuus, ajallisuus ja energia rakentavat kompositiota Object trouvélle, jonka avulla työryhmä tarkastelee näiden elementtien kiinnittymistä tähän hetkeen.</p><p>Teos on samanaikaisesti liikkeen ja musiikin duetto, joka täyttyy vastakkaisista suunnista ja voimista antaen myös tilaa harmonialle ja yhteneväisyydelle. Musiikki ja liike avaavat yhdessä näkymän kummalliseen todellisuuteen, jossa yllätyksellisyys sekä tarkkuus (linjakkuus) vuorottelevat. Tanssi muodostaa kaavoja ja sääntöjä, jotka sattumanvaraisesti hajoavat uudenlaisiin suuntiin.</p><p><b>Työryhmän esittely</b><br>Object trouvé -työryhmään kuuluvat tanssitaiteilija-esiintyjät Pinja Poropudas ja Marjukka Savolainen sekä äänisuunnittelija Antti Mäki. Kollektiivinen työskentely pohjaa Merce Cunninghamin ja John Cagen yhteistyötavoista inspiroituneeseen metodiin sekä sattumanvaraisuuteen. Työryhmän jäsenet ovat kokeneita sarallaan, mutta yhdistävät voimansa tällä kokoonpanolla ensimmäistä kertaa, tarkoituksenaan luoda kestävää jatkumoa yhteiselle taiteen tekemiselle.</p><p><b>Teoksen tukijat</b><br>Teosta on ollut tukemassa Jenny ja Antti Wihurin rahasto, Kansan Sivistysrahasto, Taiteen edistämiskeskus sekä Liisa Pentti + Co:n kesäresidenssi 2024. Teoksen aihioista nähtiin myös hetkessä syntynyt katkelma Liisa Pentti + Co:n Improsyksy 2024 -tapahtumassa.</p>",
                "sv": "<p>Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.</p><p>Verket öppnar vyn till en underlig verklighet, där oförutsägbarheten, geometriska former och stilfullheten växlar genom att skapa och söndra såväl överenskomna regler som planer.</p><p><b>Presentation av arbetsgruppen</b><br>Object trouvé-arbetsgruppen omfattar danskonstnärerna Pinja Poropudas och Marjukka Savolainen samt ljudplaneraren Antti Mäki. Det kollektiva arbetssättet grundar sig på en metod som inspirerats av Merce Cunninghams och John Cages samarbetssätt samt slumpmässighet. Medlemmarna i arbetsgruppen är erfarna i sin sektor, men slår ihop sina styrkor med denna sammansättning för första gången, med avsikt att skapa en hållbar fortsättning för gemensamt skapande av konst.</p>",
                "en": "<p>Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence.</p><p>The work offers a view into a strange reality where the unexpected alternates with geometric shapes and linearity, forming and breaking both established rules and patterns.</p><p><b>Presentation of the working group</b><br>The Object trouvé team includes dance artists Pinja Poropudas and Marjukka Savolainen and sound designer Antti Mäki. Their collective work is based on a method inspired by the collaborative methods of Merce Cunningham and John Cage, as well as on randomness. The members of the working group are all experienced in their fields, but are now joining forces for the first time with this composition, with the aim of creating a sustainable continuum of collective creation of art.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67003/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66789",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "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/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1359526,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-28T09:14:03.140913Z",
                    "last_modified_time": "2025-07-28T09:14:03.140929Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773704.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1359526/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-28T09:14:02.991040Z",
            "last_modified_time": "2025-09-10T12:14:54.570854Z",
            "date_published": null,
            "start_time": "2025-11-29T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.",
                "sv": "Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.",
                "en": "Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_",
                "en": "http://www.stoa.fi/en/events/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_"
            },
            "name": {
                "fi": "Poropudas & Savolainen: Object trouvé – ENSI-ILTA",
                "sv": "Poropudas & Savolainen: Object trouvé – PREMIÄR",
                "en": "Poropudas & Savolainen: Object trouvé – PREMIERE"
            },
            "description": {
                "fi": "<p>Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.</p><p>Object trouvé mielikuvailee, draamailee ja tavoittelee mahdottomuutta. Abstrakti teos kytkeytyy tanssiin, jossa Merce Cunningham on kummitus ja teoksen kohtalo määrittyy osaksi chance-metodin eli sattumanvaraisuuden keinoin.</p><p>Teos kutsuu esiin olevaisuutta, joka ilmentyy ja purkautuu moninaisilla tavoilla tulvahtaen tähän hetkeen. Esiintyjät tanssivat ihmeellisyyttä, joka elää rinnan ääni- ja valomaiseman kanssa. Merce Cunninghamista inspiroitunut geometrisuus, tarkkuus, ajallisuus ja energia rakentavat kompositiota Object trouvélle, jonka avulla työryhmä tarkastelee näiden elementtien kiinnittymistä tähän hetkeen.</p><p>Teos on samanaikaisesti liikkeen ja musiikin duetto, joka täyttyy vastakkaisista suunnista ja voimista antaen myös tilaa harmonialle ja yhteneväisyydelle. Musiikki ja liike avaavat yhdessä näkymän kummalliseen todellisuuteen, jossa yllätyksellisyys sekä tarkkuus (linjakkuus) vuorottelevat. Tanssi muodostaa kaavoja ja sääntöjä, jotka sattumanvaraisesti hajoavat uudenlaisiin suuntiin.</p><p><b>Työryhmän esittely</b><br>Object trouvé -työryhmään kuuluvat tanssitaiteilija-esiintyjät Pinja Poropudas ja Marjukka Savolainen sekä äänisuunnittelija Antti Mäki. Kollektiivinen työskentely pohjaa Merce Cunninghamin ja John Cagen yhteistyötavoista inspiroituneeseen metodiin sekä sattumanvaraisuuteen. Työryhmän jäsenet ovat kokeneita sarallaan, mutta yhdistävät voimansa tällä kokoonpanolla ensimmäistä kertaa, tarkoituksenaan luoda kestävää jatkumoa yhteiselle taiteen tekemiselle.</p><p><b>Teoksen tukijat</b><br>Teosta on ollut tukemassa Jenny ja Antti Wihurin rahasto, Kansan Sivistysrahasto, Taiteen edistämiskeskus sekä Liisa Pentti + Co:n kesäresidenssi 2024. Teoksen aihioista nähtiin myös hetkessä syntynyt katkelma Liisa Pentti + Co:n Improsyksy 2024 -tapahtumassa.</p>",
                "sv": "<p>Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.</p><p>Verket öppnar vyn till en underlig verklighet, där oförutsägbarheten, geometriska former och stilfullheten växlar genom att skapa och söndra såväl överenskomna regler som planer.</p><p><b>Presentation av arbetsgruppen</b><br>Object trouvé-arbetsgruppen omfattar danskonstnärerna Pinja Poropudas och Marjukka Savolainen samt ljudplaneraren Antti Mäki. Det kollektiva arbetssättet grundar sig på en metod som inspirerats av Merce Cunninghams och John Cages samarbetssätt samt slumpmässighet. Medlemmarna i arbetsgruppen är erfarna i sin sektor, men slår ihop sina styrkor med denna sammansättning för första gången, med avsikt att skapa en hållbar fortsättning för gemensamt skapande av konst.</p>",
                "en": "<p>Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence.</p><p>The work offers a view into a strange reality where the unexpected alternates with geometric shapes and linearity, forming and breaking both established rules and patterns.</p><p><b>Presentation of the working group</b><br>The Object trouvé team includes dance artists Pinja Poropudas and Marjukka Savolainen and sound designer Antti Mäki. Their collective work is based on a method inspired by the collaborative methods of Merce Cunningham and John Cage, as well as on randomness. The members of the working group are all experienced in their fields, but are now joining forces for the first time with this composition, with the aim of creating a sustainable continuum of collective creation of art.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66789/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67002",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:646/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1490717,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T11:14:53.527700Z",
                    "last_modified_time": "2025-09-10T11:14:53.527719Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777074.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490717/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T11:14:53.379562Z",
            "last_modified_time": "2025-09-10T12:14:54.094308Z",
            "date_published": null,
            "start_time": "2025-11-29T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe",
                "en": "http://www.stoa.fi/en/events/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe"
            },
            "name": {
                "fi": "Kumppanieläin-työpaja & Death Cafe – Kun aika on -näyttelyn oheisohjelmaa",
                "sv": "Kumppanieläin-työpaja & Death Cafe",
                "en": "Kumppanieläin-työpaja & Death Cafe"
            },
            "description": {
                "fi": "<p>Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.</p><p>Tervetuloa työpajaan, jossa voit jakaa ajatuksia ja tunteita muiden samassa tilanteessa olevien kanssa ja luoda samalla kauniin, käsintehdyn muistoesineen sydänystävällesi - pussin, rasian tai pesän.</p><p><b>Mitä työpajassa tapahtuu?</b></p><p>Tapahtuma alkaa keskustelulla, jossa jaetaan kokemuksia ja ideoita. Näiden ideoiden pohjalta pääset suunnittelemaan ja valmistamaan pussin, rasian tai pesän, joka on tarkoitettu lemmikin tuhkan säilyttämiseen tai maahan hautaamiseen. Tässä työpajassa emme tavoittele teknisesti vaativia ratkaisuja, vaan luovuutta ja yhteisöllisyyttä.<br> <br>Työpajaa ohjaavat kokeneet muotoilun, taiteen ja käsityön ammattilaiset: keramiikkataiteilija Leena Mäki-Patola, tekstiilitaiteilija Mervi Vuolas ja muotoilija Hanna van Ingen. He kaikki ovat mukana myös KUN AIKA ON -näyttelyssä, joten tämä on ainutlaatuinen tilaisuus tavata heidät ja kuulla heidän ajatuksiaan.</p><p><b> Aikataulut</b></p><p>klo 11–12 Death Café - Kuolemankahvila<br>klo 12–15 Kumppanieläin-työpaja</p><p><b>Osallistuminen ja materiaalit</b></p><p>Työpaja on maksuton ja toimii nyyttikesti-periaatteella. Materiaaleja on käytössä rajoitetusti, joten tuo mukanasi maatuvia materiaaleja esim. kangasta, narua, puunpalasia, pahvisia rasioita sekä pieniä työvälineitä kuten sakset, neula, viivoitin, liima, jaettavaksi muiden osallistujien kanssa. <br> <br>Paikkoja on rajoitetusti, joten ilmoittaudu nopeasti! Mukaan mahtuu 10 henkilöä ilmoittautumisjärjestyksessä.<br> <br><b>Death Café - Kuolemankahvila ennen työpajaa</b><br>Ennen työpajaa on mahdollista osallistua Death Caféen, jota uskontotieteilijä Pauli Jyrkinewsky isännöi. Kuolemankahvila on avoin keskustelutilaisuus, jossa ihmiset kokoontuvat keskustelemaan kumppanieläinten menettämisestä ja surun käsittelystä. Tavoitteena on lisätä kuoleman kohtaamisen luonnollisuutta.<br> <br>Voit osallistua kumppanieläin-työpajaan ilman kahvilaa tai tulla vain kahvilaan ilman työpajaa. Valitse itsellesi sopivin vaihtoehto ja saavu paikalle kokemaan ja keskustelemaan.<br> <br><b>Ilmoittautumiset työpajaan:</b></p><p>23.11.2025 mennessä osoitteeseen nayttelyt@taiteilijato.fi</p><p>Tapahtuman tuottaa  <br>Taiteilijat O ry https://taiteilijato.fi/<br> <br>Yhteistyössä <br>Kulttuurikeskus Stoa https://www.stoa.fi/ <br>Death Café https://deathcafe.com/what/</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Taiteilijat O ry https://taiteilijato.fi/"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z7nli",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490114,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T10:25:06.430379Z",
                    "last_modified_time": "2025-08-13T10:25:06.430393Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Laura H / Silent Book Club",
                    "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-13T10:48:19.846760Z",
            "last_modified_time": "2025-09-10T12:01:13.814072Z",
            "date_published": "2025-08-13T10:23:00Z",
            "start_time": "2025-09-13T10:00:00Z",
            "end_time": "2025-09-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä",
                "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra",
                "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading"
            },
            "info_url": {
                "fi": "https://silentbook.club/",
                "sv": "https://silentbook.club/",
                "en": "https://silentbook.club/"
            },
            "name": {
                "fi": "Hiljainen lukupiiri Tapiolan kirjasto",
                "sv": "Tyst bokcirkel Hagalunds bibliotek",
                "en": "Silent Book Club Tapiola Library"
            },
            "description": {
                "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7nli/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5rqy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5scq/?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": 1490101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T07:23:52.622754Z",
                    "last_modified_time": "2024-01-05T07:23:52.622775Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Tyyne.png",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Tummanruskea kiharakarvainen koira laiturilla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490101/?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-15T05:57:16.972328Z",
            "last_modified_time": "2025-09-10T12:00:25.374081Z",
            "date_published": null,
            "start_time": "2025-09-18T15:00:00Z",
            "end_time": "2025-09-18T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.",
                "sv": "Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.",
                "en": "Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00."
            },
            "info_url": null,
            "name": {
                "fi": "Lukukoira Tyyne",
                "sv": "Läshund Tyyne",
                "en": "Reading Dog Tyyne "
            },
            "description": {
                "fi": "<p>Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon.</p><p>to 18.9.</p><p>to 16.10.</p><p>to 13.11.</p><p>to 11.12.</p><p>Klo 18-19:00.</p><p>Tervetuloa!</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Välkommen!</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 6pm to 7pm.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Welcome!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "Barnavdelningen",
                "en": "Children’s Department"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5rqy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5q5u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5scq/?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": 1490101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T07:23:52.622754Z",
                    "last_modified_time": "2024-01-05T07:23:52.622775Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Tyyne.png",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Tummanruskea kiharakarvainen koira laiturilla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490101/?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-15T05:57:17.079455Z",
            "last_modified_time": "2025-09-10T12:00:25.322989Z",
            "date_published": null,
            "start_time": "2025-10-16T15:00:00Z",
            "end_time": "2025-10-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.",
                "sv": "Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.",
                "en": "Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00."
            },
            "info_url": null,
            "name": {
                "fi": "Lukukoira Tyyne",
                "sv": "Läshund Tyyne",
                "en": "Reading Dog Tyyne "
            },
            "description": {
                "fi": "<p>Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon.</p><p>to 18.9.</p><p>to 16.10.</p><p>to 13.11.</p><p>to 11.12.</p><p>Klo 18-19:00.</p><p>Tervetuloa!</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Välkommen!</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 6pm to 7pm.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Welcome!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "Barnavdelningen",
                "en": "Children’s Department"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5q5u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}