Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 29163,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=9",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=7"
    },
    "data": [
        {
            "id": "kulke:69273",
            "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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384994,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T07:13:28.167123Z",
                    "last_modified_time": "2026-06-09T07:13:28.167139Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791488.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384994/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-09T07:13:28.037526Z",
            "last_modified_time": "2026-06-09T07:13:28.333808Z",
            "date_published": null,
            "start_time": "2026-09-10T15:00:00Z",
            "end_time": "2026-09-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ekotorstai",
                "sv": "Ekotorstai",
                "en": "Ekotorstai"
            },
            "description": {
                "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CAFA8C010468F55E5E9EB8E2E024287A/Ekotorstai",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CAFA8C010468F55E5E9EB8E2E024287A/Ekotorstai",
                "en": "http://www.malmitalo.fi/en/events/event/CAFA8C010468F55E5E9EB8E2E024287A/Ekotorstai"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69273/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69268",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384988,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T13:13:49.275393Z",
                    "last_modified_time": "2026-06-08T13:13:49.275408Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793679.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384988/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T13:13:49.173328Z",
            "last_modified_time": "2026-06-08T13:13:49.416016Z",
            "date_published": null,
            "start_time": "2026-08-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teatteri Qo: Niitty – Stoan Elojuhla | Taiteiden yö",
                "sv": "Teatteri Qo: Niitty",
                "en": "Teatteri Qo: Niitty"
            },
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p>Taiteiden yönä, torstaina 20.8. Stoassa vietetään Elojuhlaa. Elojuhlan klo 17.00 ja 18.00 Niitty-esityksiin jaetaan vapaalippuja klo 16 alkaen Stoan aulassa – nouda omasi ajoissa!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69268/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69267",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384987,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T13:13:48.832940Z",
                    "last_modified_time": "2026-06-08T13:13:48.832954Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793678.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384987/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T13:13:48.711098Z",
            "last_modified_time": "2026-06-08T13:13:49.056704Z",
            "date_published": null,
            "start_time": "2026-08-20T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teatteri Qo: Niitty – Stoan Elojuhla | Taiteiden yö",
                "sv": "Teatteri Qo: Niitty",
                "en": "Teatteri Qo: Niitty"
            },
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p>Taiteiden yönä, torstaina 20.8. Stoassa vietetään Elojuhlaa. Elojuhlan klo 17.00 ja 18.00 Niitty-esityksiin jaetaan vapaalippuja klo 16 alkaen Stoan aulassa – nouda omasi ajoissa!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69267/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpkordzja",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:11/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:21/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2026-06-08T12:45:43.164671Z",
            "last_modified_time": "2026-06-08T12:47:54.950263Z",
            "date_published": null,
            "start_time": "2026-06-11T09:00:00Z",
            "end_time": "2026-06-11T12: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": "2026-06-08T15:50:00+03:00",
            "enrolment_end_time": "2026-06-10T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Testi",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testi</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Testi",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpkordzja/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69264",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384986,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T12:13:48.883324Z",
                    "last_modified_time": "2026-06-08T12:13:48.883339Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793675.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384986/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T12:13:48.764016Z",
            "last_modified_time": "2026-06-08T12:13:49.253393Z",
            "date_published": null,
            "start_time": "2026-08-19T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille",
                "sv": "Teatteri Qo: Niitty",
                "en": "Teatteri Qo: Niitty"
            },
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69264/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69263",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p2625/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384985,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T12:13:48.377102Z",
                    "last_modified_time": "2026-06-08T12:13:48.377119Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793674.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384985/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T12:13:48.237179Z",
            "last_modified_time": "2026-06-08T12:13:48.637757Z",
            "date_published": null,
            "start_time": "2026-08-19T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille",
                "sv": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille",
                "en": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille"
            },
            "description": {
                "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty",
                "en": "http://www.stoa.fi/en/events/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69263/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69115",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384778,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-28T11:13:22.671912Z",
                    "last_modified_time": "2026-05-28T11:13:22.671928Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793322.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-05-28T11:13:22.559565Z",
            "last_modified_time": "2026-06-08T12:13:41.276214Z",
            "date_published": null,
            "start_time": "2026-06-12T16:00:00Z",
            "end_time": "2026-06-12T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Downtown Open Mic – Helsinki-päivä Annantalossa",
                "sv": "Downtown Open Mic",
                "en": "Downtown Open Mic"
            },
            "description": {
                "fi": "<p>Nuorten Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. Ilmoittaudu esiintyjäksi nyt!</p><p>Tervetuloa esiintymään ja nauttimaan lämpimästä tunnelmasta juontajan Pyry Aallon kanssa. Lavalta löytyy mikit, kosketinsoittimet ja kytkentä kitaralle. Meillä on myös paikan päällä DJ, joka voi soittaa taustanauhoja. Voit hakea esiintyjäksi ennakkoon. Esiintyjien ilmoittautumiset aukeavat toukokuun lopulla.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Ilmoittaudu mukaan tästä!</a></u></p><p>Nähdään Annantalolla!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nuorten Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. Ilmoittaudu esiintyjäksi nyt!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1A49AEACE09016CF946CF98F761FD2CF/Downtown_Open_Mic",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1A49AEACE09016CF946CF98F761FD2CF/Downtown_Open_Mic",
                "en": "http://www.annantalo.fi/en/events/event/1A49AEACE09016CF946CF98F761FD2CF/Downtown_Open_Mic"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69137",
            "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:223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-798/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384905,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-02T10:13:40.167611Z",
                    "last_modified_time": "2026-06-02T10:13:40.167629Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786168.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384905/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-02T10:13:40.043064Z",
            "last_modified_time": "2026-06-08T10:13:20.452945Z",
            "date_published": null,
            "start_time": "2026-08-17",
            "end_time": "2026-09-21",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kohti tuntematonta -työpaja – Kuva- ja sanataidepajat koululaisille",
                "sv": "Kohti tuntematonta -työpaja",
                "en": "Kohti tuntematonta -työpaja"
            },
            "description": {
                "fi": "<p>Kohti tuntematonta -näyttely ja työpaja kutsuu koululaiset hyppäämään seikkailuihin mielikuvituksellisissa maailmoissa.</p><p>Työpajat ovat suunnattuja 3.–6.-luokkalaisille. Työpajoissa tutustutaan sana- ja kuvataiteen keinoin Pasi Pitkäsen taidokkaista kuvituksista koostettuun näyttelyyn ja sen kautta avautuviin maailmoihin. Tarkoituksena on innostaa kokemaan kirja ja lukeminen uudesta, osallistavasta ja monitaiteisesta näkökulmasta.<br> <br>Työpajassa koululuokka jaetaan puoliksi niin, että puolet osallistuvat sanataidepajaan ja puolet kuvataidepajaan ja sitten vaihdetaan osia. Näin kaikki pääsevät työskentelemään sekä sanallisesti että kuvallisesti.</p><p>Työpajan ohjauskieli on suomi, ja kokonaiskesto 1,5 tuntia.</p><p>Työpajat maanantaisin<br>17.8. 9–10:30 ja 11–12:30 <br>24.8. 9–10:30 ja 11–12:30<br>31.8. 9–10:30 ja 11–12:30<br>7.9. 9–10:30 ja 11–12:30<br>14.9. 9–10:30 ja 11–12:30<br>21.9. 9–10:30 ja 11–12:30</p><p><b>Työpajoihin ilmoittaudutaan osoitteessa <a href=\"https://kultus.hel.fi/fi/event/kultus:agpgqgvsom\"><u>kultus.hel.fi</u></a>.</b></p><p><b>Matka käärmejunassa -sanataidetuokio</b><br>Matka käärmejunassa -tuokiossa tutustutaan Silja Sillanpään ja Pasi Pitkäsen Ouroboros-kirjaan, tehdään sanataidetehtäviä ja ratkaistaan arvoituksia.</p><p>Tuokiossa pohditaan muun muassa, minkälaisia varusteita oppilaat ottaisivat mukaan seikkailuun, etsitään omat käärmeystävät ja kirjoitetaan pieni matkakertomus. Pakopelihenkinen toiminnallisuus rytmittää tuokion kulkua ja innostaa oppilaita osallistumaan.</p><p><b>Sateenkaarikäärme-kuvataidetuokio</b><br>Sateenkaarikäärme -taidetuokiossa tutkitaan Pasi Pitkäsen kuvitustaiteen käärmehahmoja, kokeillaan piirtää erilaisia suomuja ja toteutetaan yhdessä pala palalta suuri sateenkaarikäärme.</p><p>Tuokiossa keskeisenä inspiraationa toimivat Pasi Pitkäsen kuvitukset, ja havainnon avulla harjoitellaan piirtämään käärmeiden kiehtovia suomupeitteitä. Oppilaiden pastelliliiduilla toteutetut piirrokset rakentuvat viikkojen aikana Sateenkaari-käärmeen muotoon, joka on yhteistaideteoksena esillä osana näyttelyä Vuotalon-aulassa.</p><p>KUVA: Pasi Pitkänen</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kohti tuntematonta -näyttely ja työpaja kutsuu koululaiset hyppäämään seikkailuihin mielikuvituksellisissa maailmoissa."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja",
                "en": "http://www.vuotalo.fi/en/events/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69137/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68683",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1906888,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T08:13:28.991575Z",
                    "last_modified_time": "2026-05-05T08:13:28.991590Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789854.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1906888/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T08:13:28.828729Z",
            "last_modified_time": "2026-06-08T09:13:45.735873Z",
            "date_published": null,
            "start_time": "2026-06-12T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsinki-päivä Stoassa: Helsinki Circus Festivalin ennakkojuhla",
                "sv": "Helsingforsdagen på Stoa",
                "en": "Helsinki Day at Stoa"
            },
            "description": {
                "fi": "<p>Stoan aukio täyttyy Helsinki-päivänä sirkustaiteen taiasta, kun Pro sirkus ry esittää Helsinki Circus Festivalin ennakkojuhlan klo 17-19.</p><p>Tervetuloa mukaan ainutlaatuiseen sirkustapahtumaan, jossa lavalle nousee toinen toistaan huikeampia esityksiä. Monipuolinen ohjelma yhdistää perinteisen sirkuksen lumon moderniin esitystaiteeseen – luvassa on iloa ja elämyksiä kaikenikäisille!</p><p><b>Esiintyjät / esitykset mm.:</b></p><p><b>Blind Gut Company / Viihdy! Viihdy! Viihdy!</b><br><b>Nuua Company / Olli Vuorinen </b><br><b>Race Horse Company / Kalle Lehto</b><br><b>Fragile kollektiivi / Haidi Ilona </b><br><b>Leo Kaipiainen</b></p><p>Esitysten lisäksi Stoan aukio täyttyy iloisesta festivaalitunnelmasta: luvassa on saippuakuplia, popcornia sekä työpajoja sirkus-teemalla.</p><p><b>Enemmän esityksistä:</b><br> <br><b>Blid Gut Companyn</b> hulvaton katusirkusesitys Viihdy! Viihdy! Viihdy!,  tuo vanhan narriperinteen tähän päivään. Markkinakojua muistuttavassa esityksessä yleisö pääsee tilaamaan itselleen erilaisia sirkuselämyksiä: tarjolla on akrobatiaa, jongleerausta, yllätyksiä ja osallistavia temppuja, joissa katsojatkin voivat päästä osaksi esitystä.</p><p>Vauhdikkaasta akrobatiasta vastaa myös <b>Kalle Lehto</b>, yksi <b>Race Horse Companyn</b> perustajajäsenistä. Hänen energisissä numeroissaan nähdään akrobatiaa muun muassa jumppapallon ja keppihevosten kanssa – luvassa on yllätyksiä, huumoria ja huikeaa fyysistä taituruutta.</p><p>Tunnelma saa myös rauhallisempia ja hypnoottisempia sävyjä, kun <b>Olli Vuorinen (Nuua Company)</b> vie yleisönsä abstraktiin jongleerausteokseen. Renkaiden toistuva liike, kehon muuntuvat muodot ja hitaasti rakentuvat kuviot luovat meditatiivisen kokemuksen, jossa nykysirkus muuttuu lähes tanssilliseksi visuaaliseksi virraksi.</p><p>Ilmassa nähtävä herkkyys ja voima puolestaan kuljettavat katsojat hetkeksi arjen ulkopuolelle, kun <b>Haidi Ilona</b> esittää sooloteoksia rengastrapetsilla ja spiraalilla. Hänen liikekielessään nykytanssi ja ilma-akrobatia sulautuvat saumattomasti yhteen runolliseksi ja vaikuttavaksi kokonaisuudeksi.</p><p>Päivän juontaa ja yleisön oppaana toimii <b>jonglööri Leo Kaipiainen</b>, jonka energinen läsnäolo, tarkasti hiottu jongleeraus ja sirkusmaailman kiehtovat tarinat sitovat päivän ohjelman lämpimäksi ja mukaansatempaavaksi kokonaisuudeksi.</p><p><b>Työpajat: </b></p><p><b>Tasapainoilijat -veistos</b><br>Osaatko seistä yhdellä jalalla tai käsillä? Miltä tuntuisi tanssia nuoralla? Miltä näyttää jonglööri tai ilma-akrobaatti? Pajassa inspiroidutaan tasapainoilusta ja luodaan muovailuvahasta pienikokoinen veistos. Ohjaaja: Chloé Mahy-Hulkko. Kielet: suomi, englanti ja ranska</p><p><b>Tikkunukketivoli</b>- sirkushahmoja kollaasitekniikalla<br>Eksoottisia eläimiä, tempovia temppuja sekä taidokasta taikaa, mikä on sinun sirkushahmosi supervoima? Tehdään nukketeatterihahmoja kollaasitekniikalla. Ihmeellisille esiintyjille on oma sirkusnäyttämö, jolla pääset näyttämään hurjimmat hypyt ja taianomaisimmat temput! Ohjaaja: Greta Isola. Sopii yli 4-vuotiaille.</p><p><b>Kokeile sirkusta!</b><br>Sirkus Magentan hauskassa sirkustyöpajassa jokainen pääsee kokeilemaan matalalla kynnyksellä eri sirkuslajeja. Tule kokeilemaan esimerkiksi jongleerausta erilaisilla välineillä, vanteen pyöritystä, tasapainolaudalla tasapainottelua ja käsinseisontaa!</p><p><b>Jättisaippuakuplat</b><br>Jättikuplien taikaa tarjoilee Kiksu-klovni! Ihaile ja ihmettele kuplien kulkua tai kokeile itse niiden tekemistä.</p><p><b>Paperitaikoja/b><br>Seikkailutaidekoulu kurvaa Stoan aukiolle Kesätaidefillarilla. Tehdään paperitaikoja, kun origamipaperit muuttuvat värikkäiksi lentäviksi perhosiksi!</p><p><b>Itäkeskuksen kirjaston</b> pisteellä voit pyöräyttää onnenpyörää ja valita palkinnoksi oman poistokirjan. Kirjastossa on myös esillä sirkusaiheinen kirjanäyttely klo 18 asti.</p><p>Stoan galleriassa vietetään <b>Luontosuhteita-näyttelyn</b> avajaisia klo 17-19. Monitaiteisen näyttelyn taiteilijat ovat KATOAVA-kollektiivi, Olli Kaukonen Lindholm, Lauri Lähteenmäki, Minttu Pyykkönen ja Emiel Riiko.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Stoaplatsen fylls av cirkusmagi på Helsingforsdagen!</p><p>Pro Cirkus rf ordnar förfest för Helsinki Circus Festival på Helsingforsdagen den 12 juni 2026 på Stoaplatsen.</p><p>Välkommen på ett unikt cirkusevenemang där du får se fantastiska framträdanden på scenen under två timmar. Det här är inte bara cirkus – det är en upplevelse som får hjärtat att bulta och ger dig ett leende på läpparna.</p><p>Det mångsidiga programmet kombinerar den traditionella cirkusens magi med modern scenkonst – här utlovas överraskningar för alla åldrar!</p><p>Evenemangen har fritt inträde.</p>",
                "en": "<p>Stoa Square will be filled with the magic of circus on Helsinki Day!</p><p>Pro sirkus ry will host the Helsinki Circus Festival pre-celebration on Helsinki Day 12 June 2026 on Stoa Square.</p><p>Join us for a unique circus event, where circus performances, each more amazing than the next, will take place on stage for two hours! This is not just a circus – this is an experience that will make your heart race and have you smiling from ear to ear.</p><p>The diverse programme combines the magic of traditional circus with modern performing arts – with surprises for all ages!</p><p>Entry to the events is free of charge.</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Stoan aukio täyttyy Helsinki-päivänä sirkustaiteen taiasta, kun Pro sirkus ry esittää Helsinki Circus Festivalin ennakkojuhlan klo 17-19.",
                "sv": "Stoaplatsen fylls av cirkusmagi på Helsingforsdagen!",
                "en": "Stoa Square will be filled with the magic of circus on Helsinki Day!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7410FE6427C79B67F43EBDE51AD2941F/Helsinki-paiva_Stoassa_Helsinki_Circus_Festivalin_ennakkojuhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7410FE6427C79B67F43EBDE51AD2941F/Helsingforsdagen_pa_Stoa",
                "en": "http://www.stoa.fi/en/events/event/7410FE6427C79B67F43EBDE51AD2941F/Helsinki_Day_at_Stoa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68683/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68713",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1994114,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-06T10:14:10.696083Z",
                    "last_modified_time": "2026-05-06T10:14:10.696174Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1994114/?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": "2026-05-06T10:14:10.328417Z",
            "last_modified_time": "2026-06-08T09:13:44.932806Z",
            "date_published": null,
            "start_time": "2026-06-12T06:30:00Z",
            "end_time": "2026-06-12T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsinki-päivä Annantalossa",
                "sv": "Helsingforsdagen på Annegården",
                "en": "Helsinki Day at Annantalo"
            },
            "description": {
                "fi": "<p>Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.</p><p>Tervetuloa viettämään koko perheen Helsinki päivää Annantaloon! Luvassa on musiikkia, teatteria, taidepajoja ja yhdessäoloa aamusta iltaan. Kaikkiin tapahtumiin on vapaa pääsy.</p><p><b>Aikataulu</b><br>klo 9.30 & 10.45 Päistikka -orkesterin konsertti (A.-lava / sateella Annansali)<br>klo 10–15 Avoin taidepaja: Elävä Helsinki (etupiha / sateella sisällä)<br>klo 12–12.30 Piknikkonsertti: Valtuutetut- duo (A.-lava)<br>klo 15.30 & 18.00 Stella Polaris: Maaginen matka<br>klo 19–21 Downtown Open Mic (A.-lava)</p><p><b>Päistikka-orkesterin konsertti<br>klo 9.30 ja klo 10.45, Annantalon A.-lava</b><br>(Sateella Annansalissa, jolloin paikka kannattaa varata ennakkoon)<br>Päistikka-orkesterin riemukkaassa konsertissa syöksytään seikkailuihin ja mielikuvituksen maailmaan. On aika tanssia robottidiskossa tai ryhtyä hirviöhippaan! Musiikin ja tarinoiden täyttämä show kutsuu myös yleisön mukaan osallistumaan.</p><p>Esiintyjät:<br>Tuukka Martiskainen, laulu, ukulele, samplet<br>Elina Vehkaoja, laulu, koskettimet<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Kesto: 30 min<br>Ikäsuositus: 1+<br>Kieli: suomi<br>Paikkavaraukset (jos sade yllättää): annantalo.fi, 12.5. klo 8 alkaen</p><p><b>Avoin taidepaja: Elävä Helsinki<br>klo 10–15 — Annantalon etupiha</b><br>(Sateella sisätiloissa)<br>Mikä se siellä vipeltää, sukkelasti sujahtaa? Työpajassa tutkitaan Annantalon lähiluontoa, kurkistetaan vaikka kiven alle. Havainnoidaan pienistä pienintä ja vähän isompaakin.<br>Eliökunnan manifestin innoittamana maalataan ihmeellisillä luonnon väreillä. Manifestiin voi tutustua Annantalon aulassa.<br>Suurennuslasi matkaan ja pensseli käteen!<br>Ohjaajat: Marjut Maristo ja Heli Niska<br>Maksuton ja avoin kaikenikäisille.</p><p><b>Piknikkonsertti: Valtuutetut -duo<br>klo 12–12.30, A.-lava</b><br>Helsingin kaupunginvaltuutetut Nora Grotenfelt ja Antti Vuorela esittävät lastenlauluja ruotsiksi ja suomeksi. Luvassa on tarinoita, nostalgiaa ja hyväntuulista yhteisöllisyyttä.<br>Omat eväät ja piknikviltit mukaan!</p><p><b>Stella Polaris: Maaginen matka<br>klo 15.30 ja klo 18.00</b><br>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset pääsevät vaikuttamaan tarinan kulkuun ja hahmoihin. Näyttelijät, muusikko ja valosuunnittelija loihtivat esityksen yleisön ehdotusten pohjalta – jokainen kerta on täysin uudenlainen.<br>Tulkaa mukaan ihmettelemään, kuinka kokonainen näytelmä syntyy silmien edessä täynnä yllätyksiä, hauskuutta ja hulvattomia käänteitä!<br>Ikäsuositus: 6+<br>Kesto: noin 45 min<br>Kieli: suomi<br>Paikkavaraukset: annantalo.fi, 12.6.2026 klo 8 alkaen</p><p><b>Downtown Open Mic<br>klo 19–21, A.-lava</b><br>Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. klo19–21! Tervetuloa esiintymään ja nauttimaan lämpimästä tunnelmasta juontajan Pyry Aallon kanssa. Lavalta löytyy mikit, kosketinsoittimet ja kytkentä kitaralle. Meillä on myös paikan päällä DJ, joka voi soittaa taustanauhoja. Voit hakea esiintyjäksi ennakkoon. Esiintyjien ilmoittautumiset aukeavat toukokuun lopulla.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Ilmoittaudu Open Mic -esiintyjäksi tästä!</a></u></p><p>Nähdään Annantalolla!</p>",
                "sv": "<p>Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.</p><p>Välkommen till Annegården för att fira Helsingforsdagen med hela familjen! Det blir musik, teater, konstverkstäder och samvaro från morgon till kväll. Alla evenemang har fritt inträde.</p><p><b>Tidtabell</b><br>kl. 9.30 & 10.45 Konsert med orkestern Päistikka (A-scenen/vid regn i Annesalen)<br>kl. 10–15 Öppen konstverkstad: Ett levande Helsingfors (gården på framsidan/vid regn inomhus)<br>kl. 12–12.30 Picknickkonsert: Duon Valtuutetut (A-scenen)<br>kl. 15.30 & 18.00 Stella Polaris: Maaginen matka<br>kl. 19–21 Downtown Open Mic (A-scenen)</p><p><b>Konsert med orkestern Päistikka<br>kl. 9.30 och kl. 10.45, Annegårdens A-scen</b><br>(Om det regnar, inne i Annesalen, så boka gärna plats i förväg)<br>I Päistikka-orkesterns glada konsert dyker vi ner i äventyrens och fantasins värld. Det är dags att dansa robotdisco eller leka monstertafatt! Den här showen, fylld av musik och berättelser, bjuder också in publiken att vara med.</p><p>På scenen:<br>Tuukka Martiskainen – sång, ukulele, samples<br>Elina Vehkaoja – sång, keyboard<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso<br>Längd: 30 minuter<br>Åldersrekommendation: 1+<br>Språk: finska<br>Platsbokningar (om det regnar): annantalo.fi, från 12.6 kl. 8</p><p><b>Öppen konstverkstad: Ett levande Helsingfors<br>kl. 10–15, Gården framför Annegården</b><br>(Inomhus vid regn)<br>Vad är det som snabbt ilar förbi? I verkstaden utforskar vi naturen i närheten av Annegården, till exempel genom att titta under stenar. Vi upptäcker de minsta av de minsta och även sådana som är lite större.<br>Vi målar med fantastiska naturfärger och med inspiration från organismernas manifest. Du kan ta del av manifestet i Annegårdens entré.<br>Ta med dig ett förstoringsglas och en pensel!<br>Ledare: Marjut Maristo och Heli Niska<br>Kostnadsfritt och öppet för alla åldrar.</p><p><b>Picknickkonsert: Duon Valtuutetut<br>kl. 12–12.30, A-scenen</b><br>Nora Grotenfelt och Antti Vuorela från Helsingfors stadsfullmäktige framför barnvisor på finska och svenska.. Det utlovas berättelser, nostalgi och god stämning.<br>Ta med egen matsäck och picknickfilt!</p><p><b>Stella Polaris Maaginen matka (en magisk resa)<br>kl. 15.30 och kl. 18.00</b><br>I improvisationsduon Stella Polaris föreställning för hela familjen får barnen påverka berättelsen och karaktärerna. Skådespelarna, musikern och ljusdesignern trollar fram en föreställning utifrån publikens förslag – och den blir helt ny varje gång.<br>Kom med och förundras över hur en hel föreställning full av överraskningar, skoj och fantastiska vändningar skapas framför dina ögon!<br>Åldersrekommendation: 6+<br>Längd: cirka 45 min.<br>Språk: finska<br>Platsbokning i Annesalen: annantalo.fi, från 12.6.2026 kl. 8</p><p><b>Downtown Open Mic<br>kl. 19–21, A-scenen</b><br>Downtown Open Mic ordnas på Annegårdens A-scen på Helsingforsdagen 12.6 kl. 19–21! Välkommen att uppträda och njuta av den varma stämningen med programledaren Pyry Aalto. På scenen finns mikrofoner, keyboard och en anslutning för gitarr. Vi har också en DJ på plats, som kan spela bakgrundsmusik. <br>Du kan ansöka om att få uppträda i förväg. Anmälningarna för uppträdanden öppnar i slutet av maj på annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic anmälningsblankett (på finska)</a></u></p><p>Vi ses på Annegården!</p>",
                "en": "<p>Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk.</p><p>Welcome to Annantalo to celebrate Helsinki Day with the whole family! There will be music, theatre, art workshops and socialising from dawn till dusk. Entry to all of the events is free of charge.</p><p><b>Schedule</b><br>9.30 & 10.45 Päistikka orchestra concert (A stage / Annansali if it rains)<br>10.00–15.00 Open art workshop: Elävä Helsinki (Living Helsinki) (front yard / inside if it rains)<br>12.00–12.30 Picnic concert: The Valtuutetut duo (A stage)<br>15.30 & 18.00 Stella Polaris: Maaginen matka (‘A magical journey’)<br>19.00–21.00 Downtown Open Mic (A stage)</p><p><b>Concert by the Päistikka orchestra 9.30 and 10.45, Annantalo A stage</b><br>(If it rains, the concert will be held in Annansali; book in advance to avoid disappointment)<br>In this exhilarating concert, the audience will plunge into a world of adventure and imagination. It's time to dance in a robot disco or chase monsters! Filled with music and stories, the show also invites the audience to get involved.</p><p>Performers:<br>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Duration: 30 min<br>Recommended age: 1+<br>Language: Finnish<br>Reservations (in case of rain): annantalo.fi, 12 June from 8.00 onwards</p><p><b>Open art workshop: Elävä Helsinki (‘Living Helsinki’)<br>10.00–15.00, Annantalo front yard</b><br>(Indoors if it rains)<br>What's that dashing there, shooting around? The workshop explores the nature around Annantalo, even peering under rocks. We will observe the smallest of the small and take a look at bigger things.<br>Inspired by the Eliökuntalaisten manifesti (‘A Manifesto for the Living World’), we paint in the wondrous colours of nature. You can read the manifesto in the Annantalo lobby.<br>Bring a magnifying glass and grab a paintbrush!<br>Instructors: Marjut Maristo and Heli Niska<br>Free of charge and open to all ages.</p><p><b>Picnic concert: Valtuutetut duo<br>12.00–12.30, A stage</b><br>Helsinki City Councillors Nora Grotenfelt and Antti Vuorela perform Children songs fin Finnsh and Swedish. There will be stories, nostalgia and good-humoured community spirit.<br>Bring your own picnic and blankets!</p><p><b>Stella Polaris: Maaginen matka (‘A magical journey’)<br>15.30 and 18.00</b><br>In Stella Polaris' improvised play for the whole family, children get to influence the story and the characters. The actors, musician and lighting designer will create the show based on suggestions from the audience – the performance will be different every time.<br>Come along and see a whole play unfold before your eyes, full of surprises, fun and hilarious twists and turns!<br>Recommended age: 6+<br>Duration: approximately 45 min<br>Language: Finnish<br>Seat reservations for Annansali: annantalo.fi, 12 June 2026 from 8.00 onwards</p><p><b>Downtown Open Mic<br>19.00–21.00, A stage</b><br>Downtown Open Mic takes place at Annantalo's A stage on Helsinki Day 12 June at 19.00–21.00! Come and enjoy the warm atmosphere with host Pyry Aalto. On stage you'll find mics, keyboards and a plug for the guitar. The event will also have an on-site DJ who can play backing tracks. <br>You can apply to be a performer in advance. Registrations for performers will open at the end of May on annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic registration form (in Finnish)</a></u></p><p>See you at Annantalo!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.",
                "sv": "Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.",
                "en": "Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki-paiva_Annantalossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3974A7009DB309C2C7AFACFB09839CCB/Helsingforsdagen_pa_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki_Day_at_Annantalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68377",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1801315,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-07T08:13:27.231123Z",
                    "last_modified_time": "2026-04-07T08:13:27.231137Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777739.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1801315/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-07T08:13:27.105917Z",
            "last_modified_time": "2026-06-08T08:13:11.261129Z",
            "date_published": null,
            "start_time": "2026-08-20",
            "end_time": "2026-09-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kohti tuntematonta – Pasi Pitkäsen kuvituksia huimista seikkailuista",
                "sv": "Mot det okända – Pasi Pitkänens illustrationer av svindlande äventyr",
                "en": "Kohti tuntematonta (‘Towards the unknown’) – Pasi Pitkänen's illustrations of dizzying adventures"
            },
            "description": {
                "fi": "<p>Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?</p><p>Kohti tuntematonta kutsuu sinut hyppäämään seikkailuun!</p><p>Kuvituksella on tärkeä tehtävä sanojen henkiin puhaltamisessa. Katso vaikka itse! Näet ehkä arvoituksellisia paikkoja, outoja otuksia, valoa ja varjoa, taikavoimaisia käärmeitä, kiehtovia riimumerkkejä. Pitkäsen kuvat tihkuvat jännitystä, uhkaa ja vaaraakin. Uskallatko katsoa kuvaa, tarttua kirjaan ja suunnata kohti tuntematonta?</p><p>Lapsille ja nuorille suunnattu näyttely- ja tapahtumakokonaisuus on koottu Pasi Pitkäsen laajasta kuvitustuotannosta. Näyttelyyn on valikoitu kuvia kirjasarjoista, joissa Pitkänen on tasavahvana tekijänä kirjailijoiden rinnalla: <i>Pate</i> (Timo Parvela), <i>Kepler62</i> (Timo Parvela ja Bjørn Sortland), <i>Paavali Pattinen</i> (Hannele Lampela) sekä <i>Ouroboros</i> (Silja Sillanpää).</p><p>Näyttelyn oheisohjelmaa suunnataan kouluille ja perheille.</p><p>Kansainvälisenä lukutaitopäivänä 8.9. järjestetään koululaisille tapahtuma-aamu ja lauantaina 19.9. perhepäivä, joissa molemmissa Pasi Pitkänen on mukana.</p><p>Maanantaiaamupäivisin näyttelytila on varattu koululaisten työpajatyöskentelyyn.</p><p><b>Pasi Pitkänen</b> on monipuolinen kuvittaja, kirjailija ja graafikko, jonka kuvitukset ovat saavuttaneet myös kansainvälistä menestystä. Pitkänen on valmistunut graafiseksi suunnittelijaksi Aalto-yliopistosta ja työskennellyt kuvittajana, hahmosuunnittelijana ja graafikkona Rovio Entertainmentilla.</p><p>Nykyisin hän toimii freelancekuvittajana ja asuu osan vuodesta Japanissa.</p><p>Näyttelyn ja tapahtumakokonaisuuden ovat tuottaneet Vuotalon kulttuuripalveluista Salla Fornaro ja Vuosaaren kirjastosta Emilia Kämäräinen yhteistyössä Pasi Pitkäsen kanssa.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p><p>Näyttely on avoinna 13.8.-26.9.2026.</p>",
                "sv": "<p>Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?</p><p>Mot det okända bjuder in dig på ett äventyr! Illustrationer är viktiga för att ge liv åt orden. Se själv! Du kanske ser mystiska platser, konstiga varelser, ljus och skugga, magiska ormar och fascinerande runrad. Pitkänens bilder ångar av spänning, hot och även fara. Vågar du titta på bilden, fatta tag i boken och gå mot det okända?</p><p>Utställnings- och evenemangshelheten för barn och unga består av Pasi Pitkänens omfattande illustrationsproduktion. Utställningen innehåller ett urval av bilder från bokserier där Pitkänen är en jämbördig upphovsman vid sidan av författarna: Pate (Timo Parvela), Kepler62 (Timo Parvela och Bjørn Sortland), Paavali Pattinen (Hannele Lampela) samt Ouroboros (Silja Sillanpää).</p><p>Utställningen är öppen 13.8–26.9.2026. Programmet i anslutning till utställningen är avsett för skolor och familjer. På Internationella läskunnighetsdagen 8.9 ordas en evenemangsmorgon för skolelever och lördagen 19.9 en familjedag. Pasi Pitkänen deltar i båda evenemangen. På måndagsförmiddagar är utställningslokalen reserverad för verkstäder för skolelever.</p><p><b>Pasi Pitkänen</b> är en mångsidig illustratör, författare och grafiker, vars illustrationer också har rönt internationell framgång. Pitkänen tog examen som grafisk designer vid Aalto-universitetet och har arbetat som illustratör, figurdesigner och grafiker på Rovio Entertainment. För närvarande arbetar han som frilansillustratör och bor en del av året i Japan.</p><p>Utställningen och evenemangshelheten har producerats av Salla Fornaro från Nordhusets kulturtjänster och Emilia Kämäräinen från Nordsjö bibliotek i samarbete med Pasi Pitkänen.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>",
                "en": "<p>Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?</p><p>Kohti tuntematonta (‘Towards the unknown’) invites you to jump into the adventure! Illustration plays an important role in bringing words to life. See for yourself! You may see mysterious places, strange creatures, light and shadow, magical snakes and fascinating runic characters. Pitkänen's illustrations exude excitement, threat and even some danger. Do you dare look at the image, pick up a book and head into the unknown?</p><p>The exhibition and event for children and young people is a compilation of Pasi Pitkänen's extensive illustrations. The exhibition includes a selection of images from book series in which Pitkänen is an equal creator alongside the authors: Pate (Timo Parvela), Kepler62 (Timo Parvela and Bjørn Sortland), Paavali Pattinen (Hannele Lampela) and Ouroboros (Silja Sillanpää).</p><p>The exhibition is open from 13 August to 26 September 2026. The accompanying programme to the exhibition is aimed at schools and families. On International Literacy Day on 8 September, Vuotalo will host a morning of events for schoolchildren, and on Saturday 19 September, the centre will host a family day, both with Pasi Pitkänen. On Monday mornings, the exhibition space will be reserved for workshops for schoolchildren.</p><p><b>Pasi Pitkänen</b> is a versatile illustrator, writer and graphic designer whose works have also achieved international success. Pitkänen graduated as a graphic designer from Aalto University and has worked as an illustrator, character designer and graphic designer at Rovio Entertainment. He now works as a freelance illustrator and lives in Japan for part of the year.</p><p>The exhibition and the event have been produced by Salla Fornaro from Vuotalo’s cultural services and Emilia Kämäräinen from Vuosaari Library in collaboration with Pasi Pitkänen.</p><p>The exhibition and events are free of charge.</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?",
                "sv": "Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?",
                "en": "Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8507968AAAC8B1844AA2E54CC8975FFA/Mot_det_okanda",
                "en": "http://www.vuotalo.fi/en/events/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta_Towards_the_unknown_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68377/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69262",
            "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: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384984,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T07:13:58.136340Z",
                    "last_modified_time": "2026-06-08T07:13:58.136356Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784172.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384984/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-08T07:13:57.975478Z",
            "last_modified_time": "2026-06-08T07:13:58.411713Z",
            "date_published": null,
            "start_time": "2026-11-06T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset",
                "sv": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset",
                "en": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset"
            },
            "description": {
                "fi": "<p>Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!</p><p>Giellavealgu (Kielenvaihtaja) on tammikuussa 2026 ensi-iltansa saanut Opera Boxin tuottama, 3–12-vuotiaille suunnattu monikielinen lastenooppera. Teos käsittelee pohjoisen luontoa, ystävyyttä ja kieltä naalin, sinirinnan ja tunturipöllön etsiessä yhteistä ääntä. Oopperan ovat ohjanneet ja käsikirjoittaneet <b>Isa Kortekangas</b> ja <b>Ville Salonen</b> ja sen Lapin luontoon pohjautuvan, etno-vaikutteisen ja viulun säestämän musiikin ovat säveltäneet <b>Pessi Jouste</b> ja <b>Elias Nieminen</b>.</p><p>Ooppera korostaa pohjoisten kielten ja kulttuurien merkitystä ja on osa laajempaa kotimaisten<br>kielten teemavuotta. Sen keskeisiä teemoja ovat saamelaisuus, identiteetti, luonnon monimuotoisuus ja tasa-arvoinen ystävyys.</p><p>Ooppera esitettiin ensimmäistä kertaa 13.1.2026 Helsingissä, Aleksanterin teatterissa.</p><p>Esityskielet: pohjoissaame, suomi, ruotsi, somali, arabia, ukraina ja swahili<br>Kesto: noin 35 minuuttia</p>",
                "sv": "<p>Svenska Dagen firas med mångspråkig barnopera i Nordhuset!</p>"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!",
                "sv": "Svenska Dagen firas med mångspråkig barnopera i Nordhuset!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_",
                "en": "http://www.vuotalo.fi/en/events/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpkhu",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:11.621279Z",
            "last_modified_time": "2026-06-08T06:46:11.621297Z",
            "date_published": null,
            "start_time": "2026-12-17T14:00:00Z",
            "end_time": "2026-12-17T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpkhu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpla4",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:11.486772Z",
            "last_modified_time": "2026-06-08T06:46:11.486788Z",
            "date_published": null,
            "start_time": "2026-12-10T14:00:00Z",
            "end_time": "2026-12-10T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpla4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhplp4",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:11.344523Z",
            "last_modified_time": "2026-06-08T06:46:11.344539Z",
            "date_published": null,
            "start_time": "2026-12-03T14:00:00Z",
            "end_time": "2026-12-03T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhplp4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpl5y",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:11.173586Z",
            "last_modified_time": "2026-06-08T06:46:11.173601Z",
            "date_published": null,
            "start_time": "2026-11-26T14:00:00Z",
            "end_time": "2026-11-26T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpl5y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpmlq",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:11.006995Z",
            "last_modified_time": "2026-06-08T06:46:11.007014Z",
            "date_published": null,
            "start_time": "2026-11-19T14:00:00Z",
            "end_time": "2026-11-19T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpmlq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpmze",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:10.864510Z",
            "last_modified_time": "2026-06-08T06:46:10.864527Z",
            "date_published": null,
            "start_time": "2026-11-12T14:00:00Z",
            "end_time": "2026-11-12T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpmze/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpnge",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:10.718737Z",
            "last_modified_time": "2026-06-08T06:46:10.718752Z",
            "date_published": null,
            "start_time": "2026-11-05T14:00:00Z",
            "end_time": "2026-11-05T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpnge/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpntm",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:10.571623Z",
            "last_modified_time": "2026-06-08T06:46:10.571639Z",
            "date_published": null,
            "start_time": "2026-10-29T14:00:00Z",
            "end_time": "2026-10-29T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpntm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}