Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19231,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=28",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=26"
    },
    "data": [
        {
            "id": "kulke:66765",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1264196,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-15T12:12:48.781611Z",
                    "last_modified_time": "2025-07-15T12:12:48.781626Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775804.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1264196/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-15T12:12:48.716547Z",
            "last_modified_time": "2025-07-15T12:12:48.866654Z",
            "date_published": null,
            "start_time": "2025-08-07T13:00:00Z",
            "end_time": "2025-08-07T15: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/712591297CA659BFD336E6683E25289E/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/712591297CA659BFD336E6683E25289E/Skeittipakus_sommarskateboardskola_i_Stoa",
                "en": "http://www.stoa.fi/en/events/event/712591297CA659BFD336E6683E25289E/Skateboard_Truck_summer_school_at_Stoa_square"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>",
                "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>",
                "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>"
            },
            "name": {
                "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla",
                "sv": "Skeittipakus sommarskateboardskola i Stoa",
                "en": "Skateboard Truck summer school at Stoa square"
            },
            "short_description": {
                "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.",
                "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.",
                "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66765/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66763",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1264195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-15T12:12:48.318878Z",
                    "last_modified_time": "2025-07-15T12:12:48.318892Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775295.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1264195/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-15T12:12:48.213712Z",
            "last_modified_time": "2025-07-15T12:12:48.436730Z",
            "date_published": null,
            "start_time": "2025-08-04T13:00:00Z",
            "end_time": "2025-08-04T15: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1986690410D76A8C805160481AAB2F16/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1986690410D76A8C805160481AAB2F16/Skeittipakus_sommarskateboardskola_i_Stoa",
                "en": "http://www.stoa.fi/en/events/event/1986690410D76A8C805160481AAB2F16/Skateboard_Truck_summer_school_at_Stoa_square"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>",
                "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>",
                "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>"
            },
            "name": {
                "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla",
                "sv": "Skeittipakus sommarskateboardskola i Stoa",
                "en": "Skateboard Truck summer school at Stoa square"
            },
            "short_description": {
                "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.",
                "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.",
                "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66763/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22nbbi",
            "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:p10727/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22m7oq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22m774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22naqu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490198,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-07-15T11:15:39.150707Z",
                    "last_modified_time": "2025-07-15T11:15:39.150720Z",
                    "name": "Karaoke mainos vihreällä taustalla.",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e6c49fda-83fc-492e-b2b4-1790d17b3d54.png",
                    "cropping": "117,0,683,566",
                    "photographer_name": "",
                    "alt_text": "Karaoke mainos vihreällä taustalla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490198/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-15T11:35:50.684579Z",
            "last_modified_time": "2025-07-15T11:35:50.684597Z",
            "date_published": null,
            "start_time": "2025-07-25T10:30:00Z",
            "end_time": "2025-08-01T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa laulamaan karaokea kaikille avoimeen karaokeen Entressen kirjastoon.</p><p>Jukeboksi pe 25.7. ja ke 30.7. klo 13.30-15</p><p>Estradi pe 1.8. klo 13.30-15</p>",
                "sv": "<p>Välkommen att sjunga karaoke på den öppna karaoken på Entresse bibliotek.</p><p>Jukeboksi fre 25.7 och ons 30.7 kl. 13:30-15</p><p>Estradi fre 1.8 kl. 13:30-15</p>",
                "en": "<p>Welcome to sing karaoke at the open karaoke at Entresse Library.</p><p>Jukeboksi Fri 25.7. and Wed 30.7. at 13:30-15</p><p>Estradi Fri 1.8. at 13:30-15</p>"
            },
            "name": {
                "fi": "Kaikille avoin karaoke",
                "sv": "Karaoke öppet för alla",
                "en": "Karaoke open to everyone"
            },
            "short_description": {
                "fi": "Kaikille avoin karaoke Entressen kirjastossa.",
                "sv": "Karaoke öppen för alla på Entresse bibliotek.",
                "en": "Karaoke open to everyone at Entresse Library."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nbbi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66761",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1263881,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-15T11:13:29.047221Z",
                    "last_modified_time": "2025-07-15T11:13:29.047234Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774915.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1263881/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-15T11:13:28.975963Z",
            "last_modified_time": "2025-07-15T11:13:29.136036Z",
            "date_published": null,
            "start_time": "2025-10-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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1B5E52219B62B14C8715184F7AC4C47E/Keskiviikkokino_Toisenlaiset_kesakaverit_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1B5E52219B62B14C8715184F7AC4C47E/Keskiviikkokino_Toisenlaiset_kesakaverit_7_",
                "en": "http://www.vuotalo.fi/en/events/event/1B5E52219B62B14C8715184F7AC4C47E/Keskiviikkokino_Toisenlaiset_kesakaverit_7_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Toisenlaiset kesäkaverit on hyvänmielen komedia rikoskaksikosta, jotka ovat toteuttaneet vuosisadan ryöstökeikan.</p><p>Paetessaan poliisia he päätyvät yllättävään piilopaikkaan – vammaisten kesäleirille – tekeytyen asukkaaksi ja hänen ohjaajakseen. Tästä käynnistyy odottamaton ja silmiä avaava kokemus, joka muuttaa heidän elämänsä pysyvästi.<br>Elokuva nousi Ranskassa vuoden ilmiöksi, keräten yli 10 miljoonaa katsojaa.</p><p>Elokuva yhdistää huumorin ja koskettavat hetket. Toisenlaiset kesäkaverit saa katsojan nauramaan, liikuttumaan ja pohtimaan omaa suhtautumistaan erilaisuuteen. Upeat näyttelijäsuoritukset tuovat tarinaan aitoutta.</p><p>Elokuvan on ohjannut näyttelijä, koomikko ja ohjaaja Victor Artus Solaro aka Artus.</p><p>Ikäraja: 7<br>Kesto:100 min<br>Ohjaus: Artus<br>Kieli: ranska, tekstitykset: suomi, ruotsi</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Keskiviikkokino: Toisenlaiset kesäkaverit (7)",
                "sv": "Keskiviikkokino: Toisenlaiset kesäkaverit (7)",
                "en": "Keskiviikkokino: Toisenlaiset kesäkaverit (7)"
            },
            "short_description": {
                "fi": "Toisenlaiset kesäkaverit on hyvänmielen komedia rikoskaksikosta, jotka ovat toteuttaneet vuosisadan ryöstökeikan."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66761/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66464",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 828179,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-22T12:12:42.577551Z",
                    "last_modified_time": "2025-05-22T12:12:42.577582Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765239.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/828179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-22T12:12:42.524633Z",
            "last_modified_time": "2025-07-15T08:14:18.313990Z",
            "date_published": null,
            "start_time": "2025-07-16T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/BFDC36D49B3F3888E92985C74C874D6A/Aino_Hajonneet_-_Huom_Esiintyja_vaihtunut",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/BFDC36D49B3F3888E92985C74C874D6A/Aino_Hajonneet_-_Huom_Esiintyja_vaihtunut",
                "en": "http://www.espanlava.fi/en/events/event/BFDC36D49B3F3888E92985C74C874D6A/Aino_Hajonneet_-_Huom_Esiintyja_vaihtunut"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Syyskuussa 2024 kolmannen albuminsa ”Enemmän kuin mitään muuta” julkaissut Aino & Hajonneet on 2020 perustettu yhtye, jonka musiikilliset juuret ovat melodisen suomipunkin ja powerpopin risteyksessä.</p><p>Yhtye on kerännyt mainetta erittäin energisenä lavabändinä. Aino & Hajonneet oli Indie Awards 2025 -gaalassa ehdolla sarjassa ”Vuoden rock”. 5.9. yhtyeeltä ilmestyy tupla-livealbumi \"Livee & Lovee\"</p>"
            },
            "name": {
                "fi": "Aino & Hajonneet - Huom! Esiintyjä vaihtunut",
                "sv": "Aino & Hajonneet - Huom! Esiintyjä vaihtunut",
                "en": "Aino & Hajonneet - Huom! Esiintyjä vaihtunut"
            },
            "short_description": {
                "fi": "Syyskuussa 2024 kolmannen albuminsa ”Enemmän kuin mitään muuta” julkaissut Aino & Hajonneet on 2020 perustettu yhtye, jonka musiikilliset juuret ovat melodisen suomipunkin ja powerpopin risteyksessä."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66464/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1256678,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T12:22:35.448912Z",
                    "last_modified_time": "2025-07-14T12:22:35.448927Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771178.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256678/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-14T12:22:35.288204Z",
            "last_modified_time": "2025-07-14T12:22:35.651593Z",
            "date_published": null,
            "start_time": "2025-09-26T07:00:00Z",
            "end_time": "2025-09-26T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/391525A73883568E09CA7175C9F883A5/Vauvan_paiva",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/391525A73883568E09CA7175C9F883A5/Babydagen",
                "en": "http://www.vuotalo.fi/en/events/event/391525A73883568E09CA7175C9F883A5/Baby_s_Day"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Valtakunnallinen Vauvan päivä -tapahtuma valtaa Vuotalon pe 26.9.2025 aamupäivällä ennen päiväuniaikaa.</p><p>Vauvan päivä toteutetaan yhteistyössä mm. neuvolan, seurakunnan, lapsiperheiden sosiaaliohjauksen, päivähoidon, Mannerheimin lastensuojeluliiton, alueen Perhetalo Kajuutan ja leikkipuistojen kanssa. Ohjelmaa vauvoille ja heidän aikuisilleen Vuotalossa klo 10–12.</p><p>Kieli: suomi<br>Ikäsuositus: vauvat ja vauvaperheet<br>Vapaa pääsy</p>",
                "sv": "<p>Det nationella evenemanget Babydagen erövrar Nordhuset fredagen 26.9.2025 på förmiddagen innan det är dags att sova middag.</p><p>Babydagen genomförs i samarbete med bland annat barnrådgivningen, församlingen, socialhandledningen för barnfamiljer, dagvården, Mannerheims barnskyddsförbund, områdets familjehus Kajutan och lekparkerna. Program i Nordhusets aula kl. 10–12.</p>",
                "en": "<p>The national Baby’s Day event takes over Vuotalo on Fri, 26 September 2025 in the morning before naptime.</p><p>The Baby’s Day event is organised in cooperation with the child health clinic, the parish, social counselling for families with children, daycare, the Mannerheim League for Child Welfare, the local family house Kajuutta and play parks, among others. The programme takes place in the lobby of Vuotalo from 10.00 to 12.00.</p>"
            },
            "name": {
                "fi": "Vauvan päivä – Vauvoissa on ilo",
                "sv": "Babydagen",
                "en": "Baby’s Day"
            },
            "short_description": {
                "fi": "Valtakunnallinen Vauvan päivä -tapahtuma valtaa Vuotalon pe 26.9.2025 aamupäivällä ennen päiväuniaikaa.",
                "sv": "Det nationella evenemanget Babydagen erövrar Nordhuset fredagen 26.9.2025 på förmiddagen innan det är dags att sova middag.",
                "en": "The national Baby’s Day event takes over Vuotalo on Fri, 26 September 2025 in the morning before naptime."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66668",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/",
                        "sv": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/",
                        "en": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1148243,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T13:12:57.781085Z",
                    "last_modified_time": "2025-06-30T13:12:57.781102Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771194.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1148243/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T13:12:57.673701Z",
            "last_modified_time": "2025-07-14T12:22:32.501053Z",
            "date_published": null,
            "start_time": "2025-09-13T12: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko",
                "en": "http://www.vuotalo.fi/en/events/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>“Me tehdään musaa maailman parhaimmista tyypeistä eli lapsista!”</p><p>Sukkalukko on keväällä 2023 perustettu lastenmusiikkiyhtye. Yhtyeen muodostavat Susanna Volanto ja Tomi Rajala. Tomi tunnetaan parhaiten The Bätmäns -yhtyeestä ja Susanna on monille tuttu television lastenohjelmista. Musiikkitaustaa molemmilta löytyy monista eri yhteyksistä sekä kokemusta lastenkulttuurin parissa työskentelystä monessa eri muodossa. Sukkalukon bändikeikoilla on lisäksi mukana rumpuja paukuttelemassa Janne Mathlin sekä basson varressa Kalle Ylitalo.</p><p>Sukkalukko on julkaissut viisi singleä ja kesäkuussa ilmestyi yhtyeen debyyttialbumi 10/10. Sukkalukon useampi biisi on jo sujahtanut Spotifyn viralliselle 'Parasta lastenmusiikkia' -soittolistalle. Sukkalukko oli myös ehdolla vuoden 2024 Jellonagaalassa Vuoden tulokkaaksi.</p><p>Musiikillisesti Sukkalukon kappaleet ovat vauhdikasta pop-musiikkia. Sanoituksiin on löytynyt inspiraatio lapsiperheiden päivittäisestä elämästä; pihaleikeistä, ystävistä, nuhapöpöistä ja vaikkapa sukista! Kappaleet pursuavat iloa sekä riemua ja ovat sokerisen tarttuvia. Vanhemmille kappaleet tarjoavat vertaistukea hektisen perhe-elämän keskellä. Sukkalukon keikalla ei tarvitse istuskella, vaan jokainen saa hyppiä, laulaa ja hassutella mukana. Sukkalukot tiukalle - se on menoa nyt!</p>",
                "sv": "<p>”Vi gör musik om världens bästa typer, alltså barn!”</p><p>Sukkalukko är en barnmusikorkester som grundades våren 2023. Orkestern består av Susanna Volanto och Tomi Rajala. Tomi är känd från gruppen The Bätmäns och Susanna från barnprogram på tv. Båda har en musikalisk bakgrund från många olika sammanhang och erfarenhet av att arbeta med barnkultur i olika former.</p><p>Sukkalukko har gett ut fyra singlar, och tre av dem har tagit sig in på Spotifys officiella spellista för den bästa barnmusiken. Sukkalukko var också nominerad som årets nykomling på Jellonagalan 2024. Och i juni utlovas feststämning när Sukkalukko ger ut sitt första album!</p><p>Musikaliskt representerar Sukkalukkos låtar en fartfylld popmusik. Texterna är inspirerade av barnfamiljens vardag: lekar på gården, vänner, snuva och kanske strumpor! Låtarna sprudlar av glädje och är väldigt medryckande. För föräldrarna kan låtarna vara ett stöd i det hektiska familjelivet. På Sukkalukkos spelningar behöver man inte sitta stilla, utan alla får hoppa, sjunga och busa till musiken. Sukkalukko är här – nu kör vi!</p>",
                "en": "<p>“We make music about the best people on earth – children!”</p><p>Sukkalukko is a children’s music group founded in spring 2023. The band consists of Susanna Volanto and Tomi Rajala. Tom is best known for The Bätmäns and Susanna is known for her appearances on children's programmes on television. Both have diverse musical backgrounds and experience in working with children’s culture.</p><p>Sukkalukko have released four singles, and three of them have shot to the official 'Parasta lastenmusiikkia' (best children’s music) playlist on Spotify. Sukkalukko was also nominated in the 2024 Jellonagaala as newcomer of the year (Vuoden tulokas). June spells celebration for the group, as they release their debut album!</p><p>Musically, Sukkalukko’s songs are energetic pop. The lyrics have been inspired by daily life in families with children: playing outside, friends, runny noses and socks, why not! The songs brim with joy and delight and are sweet and catchy. Parents will find peer support in the songs in the middle of hectic family life. You are not supposed to sit down during a Sukkalukko performance; instead, you are encouraged to jump, sing and play along. Hold on to your socks – here we go!</p>"
            },
            "name": {
                "fi": "Sukkalukko",
                "sv": "Sukkalukko",
                "en": "Sukkalukko"
            },
            "short_description": {
                "fi": "“Me tehdään musaa maailman parhaimmista tyypeistä eli lapsista!”",
                "sv": "”Vi gör musik om världens bästa typer, alltså barn!”",
                "en": "“We make music about the best people on earth – children!”"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66668/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66751",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255415,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T08:14:35.841775Z",
                    "last_modified_time": "2025-07-14T08:14:35.841793Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764482.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255415/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T08:14:35.717101Z",
            "last_modified_time": "2025-07-14T08:14:35.983002Z",
            "date_published": null,
            "start_time": "2025-12-12T12:00:00Z",
            "end_time": "2025-12-12T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93225A4648841E7B0354B0CBC4463D26/Lucia-kulkue",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/93225A4648841E7B0354B0CBC4463D26/Lucia-kulkue",
                "en": "http://www.malmitalo.fi/en/events/event/93225A4648841E7B0354B0CBC4463D26/Lucia-kulkue"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kesto: 1 tunti<br>Vapaa pääsy!<br>Yhteistyö: Aula, kokoushuone 3</p>"
            },
            "name": {
                "fi": "Lucia-kulkue",
                "sv": "Lucia-kulkue",
                "en": "Lucia-kulkue"
            },
            "short_description": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66751/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22nbvm",
            "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: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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490199,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T07:38:04.682052Z",
                    "last_modified_time": "2025-07-14T07:38:04.682067Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a66301e-c06f-4e30-8110-62e38360f65d.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Rasvan Constantinescu",
                    "alt_text": "Piirrosmaisema Hangosta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490199/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T07:50:58.783722Z",
            "last_modified_time": "2025-07-14T07:50:58.783739Z",
            "date_published": "2025-07-14T04:58:00Z",
            "start_time": "2025-07-14T05:00:00Z",
            "end_time": "2025-08-03T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>In Japan, a ‘hanko’ is a personal seal – a symbol of individual and professional identity. In Finland, the city of Hanko possesses a unique identity all its own.</p><p><br></p><p>&nbsp;'The hanko of Hanko' brings these concepts together, capturing the vibrant spirit and soul of Hanko’s most cherished landmarks. From the bustling Pursiseura rooftop terrace to the iconic Water Tower, each impression tries to convey the essence of this coastal gem. Explore the layers of history, listen to the whispers of the sea, and feel the heart of the community. </p><p><br></p><p>Let’s wander together through the city and experience its captivating character.</p><p><br></p><p><br></p>",
                "sv": "<p>Välkommen att besöka Rasvan Constantinescus utställning \"The hanko of Hanko\" i Entressebiblioteket under tiden 14.7.-3.8.2025. Utställningen kan ses under bibliotekets öppettider.</p>",
                "en": "<p>In Japan, a ‘hanko’ is a personal seal – a symbol of individual and professional identity. In Finland, the city of Hanko possesses a unique identity all its own.</p><p><br></p><p>&nbsp;'The hanko of Hanko' brings these concepts together, capturing the vibrant spirit and soul of Hanko’s most cherished landmarks. From the bustling Pursiseura rooftop terrace to the iconic Water Tower, each impression tries to convey the essence of this coastal gem. Explore the layers of history, listen to the whispers of the sea, and feel the heart of the community.</p><p><br></p><p>Let’s wander together through the city and experience its captivating character.</p><p><br></p>"
            },
            "name": {
                "fi": "Rasvan Constantinescu: The hanko of Hanko ",
                "sv": "Rasvan Constantinescu: The hanko of Hanko",
                "en": "Rasvan Constantinescu: The hanko of Hanko"
            },
            "short_description": {
                "fi": "Rasvan Constantinescun taidenäyttely \"The hanko of Hanko\" Entressen kirjaston Valatori-seinällä 14.7.-3.8.2025.",
                "sv": "Rasvan Constantinescus utställning \"The hanko of Hanko\" i Entressebiblioteket under tiden 14.7.-3.8.2025.",
                "en": "Art exhibition \"The hanko of Hanko\" by Rasvan Constantinescu  in Entresse Library during 14.7.-3.8.2025."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nbvm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66098",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T07:14:26.183131Z",
                    "last_modified_time": "2025-07-14T07:14:26.183147Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T07:14:26.071859Z",
            "last_modified_time": "2025-07-14T07:14:26.333367Z",
            "date_published": null,
            "start_time": "2025-12-06T13:00:00Z",
            "end_time": "2025-12-06T14: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla",
                "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ohjelmassa on salitapahtumaa ja kahvitarjoilu sekä kaunis Maamme-laulun esitys.</p><p>Lisätietoa ohjelmasta tulossa loppuvuodesta 2025.</p><p>Kesto: 1 tunti<br>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Itsenäisyyspäivän juhla",
                "sv": "Itsenäisyyspäivän juhla",
                "en": "Itsenäisyyspäivän juhla"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66580",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986339,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:02.402423Z",
                    "last_modified_time": "2025-06-10T13:14:02.402439Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767630.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:02.303430Z",
            "last_modified_time": "2025-07-11T13:14:56.738895Z",
            "date_published": null,
            "start_time": "2025-08-28T14: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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/558EC20E0E9A771152F53DC2F556634A/Pelko",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/558EC20E0E9A771152F53DC2F556634A/Pelko",
                "en": "http://www.espanlava.fi/en/events/event/558EC20E0E9A771152F53DC2F556634A/Pelko"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Suomi-indien aallokossa jo vuosikymmenen uiskennellut Pelko on tunnettu intensiivisistä klubikeikoistaan.</p><p>Nyt show nähdään Itämeripäivän kunniaksi Espan lavalla Suomenlahden välittömässä läheisyydessä!</p><p>Yhtyeen uusin albumi Punainen kirja (2025) tutkii ja ihmettelee ihmisenä olemista sukupuuttojen ja metsäpalojen keskellä.</p><p>Pelko julkaisi uuden musiikin ohessa myös ensimmäisen kirjansa. Kirja syntyi luonnosten pohjalta, jotka kappaleiden kirjoittaja Niilo Tenkanen kuvitti Suomesta kadonneista eläinlajeista levyntekoprosessin aikana.</p><p>Uudistuneen kokoonpanon myötä sovituksiin on tuotu elektronisia äänivyöryjä ja sinfonisia maisemia jo edellisellä Sukupuuttoaalto-levyllä (2019) kuultujen kitaravallien ja tarttuvien melodioiden lisäksi.</p><p>Tervetuloa Esplanadille kokemaan katarttisen kiihkeä Pelko! Ja tervetuloa takaisin Itämereen, atlantinsampi!</p><p>Pelko:<br>Saara Kemppainen – laulu, basso<br>Niilo Tenkanen – kitara, laulu<br>Kristian Autio – kitara, koskettimet<br>Niilo Suihko – rummut</p>",
                "sv": "<p>Pelko, som redan i ett decennium flutit omkring i Finlands indievågor, är känd för sina intensiva klubbspelningar.</p><p>Nu ser vi showen till Östersjödagens ära på Esplanadestraden direkt invid Finska viken.</p><p>Gruppens senaste album Punainen kirja (2025) utforskar och funderar på hur det är att vara människa bland utrotningshotade arter och skogsbränder.</p><p>Pelko gav vid sidan av den nya musiken också ut sin första bok. Boken kom till utifrån skisser som låtskrivaren Niilo Tenkanen under skivskapandeprocessen tecknade av de djurarter som försvunnit från Finland.</p><p>I och med den förnyade sammansättningen har bandet tillfört elektroniska jordskred och symfoniska landskap i arrangemanget, utöver de gitarrvallar och medryckande melodier som hördes redan på den tidigare skivan Sukupuuttoaalto (2019).<br> <br>Välkommen till Esplanaden för att uppleva den katartiskt intensiva Pelko! Och välkommen tillbaka till Östersjön, atlantstören!</p><p>Pelko:<br>Saara Kemppainen – sång, basgitarr<br>Niilo Tenkanen – gitarr, sång<br>Kristian Autio – gitarr, keyboard<br>Niilo Suihko – trummor</p>",
                "en": "<p>Pelko have been navigating the depths of Finnish indie music for a decade and are known for their intensive club gigs.</p><p>Now, to celebrate Baltic Sea Day, the show will be performed on Espa Stage, right next to the Baltic Sea!</p><p>The most recent album of the band, Punainen kirja (2025), studies and explores the state of being human in the middle of extinctions and forest fires.</p><p>In addition to new music, Pelko also published their first book. The book was born from sketches of animal species that have disappeared from Finland that the band’s songwriter, Niilo Tenkanen, made during the album’s creation process.</p><p>With the changed composition of the band, the song arrangements have integrated electronic sounds and symphonic soundscapes in addition to the guitar walls and catchy melodies familiar from the band’s previous album, Sukupuuttoaalto (2019).</p><p>Welcome to Esplanadi to experience the cathartic, intensive Pelko! And welcome back to the Baltic Sea, Atlantic sturgeon!</p><p>Pelko:<br>Saara Kemppainen – vocals, bass<br>Niilo Tenkanen – guitar, vocals<br>Kristian Autio – guitar, keyboard<br>Niilo Suihko – drums</p>"
            },
            "name": {
                "fi": "Pelko – Open Stage / Itämeripäivä",
                "sv": "Pelko – Open Stage / Östersjödagen",
                "en": "Pelko – Open Stage / Baltic Sea Day"
            },
            "short_description": {
                "fi": "Suomi-indien aallokossa jo vuosikymmenen uiskennellut Pelko on tunnettu intensiivisistä klubikeikoistaan.",
                "sv": "Pelko, som redan i ett decennium flutit omkring i Finlands indievågor, är känd för sina intensiva klubbspelningar.",
                "en": "Pelko have been navigating the depths of Finnish indie music for a decade and are known for their intensive club gigs."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66580/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ncku",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490200,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-07-10T12:06:20.531010Z",
                    "last_modified_time": "2025-07-10T12:27:51.352133Z",
                    "name": "Postikortti Ilomantsin Museosäätiön kokoelmista.",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0fd787df-8528-4cc1-b9fc-dfa7bff9b81d.jpg",
                    "cropping": "149,0,651,502",
                    "photographer_name": "Ilomantsin Museosäätiö",
                    "alt_text": "Ruusujen matkassa: vanhaa kuvakulttuuria",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T12:23:29.943756Z",
            "last_modified_time": "2025-07-11T12:54:15.333772Z",
            "date_published": "2025-07-10T12:02:00Z",
            "start_time": "2025-07-28T07:00:00Z",
            "end_time": "2025-08-15T17: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ruusuteemaisen vanhan kuvakulttuurin näyttelyn on koonnut tietokirjailija ja postikortti- ja valokuvahistorian tutkija <a href=\"https://fi.wikipedia.org/wiki/Orvo_Bogdanoff\"><strong>Orvo Bogdanoff</strong></a> / Kuvakulttuuriyhteisö Säde.</p>",
                "sv": "<p>Utställningen av gammal visuell kultur med rosentema har sammanställts av fackboksförfattare och forskare om postkortets och fotografiets historia <strong>Orvo Bogdanoff</strong>&nbsp;/ Kuvakulttuuriyhteisö Säde.</p>",
                "en": "<p>The rose-themed exhibition of old visual culture has been put together by author and researcher on the history of postcards and photography <strong>Orvo Bogdanoff</strong> / Kuvakulttuuriyhteisö Säde.</p>"
            },
            "name": {
                "fi": "Ruusujen matkassa -näyttely",
                "sv": "Ruusujen matkassa (I rosornas sällskap / utställning)",
                "en": "Ruusujen matkassa (In the company of roses / exhibition)"
            },
            "short_description": {
                "fi": "Kuvanäyttely: vanhaa kuvakulttuuria",
                "sv": "Utställning av gammal visuell kultur",
                "en": "Exhibition of old visual culture"
            },
            "location_extra_info": {
                "fi": "Vitriinigalleria (2. krs)",
                "sv": "Glasmontern (2:a våningen)",
                "en": "Showcase Gallery (2nd floor)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ncku/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ncwq",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490201,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-07-11T11:23:07.845057Z",
                    "last_modified_time": "2025-07-11T11:23:07.845072Z",
                    "name": "Ritva Kokkola-Lemarchand: Lapsuuden kesä (akvarelli)",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ea7fa1d4-406f-4204-b515-522755aed98e.jpg",
                    "cropping": "134,0,666,533",
                    "photographer_name": "Ritva Kokkola-Lemarchand",
                    "alt_text": "Ritva Kokkola-Lemarchand: Lapsuuden kesä (akvarelli)",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-11T12:32:19.139121Z",
            "last_modified_time": "2025-07-11T12:32:19.139138Z",
            "date_published": "2025-07-11T11:15:00Z",
            "start_time": "2025-08-17T07:00:00Z",
            "end_time": "2025-09-05T17: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,
            "info_url": {
                "fi": "https://www.helsingintaiteilijaseura.fi/taideopetus/kuvataidekoulu",
                "en": "https://www.helsingintaiteilijaseura.fi/en/art-school-and-course-centre"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Aikuisten taiteen perusopetus (TPO): <strong>Helsingin taiteilijaseuran kuvataidekoulun vuosikurssi 2022-2026</strong>: </p><p>Yhteisnäyttelymme <em>Silloin kun olin pieni</em> teokset on tehty taiteilija <strong>Eija Keskisen</strong> ohjauksessa. Aiheena oli lapsuuden muistot. Kaikki näytteille asettelijat ovat Helsingin taiteilijaseuran Aikuisten taiteen perusopetuksen oppilaita.</p><p>Erityisen mielenkiintoista teoksissa ovat lapsuuden muistot eri-ikäisiltä taiteilijoilta. Teoksissa on nostalgista kuva-aineistoa: näkymiä kodista ja leikkipaikoista, leluista ja kavereista. </p><p>Kiiltokuvia kerättiin vielä ainakin 1970-80 -lukujen taitteissa, ja niiden upeat, neitseelliset kokoarkit olivat suurta silmäkarkkia. Myös keräilykuvat ja kortit, muistokirjat ja lelut kertovat menneistä aikakausista.</p><p>Teema-aiheesta syntyi upeita, koskettavia teoksia, joita haluamme mielellämme esitellä myös muille. Tauluihin liittyviä muistoja avaavat myös teoskohtaiset lyhyet tekstit, jotka tulevat osaksi näyttelyä. </p><p>Tervetuloa katsomaan näyttelyä kirjaston aukioloaikoina!</p>",
                "sv": "<p>Kollektivutställningen ”När jag var liten” för Helsingfors Konstnärsgilles skola för bildkonst (årskurs 2022-2026) handlar om barndomsminnen. Verken var gjorda under ledning av konstnären Eija Keskinen. Alla utställare är elever vid Helsingfors Konstnärsförenings grundläggande konstundervisning för vuxna. </p><p>Välkommen att besöka utställning under bibliotekets öpettider!</p>",
                "en": "<p>The collective exhibition of the Helsinki Artists' Association's School of Arts (class 2022-2026) \"When I was little\" is about childhood memories. The works were made under the guidance of artist Eija Keskinen. All exhibitors are students of the Helsinki Artists' Association's Basic Art Education for Adults. </p><p>Welcome to visit the exhibition during library opening hours!</p><p><br></p>"
            },
            "name": {
                "fi": "Silloin kun olin pieni / Helsingin taiteilijaseuran kuvataidekoulu vuosikurssi 2022-2026",
                "sv": "När jag var liten / Helsingfors Konstnärsförening Konstskola: årskurs 2022-2026",
                "en": "When I was a little kid / The Helsinki Artists’ Association Art School: class 2022-2026"
            },
            "short_description": {
                "fi": "Helsingin taiteilijaseuran kuvataidekoulun oppilaiden yhteisnäyttelyn aiheena ovat lapsuuden muistot. Teokset on tehty taiteilija Eija Keskisen ohjauksessa. ",
                "sv": "En gemensam utställning av eleverna vid Helsingfors Konstnärsförenings konstskola (årskurs 2022-2026).",
                "en": "A joint exhibition by the students of Helsinki Artists' Association's School of Arts (class 2022-2026)."
            },
            "location_extra_info": {
                "fi": "Vitriinigalleria (2. krs)",
                "sv": "Glassmontern & dess vägggalleri (2:a våningen)",
                "en": "Showcase gallery (2nd floor)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ncwq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ndma",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490202,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-07-09T11:40:46.778407Z",
                    "last_modified_time": "2025-07-09T11:40:46.778437Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/491b4005-55b8-4ac0-8975-603578d6adad.jpeg",
                    "cropping": "148,0,652,503",
                    "photographer_name": "",
                    "alt_text": "Santi: Valon muotoja ja värejä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490202/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T11:53:39.189032Z",
            "last_modified_time": "2025-07-11T07:24:05.386530Z",
            "date_published": "2025-07-09T11:37:00Z",
            "start_time": "2025-07-13T07:00:00Z",
            "end_time": "2025-08-01T17: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,
            "info_url": {
                "fi": "http://www.sateenkaarentiella.com/"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Alkuun oli sykähdyttävä hetki.&nbsp;</p><p>Hetki tuli maalaukseen.&nbsp;</p><p>Maalaus synnytti runoja.&nbsp;</p><p>Ja runot - ne synnyttivät uusia maalauksia.</p><p><em>Valon muotoja - veden värejä</em> on kuvausta elämän syklisyydestä ja värikkyydestä - muistutus sateen ja auringon yhdessä luomista ihmeistä!</p><p>Maalausprosessin kantava voima oli vesi.&nbsp;Se toimi työskentelyvälineenä ja inspiroivana elementtinä, elämän ikuisena liikuttajana.</p><p>Värikkäät öljy- ja vesiväriteokset kutsuvat kuuntelemaan kesän syvyyttä itsessämme.</p><p>Tervetuloa!</p><p>Tutustu taiteilijaan osoitteessa: <a href=\"http://www.sateenkaarentiella.com/\">www.sateenkaarentiella.com</a></p>",
                "sv": "<p>Välkommen att besöka utställningen!</p><p>Utställningen kan ses under bibliotekets öpettider.</p><p><br></p><p>För mer information om konstnären: <a href=\"http://www.sateenkaarentiella.com/\">www.sateenkaarentiella.com</a></p>",
                "en": "<p>Welcome to visit the exhibition!</p><p>The exhibition can be seen during library opening hours.</p><p><br></p><p>For more information about the artist: <a href=\"http://www.sateenkaarentiella.com/\">www.sateenkaarentiella.com</a></p>"
            },
            "name": {
                "fi": "Santi: Valon muotoja - veden värejä ",
                "sv": "Santi: Ljusets former - vatnets färger ",
                "en": "Santi: Shapes of Light - Colours of Water "
            },
            "short_description": {
                "fi": "Taidenäyttely",
                "sv": "Konstutställning",
                "en": "Art exhibition"
            },
            "location_extra_info": {
                "fi": "Galleria Anna",
                "sv": "Galleri Anna",
                "en": "Gallery Anna"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ndma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66414",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1232725,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-11T07:14:27.360443Z",
                    "last_modified_time": "2025-07-11T07:14:27.360460Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774127.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1232725/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-11T07:14:27.215736Z",
            "last_modified_time": "2025-07-11T07:14:27.529278Z",
            "date_published": null,
            "start_time": "2025-11-27T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_",
                "en": "http://www.malmitalo.fi/en/events/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen.</p><p>Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan. Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Ikäraja: 12<br>Kesto: 2 t 3 min<br>Kieli: englanti, tekstitys suomi</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Yleisön suosikit: Maria (12)",
                "sv": "Yleisön suosikit: Maria (12)",
                "en": "Yleisön suosikit: Maria (12)"
            },
            "short_description": {
                "fi": "Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22nh6m",
            "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/helmet:11727/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ndxy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nele/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ne6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nfrq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ngfe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ngym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nhky/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490203,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:14:48.942636Z",
                    "last_modified_time": "2025-07-01T08:14:48.942677Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2a077383-14b4-41d7-9689-5a9363156a46.png",
                    "cropping": "174,0,551,378",
                    "photographer_name": "",
                    "alt_text": "Kuvituskuva kirjasta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490203/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:37:02.440938Z",
            "last_modified_time": "2025-07-11T04:55:28.963159Z",
            "date_published": null,
            "start_time": "2025-09-10T14:00:00Z",
            "end_time": "2025-12-03T16: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman.</p><ul><li>Runojen lukemista ja runojen kuuntelemista.</li><li>Tutustutaan piiriläisten omiin lempirunoihin</li><li>Herätteleviä kysymyksiä ja keskustelua</li><li>Oman runon kirjoittamista</li><li>Kannustava piiri, jossa saa palautetta, jos haluaa lukea oman runonsa. Ei kritisointia.</li><li>Runoraati runokokoelmien runoista</li><li>Runouden äärellä teemoina muun muassa rakkaus, elämä, kuolema, luonto, ja ihmisen sisäinen maailma.</li></ul><p>Keskiviikkoisin 10.9., 24.9., 8.10., 22.10., 5.11., 19.11., 3.12.</p><p>Kello 17.00-18.30, Akseli-sali, Sellon kirjasto.</p><p>Piiriä ohjaa kirjailija Ritva Laine Espoon Kirjailijoista.</p><p>Ei ennakkoilmoittautumista.</p><p>Tapahtuma on suomeksi.</p>",
                "sv": "<p>I Poesiklubben kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.&nbsp;</p><ul><li>Läsa dikter och lyssna på dikter.</li><li>Upptäcka dina favoritdikter</li><li>Stimulerande frågor och diskussioner.</li><li>Skriva din egen dikt.</li><li>En uppmuntrande cirkel där du kan få feedback om du vill läsa upp din egen dikt. Ingen kritik.</li><li>En poesipanel med dikter ur diktsamlingarna.</li><li>Poesi på teman som kärlek, livet, döden, naturen och människans inre värld.</li></ul><p>Onsdagar: 10 september, 24 september, 8 oktober, 22 oktober, 5 november, 19 november, 3 december.&nbsp;</p><p>Kl 17.00-18.30, Akseli-salen, Sello bibliotek.</p><p>Cirkeln leds av författaren Ritva Laine från Espoo Kirjailijat.</p><p>Ingen förhandsanmälan krävs.</p><p>Evenemanget är på finska.</p>",
                "en": "<p>At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry.</p><ul><li>Reading poetry and listening to poetry.</li><li>Discovering your favourite poems.</li><li>Stimulating questions and discussion.</li><li>Writing your own poem.</li><li>An encouraging circle where you can get feedback if you want to read your own poem. No criticism.</li><li>A poetry panel of poems from the poetry collections.</li><li>Poetry on themes including love, life, death, nature, and the inner world of human mind.</li></ul><p>Wednesdays:10 September, 24 September, 8 October, 22 October, 5 November, 19 November, 3 December.&nbsp;</p><p>Time 17.00-18.30, Akseli Hall, Sello Library.&nbsp;</p><p>The circle will be led by writer Ritva Laine from Espoon Kirjailijat.&nbsp;</p><p>No pre-registration required.</p><p>The event is in Finnish.</p>"
            },
            "name": {
                "fi": "Runouden äärellä",
                "sv": "Poesiklubben",
                "en": "Poetry Club"
            },
            "short_description": {
                "fi": "Runouden äärellä voit kokea monipuolisen ja piiriläisiä omaankin kirjoittamiseen kannustavan ohjelman. ",
                "sv": "På Poetry Club kan du ta del av ett varierat program som uppmuntrar medlemmarna att skriva egna dikter.",
                "en": "At the Poetry Club, you can experience a varied programme that encourages members to write their own poetry."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nh6m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66410",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "sv": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "en": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.296490Z",
                    "last_modified_time": "2025-07-10T14:13:03.296502Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774102.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-10T14:13:03.245419Z",
            "last_modified_time": "2025-07-10T14:13:03.540990Z",
            "date_published": null,
            "start_time": "2025-11-22T08: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "en": "http://www.malmitalo.fi/en/events/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!</p><p>Hennan ja Supersankareiden musiikki innostaa kaikenikäiset kuulijat lauluun, tanssiin, leikkiin ja nauruun! Konserteissa on voimassa voimakas Hyväntuulen varoitus!</p><p>Riemukkaassa Malmitalon lastenkonsertissa matkustetaan Ystävyyden saarelle, jossa juhlitaan ystävyyttä sekä ihanaa luontoa.</p><p>Yhtyeen kappaleita pääsee joraamaan mm. Spotifystä sekä Henna ja Supersankareiden Youtube-kanavalta, joka on kerännyt lyhyessä ajassa yli 100 000 katselukertaa!  <br>Henna ja Supersankareiden lauluja on voinut kuulla Pikku Kakkosen televisioiduissa lastenkonserteissa sekä Yle Areenasta löytyvistä musiikkipodcasteista!</p><p>Yhtye on ollut ehdolla Lastenmusiikin Jellonagaalassa useissa kategorioissa: Vuoden Tulokas, Vuoden Yhtye, Vuoden Lastenmusiikkialbumi, Vuoden Lastenlaulu ja Vuoden Lastenmusiikintekijä!</p><p><b>Malmitalolla lavalle nousevat:</b><br>Henna-Maija Kuki, laulu ja harmonikka <br>Susanna Lukkarinen, taustalaulu ja piano  <br>Alina Kivivuori, taustalaulu ja viulu <br>Teemu Keränen, basso <br>Teemu Eronen, rummut</p><p>Kesto: n. 35 min</p>"
            },
            "name": {
                "fi": "Henna ja Supersankarit",
                "sv": "Henna ja Supersankarit",
                "en": "Henna ja Supersankarit"
            },
            "short_description": {
                "fi": "Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66073",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "29,90 € / 24,80 €",
                        "sv": "29,90 € / 24,80 €",
                        "en": "29,90 € / 24,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "sv": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "en": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.082209Z",
                    "last_modified_time": "2025-07-10T14:13:03.082221Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T14:13:03.009351Z",
            "last_modified_time": "2025-07-10T14:13:03.167545Z",
            "date_published": null,
            "start_time": "2025-11-21T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "en": "http://www.malmitalo.fi/en/events/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.</p><p>Tarina saa jatkoa viiden vuoden takaisesta Kipinöitä-konseptista, jossa taiteilijat esittivät yhdessä toistensa kappaleita duettomuodossa.</p><p>Tulevilla keikoilla kuullaan taiteilijoiden omaa tuotantoa – uutta ja vanhaa – yksin ja yhdessä: illan aikana on luvassa niin uudet soolokattaukset kuin myöskin duettomuotoinen yhteissetti, jossa lauluntekijät esittävät vanhojen suosikkien lisäksi ennen kuulemattomia lauluja tulevilta albumeiltaan.</p><p>”Ylva Haru on paitsi lempilauluntekijäni myös rakas ystäväni. Muutama vuosi sitten aloitimme yhteiskiertueen, jonka pandemia harmillisesti katkaisi. Tuolloin löysimme nopeasti yhteisen sävelen, ja on ihanaa viimein jatkaa siitä mihin jäimme”, kertoo Topi Saha.</p><p>”On suuri ilo saada jälleen soida rakkaan ja lahjakkaan ystäväni kanssa! Topi on kuin sielunveli, niin ihmisenä kuin myös soitannollisesti ja laulullisesti. Tuntuu antoisalta ja luontevalta jatkaa kappaleiden versioimista yhdessä”, kommentoi Ylva Haru.</p><p>Topi Sahan musiikkia on kuvailtu haikeaksi, kaihoisaksi ja surumieliseksi. Omasta mielestään hän on väärinymmärretty humoristi. Sahan odotettu viides sooloalbumi <i>Öitä</i> ilmestyi tammikuussa 2025.</p><p>Vahvoista melodioista ja pohtivista, runomaisista teksteistä kiitelty Ylva Haru työstää parhaillaan uutta albumia. Intiimeillä keikoilla on mahdollisuus päästä syvemmälle herkän ytimen ääreen, kun laulut soivat kaikkein riisutuimmassa muodossa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>"
            },
            "name": {
                "fi": "Topi Saha & Ylva Haru: Kipinöitä II",
                "sv": "Topi Saha & Ylva Haru: Kipinöitä II",
                "en": "Topi Saha & Ylva Haru: Kipinöitä II"
            },
            "short_description": {
                "fi": "Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66123",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 €/ 20,30 €",
                        "sv": "24,80 €/ 20,30 €",
                        "en": "24,80 €/ 20,30 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/dr-helander-third-ward-wjantso-jokelin-malmitalo-20206198/",
                        "sv": "https://www.lippu.fi/event/dr-helander-third-ward-wjantso-jokelin-malmitalo-20206198/",
                        "en": "https://www.lippu.fi/event/dr-helander-third-ward-wjantso-jokelin-malmitalo-20206198/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1226611,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T12:14:24.291735Z",
                    "last_modified_time": "2025-07-10T12:14:24.291755Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772215.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1226611/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T12:14:24.163352Z",
            "last_modified_time": "2025-07-10T14:13:02.776012Z",
            "date_published": null,
            "start_time": "2025-11-18T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6AFFA12C6B8FCACBA00BA50B7F3D71D7/Dr_Helander_Third_Ward_feat_Jantso_Jokelin",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6AFFA12C6B8FCACBA00BA50B7F3D71D7/Dr_Helander_Third_Ward_feat_Jantso_Jokelin",
                "en": "http://www.malmitalo.fi/en/events/event/6AFFA12C6B8FCACBA00BA50B7F3D71D7/Dr_Helander_Third_Ward_feat_Jantso_Jokelin"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Malmitalon konsertin aiheena yhtyeen käsillä oleva neljäs kiekko, joka luonnollisesti siivittää kohti rytmikästä iltaa!</p><p>Vuodesta 2017 saakka samalla kokoonpanolla Helander-Kuloniemi-Leppänen toiminut Dr. Helander & Third Ward on julkaissut albumeita tasaiseen tahtiin. Bluesistahan tässä on edelleen kyse – musiikista, jonka ei tarvitse valtavasti uudistua, mutta joka kestää uuden ja vanhan, oman ja lainatun, ja muhiessaan vain paranee näiden veteraanimuusikoiden käsittelyssä. Mukana albumeilla on vuosien varrella ollut useita nimekkäitä vierailijoita, suurimpana heistä Grammy-voittaja ja bluesin legendanimiin luettava huuliharpun mestari Charlie Musselwhite.</p><p>Tällä kertaa yhtye on tehnyt yhteistyötä nuoremman polven monipuolisen ja mestarillisen muusikon, tuoreen European Blues Challengen erikoispalkinnon voittaja Jantso Jokelinin kanssa, joka esiintyy konsertin aluksi omalla soolosetillään ja vierailee lisäksi Third Wardin osuudessa. Jokelinin sooloalbumi Spark of Luck on ollut kansainvälinen arvostelumenestys.</p><p>Dr. Helander kitara, laulu<br>Esa Kuloniemi basso, kitara, laulu<br>Leevi Leppänen rummut, laulu<br>Jantso Jokelin kitara, laulu, huuliharppu</p><p>Kesto: 1 t 45 min, sis. 30 min väliajan</p>"
            },
            "name": {
                "fi": "Dr. Helander & Third Ward feat. Jantso Jokelin",
                "sv": "Dr. Helander & Third Ward feat. Jantso Jokelin",
                "en": "Dr. Helander & Third Ward feat. Jantso Jokelin"
            },
            "short_description": {
                "fi": "Malmitalon konsertin aiheena yhtyeen käsillä oleva neljäs kiekko, joka luonnollisesti siivittää kohti rytmikästä iltaa!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66743",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1226287,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T11:14:13.610297Z",
                    "last_modified_time": "2025-07-10T11:14:13.610314Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774572.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1226287/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-10T11:14:13.508721Z",
            "last_modified_time": "2025-07-10T11:14:13.769447Z",
            "date_published": null,
            "start_time": "2025-09-02T07: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/49AA5FA36038FD6FE23FB0366EF3DD91/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/49AA5FA36038FD6FE23FB0366EF3DD91/Skogssagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/49AA5FA36038FD6FE23FB0366EF3DD91/Jussi_Ollila_s_forest_fairy_tales"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille    <br>Kesto: n. 45 min<br>Kieli: suomi    <br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot",
                "sv": "Skogssagostunder med Jussi Ollila",
                "en": "Jussi Ollila's forest fairy tales"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}