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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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

{
    "meta": {
        "count": 22849,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=58",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=56"
    },
    "data": [
        {
            "id": "kulke:68449",
            "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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/vuotalo-x-r-a-3968995/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-13T06:13:08.541108Z",
            "last_modified_time": "2026-04-13T06:13:08.730758Z",
            "date_published": null,
            "start_time": "2026-04-14T07:00:00Z",
            "end_time": "2026-04-14T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Työväenopiston luento: Kuvataide ja kierrätys",
                "sv": "Työväenopiston luento: Kuvataide ja kierrätys",
                "en": "Työväenopiston luento: Kuvataide ja kierrätys"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": null,
            "info_url": null,
            "description": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhs4nm",
            "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:agggfz656q/?format=api"
                },
                {
                    "@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:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsy74/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhszna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhszy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs2ey/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs2qm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs23u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs3um/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs4be/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824113,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-12T12:31:33.628454Z",
                    "last_modified_time": "2026-04-12T12:31:33.628467Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e7fa36a4-df4e-4e75-b669-b6cc6ef99e22.jpg",
                    "name": "",
                    "cropping": "530,0,2689,2160",
                    "photographer_name": "",
                    "alt_text": "taidepäiväkirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-12T12:31:48.682832Z",
            "last_modified_time": "2026-04-12T12:31:48.682848Z",
            "date_published": null,
            "start_time": "2026-04-17T14:00:00Z",
            "end_time": "2026-06-12T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perjantain taidepäiväkirjapaja",
                "sv": "Konstjournalworkshop",
                "en": "Art Journaling on Fridays"
            },
            "location_extra_info": {
                "fi": "Paja Lounge",
                "sv": "Paja Lounge",
                "en": "Paja Lounge"
            },
            "provider": null,
            "short_description": {
                "fi": "Perjantain taidepäiväkirjapajassa pysähdytään rennosti luovan tekemisen äärelle. ",
                "sv": "Letar du efter ett trevligt och avslappnat sätt att stanna upp och väcka din kreativitet? ",
                "en": "Looking for a simple way to relax, reflect, and get creative? "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Perjantain taidepäiväkirjapajassa pysähdytään rennosti luovan tekemisen äärelle. Et tarvitse aiempaa kokemusta — riittää, että otat mukaan muistikirjasi ja avoimen mielen. Materiaalit tekemiseen saat paikan päältä. Irtaudu hetkeksi arjesta, viivy niin kauan kuin itselle sopii, taiteile omalla tyylilläsi ja löydä uusia tekniikoita yhdessätekemällä. Mukana englanninkielinen vapaaehtoinen.</p>",
                "sv": "<p>Letar du efter ett trevligt och avslappnat sätt att stanna upp och väcka din kreativitet? Du behöver ingen tidigare erfarenhet — det räcker att du tar med din anteckningsbok och ett öppet sinne. Ta en paus från vardagen och njut av skapande utan krav. En engelskspråkig volontär finns på plats.</p>",
                "en": "<p>Looking for a simple way to relax, reflect, and get creative? Join our Creative Journal Club and discover the art of creative journaling.</p><p>No skills required — just bring your notebook and curiosity. It’s a chance to step back from everyday life, try something different, and enjoy the process of creating.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs4nm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhs5eq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-12T11:00:10.372253Z",
                    "last_modified_time": "2026-04-12T11:00:10.372265Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/99036925-6c98-4499-b195-e8ca42cca306.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, jossa lastenvaunut esiintymislavalla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-12T11:00:36.750258Z",
            "last_modified_time": "2026-04-12T11:00:36.750274Z",
            "date_published": null,
            "start_time": "2026-05-04T15:30:00Z",
            "end_time": "2026-05-04T16:20:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Yhteisöteatteri Jäänsärkijöiden improryhmä 'Varatut Kätilöt' "
            },
            "location_extra_info": {
                "fi": "Lava"
            },
            "provider": null,
            "short_description": {
                "fi": "Yhteisöteatteri Jäänsärkijöiden improryhmä 'Varatut Kätilöt' esittää improvisoituja kohtauksia."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Yhteisöteatteri Jäänsärkijöiden improryhmä 'Varatut Kätilöt' esittää improvisoituja kohtauksia Sellon kirjaston aulassa maanantaina 4.5. klo 18.30. Vapaa pääsy, kesto noin 50 minuuttia</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs5eq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhs5sq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-12T10:48:07.127822Z",
                    "last_modified_time": "2026-04-12T10:48:07.127836Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f5a223e9-7d8b-4806-8725-d198485c55f3.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, jossa lapset harrastavat capoeiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824116/?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": "2026-04-12T10:48:14.375446Z",
            "last_modified_time": "2026-04-12T10:48:14.375461Z",
            "date_published": null,
            "start_time": "2026-05-10T11:15:00Z",
            "end_time": "2026-05-10T12:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten Capoeira työpaja",
                "sv": "Capoeira-workshop för barn",
                "en": "Capoeira workshop for children"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": {
                "fi": "Kulttuuriyhdistys Naava ry",
                "sv": "Kulttuuriyhdistys Naava ry",
                "en": "Kulttuuriyhdistys Naava ry"
            },
            "short_description": {
                "fi": "Lasten Capoeira työpaja",
                "sv": "Capoeira-workshop för barn",
                "en": "Capoeira workshop for children"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Capoeira on brasilialainen kamppailulaji, tanssin ja fyysisen pelin yhteensulautuma. Capoeira on moniulotteinen laji ja sitä pelataan itse soitetun ja lauletun afrobrasilialaisen musiikin tahdissa.</p><p><br></p><p><br></p>",
                "sv": "<p>Capoeira är en brasiliansk kampsport som förenar dans och fysisk lek. Capoeira är en mångfacetterad sport som utövas till tonerna av afro-brasiliansk musik som spelas och sjungs på plats.</p><p><br></p><p><br></p>",
                "en": "<p>Capoeira is a Brazilian martial art that blends dance and physical play. It is a multifaceted art form practiced to the rhythm of live Afro-Brazilian music.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs5sq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-3594382",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033064/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033064/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033064/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326899/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326900/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326902/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326904/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326905/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326906/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326907/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326911/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998115/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998116/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998117/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998118/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998119/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998120/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998122/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033052/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033053/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033054/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033055/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033056/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033057/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033059/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033060/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033061/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033065/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033063/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033064/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:44.559638Z",
                    "last_modified_time": "2025-02-17T11:16:44.559655Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:06.999317Z",
            "last_modified_time": "2026-04-11T20:15:43.922090Z",
            "date_published": null,
            "start_time": "2025-02-26T08:00:00Z",
            "end_time": "2026-04-11",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Mollin Iltahepuli"
            },
            "location_extra_info": {
                "fi": "Pieni Näyttämö LÄMPIÖ"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Vappu Nalbantoglu, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3594382/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhs6xy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-11T10:23:02.281333Z",
                    "last_modified_time": "2026-04-11T10:23:02.281353Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5a562f93-a7e9-4e9e-bbf5-c4f846341e10.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Heed Finland",
                    "alt_text": "ihmisiä pöytien äärellä mittaamassa terveysarvojaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824119/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-11T10:25:28.491232Z",
            "last_modified_time": "2026-04-11T10:25:28.491248Z",
            "date_published": null,
            "start_time": "2026-04-25T07:00:00Z",
            "end_time": "2026-04-25T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hyvinvointipäivä maahanmuuttajille: ilmaisia terveystarkastuksia ja neuvontaa",
                "en": "Well-being day for immigrants: free health checks and guidance"
            },
            "location_extra_info": {
                "fi": "Sisääntuloaula",
                "en": "Entrance hall"
            },
            "provider": {
                "fi": "HEED Finland ry",
                "en": "HEED Finland ry"
            },
            "short_description": {
                "fi": "Huhtikuussa 25.4. teemme ilmaisia terveystarkastuksia ja annamme terveysneuvontaa Entressen kirjastossa kello 10-14.",
                "en": "On April 25 we’ll perform free health checks and give guidance on health matters at the Entresse Library, Espoon keskus, Espoo from 10 a.m. until 2 p.m."
            },
            "info_url": {
                "fi": "https://www.heedfinland.fi/events/entresse2026/",
                "en": "https://www.heedfinland.fi/events/entresse2026/"
            },
            "description": {
                "fi": "HYVINVOINTIPÄIVÄ MAAHANMUUTTAJILLE ENTRESSEN KIRJASTOSSA, ESPOOSSA:\nILMAISIA TERVEYSTARKASTUKSIA JA NEUVONTAA<p><strong>Huhtikuussa 25.4. teemme ilmaisia terveystarkastuksia ja annamme terveysneuvontaa Entressen kirjastossa kello 10-14.</strong></p><p>Hyvinvointipäivä Entressen kirjastossa on maksuton, ja avoin kaikille maahanmuuttajille. Terveystarkastusten jälkeen tarjoamme ilmaista, terveellistä välipalaa.</p><p>Korkea verenpaine, diabetes, infarktit, masennus, syöpä, maksa- ja munuaissairaudet, jne. yleistyvät myös maahanmuuttajien keskuudessa. Ennaltaehkäisy on parempi kuin hoito, ja säännölliset terveystarkastukset voivat auttaa havaitsemaan nämä sairaudet ajoissa!</p><p>Ilmaiset testit ja neuvontaa:</p><p>– Verenpaine</p><p>– Hemoglobiini</p><p>– Kehonkoostumus</p><p>– Kokonaiskolesteroli</p><p>– Verensokeri</p><p>Ilmaista neuvontaa:</p><p>– Vitamiinit D3 ja K2, kalsium</p><p>Jos haluat että mittaamme kokonaiskolesterisi ja verensokerisi, tule aikaisin aamusta äläkä syö aamiaista. Jotta tulokset olisivat tarkkoja, sinun on oltava syömättä 10-14 tuntia ennen testiä.</p><p>Kehonkoostumusmittausta varten on otettava pois kengät ja sukat, eli otathan tämän huomioon.</p><p>Terveystarkastus on avoin kaikille yli 18-vuotiaille.</p><p>Tapahtuman järjestää HEED Finlandin Terveys on rikkautta -hanke yhteistyössä Diak-ammattikorkeakoulun kanssa.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "WELL-BEING DAY FOR IMMIGRANTS AT ENTRESSE, ESPOON KESKUS:\nFREE HEALTH CHECKS AND GUIDANCE<p><strong>On April 25 we’ll perform free health checks and give guidance on health matters at the Entresse Library, Espoon keskus, Espoo from 10 a.m. until 2 p.m.</strong></p><p>Our Well-being Day at the Entresse Library is free of charge and open for all immigrants. After the health check we offer free, healthy snacks.</p><p>High blood pressure, diabetes, stroke, depression, cancer, liver and kidney problems, &amp;c. are increasingly prevalent within the immigrant communities. Prevention is better than a cure, and regular health checks can help detect these diseases early on!</p><p>We offer free testing and guidance:</p><p>– Blood pressure</p><p>– Haemoglobin</p><p>– Body composition</p><p>– Total cholesterol</p><p>– Blood sugar</p><p>We offer free guidance:</p><p>– Vitamin D and K2, calcium</p><p>If you want to have you cholesterol and blood sugar levels tested, come early and without having breakfast. You need to fast for 10-14 for the test results to be accurate.</p><p>For the body composition test you will need to remove your shoes and socks, so please take this into account.</p><p>The health checks are available for anyone over the age of 18.</p><p>The event is organised by the HEED Finland project Health is Wealth in collaboration with the Diak University of Applied Sciences.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs6xy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68396",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/rakkauskirjeita/seela-sella-ja-esko-roine-rakkauskirjeitae-4032908/",
                        "sv": "https://www.lippu.fi/artist/rakkauskirjeita/seela-sella-ja-esko-roine-rakkauskirjeitae-4032908/",
                        "en": "https://www.lippu.fi/artist/rakkauskirjeita/seela-sella-ja-esko-roine-rakkauskirjeitae-4032908/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28 €/22€",
                        "sv": "28 €/22€",
                        "en": "28 €/22€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1807912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-10T13:13:44.542166Z",
                    "last_modified_time": "2026-04-10T13:13:44.542185Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787981.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1807912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-10T13:13:44.398932Z",
            "last_modified_time": "2026-04-10T13:13:44.720060Z",
            "date_published": null,
            "start_time": "2026-09-01T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Seela Sella ja Esko Roine: Rakkauskirjeitä",
                "sv": "Seela Sella och Esko Roine: Rakkauskirjeitä (Kärleksbrev)",
                "en": "Seela Sella and Esko Roine: Love letters"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Seela Sellan ja Esko Roineen Rakkauskirjeitä-esitys siirtyi sairastapauksen vuoksi keväältä syksyyn. Kanneltalo pahoittelee asiasta koituvaa harmia!",
                "sv": "Andrew och Melissa är barndomsvänner som håller kontakten genom årtiondena genom att skriva brev.",
                "en": "Andrew and Melissa are childhood friends who keep in touch through the decades by writing letters."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/45711C32AB6E667F8064848007ABD97A/Seela_Sella_ja_Esko_Roine_Rakkauskirjeita",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/45711C32AB6E667F8064848007ABD97A/Seela_Sella_och_Esko_Roine_Rakkauskirjeita_Karleksbrev_",
                "en": "http://www.kanneltalo.fi/en/events/event/45711C32AB6E667F8064848007ABD97A/Seela_Sella_and_Esko_Roine_Love_letters"
            },
            "description": {
                "fi": "<p>Seela Sellan ja Esko Roineen Rakkauskirjeitä-esitys siirtyi sairastapauksen vuoksi keväältä syksyyn. Kanneltalo pahoittelee asiasta koituvaa harmia!</p><p>Uusi esitysaika on tiistai 1.9. klo 18.<br>Jo ostetut liput käyvät uuteen esitykseen sellaisenaan. Mikäli aika ei sovi, voit hakea lippurahojen palautusta osoitteesta https://web.lippu.fi/palautus/  31.5. mennessä.</p><p>Andrew ja Melissa ovat lapsuudenystäviä, jotka pitävät toisiinsa yhteyttä läpi vuosikymmenten kirjoittamalla kirjeitä.</p><p>He elävät tahoillaan elämäänsä, rakentavat uraa ja parisuhteita, keski-ikäistyvät ja vanhenevat. Toisinaan jompikumpi ehdottaa tapaamista.</p><p>Rakkauskirjeitä on kahden hengen näytelmä, jonka rooleissa nähdään nyt yhdet Suomen rakastetuimmista näyttelijöistä, Seela Sella ja Esko Roine.</p><p>Tätä näytelmää ovat maailmalla aiemmin esittäneet lukuisat toinen toistaan kuuluisammat näyttelijät, mm. Elizabeth Taylor, Gerard Depardieu, Mia Farrow, Tom Hanks ja Mel Gibson.</p><p>Näytelmän luonteeseen kuuluu, että sitä ei missään nimessä saa opetella ulkoa, vaan esitys tapahtuu hetkessä, tässä ja nyt. Luvassa ei ole pikkusievää muistelua tai kaihoisaa nostalgiaa, vaan kirjeenvaihto on aitoa ja elämänmakuista, räävitöntä ja hauskaa.</p><p>Lavalla: Seela Sella ja Esko Roine<br>Ensi-ilta: Tampereen teatteri 29.1.2019</p><p>Kesto: 1 t 45 min (sisältää väliajan)</p>",
                "sv": "<p>Andrew och Melissa är barndomsvänner som håller kontakten genom årtiondena genom att skriva brev.</p><p>De lever sina liv, bygger upp karriärer och relationer, blir medelålders och gamla. Ibland föreslår någon av dem att de ska träffas.</p><p>Rakkauskirjeitä är en pjäs med två personer, och i rollerna ser vi nu ett par av Finlands mest älskade skådespelare, Seela Sella och Esko Roine. Ute i världen har pjäsen framförts av många andra berömda skådespelare, som Elizabeth Taylor, Gerard Depardieu, Mia Farrow, Tom Hanks och Mel Gibson.</p><p>Det ligger i pjäsens natur att den under inga omständigheter ska memoreras, utan föreställningen sker i stunden, här och nu. Här utlovas inget näpet tillbakablickande eller någon vemodig nostalgi, utan brevväxlingen är genuin, oförskämd och rolig, med smak av livet.</p><p>På scenen: Seela Sella och Esko Roine<br>Premiär: Tammerfors teater 29.1.2019</p><p>Längd: 1 h 45 min. (inklusive paus)<br>Språk: finska</p>",
                "en": "<p>Andrew and Melissa are childhood friends who keep in touch through the decades by writing letters.</p><p>They live their lives in their own way, build careers and relationships, become middle-aged and grow old. Sometimes one of them will suggest a meeting.</p><p>Love Letters is a play for two, now starring two of Finland's most beloved actors, Seela Sella and Esko Roine. This play has been performed by many of the world's most famous actors, including Elizabeth Taylor, Gerard Depardieu, Mia Farrow, Tom Hanks and Mel Gibson.</p><p>The nature of the play is that it is by no means to be memorised, but to be performed in the moment, in the here and now. There will be no pretty-pretty reminiscing or wistful nostalgia, but genuine, real-life correspondence, unadulterated and fun.</p><p>On stage: Seela Sella and Esko Roine<br>Premiere: Tampere Theatre 29 January 2019</p><p>Duration: 1 h 45 min (including intermission)<br>Language: Finnish</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68395",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1807911,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-10T13:13:44.054115Z",
                    "last_modified_time": "2026-04-10T13:13:44.054130Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787980.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1807911/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-10T13:13:43.879570Z",
            "last_modified_time": "2026-04-10T13:13:44.248038Z",
            "date_published": null,
            "start_time": "2026-09-01T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Seela Sellan taiteilijavierailu – haastattelijana Tuomo Holopainen",
                "sv": "Seela Sellas konstnärsbesök – intervjuare Tuomo Holopainen",
                "en": "Artist Visit by Seela Sella – Interview by Tuomo Holopainen"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Seela Sellan taiteilijavierailu Kanneltalossa jouduttiin valitettavasti siirtämään sairastapauksen vuoksi syksyyn. Pahoittelemme aiheutunutta harmia!",
                "sv": "Under konstnärens besök diskuterar Seela Sella och Tuomo Holopainen den älskade skådespelarlegendens fenomenala resa på livets scener.",
                "en": "At the artist visit, Seela Sella and Tuomo Holopainen talk about the remarkable journey of the beloved acting legend through the stages of life."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EFEA17224BC000B8217030299B608860/Seela_Sellan_taiteilijavierailu",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EFEA17224BC000B8217030299B608860/Seela_Sellas_konstnarsbesok",
                "en": "http://www.kanneltalo.fi/en/events/event/EFEA17224BC000B8217030299B608860/_Artist_Visit_by_Seela_Sella"
            },
            "description": {
                "fi": "<p>Seela Sellan taiteilijavierailu Kanneltalossa jouduttiin valitettavasti siirtämään sairastapauksen vuoksi syksyyn. Pahoittelemme aiheutunutta harmia!</p><p>Uusi esitysajankohta on tiistai 1.9. klo 15. Jo varatut liput käyvät uudelle päivälle sellaisenaan. Jos uusi päivämäärä ei sovi, voit vapauttaa varaamasi paikan linkin kautta: https://web.lippu.fi/palautus/ tai soittamalla lippu.fi Asiakaspalvelu lipun ostaneille numeroon:  030 514 214  (ark. 10-16) Puhelun hinta pvm/mpm.<br>Pahoittelemme aiheutunutta harmia!</p><p>Taiteilijavierailun aikana Seela Sella ja Tuomo Holopainen keskustelevat rakastetun näyttelijälegendan huikeasta matkasta elämän näyttämöillä.</p><p>Keskustelun pohjana on Antti Heikkisen kirjoittama kirja Sellasta (Otava 2025). <br>Seela Sella on esittänyt unohtumattomia rooleja jo seitsemällä vuosikymmenellä. Hän on raivannut tiensä Pispalasta koko kansan sydämiin ja hurmaa yhä yleisönsä tarkalla ja vivahteikkaalla näyttelijäntyöllään.</p><p>Tunteikas ja tarinallinen kirja vie mestarin matkassa eri estradeille sekä niiden taakse. Teoksessa Sella kertoo niin teatterityönsä kuin elämänkokemuksensa opeista viisaudella, innolla, rohkeudella ja erityisesti pilke silmäkulmassa. Erilainen elämäkerta on myös tarinoiden ja anekdoottien runsaudensarvi.</p><p>Kesto 45 min + kirjasigneeraukset<br>Yhteistyössä Kanneltalo, Helsingin työväenopisto ja Kannelmäen kirjasto</p><p>Vapaa pääsy, ennakkoilmoittautuminen https://www.lippu.fi/eventseries/name-4048014/?affiliate=NFI</p>",
                "sv": "<p>Under konstnärens besök diskuterar Seela Sella och Tuomo Holopainen den älskade skådespelarlegendens fenomenala resa på livets scener.</p><p>Diskussionen baseras på boken Sellasta (Otava 2025) av Antti Heikkinen. <br>Seela Sella har spelat oförglömliga roller redan i sju decennier. Hon har banat väg från Pispala ända in i nationens hjärtan och fortsätter att fängsla publiken med sitt precisa och nyanserade skådespeleri.<br>Denna känsloladdade och berättande bok tar oss med på en resa med mästaren till olika estrader och bakom dem. Sella delar med sig av sitt teaterarbete och sin livserfarenhet med visdom, entusiasm, mod och framför allt med glimten i ögat. Den annorlunda biografin är också ett ymnighetshorn av berättelser och anekdoter.</p><p>Längd 45 min + boksignering</p><p>I samarbete med Gamlasgården, Helsingfors arbetarinstitut och Gamlas bibliotek</p><p>Fritt inträde, förhandsanmälan</p>",
                "en": "<p>At the artist visit, Seela Sella and Tuomo Holopainen talk about the remarkable journey of the beloved acting legend through the stages of life.</p><p>The conversation draws on Antti Heikkinen's book Sellasta (Otava, 2025). <br>Seela Sella has performed unforgettable roles for seven decades. She has made her way from Pispala into the hearts of the entire nation and continues to captivate audiences with her precise and nuanced acting.<br>The heartfelt and story-driven book follows the master across various stages and behind the curtains. In it, Sella recounts the insights gained from her theatre work and life experiences with wisdom, passion, bravery and a playful sparkle in her eye. This unique biography is also a cornucopia of stories and anecdotes.</p><p>Duration 45 min + book signing</p><p>Together with Kanneltalo, the Helsinki Finnish Adult Education Centre and Kannelmäki Library</p><p>Free admission, advance registration</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68395/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68185",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1586459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T09:13:03.464813Z",
                    "last_modified_time": "2026-03-10T09:13:03.464827Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786067.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586459/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-03-10T09:13:03.291753Z",
            "last_modified_time": "2026-04-10T08:12:52.998818Z",
            "date_published": null,
            "start_time": "2026-03-24",
            "end_time": "2026-04-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita",
                "sv": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita",
                "en": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita",
                "en": "http://www.stoa.fi/en/events/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita"
            },
            "description": {
                "fi": "<p>Yksi Stadin suurimmista kaupunginosajuhlista, Kontufestarit 2025, rakentui talkoovoimalla.</p><p>Iiris Laurikaisen valokuvanäyttely vie keskelle kesäistä festaritunnelmaa: pääset seikkailemaan yleisön seassa, jännittämään bäkkärillä, rakentamaan lavaa ja näkemään kuinka kessa tyhjenee juhlahumusta.</p><p>”Kuvasin Kontufestareita kahden päivän ajan rakennuksesta purkuun. Pääsin todistamaan yhteisöllisyyttä ja sitä kuinka eri ikäpolvet sulautuivat yhteen nauttimaan tunnelmasta ja musiikista.  Festareiden loputtua puisto jäi siistimmäksi kuin tullessa. Oli fiilis siitä että kaikki haluavat juhlien onnistuvan. Näyttelyllä halusin antaa jotain takaisin kaikille, jotka kokivat Kontufestarit tärkeiksi”<br>-Iiris Laurikainen</p><p>Talkoolaisia tuli ovista ja ikkunoista; järjestyshenkilöiksi, ensiapuryhmään, rakentajiksi, siivoukseen, tiedotukseen, spiikkereiksi, esiintyjien huoltoon, alueen koristeluun ja moneen muuhun. Yhtäkkiä kasassa oli osaava porukka, jolla oli tekemisen meininkiä ja reilua asennetta.</p><p>Syntyi juhlien juhla, rauhallinen ja iloinen kaiken kansan festari talkoilla ja yhdessä, asukkaiden, esiintyjien ja yritysten yhteistyöllä.</p><p>Kelkkapuisto, josta kaikki alkoi vuonna 2003, keräsi viime vuonna ennätyksellisen määrän yleisöä.</p><p>Festarityöryhmä: \"Tästä olemme erittäin ylpeitä ja haluamme esitellä tapahtumaa ja erityisesti sen tekijöitä valokuvaaja Iiris Laurikaisen kuvin. Hän oli yhtenä vapaaehtoisista valokuvaamassa tapahtumaa. Eläköön Kontula, Kontufestarit sekä sen tekijät ja kokijat, jotka yhdessä saivat aikaan juhlan!\"</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68185/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67593",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4120693",
                        "sv": "https://www.lippu.fi/eventseries/name-4120693",
                        "en": "https://www.lippu.fi/eventseries/name-4120693"
                    },
                    "description": null,
                    "price": {
                        "fi": "18,30 / 15,30",
                        "sv": "18,30 / 15,30",
                        "en": "18,30 / 15,30"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1789982,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T07:13:28.250116Z",
                    "last_modified_time": "2026-04-01T07:13:28.250130Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781989.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1789982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-01T07:13:28.174296Z",
            "last_modified_time": "2026-04-10T07:13:23.098645Z",
            "date_published": null,
            "start_time": "2026-04-22T16: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,
            "name": {
                "fi": "Attitude esittää: Teosilta",
                "sv": "Attitude esittää: Teosilta",
                "en": "Attitude esittää: Teosilta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/85004D82D3B10336D34833E30776E77E/Attitude_esittaa_Teosilta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/85004D82D3B10336D34833E30776E77E/Attitude_esittaa_Teosilta",
                "en": "http://www.malmitalo.fi/en/events/event/85004D82D3B10336D34833E30776E77E/Attitude_esittaa_Teosilta"
            },
            "description": {
                "fi": "<p>Tanssikoulu Attituden koulutusohjelmien soolo-, duo- ja pienryhmäteoksia sekä baletin intensiiviryhmien teoksia.</p><p>Kesto 1 t 20 min</p><p>http://www.attitudehelsinki.com</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67593/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67592",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4120693",
                        "sv": "https://www.lippu.fi/eventseries/name-4120693",
                        "en": "https://www.lippu.fi/eventseries/name-4120693"
                    },
                    "description": null,
                    "price": {
                        "fi": "18,30 / 15,30 €",
                        "sv": "18,30 / 15,30 €",
                        "en": "18,30 / 15,30 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1789981,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T07:13:27.819008Z",
                    "last_modified_time": "2026-04-01T07:13:27.819024Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781988.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1789981/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-01T07:13:27.696973Z",
            "last_modified_time": "2026-04-10T07:13:22.774430Z",
            "date_published": null,
            "start_time": "2026-04-22T14: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,
            "name": {
                "fi": "Attitude esittää: Teosilta",
                "sv": "Attitude esittää: Teosilta",
                "en": "Attitude esittää: Teosilta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3056F38790D39445FF2C550719BD549B/Attitude_esittaa_Teosilta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3056F38790D39445FF2C550719BD549B/Attitude_esittaa_Teosilta",
                "en": "http://www.malmitalo.fi/en/events/event/3056F38790D39445FF2C550719BD549B/Attitude_esittaa_Teosilta"
            },
            "description": {
                "fi": "<p>Tanssikoulu Attituden koulutusohjelmien soolo-, duo- ja pienryhmäteoksia sekä baletin intensiiviryhmien teoksia.</p><p>Kesto 1 t 20 min</p><p>www.attitudehelsinki.com</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67592/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68394",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1805816,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-09T13:13:44.163715Z",
                    "last_modified_time": "2026-04-09T13:13:44.163731Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787978.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805816/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-09T13:13:44.068404Z",
            "last_modified_time": "2026-04-09T13:13:44.310270Z",
            "date_published": null,
            "start_time": "2026-05-19T09:00:00Z",
            "end_time": "2026-05-19T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/02288716891E4D1CAC71EBAA0FA00B7B/Lahde_mukaan_puistoparkourkavelylle",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/02288716891E4D1CAC71EBAA0FA00B7B/Lahde_mukaan_puistoparkourkavelylle",
                "en": "http://www.malmitalo.fi/en/events/event/02288716891E4D1CAC71EBAA0FA00B7B/Lahde_mukaan_puistoparkourkavelylle"
            },
            "description": {
                "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68393",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1805815,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-09T13:13:42.770487Z",
                    "last_modified_time": "2026-04-09T13:13:42.770502Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787976.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805815/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-09T13:13:42.642898Z",
            "last_modified_time": "2026-04-09T13:13:42.929879Z",
            "date_published": null,
            "start_time": "2026-05-12T09:00:00Z",
            "end_time": "2026-05-12T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F8A59DE7FC4E04E046CF8398D2D4372B/Lahde_mukaan_puistoparkourkavelylle",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F8A59DE7FC4E04E046CF8398D2D4372B/Lahde_mukaan_puistoparkourkavelylle",
                "en": "http://www.malmitalo.fi/en/events/event/F8A59DE7FC4E04E046CF8398D2D4372B/Lahde_mukaan_puistoparkourkavelylle"
            },
            "description": {
                "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68393/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68136",
            "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:105/?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:732/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494913,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T09:13:04.016142Z",
                    "last_modified_time": "2026-02-20T09:13:04.016160Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781732.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494913/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-20T09:13:03.870202Z",
            "last_modified_time": "2026-04-09T13:13:32.692564Z",
            "date_published": null,
            "start_time": "2026-04-11T07:00:00Z",
            "end_time": "2026-04-11T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Vaippakansan karnevaali",
                "sv": "Blöjfolkets karneval",
                "en": "Carnival for those in nappies"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!",
                "sv": "Blöjfolkets karneval, bebisars och småbarns egen festival, är tillbaka!",
                "en": "The baby carnival, Vaippakansan karnevaali or Vaippis, a dedicated festival for babies and toddlers, is back!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1FA6F562D9A491365A611574CBF23B05/Vaippakansan_karnevaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1FA6F562D9A491365A611574CBF23B05/Blojfolkets_karneval",
                "en": "http://www.malmitalo.fi/en/events/event/1FA6F562D9A491365A611574CBF23B05/Carnival_for_those_in_nappies"
            },
            "description": {
                "fi": "<p>Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!</p><p>Malmitalo kannustaa kurottelemaan kohti kulttuuria talon täyttyessä taaperoikäisille suunnatuista esityksistä, työpajoista ja muusta ohjelmasta. <br>Vauvakinoa lukuun ottamatta ohjelma maksutonta. Osaan ennakkoilmoittautuminen tai maksuttomat pääsyliput paikan päältä.<br>Huom! Lastenvaunut yms. tulee jättää talon edustalla sijaitsevaan vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p><p>Esitykset<br>10.30 ja 12.30 Vauvavaltameri – Babyocean, Malmisali, maksuttomat liput<br>11.15. ja 13.15 Puistopartio, aula, vapaa pääsy<br>12 Vauvakino: Rental Family, Pieni sali, liput 9€ (sis. 1 aik. ja 1 vauva)</p><p>Muu ohjelma, vapaa pääsy<br>10–13.15 Vauvadisko, 2. krs kokoushuone 2<br>10–14 Sademetsän salaisuudet -näyttely +  satu- ja satuliikuntatuokiot, Galleria<br>10–14 Kukkaniitty ja pörriäiset! Taidepaja vaippakansalle, 2. krs parvi</p><p>Työpajat, ennakkoilmoittautuminen<br>10 ja 11 Vauvojen luontokylpy, kirjaston monitoimitila<br>10–13 Baby Spa -tuokiot ja elämystila, 2. krs kokoushuone 3<br>10, 11 ja 13 Vauva- ja taapero muskarit, 2. krs muskariluokka<br>10.15, 11.30 ja 12.30 Vauvojen värikylpy, 2. krs. kuvanveistoluokka <br>10.30 ja 11.15 Vauvasirkustyöpaja, Pieni sali</p><p>Vauvavaltameri – Babyocean<br>Vauvavaltameri on tanssiteos ja aistielämys vauvoille seuralaisineen.<br>Sympaattinen matka elämän alkulähteille, alkumereen, jossa eoseeni-ajan alkueliöt kelluvat, kulkevat ja muuttavat muotoaan. Vauvavaltameressä voi ihmetellä, eläytyä, osallistua tai vain rentoutua virran mukana.<br>Ikäsuositus: 0–18 kk<br>Kesto: n. 40 min</p><p>Puistopartio-konsertti<br>Puistopartion mukaansa tempaavissa lauluissa seikkailevat muun muassa kaivurit, kippiautot ja hälytysajoneuvot. Tule mukaan laulamaan ja liikkumaan työkonetanssien tahtiin!<br>Konsertin jälkeen on mahdollista tavata Puistopartio ja saada oma fanikortti mukaan.<br>Konsertin kesto: n. 30 min<br>Vapaa pääsy</p><p>Vauvakino: Rental Family (S)<br>Rentoudu elokuvan parissa yhdessä vauvasi kanssa. Vauvakinonäytöksessä äänet ovat normaalia hiljemmalla ja pidämme yleisövalot himmeällä koko elokuvan ajan. Saliin voit ottaa mukaan kantokopan, salissa on myös tyynyjä ja patjoja, joilla voi oleilla, sekä mikro lasten ruokien yms. lämmittämistä varten.<br>Lue lisää elokuvasta lipunmyyntisivulta<br>Ikäraja: Sallittu<br>Kesto: 111 min<br>Liput: 9 € / lapsi + aikuinen –pari</p><p>Vauvadisko<br>Dj Elviksen Äiti soittaa lasten suosikkeja ja toiveita Malmitalon toisessa kerroksessa. Tule tanssimaan ja pitämään hauskaa koko perheen voimin!</p><p>Sademetsän salaisuudet – näyttely ja satu- ja satuliikuntatuokiot<br>Lasten osallistava elämysnäyttely kutsuu seikkailuun sademetsän sydämeen.  Sukella jännittävälle satumatkalle osana tutkimusmatkailijoiden retkikuntaa.</p><p>Kukkaniitty ja pörriäiset! - luonnonväri taidepaja vaippakansalle <br>Maalataan luontoaiheisia töitä luonnonväreillä. Haistellaan ja ehkä jopa maistellaan värien hehkua!</p><p>Vauvojen luontokylpy<br>Kesto n. 40 min. Ikäsuositus 6–18kk. Ennakkoilmoittautuminen: suvi.vehmas@hel.fi</p><p>Baby Spa -aistitila ja ohjatut leikkituokiot<br>Spa-käynti sisältää ohjatun leikkituokion, joka johdattaa suloisiin äänimaisemiin, tilan tutkimiseen ja lempeisiin vaahtoaaltoihin! <br>Sopii alle 1,5v. Kesto noin 30 min. Aistitilassa ei käytetä vettä. <br>Ennakkoilmoittautuminen: hupsansaary@gmail.com. Kerro toivomasi kellonaika, seurueesi koko sekä lapsen ikä.</p><p><b>Seuraaviin työpajoihin ennakkoilmoittautumiset anna.antikainen@hel.fi. Kerro ilmoittautuessasi toivomasi työpajan kellonaika ja lapsen ikä. Suosittelemme varaamaan paikat ikäryhmittäin, mikäli mahdollista.</b></p><p>Vauvojen värikylpy<br>Tule kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi! Ikäryhmät: 12–18kk 10.15, 6–12kk 11.30 ja 18–24kk 12.30</p><p>Vauva- ja taaperomuskarit<br>Tervetuloa laulamaan, soittamaan ja liikkumaan iloisiin perhemuskareihin. Ikäryhmät: 2-3v klo 10, 1-2v klo 11, 0-1 v klo 13.</p><p>Vauvasirkustyöpaja<br>Vahvistamme vanhemman ja lapsen välistä suhdetta leikin ja ilon kautta. Tutustumme pariakrobatiaan ja erilaisiin</p>",
                "sv": "<p>Blöjfolkets karneval, bebisars och småbarns egen festival, är tillbaka!</p><p>Malms kulturhus uppmuntrar barn att sträcka sig mot kulturen när huset fylls med föreställningar, verkstäder och annat program riktade till bebisar och småbarn.</p><p>I entrén i Malms kulturhus utlovas barnmusikorkester Puistopartios avgiftsfria konserter. I deras medryckande sånger är bland annat grävmaskiner, kippbilar och utryckningsfordon ute på äventyr. Kom med och sjung samt rör på dig till takten av arbetsmaskinsdanser!</p><p>Ta med dig ditt barn och rulla barnvagnen till Malms kulturhus i april!</p><p>Mer information om programmet finns på evenemangets finskspråkiga sida.</p><p>Åldersrekommendation: 0–3 år med familj.</p>",
                "en": "<p>The baby carnival, Vaippakansan karnevaali or Vaippis, a dedicated festival for babies and toddlers, is back!</p><p>Cultural Centre Malmitalo encourages children to reach out for culture as the house fills up with performances, workshops and other activities for babies and toddlers.</p><p>The Malmitalo lobby will host free concerts by the children's music group Puistopartio. Their captivating songs tell stories about the adventures of excavators, dump trucks, emergency vehicles and many more of the like. Come and sing and move with us in the rhythm of dancing work machines!</p><p>So bring your child and roll your stroller to Malmitalo in April!</p><p>Recommended ages: 0–3 yrs. and their families.</p><p><b>Performances</b><br>10.30 and 12.30 Babyocean, Malmisali, free tickets<br>11.15 and 13.15 Puistopartio, lobby, free entry<br>12.00 Baby Cinema: Rental Family, Small Auditorium, tickets €9 (includes 1 adult and 1 baby)</p><p><b>Other programme, free entry</b><br>10.00–13.15 Baby Disco, 2nd floor, meeting room 2<br>10.00–14.00 Secrets of the Rainforest -exhibition plus storytime and story-based exercise sessions, gallery<br>10.00–14.00 Flower Meadow and Pollinators! Art workshop for babies and toddlers, 2nd floor loft</p><p><b>Workshops, advance registration required</b><br>10.00 and 11.00 Nature Bathing for Babies, library’s multi-purpose room<br>10.00–13.00 Baby Spa sessions and sensory space, 2nd floor, meeting room 3<br>10.00, 11.00 and 13.00 Music sessions for babies and toddlers, 2nd floor, music classroom<br>10.15, 11.30 and 12.30 Colour Bath for Babies, 2nd floor, sculpture classroom<br>10.30 and 11.15 Baby Circus Workshop, Small Auditorium</p><p>Babyocean<br>A dance performance and sensory experience for babies and their accompanying adults.</p><p>Puistopartio concert<br>A lively concert with songs, movement and work machine-themed fun.</p><p>Baby Cinema: Rental Family (S)<br>A relaxed film screening for babies and adults, with lower sound and dimmed lights. Tickets starting from €9 per adult/toddler-pair.</p><p>Baby Disco<br>Dance to children’s favourites and audience requests with the whole family.</p><p>Secrets of the Rainforest<br>An interactive exhibition with storytime and story-based exercise sessions.</p><p>Flower Meadow and Pollinators!<br>A natural pigment art workshop for babies and toddlers.</p><p>Nature Bathing for Babies<br>A calming workshop for babies and their adults.<br>Advance registration: suvi.vehmas@hel.fi</p><p>Baby Spa sensory space and guided play sessions<br>A gentle sensory session with guided play and soft soundscapes – water free! Advance registration: hupsansaary@gmail.com</p><p><i>Following workshops require an advanced registration to: anna.antikainen@hel.fi</i></p><p>Colour Bath for Babies<br>A playful workshop exploring colours and creative expression.</p><p>Music sessions for babies and toddlers<br>Family music sessions with singing, playing and movement.</p><p>Baby Circus Workshop<br>A playful workshop for babies and adults with movement and circus activities.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68136/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68392",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1805727,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-09T12:12:56.127096Z",
                    "last_modified_time": "2026-04-09T12:12:56.127110Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787974.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-09T12:12:56.067229Z",
            "last_modified_time": "2026-04-09T12:12:56.212150Z",
            "date_published": null,
            "start_time": "2026-04-28T09:00:00Z",
            "end_time": "2026-04-28T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E46EB57F525DE604DC52D185CC4A325/Lahde_mukaan_puistoparkourkavelylle",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E46EB57F525DE604DC52D185CC4A325/Lahde_mukaan_puistoparkourkavelylle",
                "en": "http://www.malmitalo.fi/en/events/event/8E46EB57F525DE604DC52D185CC4A325/Lahde_mukaan_puistoparkourkavelylle"
            },
            "description": {
                "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68391",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1805726,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-09T12:12:52.770885Z",
                    "last_modified_time": "2026-04-09T12:12:52.770899Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787972.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805726/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-09T12:12:52.659204Z",
            "last_modified_time": "2026-04-09T12:12:52.887808Z",
            "date_published": null,
            "start_time": "2026-04-14T09:00:00Z",
            "end_time": "2026-04-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto",
                "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5E41F4936AB701A95D8A938162779BC1/Lahde_mukaan_puistoparkourkavelylle",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5E41F4936AB701A95D8A938162779BC1/Lahde_mukaan_puistoparkourkavelylle",
                "en": "http://www.malmitalo.fi/en/events/event/5E41F4936AB701A95D8A938162779BC1/Lahde_mukaan_puistoparkourkavelylle"
            },
            "description": {
                "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68391/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68356",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4124715"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1789985,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T07:13:31.396996Z",
                    "last_modified_time": "2026-04-01T07:13:31.397010Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787797.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1789985/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-01T07:13:31.332883Z",
            "last_modified_time": "2026-04-09T10:12:52.519259Z",
            "date_published": null,
            "start_time": "2026-05-08T16: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,
            "name": {
                "fi": "Puksun Sirkus esittää: Kevätsirkus Aikamatka"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AD6B7F5A94613C4414AA0EA2BA006949/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka"
            },
            "description": {
                "fi": "<p>Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla.</p><p>Tervetuloa mukaan Aikamatkaan – huikeiden sirkusesitysten maailmaan.</p><p>Kevätsirkus Aikamatka vie katsojat matkalle ajassa, menneestä nykypäivään ja tulevaisuuteen. Esityksessä nähdään sirkuskoulun eri-ikäisiä oppilaita, jotka esittävät ryhmä- sekä soolonumeroita.</p><p>Luvassa on mm korkealentoista ilma-akrobatiaa, vauhdikasta akrobatiaa,  huikeita ihmispyramideja sekä uskomatonta esinemanipulaatiota.  Sirkus on yhdessä tekemisen hauskuutta, mutta myös oman osaamisen jatkuvaa haastamista.<br> <br>Tule kokemaan sirkuksen ilo ja eri ikäisten esiintyjien energia!</p><p>Esitykset sopivat koko perheelle.</p><p>Kesto 1 t</p><p>Sopii kaikenikäisille.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68356/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68355",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4124715",
                        "sv": "https://www.lippu.fi/eventseries/name-4124715",
                        "en": "https://www.lippu.fi/eventseries/name-4124715"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 / 11 €",
                        "sv": "17 / 11 €",
                        "en": "17 / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1791682,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-02T06:13:07.423807Z",
                    "last_modified_time": "2026-04-02T06:13:07.423821Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787796.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791682/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-01T07:13:30.958266Z",
            "last_modified_time": "2026-04-09T10:12:52.262655Z",
            "date_published": null,
            "start_time": "2026-05-08T14:00:00Z",
            "end_time": "2026-05-08T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Puksun Sirkus esittää: Kevätsirkus Aikamatka",
                "sv": "Puksun Sirkus esittää: Kevätsirkus Aikamatka",
                "en": "Puksun Sirkus esittää: Kevätsirkus Aikamatka"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/226C0F361E2B0587EBD82AF213140392/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/226C0F361E2B0587EBD82AF213140392/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka",
                "en": "http://www.malmitalo.fi/en/events/event/226C0F361E2B0587EBD82AF213140392/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka"
            },
            "description": {
                "fi": "<p>Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla.</p><p>Tervetuloa mukaan Aikamatkaan – huikeiden sirkusesitysten maailmaan. Kevätsirkus Aikamatka vie katsojat matkalle ajassa, menneestä nykypäivään ja tulevaisuuteen.</p><p>Esityksessä nähdään sirkuskoulun eri-ikäisiä oppilaita, jotka esittävät ryhmä- sekä soolonumeroita.  Luvassa on mm korkealentoista ilma-akrobatiaa, vauhdikasta akrobatiaa,  huikeita ihmispyramideja sekä uskomatonta esinemanipulaatiota.</p><p>Sirkus on yhdessä tekemisen hauskuutta, mutta myös oman osaamisen jatkuvaa haastamista.</p><p>Tule kokemaan sirkuksen ilo ja eri ikäisten esiintyjien energia!</p><p>Esitykset sopivat koko perheelle.</p><p>Kesto 1 t</p><p>Sopii kaikenikäisille.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68355/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68354",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4124715",
                        "sv": "https://www.lippu.fi/eventseries/name-4124715",
                        "en": "https://www.lippu.fi/eventseries/name-4124715"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 / 11 €",
                        "sv": "17 / 11 €",
                        "en": "17 / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1789983,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T07:13:30.653098Z",
                    "last_modified_time": "2026-04-01T07:13:30.653112Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787794.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1789983/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-01T07:13:30.584786Z",
            "last_modified_time": "2026-04-09T10:12:52.021987Z",
            "date_published": null,
            "start_time": "2026-05-07T16: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,
            "name": {
                "fi": "Puksun Sirkus esittää: Kevätsirkus Aikamatka",
                "sv": "Puksun Sirkus esittää: Kevätsirkus Aikamatka",
                "en": "Puksun Sirkus esittää: Kevätsirkus Aikamatka"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5794ED800E2139536C334E53AE9AD0CC/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5794ED800E2139536C334E53AE9AD0CC/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka",
                "en": "http://www.malmitalo.fi/en/events/event/5794ED800E2139536C334E53AE9AD0CC/Puksun_Sirkus_esittaa_Kevatsirkus_Aikamatka"
            },
            "description": {
                "fi": "<p>Varma kevään merkki on Pukinmäen Sirkuskoulun kevätesitykset Malmitalolla.</p><p>Tervetuloa mukaan Aikamatkaan – huikeiden sirkusesitysten maailmaan.</p><p>Kevätsirkus Aikamatka vie katsojat matkalle ajassa, menneestä nykypäivään ja tulevaisuuteen. Esityksessä nähdään sirkuskoulun eri-ikäisiä oppilaita, jotka esittävät ryhmä- sekä soolonumeroita.  Luvassa on mm korkealentoista ilma-akrobatiaa, vauhdikasta akrobatiaa,  huikeita ihmispyramideja sekä uskomatonta esinemanipulaatiota.</p><p>Sirkus on yhdessä tekemisen hauskuutta, mutta myös oman osaamisen jatkuvaa haastamista.</p><p>Tule kokemaan sirkuksen ilo ja eri ikäisten esiintyjien energia!</p><p>Esitykset sopivat koko perheelle.</p><p>Kesto 1 t</p><p>Sopii kaikenikäisille.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhs7su",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824121,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-09T09:53:56.496230Z",
                    "last_modified_time": "2026-04-09T09:53:56.496243Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e87e93fb-d841-46e3-8e46-211e3ca6229e.jpg",
                    "name": "",
                    "cropping": "116,0,964,848",
                    "photographer_name": "",
                    "alt_text": "kirjailijoita kirjojen kanssa yhteiskuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-09T06:27:09.321054Z",
            "last_modified_time": "2026-04-09T09:54:03.920664Z",
            "date_published": null,
            "start_time": "2026-04-11T11:00:00Z",
            "end_time": "2026-04-11T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "SOMALIKIRJALLISUUS- JA KULTTUURIMESSUT    ",
                "en": "SOMALI LITERATURE AND CULTURE FAIR "
            },
            "location_extra_info": {
                "fi": "Estradi",
                "en": "Estradi"
            },
            "provider": null,
            "short_description": {
                "fi": "Messuilla tutustutaan Somalikieliseen aikuisten ja lasten kirjallisuuteen. ",
                "en": "The fair will introduce you to Somali-language literature for adults and children."
            },
            "info_url": null,
            "description": {
                "fi": "SOMALIKIRJALLISUUS- JA KULTTUURIMESSUT<p><br></p><p>Messuilla tutustutaan Somalikieliseen aikuisten ja lasten kirjallisuuteen. Perjantaina 10.4.2026 klo 14 pidetään Leppävaaran Maahanmuuttajakohtaamis paikassa ja</p><p><strong>Lauantaina 11.4.2026&nbsp;Klo 14 Entressen kirjastossa. Mukana ovat Kirjailijat Abdulaziz Ali Ibrahim Xildhiban Englannista ja Abdullahi Warsame Amalle Itävallasta.</strong></p><p>Tarjolla myös makeita ja suolaisia somalilaisia herkkuja.</p><p><br></p><p>Tervetuloa</p><p>&nbsp;</p>",
                "en": "SOMALI LITERATURE AND CULTURE FAIR<p>&nbsp;</p><p>The fair will introduce you to Somali-language literature for adults and children. Friday, April 10, 2026 at 2:00 PM at the Immigrant Encounter in Leppävaara and</p><p><strong>Saturday, April 11, 2026 at 2:00 PM at the Entresse Library. The authors are Abdulaziz Ali Ibrahim Xildhiban from England and Abdullahi Warsame Amalle from Austria.</strong></p><p>Sweet and savory Somali delicacies will also be available.</p><p>&nbsp;</p><p>Welcome</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs7su/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}