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&local_ongoing_OR=lapsi%2Cmusiikki&page=20
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 466,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&local_ongoing_OR=lapsi%2Cmusiikki&page=21",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&local_ongoing_OR=lapsi%2Cmusiikki&page=19"
    },
    "data": [
        {
            "id": "kulke:68067",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333719/",
                        "sv": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333719/",
                        "en": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333719/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494895,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-18T12:13:32.081533Z",
                    "last_modified_time": "2026-02-18T12:13:32.081556Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778228.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494895/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-18T12:13:31.939239Z",
            "last_modified_time": "2026-03-20T01:14:11.847253Z",
            "date_published": null,
            "start_time": "2026-04-25T10: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,
            "short_description": {
                "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.",
                "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.",
                "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/533C6A1A304F01D2AC9D1461FDA06C41/Circo_Aereo_Pyorre",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/533C6A1A304F01D2AC9D1461FDA06C41/Circo_Aereo_Pyorre_Virvel",
                "en": "http://www.annantalo.fi/en/events/event/533C6A1A304F01D2AC9D1461FDA06C41/Circo_Aereo_Pyorre"
            },
            "description": {
                "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi esineet, materiaalit myös äänen ja valon.</p><p>Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen.</p><p>Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla.</p><p>Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p>",
                "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara föremål och material, utan också ljud och ljus.</p><p>Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.</p><p>Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter.</p><p>Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>",
                "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only objects and materials, but also sound and light.</p><p>Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement.</p><p>Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.</p><p>The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents.</p><p>In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>"
            },
            "name": {
                "fi": "Circo Aereo: Pyörre",
                "sv": "Circo Aereo: Pyörre – Virvel",
                "en": "Circo Aereo: Pyörre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/",
                        "sv": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/",
                        "en": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1574887,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-09T08:13:01.173037Z",
                    "last_modified_time": "2026-03-09T08:13:01.173050Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1574887/?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-03-09T08:13:01.055179Z",
            "last_modified_time": "2026-03-20T01:14:11.720001Z",
            "date_published": null,
            "start_time": "2026-04-25T10: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,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina_Tatu_och_Patu_som_detektiver_",
                "en": "http://www.malmitalo.fi/en/events/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Hevosenkenka_Theatre_Tatu_ja_Patu_etsivina"
            },
            "description": {
                "fi": "<p>Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.</p><p>Mysteerien selvittämiseen tarvitaan rautahermoisten ammattilaisten terävää ja äärettömän nopeaa päättelykykyä. Tatu ja Patu perustavat etsivätoimiston ja heidän outolalaiset älynystyränsä joutuvat tositoimiin.<br>Kuka tämä mystinen Puolittaja on?<br>Missä hän piileksii?<br>Ja miksi hän puolittaa?<br>Vahingonteot on selvitettävä, ja siihen pystyvät vain etsivä Tatu ja etsivä Patu.</p><p>Tekijät:<br>Dramatisointi ja ohjaus: Elina Stirkkinen<br>Nuket: Fanni Lieto<br>Lavastus: Juhana Hirvonen<br>Musiikki: Tommi Lindell<br>Laulu: Maiju Lindell<br>Valosuunnittelu ja projisoinnit: Jani Salmi<br>Äänisuunnittelu: Janne Levänen<br>Rooleissa: Krista Putkonen-Örn ja Antero Nieminen<br>Äänirooleissa: Pekka Heiman, Tuisku Levänen, Mona Salmi ja Elina Stirkkinen<br>Esitystekniikka: Janne Levänen ja Jani Salmi<br>Lavasteiden rakennus: Horst Wein ja Juhana Hirvonen</p><p>Esitys perustuu kirjaan: Aino Havukainen ja Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Kesto: noin 45 min<br>Ikäsuositus: 3+<br>Kieli: suomi</p>",
                "sv": "<p>De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.</p><p>För att lösa gåtorna krävs järnnerviga proffs med blixtsnabb slutledningsförmåga! Tatu och Patu grundar en detektivbyrå, och deras knasiga hjärnor får verkligen jobba.<br>Vem är denna mystiska Halveraren?<br>Var gömmer hen sig?<br>Och varför halverar hen?<br>Skadegörelsen måste uppklaras – och bara detektiven Tatu och detektiven Patu klarar det!</p><p>Skapare:<br>Dramatisering och regi: Elina Stirkkinen<br>Dockor: Fanni Lieto<br>Iscensättning: Juhana Hirvonen<br>Musik: Tommi Lindell<br>Sång: Maiju Lindell<br>Ljusdesign och projicering: Jani Salmi<br>Ljuddesign: Janne Levänen<br>I rollerna: Krista Putkonen-Örn och Antero Nieminen<br>I röstrollerna: Pekka Heiman, Tuisku Levänen, Mona Salmi och Elina Stirkkinen<br>Föreställningsteknik: Janne Levänen och Jani Salmi<br>Kulissbygge: Horst Wein och Juhana Hirvonen</p><p>Föreställningen baserar sig på boken: Aino Havukainen och Sami Toivonen TATU JA PATU ETSIVINÄ – Tapaus Puolittaja (TATU OCH PATU SOM DETEKTIVER – Fallet Halveraren)</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 3+<br>Språk: finska</p>",
                "en": "<p>Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events.</p><p>Solving these mysteries demands the sharp and lightning-fast skills of reasoning of professionals with nerves of steel. Tatu and Patu set up a detective agency, putting their big brains into work.<br>Who is this mysterious villain?<br>Where are they hiding?<br>And why do they keep halving stuff?<br>These misdeeds must be solved, and only detectives Tatu and Patu can do it.</p><p>Creators:<br>Dramatised and directed by: Elina Stirkkinen<br>Puppets: Fanni Lieto<br>Staging: Juhana Hirvonen<br>Music: Tommi Lindell<br>Vocals: Maiju Lindell<br>Lighting design and projections: Jani Salmi<br>Sound design: Janne Levänen<br>Starring: Krista Putkonen-Örn and Antero Nieminen<br>Voice roles: Pekka Heiman, Tuisku Levänen, Mona Salmi and Elina Stirkkinen<br>Presentation technology: Janne Levänen and Jani Salmi<br>Stage building: Horst Wein and Juhana Hirvonen</p><p>The performance is based on the book: Aino Havukainen and Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Duration: approximately 45 minutes<br>Recommended ages: 3+<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "Teatteri Hevosenkenkä: Tatu ja Patu etsivinä",
                "sv": "Teatteri Hevosenkenkä: Tatu ja Patu etsivinä (Tatu och Patu som detektiver)",
                "en": "Hevosenkenkä Theatre: Tatu ja Patu etsivinä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67822",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/antti-ketonen-eka-elama-levynjulkaisukiertue-savoy-teatteri-21092562/",
                        "sv": "https://www.lippu.fi/event/antti-ketonen-eka-elama-levynjulkaisukiertue-savoy-teatteri-21092562/",
                        "en": "https://www.lippu.fi/event/antti-ketonen-eka-elama-levynjulkaisukiertue-savoy-teatteri-21092562/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90 €",
                        "sv": "29,90 €",
                        "en": "29,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494914,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T10:13:20.671093Z",
                    "last_modified_time": "2026-02-20T10:13:20.671115Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782940.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494914/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-12T14:13:34.431972Z",
            "last_modified_time": "2026-03-20T01:14:11.485761Z",
            "date_published": null,
            "start_time": "2026-04-24T16: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,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A4F2DC4A36209CC8F651568722414324/Antti_Ketonen_Eka_Elama_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A4F2DC4A36209CC8F651568722414324/Antti_Ketonen_Eka_Elama_",
                "en": "http://www.savoyteatteri.fi/en/events/event/A4F2DC4A36209CC8F651568722414324/Antti_Ketonen_Eka_Elama_"
            },
            "description": {
                "fi": "<p>Antti Ketonen saapuu ensi keväänä konserttisaleihin <b>Eka Elämä -levynjulkaisukiertueen</b> merkeissä. Uusi albumi ilmestyy ennen kiertuetta, ja yleisö pääsee ensimmäisten joukossa kokemaan sen kappaleet livenä. Lisää maistiaisia albumilta tulee vielä ennen kiertueen alkua.</p><p>Luvassa on lämmin ja eläväinen ilta, joka juhlistaa uutta musiikkia ja kevään<br>taikaa. <i>“On mahtavaa päästä ensimmäistä kertaa esittämään levy kokonaisuudessaan. Konserttisali on paikka jossa välittyy kappaleiden pienimmätkin nyanssit”</i>, Antti Ketonen toteaa.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Antti Ketonen intar konsertsalarna med sin Eka Elämä-skivsläppskonsert under våren. Det nya albumet släpps före turnén och publiken blir bland de första som får uppleva låtarna live. Fler smakprov från albumet kommer att släppas innan turnén startar.</p><p>Det blir en varm och livfull kväll för att fira den nya musiken och vårens<br>magi. ”Det är fantastiskt att kunna framföra albumet i sin helhet för första gången. En konsertsal är en plats där även de minsta nyanserna i sångerna förmedlas”, säger Antti Ketonen.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>This spring, Antti Ketonen will appear in concert halls on his Eka Elämä (‘First Life’) album release tour. The new album will be released before the tour, and the audience will be among the first to experience the songs live. More samples of the album will be released before the tour starts.</p><p>The event will be a warm and lively evening that celebrates new music and the magic of<br>spring. “I’m looking forward to performing the album in its entirety for the first time. A concert hall is a place where even the smallest nuances of the songs are conveyed,” Antti Ketonen comments.</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>"
            },
            "name": {
                "fi": "Antti Ketonen: Eka Elämä",
                "sv": "Antti Ketonen: Eka Elämä",
                "en": "Antti Ketonen: Eka Elämä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Central Line Entertainment Oy",
                "sv": "Central Line Entertainment Oy",
                "en": "Central Line Entertainment Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67822/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67597",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/",
                        "sv": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/",
                        "en": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T11:12:56.318262Z",
                    "last_modified_time": "2025-12-05T11:12:56.318277Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781996.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494106/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T11:12:56.192636Z",
            "last_modified_time": "2026-03-20T01:14:11.275796Z",
            "date_published": null,
            "start_time": "2026-04-24T16: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,
            "short_description": {
                "fi": "Ennakkoluulotonta musiikkihulluutta, massiivisia kitaravalleja ja psykedeelistä funkya!",
                "sv": "Fördomsfri musikalisk galenskap, massiva gitarrvallar och psykedelisk funk!",
                "en": "Open-minded musical madness, massive guitar riffs and psychedelic funk!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro",
                "en": "http://www.malmitalo.fi/en/events/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro"
            },
            "description": {
                "fi": "<p>Ennakkoluulotonta musiikkihulluutta, massiivisia kitaravalleja ja psykedeelistä funkya!</p><p>Kinnuselle sähkökitara on enemmän kuin pelkkä soitin. Tinyhawk & Bizzarro-yhtyeen pääsolistin ja säveltäjän käsissä kitara on avaruusraketti ja portti estoitta tanssivan mielikuvituksen maailmaan. Rosita Luu-yhtyeen kitaristina suomalaisen indiepopin äänimaisemaa herkkävaistoisella Jenni tyylikkyydellään rikastuttanut Kinnunen ei ole tarponut tavanomaisimpia polkuja soittajana ja se kuuluu. Hänen soitossaan ja sävellyksissään soi oma ääni.</p><p>Vuosia kyteneet unelmat ja visiot omasta musiikista vaativat oikeat liittolaiset päästäkseen lentoon. Vastaus löytyi Savosta. Kitaristi Markus Väisäsen vuosia luotsaama Bizzarro-trio oli valmiiksi täsmälleen oikealla aaltopituudella operoiva, värisävyt ja rytmit hallitseva oikea bändi. Kevät-talvella 2022 palaset asettuvat oikeaan asentoon, vaivattomasti, jopa maagisen oloisesti. Väisäsen kitara on telepaattisessa yhteydessä Jenni Kinnusen soittoon ja basso-rumpu-pari Teemu Aho ja Jaakko Pöyhönen luo jykevän perustan kitaroiden liihottelulle. Kinnusen mielen sopukoissa pyörinyt musiikki oli selvästi tarkoitettu tämän yhtyeen soitettavaksi!</p><p>Tinyhawkin kitarainen maailma on täynnä seikkailua, silmissä viliseviä maisemia ja sukelluksia yllättäviin tilanteisiin. Eletty ja koettu muuttuu musiikiksi. Flamencon tanssillinen totaalisuus. Klassisen kitaran espanjalaiset klassikot. Ghibli-animaatioista roihahtanut hullu rakkaus japanilaiseen kulttuuriin. Beatles-Black Sabbath-Jay Reatard-Grimes-akselilta rehottava ennakkoluuloton musiikkihulluus. Savolaisuus. Sielunsukulaisuus Khruangbin psykedeelisen funkyyn mielikuvitusetnoon. Massiiviset kitaravallit. Sekopäinen euforia diskon tanssilattialla. Melankolian syvä lämpö. Kaikki tämä kuuluu Tinyhawk & Bizzarron musiikissa, jossa olennaisinta on tuntemisen kokemus. Sillä luodaan yhteyksiä kaikkiin ulottuvuuksiin.</p><p>Rohkea ja tuore ote kitarainstrumentaalimusiikkiin ei ole jäänyt huomaamatta. Tinyhawk & Bizzarron debyytti ”Nekorok” sai riemastuneen vastaanoton suomalaisen musiikkimedian kovilta konkareilta syksyllä 2023. Helsingin Sanomien Ilkka Mattilan mukaan ” yhtyeen esikoisalbumi Nekorok kuulostaa raikkaalta tuulelta, joka puhaltaa pölyt pois ullakolle turvaan talletetusta suomalaisesta sähkökitaramusiikista.” Yleisradion Susanna Vainiola ihastui ”kitaralla kerrottuihin tarinoihin”. Arttu Seppänen totesi Keskisuomalaisessa Tinyhawk-debyytin olevan ”yksi tämän syksyn ilahduttavimpia kotimaisia albumeja.”</p><p>Tinyhawk & Bizzarro on palkittu tammikuussa 2024 ”Vuoden tulokas” -palkinnolla Indie Awardseissa ja voitti arvostetun Teosto -palkinnon huhtikuussa 2024.Uusi albumi “Neko-A-Sekoi” sai päivänvalon lokakuussa 2025, ja se julkaistiin mitä parhaimman Humu Recordsin toimesta. Helsingin Sanomien Harri römpötti antoi albumille täydet viisi tähteä.</p><p>Tinyhawk & Bizzarro on:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>",
                "sv": "<p>Fördomsfri musikalisk galenskap, massiva gitarrvallar och psykedelisk funk!</p><p>För Jenni Kinnunen är elgitarren mer än bara ett instrument. I händerna på Tinyhawk & Bizzarros huvudsolist och kompositör är gitarren en rymdraket och en port till den ohämmat dansande fantasins värld. Kinnunen, som har berikat det finländska indiepop-ljudlandskapet med sin sensitiva stil som gitarrist i bandet Rosita Luu, har inte gått de allra vanligaste vägarna som musiker, och det hörs. Hennes musik och kompositioner har en egen röst.</p><p>De drömmar och visioner om musiken som grott i flera år behövde rätt kompanjoner för att få luft under vingarna. Svaret fanns i Savolax. Bizzarro-trion, som letts av gitarristen Markus Väisänen i åratal, var ett riktigt band som redan opererade på exakt rätt våglängd och behärskade nyanserna och rytmerna. Under vårvintern 2022 föll bitarna på plats, utan ansträngning och nästan på ett magiskt sätt. Väisänens gitarr har telepatisk kontakt med Jenni Kinnunens musicerande och Teemu Aho och Jaakko Pöyhönen på bas och trummor skapar en solid grund för gitarrerna att sväva på. Den musik som snurrade i Kinnunens huvud var helt klart avsedd att spelas av detta band!</p><p>Tinyhawks gitarrvärld är full av äventyr, landskap som fladdrar förbi och djupdykningar i överraskande situationer. Det levda och upplevda förvandlas till musik. Flamencons dansanta totalitet. Spanska klassiker på klassisk gitarr. En galen kärlek till japansk kultur som föddes ur Ghibli-animationer. En fördomsfri musikalisk galenskap som lever på axeln Beatles-Black Sabbath-Jay Reatard-Grimes. Det savolaxiska. Ett själsfrändskap med Khruangbins psykedeliska funky fantasietno. Massiva gitarrvallar. Galen eufori på discots dansgolv. Melankolins djupa värme. Allt detta finns med i Tinyhawk & Bizzarros musik, där upplevelsen av att känna är det mest väsentliga. Den skapar länkar till alla dimensioner.</p><p>Det djärva och fräscha greppet om instrumental gitarrmusik har inte gått obemärkt förbi. Tinyhawk & Bizzarros debut ”Nekorok” togs emot med förtjusning av veteraner inom finsk musikmedia hösten 2023. Helsingin Sanomats Ilkka Mattila skrev att ”gruppens debutalbum Nekorok låter som en frisk fläkt som blåser bort dammet från den finländska elgitarrmusiken som lagts undan på vinden”. Susanna Vainiola på Yle blev förtjust i ”berättelserna som berättas med gitarren”. Arttu Seppänen skrev i Keskisuomalainen att Tinyhawks debut är ”ett av höstens mest glädjande finska album”.</p><p>Tinyhawk & Bizzarro utsågs till årets nykomling på Indie Awards i januari 2024 och tilldelades det prestigefyllda Teosto-priset i april 2024. Det nya albumet Neko-A-Sekoi såg dagens ljus i oktober 2025 och gavs ut av Humu Records. Helsingin Sanomats Harri Römpötti gav albumet fulla fem stjärnor.</p><p>Tinyhawk & Bizzarro är:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>",
                "en": "<p>Open-minded musical madness, massive guitar riffs and psychedelic funk!</p><p>For Jenni Kinnunen, the electric guitar is more than just an instrument. In the hands of the lead soloist and composer of the band Tinyhawk & Bizzarro, the guitar is a space rocket and a gateway to a world of imagination dancing without inhibitions. Kinnunen, who has enriched the Finnish indie pop soundscape with her intuitive elegance as a guitarist for the band Rosita Luu, has not taken the usual paths as a musician, and it shows. Her playing and compositions have their own unique sound.</p><p>The dreams and visions of her own music, which had been smouldering for years, needed the right allies to take flight. She found the answer in Savo. The Bizzarro trio, led for years by guitarist Markus Väisänen, was just the right band, operating on exactly the right wavelength and having a good command of colours and rhythms. In late winter and early spring 2022, the pieces fell into place effortlessly, as though by magic. Väisänen’s guitar has a telepathic connection with Jenni Kinnunen’s playing, and the bass-drum duo Teemu Aho and Jaakko Pöyhönen create a solid foundation for the flight of the guitars. The music that was swirling around in the recesses of Kinnunen’s mind was clearly meant to be played by this band!</p><p>Tinyhawk’s guitar world is full of adventure, sceneries flashing by, and dives into unexpected situations. The lived and the experienced turns into music. The totality of flamenco. Spanish classics for the classical guitar. A mad love for Japanese culture, sparked by Ghibli animations. An open-minded enthusiasm for music that feeds off the The Beatles-Black Sabbath-Jay Reatard-Grimes axis. Savo roots. A kinship with Khruangbin’s psychedelic, funky, imaginative ethno. Massive guitar riffs. Crazy euphoria on the dance floor of a disco. The deep warmth of melancholy. All of this is present in the music of Tinyhawk & Bizzarro, where the key is the experience of feeling. It creates connections to all dimensions.</p><p>The bold and fresh approach to guitar instrumental music has not gone unnoticed. Tinyhawk & Bizzarro’s debut album Nekorok was enthusiastically received by the veterans of the Finnish music media in autumn 2023. According to Ilkka Mattila from Helsingin Sanomat: “the band’s debut album Nekorok sounds like a breath of fresh air that blows the dust off the Finnish electric guitar music stored safely in the attic.” Susanna Vainiola from YLE was fascinated by “the stories told with the guitar”. Arttu Seppänen remarked in the Keskisuomalainen newspaper that Tinyhawk’s debut is “one of the most enjoyable Finnish albums of this autumn”.</p><p>Tinyhawk & Bizzarro received the ‘Newcomer of the Year’ award at the Indie Awards in January 2024 and won the prestigious Teosto Prize in April 2024. The band’s new album Neko-A-Sekoi was released in October 2025 by Humu Records, the best of the best. Harri Römpötti from Helsingin Sanomat gave the album a full five stars.</p><p>Tinyhawk & Bizzarro comprises:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>"
            },
            "name": {
                "fi": "Tinyhawk & Bizzarro – A la Malmi",
                "sv": "Tinyhawk & Bizzarro – A la Malmi",
                "en": "Tinyhawk & Bizzarro – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67597/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67295",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/gallinago-gallinago-4025195/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 / 15 €",
                        "sv": "20 / 15 €",
                        "en": "20 / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493842,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-19T10:13:00.668403Z",
                    "last_modified_time": "2025-11-19T10:13:00.668433Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780853.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493842/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-19T10:13:00.572866Z",
            "last_modified_time": "2026-03-20T01:14:11.141333Z",
            "date_published": null,
            "start_time": "2026-04-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Gallinago gallinago on kaunis ja makaaberi konsertto kaikille meille voimansa kadottaneille, shamaaninsa poptähtiin vaihtaneille ihmispoloille.",
                "sv": "Gallinago gallinago är en vacker och makaber konsert för alla vi som förlorat får kraft och bytt ut schamanen mot en popstjärna.",
                "en": "The Common Snipe (Gallinago gallinago) is a kind of mythical bird, whose rattling call brings good luck in the evenings, but at night is said to be a harbinger of death."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7E10C14300411977C832406F2342A458/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7E10C14300411977C832406F2342A458/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_",
                "en": "http://www.kanneltalo.fi/en/events/event/7E10C14300411977C832406F2342A458/Reetta-Kaisa_Iles_I_Ville_Rauhala_I_Janne_Teivainen_Gallinago_gallinago_-_taivaanvuohi_"
            },
            "description": {
                "fi": "<p>Gallinago gallinago on kaunis ja makaaberi konsertto kaikille meille voimansa kadottaneille, shamaaninsa poptähtiin vaihtaneille ihmispoloille.</p><p>Taivaanvuohi (Gallinago gallinago) on eräänlainen kuukkeli, jonka mäkätyksen kuuleminen iltaisin tuo onnea, mutta yöaikaan enteilee kuolemaa. Se on vanhojen eukkojen sielulintu. Taivaanvuohessa elää kuolemaa pettäneen pelurin sielu, joka ei pääse Taivaaseen, eikä Helvettiin, vaan on tuomittu liitämään ikuisesti maailmojen välissä.</p><p>“Me mitättömät, harmaat mäkättäjät kahlaamme pakoon vääjäämätöntä loppua. Pelkäämme kuolemaa niin paljon, että emme uskalla elää. Pelkäämme elämää, koska se muistuttaa liikaa kuolemasta.”*</p><p>Teoksen soiva selkäranka syntyy ihmisäänen, kontrabasson ja elektroniikan vuoropuhelusta. Visuaalit ja karjalaisuudesta vaikuttunut muotisuunnittelu luovat omaperäisen esitysuniversumin, jonka sisällä vyöryy tummanpuhuva, arkaais-avantgardistinen sävelmaailma. Esitys on liikkeen ja ihmisäänen synteesi, jossa tanssiin yhdistyvät hengittävä laulullinen voima, rustiikkiset etnosävyt ja spoken word. Tekijät ammentavat niin kansanperinteestä kuin 70-luvun New Yorkin loft jazzista. Monikieliset tekstit ovat enemmänkin post-pop runoutta kuin perinteisiä laululyriikoita.</p><p>Kesto n. 1 tunti</p><p>Common Spine -kollektiivi<br>Laulu, tanssi, koreografia, sävellys, tekstit: Reetta-Kaisa Iles<br>Kontrabasso, sävellys, äänisuunnittelu, tekstit: Ville Rauhala<br>Valo- ja videosuunnittelu, äänisuunnittelu, tekstit: Janne Teivainen<br>Esiintyjät: Reetta-Kaisa Iles, Ville Rauhala ja Janne Teivainen<br>Pukusuunnittelu: Antrea Kantakoski<br>Konseptin mentorointi ja kiertuetuotanto: Harri Kuorelahti<br>Valokuvaus: Mortti Saarnia</p><p>Reetta-Kaisa Iles toimii väitöskirjatutkijana Taideyliopiston Sibelius-Akatemian MuTri-taiteilijakoulutuksessa. Gallinago gallinago on hänen taiteellisen tutkimuksensa ensimmäinen osio. Opinnäytteen ohjaajina toimivat koreografit Ervi Sirén, Elina Pirinen sekä tutkija Anne Tarvainen.</p><p>*Lainaus Reetta-Kaisa Iles</p>",
                "sv": "<p>Gallinago gallinago är en vacker och makaber konsert för alla vi som förlorat får kraft och bytt ut schamanen mot en popstjärna.</p><p>Enkelbeckasinen (Gallinago gallinago) är en fågel vars gnällande läte ger lycka om man hör det på kvällen, men förebådar död nattetid. Den är de gamla gummornas självfågel. I enkelbeckasinen lever själen av en myglare som lurat döden och varken kommer till himlen eller helvetet, utan är dömd att sväva mellan världarna för evigt.</p><p>”Vi obetydliga, gråa gnällspikar försöker vada ifrån det ofrånkomliga slutet. Vi är så rädda för döden att vi inte vågar leva. Vi fruktar livet för att det påminner oss för mycket om döden.”*</p><p>Verkets musikaliska ryggrad skapas av ett samspel mellan den mänskliga rösten, kontrabasen och elektroniken. De visuella inslagen och den karelskinspirerade formdesignen skapar ett säreget föreställningsuniversum, inom vilket en mörk, arkaisk-avantgardistisk musikvärld virvlar. Föreställningen är en syntes av rörelse och den mänskliga rösten, som kombinerar sångens kraft, rustika etnotoner och spoken word. Kompositörerna hämtar inspiration från både folktradition och 70-talets loft jazz i New York. De flerspråkiga texterna påminner mer om post-pop-poesi än om traditionella låttexter.</p><p>Längd: cirka 1 timme</p><p>Common Spine-kollektivet<br>Sång, dans, koreografi, tonsättning, texter: Reetta-Kaisa Iles<br>Kontrabas, tonsättning, ljuddesign, texter: Ville Rauhala<br>Ljus- och videodesign, ljuddesign, texter: Janne Teivainen<br>På scenen: Reetta-Kaisa Iles, Ville Rauhala och Janne Teivainen<br>Kostym: Antrea Kantakoski<br>Konceptrådgivning och turnéproduktion: Harri Kuorelahti<br>Fotografering: Mortti Saarnia</p><p>Reetta-Kaisa Iles är doktorand vid konstnärsutbildningen MuTri vid Konstuniversitetets Sibelius-Akademi. Gallinago gallinago är den första delen av hennes konstnärliga studie. Handledare för avhandlingen är koreograferna Ervi Sirén och Elina Pirinen samt forskaren Anne Tarvainen.</p><p>*Citat av Reetta-Kaisa Iles</p>",
                "en": "<p>The Common Snipe (Gallinago gallinago) is a kind of mythical bird, whose rattling call brings good luck in the evenings, but at night is said to be a harbinger of death.</p><p>It is a soul-bird, especially for old women. Within the snipe lives the soul of a<br>gambler who has cheated death; one who, unable to enter Heaven or Hell, is<br>doomed to forever soar between worlds.</p><p>“We, the insignificant gray rattlers, wade through life trying to escape our inevitable<br>end. We fear death so much that we dare not live. We fear life, because it reminds<br>us too much of death.”*</p><p>The musical backbone of the work is created by a dialogue between the human<br>voice, double bass, and electronics. Visuals and fashion design - strongly inspired<br>by Karelian folklore - create a unique performance universe, whose core is a dark,<br>archaic-avant-garde sound world. The performative narrative is shaped by the<br>synthesis of movement and the human voice, where dance merges with breathing,<br>singing power, rustic ethnic tones, and spoken word. The creators draw from both<br>folk traditions and 1970s New York loft jazz. The multilingual texts are closer to<br>post-pop poetry than to traditional song lyrics.</p><p>A beautiful and macabre concerto for all of us poor souls who have lost our power, who have exchanged our shamans for pop stars.</p><p>Duration: 1 h</p><p>Vocals, dance, choreography, composition, text: Reetta-Kaisa Iles<br>Double bass, composition, sound design, text: Ville Rauhala<br>Lighting and video design, sound design, text: Janne Teivainen<br>Performers: Reetta-Kaisa Iles, Ville Rauhala, Janne Teivainen<br>Costume design: Antrea Kantakoski<br>Harri Kuorelahti: concept mentoring / tour production<br>Mortti Saarnia: photography</p><p>Reetta-Kaisa Iles is a doctoral researcher in the MuTri Doctoral School for Artists at<br>the Sibelius Academy of the University of the Arts Helsinki. Gallinago Gallinago is<br>the first artistic component of her doctoral research. The work has been supervised<br>by choreographers Ervi Sirén and Elina Pirinen, as well as researcher Anne<br>Tarvainen.</p><p>*Quote: Reetta-Kaisa Iles</p>"
            },
            "name": {
                "fi": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – – Ruumiillinen konsertto tanssille, kontrabassolle ja elektroniikalle",
                "sv": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – – En fysisk konsert för dans, kontrabas och elektronik",
                "en": "Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallinago gallinago - taivaanvuohi – A corporeal concerto for dancing, double bass, and electronics."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67295/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68065",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333702/",
                        "sv": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333702/",
                        "en": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333702/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494894,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-18T12:13:31.478906Z",
                    "last_modified_time": "2026-02-18T12:13:31.478920Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785385.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494894/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-18T12:13:31.351651Z",
            "last_modified_time": "2026-03-20T01:14:10.950619Z",
            "date_published": null,
            "start_time": "2026-04-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.",
                "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.",
                "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/639F63E46C6A0A05F7628148F058E7B2/Circo_Aereo_Pyorre",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/639F63E46C6A0A05F7628148F058E7B2/Circo_Aereo_Pyorre_Virvel",
                "en": "http://www.annantalo.fi/en/events/event/639F63E46C6A0A05F7628148F058E7B2/Circo_Aereo_Pyorre"
            },
            "description": {
                "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla.</p><p>Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella. Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p>",
                "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara föremål och material, utan också ljud och ljus.</p><p>Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder. Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.</p><p>Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>",
                "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only objects and materials, but also sound and light.</p><p>Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement.</p><p>Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.<br> <br>The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>"
            },
            "name": {
                "fi": "Circo Aereo: Pyörre",
                "sv": "Circo Aereo: Pyörre – Virvel",
                "en": "Circo Aereo: Pyörre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68065/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68081",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494800,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T10:13:06.533238Z",
                    "last_modified_time": "2026-02-09T10:13:06.533252Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782110.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494800/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2026-02-09T10:13:06.383916Z",
            "last_modified_time": "2026-03-20T01:14:10.800806Z",
            "date_published": null,
            "start_time": "2026-04-24T13: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,
            "short_description": {
                "fi": "Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60–80-luvuilta iltapäivädiskossa!",
                "sv": "Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960–80-talet!",
                "en": "The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco",
                "en": "http://www.vuotalo.fi/en/events/event/4A12A29A7FDB3EAC6AEFC52876A0B413/DJ_Borje_Retro-Disco"
            },
            "description": {
                "fi": "<p>Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60–80-luvuilta iltapäivädiskossa!</p><p>Kesto noin 2 tuntia <br>Vapaa pääsy</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>",
                "sv": "<p>Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960–80-talet!</p><p>Längd cirka 2 timmar</p><p>Fri entré</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>",
                "en": "<p>The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco!</p><p>Duration approximately 2 hours</p><p>Free admission</p><p>KIELI Suomi, ruotsi <br>KESTO 2h ilman väliaikaa</p>"
            },
            "name": {
                "fi": "DJ Börje: Retro-Disco",
                "sv": "DJ Börje: Retro-Disco",
                "en": "DJ Börje: Retro-Disco"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68081/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68066",
            "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:46/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T11:13:03.126492Z",
                    "last_modified_time": "2026-02-19T11:13:03.126526Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783813.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T11:13:02.999817Z",
            "last_modified_time": "2026-03-20T01:14:10.480975Z",
            "date_published": null,
            "start_time": "2026-04-24T07: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,
            "short_description": {
                "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.",
                "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.",
                "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre_Virvel",
                "en": "http://www.annantalo.fi/en/events/event/18270EAAB07403B650B0810725A50B9B/Circo_Aereo_Pyorre"
            },
            "description": {
                "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi<br>esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla. Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p><p>ryhmille, paikkavaraukset 23.3. klo 8.00 alkaen, kultus.hel.fi</p>",
                "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara<br>föremål och material, utan också ljud och ljus. Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.  Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>",
                "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only<br>objects and materials, but also sound and light. Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement. Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.  The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>"
            },
            "name": {
                "fi": "Circo Aereo: Pyörre",
                "sv": "Circo Aereo: Pyörre – Virvel",
                "en": "Circo Aereo: Pyörre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68066/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66998",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3971894",
                        "sv": "https://www.lippu.fi/eventseries/name-3971894",
                        "en": "https://www.lippu.fi/eventseries/name-3971894"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90 / 33.90 €",
                        "sv": "29,90 / 33.90 €",
                        "en": "29,90 / 33.90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490701,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T09:14:27.775714Z",
                    "last_modified_time": "2025-09-09T09:14:27.775732Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777414.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490701/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T09:14:27.639670Z",
            "last_modified_time": "2026-03-20T01:14:10.109057Z",
            "date_published": null,
            "start_time": "2026-04-23",
            "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,
            "short_description": {
                "fi": "Klassisen musiikin ja hiphopin yhdistävä pianistitähti Levi.Sct keväällä Helsinkiin",
                "sv": "Stjärnpianisten Levi.Sct, som kombinerar klassisk musik och hiphop, kommer till Helsingfors i vår",
                "en": "Levi.Sct, a star pianist combining classical music and hip hop, to perform in Helsinki in spring"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct",
                "en": "http://www.savoyteatteri.fi/en/events/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct"
            },
            "description": {
                "fi": "<p>Klassisen musiikin ja hiphopin yhdistävä pianistitähti Levi.Sct keväällä Helsinkiin</p><p>Runsaasti huomiota sosiaalisessa mediassa herättänyt ja yli miljoona Instagram-seuraajaa kartuttanut pianistilahjakkuus <b>Levi.Sct</b> konsertoi Helsingin Savoy-teatterissa torstaina 23.4.2026!.</p><p>Levi.Sct (Levi Schechtmann, syntynyt 1999) on genrerajoja rikkova saksalainen pianisti, joka yhdistelee ennakkoluulottomasti musiikkityylejä ja uudistaa samalla klassisen musiikin konserttikokemusta. Hän yhdistää Bachin ja Chopinin luomat musiikilliset maailmat nykyaikaisiin vaikutteisiin, kuten hiphopin ja housen rytmeihin. Tuloksena on rohkea, elokuvallinen ja mukaansatempaava äänimaisema.</p><p>Sukupolvensa seuratuimpien pianistilahjakkuuksien joukkoon noussut Levi.Sct on herättänyt huomiota sosiaalisessa mediassa ja kerännyt lyhyessä ajassa Instagramissa yli 1,2 miljoonaa seuraajaa. Vasta uransa ensiaskelia ottava artisti on jo ehtinyt esiintyä Hampurin Elbphilharmonien ja Brysselin Flageyn kaltaisissa maineikkaissa konserttisaleissa. Artisti on saanut kiitosta esiintymisistään, joiden intensiivisyys ja immersiivisyys tuo klassiseen musiikkiin uudenlaista energiaa.</p><p>Ovet aukeavat klo 18.</p><p>LIPUT:<br>Myynnissä perjantaina 12.9.2025 klo 11 osoitteessa lippu.fi<br>Hinta alkaen 29,90 € sisältäen palvelumaksun, tilauskulut alk. 1,50 € + 0,65 % tilauksesta</p><p><i>Mastercardin kortinhaltijoilla on pääsy tapahtuman ennakkomyyntiin Suomessa ke 10.9. klo 10:00 – pe 12.9. klo 10:00 välisenä aikana. Lue lisää osoitteessa https://www.priceless.com/music </i></p>",
                "sv": "<p>Stjärnpianisten Levi.Sct, som kombinerar klassisk musik och hiphop, kommer till Helsingfors i vår</p><p>Den begåvade pianisten Levi.Sct, som har väckt stor uppmärksamhet på sociala medier och har över en miljon följare på Instagram, ger en konsert på Savoy-teatern i Helsingfors torsdagen den 23 april 2026!</p><p>Levi.Sct (Levi Schechtmann, född 1999) är en genreöverskridande tysk pianist som kombinerar olika musikstilar på ett fördomsfritt sätt och samtidigt förnyar konsertupplevelsen inom klassisk musik. Han kombinerar de musikaliska världar som Bach och Chopin skapat med samtida influenser som hiphop- och houserytmer. Resultatet är ett djärvt, filmiskt och medryckande ljudlandskap.</p><p>Levi.Sct har blivit en av de mest följda pianotalangerna i sin generation och har väckt uppmärksamhet på sociala medier med över 1,2 miljoner följare på Instagram på kort tid. Artisten, som ännu bara tagit de första stegen i sin karriär, har redan uppträtt i prestigefyllda konsertsalar som Elbphilharmonie i Hamburg och Flagey i Bryssel. Artisten har hyllats för sina framträdanden, vars intensitet och immersivitet ger klassisk musik en ny slags energi.</p><p>Dörrarna öppnas kl. 18.</p>",
                "en": "<p>Levi.Sct, a star pianist combining classical music and hip hop, to perform in Helsinki in spring</p><p>The talented pianist Levi.Sct, who has attracted a lot of attention on social media and has amassed over a million Instagram followers, will give a concert at the Savoy Theatre in Helsinki on Thursday 23 April 2026.</p><p>Levi.Sct (Levi Schechtmann, b. 1999) is a genre-bending German pianist who combines musical styles in an open-minded way while reforming experiences of classical music concerts. He combines the musical worlds created by Bach and Chopin with contemporary influences, such as hip hop and house rhythms. The result is a bold, cinematic and immersive soundscape.</p><p>Levi.Sct, who has become one of the most followed piano talents of his generation, has attracted attention on social media, amassing over 1.2 million followers on Instagram in a short period of time. The artist, who is just taking the first steps in his career, has already performed in prestigious concert halls such as the Elbphilharmonie in Hamburg and the Flagey in Brussels. The artist has been praised for his performances, which bring a new energy to classical music through their intense and immersive nature.</p><p>Doors open at 18:00.</p>"
            },
            "name": {
                "fi": "Levi.Sct",
                "sv": "Levi.Sct",
                "en": "Levi.Sct"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Live Nation Finland Oy",
                "sv": "Live Nation Finland Oy",
                "en": "Live Nation Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66998/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67595",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "sv": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "en": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494103,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T10:12:54.343688Z",
                    "last_modified_time": "2025-12-05T10:12:54.343708Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494103/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T10:12:54.241230Z",
            "last_modified_time": "2026-03-20T01:14:09.989861Z",
            "date_published": null,
            "start_time": "2026-04-23T16: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,
            "short_description": {
                "fi": "Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.",
                "sv": "Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.",
                "en": "The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "en": "http://www.malmitalo.fi/en/events/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_"
            },
            "description": {
                "fi": "<p>Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.</p><p>Jimi Tenor Band julkaisi taannoin ensimmäisen studioalbuminsa ”Selenites, Selenites!”. Levy äänitettiin pääosin Hampurissa keväällä 2025. Musiikillisesti ”Selenites, Selenites!” jatkaa afro-romanttis-kosmisella<br>linjalla.</p><p>Jimi Tenor Band on huippumuusikoista koostuva yhtye, jonka kokoonpano on seuraava:</p><p>Jimi Tenor – saksofoni, huilu, syntetisaattorit, laulu<br>Ekow Alabi Savage – rummut, perkussiot, laulu<br>Eeti Nieminen – rummut, perkussiot, laulu<br>Heikki Tuhkanen – pasuuna, tuuba, laulu<br>Lauri Kallio – kitara, basso, laulu</p><p>Kesto: 2 t, sis 20 min väliajan</p>",
                "sv": "<p>Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.</p><p>Jimi Tenor Band är ett band med toppmusiker med följande sammansättning:<br>Jimi Tenor – saxofon, flöjt, syntetisator, sång<br>Eeti Nieminen – trummor, perkussion, sång <br>Heikki Tuhkanen – basun, tuba, sång <br>Lauri Kallio – gitarr, bas, sång</p>",
                "en": "<p>The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk.</p><p>Jimi Tenor Band consists of the following top musicians:<br>Jimi Tenor – saxophone, flute, synthesisers, vocals<br>Eeti Nieminen – drums, percussion, vocals <br>Heikki Tuhkanen – trombone, tuba, vocals <br>Lauri Kallio – guitar, bass, vocals</p>"
            },
            "name": {
                "fi": "Jimi Tenor Band – MalmiJazz",
                "sv": "Jimi Tenor Band – MalmiJazz",
                "en": "Jimi Tenor Band – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67595/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68069",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333686/",
                        "sv": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333686/",
                        "en": "https://www.lippu.fi/event/circo-aereo-circo-aereo-pyorre-annantalo-21333686/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494893,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-18T12:13:30.775837Z",
                    "last_modified_time": "2026-02-18T12:13:30.775854Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778227.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494893/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-18T12:13:30.563251Z",
            "last_modified_time": "2026-03-20T01:14:09.731812Z",
            "date_published": null,
            "start_time": "2026-04-23T15: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,
            "short_description": {
                "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.",
                "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.",
                "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E3183ADE4894A9427DE50E5BF3496E76/Circo_Aereo_Pyorre_Ensi-ilta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E3183ADE4894A9427DE50E5BF3496E76/Circo_Aereo_Pyorre_Virvel",
                "en": "http://www.annantalo.fi/en/events/event/E3183ADE4894A9427DE50E5BF3496E76/Circo_Aereo_Pyorre"
            },
            "description": {
                "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi esineet, materiaalit myös äänen ja valon.</p><p>Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä,tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen.</p><p>Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän. Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.  Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla.</p><p>Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella. Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p>",
                "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara föremål och material, utan också ljud och ljus.</p><p>Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser,stämningar och bilder.<br> <br>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse. Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.  Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter.</p><p>Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>",
                "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only objects and materials, but also sound and light.</p><p>Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement. Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.</p><p>The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>"
            },
            "name": {
                "fi": "Circo Aereo: Pyörre (Ensi-ilta)",
                "sv": "Circo Aereo: Pyörre – Virvel",
                "en": "Circo Aereo: Pyörre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68069/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68093",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494827,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T09:13:06.243504Z",
                    "last_modified_time": "2026-02-10T09:13:06.243542Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780509.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T09:13:06.087621Z",
            "last_modified_time": "2026-03-20T01:14:09.548738Z",
            "date_published": null,
            "start_time": "2026-04-23T15: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,
            "short_description": {
                "fi": "Tämän nuoren liettualaisen pianovirtuoosin konserttiohjelma ulottuu barokin eleganssista intohimoiseen romantiikan aikaan.",
                "sv": "Denna unga litauiska pianovirtuos bjuder på ett konsertprogram som sträcker sig från barockens elegans till den passionerade romantikens tid.",
                "en": "This young Lithuanian piano virtuoso’s concert programme ranges from Baroque elegance to passionate Romanticism."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/918652C8591EB1FEED4BCECDBB5CD946/Flyygelikuu_Gabriel_Bajorait_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/918652C8591EB1FEED4BCECDBB5CD946/Flyygelikuu_Gabriel_Bajorait_",
                "en": "http://www.vuotalo.fi/en/events/event/918652C8591EB1FEED4BCECDBB5CD946/Flyygelikuu_Gabriel_Bajorait_"
            },
            "description": {
                "fi": "<p>Tämän nuoren liettualaisen pianovirtuoosin konserttiohjelma ulottuu barokin eleganssista intohimoiseen romantiikan aikaan.</p><p>Teokset tutkivat musiikin muuttuvaa kieltä tarkkuudesta ja hillitystä tyylikkyydestä vapauteen ja tulisuuteen.</p><p>Gabrielė Agilė Bajoraitė valmistui M. K. Čiurlionisin taidekoulusta vuonna 2020. Samana vuonna hän jatkoi opintojaan Liettuan musiikki- ja teatteriakatemiassa. Vuonna 2025 hän suoritti Sibelius-Akatemiassa kandidaatin tutkinnon Niklas Pokin luokalla, ja jatkaa nyt maisteriopintojaan Tuija Hakkilan ja Antti Siiralan johdolla.<br> <br>Gabrielė on esiintynyt Liettuan merkittävimmissä konserttisaleissa, mutta myös konsertoinut Puolassa, Virossa, Tanskassa, Islannissa ja Suomessa. Vuonna 2024 hän voitti Yamaha-säätiön apurahan Suomen jaossa, ja hänen viimeisin saavutuksensa on kolmas palkinto Suomen arvostetuimmassa kansallisessa kilpailussa, Tampereen pianokilpailussa toukokuussa 2025.<br> <br>Pianisti on osallistunut mestarikursseille, joita ovat pitäneet muun muassa Pavel Nersesiyan, Mūza Rubackytė, Ana Malikova, Philip Gusiano, Andrius Žlabys, Vera Nosina, Erik T. Tawaststjerna, William Fong, Fabio Bidini ja Jonathan Biss</p><p>Kesto noin 45 min<br>Vapaa pääsy</p>",
                "sv": "<p>Denna unga litauiska pianovirtuos bjuder på ett konsertprogram som sträcker sig från barockens elegans till den passionerade romantikens tid.</p><p>Verken utforskar musikens föränderliga språk, från exakthet och behärskad stil till frihet och eldighet.</p><p>Gabrielė Agilė Bajoraitė tog examen från M. K. Čiurlionis konstskola 2020. Samma år fortsatte hon sina studier vid Litauens musik- och teaterakademi. År 2025 avlade hon en kandidatexamen vid Sibelius-Akademin i Niklas Pokkis klass, och nu avlägger hon magisterstudier under ledning av Tuija Hakkila och Antti Siirala.<br> <br>Gabrielė har uppträtt i de mest betydande konserthusen i Litauen, men har också gett konserter i Polen, Estland, Danmark, Island och Finland. År 2024 vann hon ett stipendium från Yamaha-stiftelsen i utdelningen i Finland, och hennes senaste prestation är tredje pris i Finlands mest prestigefyllda nationella tävling, pianotävlingen i Tammerfors, i maj 2025.<br> <br>Pianisten har deltagit i mästarkurser med bland andra Pavel Nersesiyan, Mūza Rubackytė, Ana Malikova, Philip Gusiano, Andrius Žlabys, Vera Nosina, Erik T. Tawaststjerna, William Fong, Fabio Bidini och Jonathan Biss</p><p>Längd cirka 45 min<br>Fritt inträde</p>",
                "en": "<p>This young Lithuanian piano virtuoso’s concert programme ranges from Baroque elegance to passionate Romanticism.</p><p>The works explore the changing language of music, from precision and understated elegance to freedom and fire.</p><p>Gabrielė Agilė Bajoraitė graduated from National M. K. Čiurlionis School of Art in 2020. The same year, she continued her studies at the Lithuanian Academy of Music and Theatre. In 2025, she completed her bachelor’s degree at Sibelius Academy under Niklas Pokki, and she is now pursuing her master’s degree under Tuija Hakkila and Antti Siirala.<br> <br>Gabrielė has performed in the most important concert halls in Lithuania, but she has also given concerts in Poland, Estonia, Denmark, Iceland and Finland. In 2024, she won a Yamaha Foundation scholarship in the Finnish division, and her latest achievement is third prize in Finland’s most prestigious national competition, the Tampere Piano Competition, in May 2025.<br> <br>The pianist has participated in masterclasses held by artists such as Pavel Nersesiyan, Mūza Rubackytė, Ana Malikova, Philip Gusiano, Andrius Žlabys, Vera Nosina, Erik T. Tawaststjerna, William Fong, Fabio Bidini and Jonathan Biss.</p><p>Duration: roughly 45 min<br>Free entry</p>"
            },
            "name": {
                "fi": "Flyygelikuu: Gabrielė Bajoraitė",
                "sv": "Flyygelikuu: Gabrielė Bajoraitė",
                "en": "Flyygelikuu: Gabrielė Bajoraitė"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68093/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68070",
            "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:46/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494903,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T11:13:02.455719Z",
                    "last_modified_time": "2026-02-19T11:13:02.455739Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494903/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T11:13:02.290907Z",
            "last_modified_time": "2026-03-20T01:14:09.250836Z",
            "date_published": null,
            "start_time": "2026-04-23T07: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,
            "short_description": {
                "fi": "Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.",
                "sv": "Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.",
                "en": "Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1D1F7FBC665C5744C311D169E0ED5E93/Circo_Aereo_Pyorre",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1D1F7FBC665C5744C311D169E0ED5E93/Circo_Aereo_Pyorre_Virvel",
                "en": "http://www.annantalo.fi/en/events/event/1D1F7FBC665C5744C311D169E0ED5E93/Circo_Aereo_Pyorre"
            },
            "description": {
                "fi": "<p>Pyörre on sirkustaiteilija Eetu Rannan sooloesitys kaikille yli 5-vuotiaille.</p><p>Akrobatian ja jongleerauksen luoma pyörivä, hypnoottinen liike saa mukaansa paitsi<br>esineet, materiaalit myös äänen ja valon. Pyörre on yhdistelmä erilaisia sirkuslajeja ja niiden kohtaamisia - kokoelma liikkeitä, tunnelmia ja mielikuvia.</p><p>Esitystä varten on kerätty eri kulttuureissa, eri puolilla maailmaa käytettyjä leluja ja työvälineitä, joiden käsittely vaatii taitoa ja tuntemusta fysiikan lakien vaikutuksesta liikkeeseen. Alun perin luonnonmateriaaleista tehdyt välineet, kuten kotilon kuoresta tehty nigerialainen rascal-hyrrä, meksikolainen lasso tai kiinalainen diabolo saavat esityksessä uuden käsittelyn ja elämän.</p><p>Taidokkaasti käsiteltynä esineiden pyörivän, hypnoottisen liikkeen tuottamat äänet luovat mielikuvia luonnon ilmiöistä, kuten tuulesta tai myrskystä, jotka tuntuvat vaikuttavan esiintyjän liikkeisiin ja koreografiaan.</p><p>Eetu Ranta on poikkeuksellisen laaja-alainen uuden sukupolven nykysirkustaiteilija. Hän on työskennellyt Suomessa mm. Circo Aereon, Race Horse Companyn, Tanssiteatteri Hurjaruuthin ja Suomen kansallisoopperan teoksissa.</p><p>Kesto n. 45 minuuttia<br>Ikäsuositus 5+<br>Esiintyminen ja koreografia: Eetu Ranta<br>Suunnittelu: Eetu Ranta ja Maksim Komaro<br>Valosuunnittelu: Juho Rahijärvi<br>Äänisuunnittelu: Ranta ja Komaro<br>Kuvat: Juho Rahijärvi<br>Tuotanto: Circo Aereo yhteistyössä Annantalon kanssa</p><p>Suomen ensimmäinen ja pisimpään toiminut nykysirkusryhmä Circo Aereo on Annantalon residenssiryhmä vuonna 2026.</p><p>Ryhmän taiteellisella työllä ja teoksilla on ollut keskeinen merkitys uuden sirkuksen kehityksessä itsenäiseksi taidemuodoksi Suomessa sekä suomalaisen sirkustaiteen kansainvälisessä läpimurrossa 2000-luvulla. Ryhmän monitaiteisia esityksiä on nähty tuhansia kertoja yli 40:ssä maassa viidellä eri mantereella.</p><p>Ryhmä työskentelee paitsi sirkuksen myös esine- ja liiketeatterin, kuvataiteen, tanssin ja musiikin ammattilaisten kanssa.</p><p>ryhmille, paikkavaraukset 23.3. klo 8.00 alkaen, kultus.hel.fi</p>",
                "sv": "<p>Pyörre är en soloföreställning av cirkusartisten Eetu Ranta för alla över 5 år.</p><p>Den virvlande, hypnotiska rörelse som skapas genom akrobatik och jonglering fångar inte bara<br>föremål och material, utan också ljud och ljus. Pyörre är en kombination av olika cirkuskonster och mötet mellan dem – en samling rörelser, stämningar och bilder.</p><p>Till föreställningen har man samlat leksaker och redskap som används i olika kulturer runt om i världen och som kräver skicklighet och kunskap om de fysikaliska lagar som påverkar rörelse.</p><p>Redskapen, som ursprungligen tillverkats av naturmaterial, till exempel en nigeriansk rascalsnurra gjord av snäckskal, en mexikansk lasso eller en kinesisk diabolo, hanteras på ett nytt sätt och<br>får nytt liv i föreställningen.</p><p>I skickliga händer skapar ljuden från den virvlande, hypnotiska rörelsen som föremålen ger upphov till bilder av naturfenomen som vind eller stormar som verkar påverka artistens rörelser och koreografi.</p><p>Eetu Ranta är en exceptionellt mångsidig nutida cirkusartist av den nya generationen. I Finland har han arbetat med bland annat Circo Aereo, Race Horse Company, dansteatern Hurjaruuth och Finlands nationalopera.</p><p>Längd: ca 45 minuter<br>Åldersrekommendation: 5+<br>Framförande och koreografi: Eetu Ranta<br>Planering: Eetu Ranta och Maksim Komaro<br>Ljusdesign: Juho Rahijärvi<br>Ljuddesign: Ranta och Komaro<br>Bilder: Juho Rahijärvi<br>Produktion: Circo Aereo i samarbete med Annegården</p><p>Circo Aereo, Finlands första och äldsta nutida cirkusgrupp, är en av Annegårdens residensgrupper 2026.  Gruppens konstnärliga arbete och verk har spelat en nyckelroll i utvecklingen av den nutida cirkusen som en självständig konstform i Finland samt i den finska cirkuskonstens internationella genombrott under 2000-talet.</p><p>Gruppens tvärkonstnärliga föreställningar har visats tusentals gånger i mer än 40 länder på fem kontinenter. Gruppen arbetar inte bara med cirkus utan även med professionella inom föremåls- och rörelseteater, bildkonst, dans och musik.</p>",
                "en": "<p>Pyörre (‘Vortex’) is a solo performance by circus artist Eetu Ranta for everyone over the age of 5.</p><p>The swirling, hypnotic movement created by acrobatics and juggling incorporates not only<br>objects and materials, but also sound and light. Pyörre is a combination of different circus acts and their encounters – a collection of movements, moods and mental images.</p><p>For the performance, Ranta collected toys and tools used in different cultures around the world, which require skill and knowledge of how the laws of physics affect movement. Items made originally from natural materials, such as a Nigerian rascal top made of a snail shell, a Mexican lasso or a Chinese diabolo, receive a new treatment and life in the performance.</p><p>When handled skilfully, the sounds produced by the swirling, hypnotic movement of the items conjure up mental images of natural phenomena, such as wind or storms, that appear to influence the performer’s movements and choreography.</p><p>Eetu Ranta is an exceptionally wide-ranging new-generation contemporary circus artist. He has been featured in Finland in works by groups such as Circo Aereo, Race Horse Company, Dance Theatre Hurjaruuth and the Finnish National Opera.</p><p>Duration: roughly 45 min<br>Recommended age: 5+<br>Performance and choreography: Eetu Ranta<br>Design: Eetu Ranta and Maksim Komaro<br>Lighting design: Juho Rahijärvi<br>Sound design: Ranta and Komaro<br>Images: Juho Rahijärvi<br>Production: Circo Aereo in collaboration with Annantalo</p><p>Circo Aereo, Finland’s first and longest-running contemporary circus group, will be a resident group of Annantalo in 2026.  The group’s artistic work has played a key role in the development of new circus into an independent art form in Finland and in the international breakthrough of Finnish circus art in the 21st century.</p><p>The group’s multi-artistic performances have been seen thousands of times in more than 40 countries on five continents. In addition to circus, the group also works with professionals of object and movement theatre, visual arts, dance and music.</p>"
            },
            "name": {
                "fi": "Circo Aereo: Pyörre",
                "sv": "Circo Aereo: Pyörre – Virvel",
                "en": "Circo Aereo: Pyörre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68070/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67261",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4025001",
                        "sv": "https://www.lippu.fi/eventseries/name-4025001",
                        "en": "https://www.lippu.fi/eventseries/name-4025001"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,50 €",
                        "sv": "38,50 €",
                        "en": "38,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493768,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-11T07:12:08.853005Z",
                    "last_modified_time": "2025-11-11T07:12:08.853016Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780775.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493768/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-11T07:12:08.745395Z",
            "last_modified_time": "2026-03-20T01:14:08.802833Z",
            "date_published": null,
            "start_time": "2026-04-22T16: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,
            "short_description": {
                "fi": "Tähdet, Tähdet 2025 -kilpailun voittajaksi kruunatun Mikko Töyssyn ensimmäinen soolokonserttikiertue starttaa keväällä 2026. Ilta Mikko Töyssyn kanssa on viihteen monitaiturille unelmien täyttymys -oma konserttikiertue, jossa yhdistyvät musiikki, tarinat ja Tökälle ominainen huumori.",
                "sv": "Mikko Töyssy, som korades till vinnare av tävlingen Tähdet, Tähdet 2025, ger sig ut på sin första soloturné våren 2026. Ilta Mikko Töyssyn kanssa är en dröm som går i uppfyllelse för den mångsidige underhållaren – en egen konsertturné som kombinerar musik, berättelser och Tökäs särpräglade humor.",
                "en": "Mikko Töyssy, winner of the Tähdet, Tähdet 2025 competition, will embark on his first solo concert tour in spring 2026. An Evening with Mikko Töyssy is a dream come true for the multi-talented entertainer – a special concert tour that combines music, stories and Tökä’s characteristic humour."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/015857E762196899BD10CA1EEF650D12/Ilta_Mikko_Toyssyn_kanssa",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/015857E762196899BD10CA1EEF650D12/Ilta_Mikko_Toyssyn_kanssa",
                "en": "http://www.savoyteatteri.fi/en/events/event/015857E762196899BD10CA1EEF650D12/An_Evening_with_Mikko_Toyssy"
            },
            "description": {
                "fi": "<p>Tähdet, Tähdet 2025 -kilpailun voittajaksi kruunatun Mikko Töyssyn ensimmäinen soolokonserttikiertue starttaa keväällä 2026. Ilta Mikko Töyssyn kanssa on viihteen monitaiturille unelmien täyttymys -oma konserttikiertue, jossa yhdistyvät musiikki, tarinat ja Tökälle ominainen huumori.</p><p><b>Ilta täynnä tunnelmaa, huumoria ja ikivihreitä</b><br>Konsertissa kuullaan yleisön rakastamia kappaleita – ikivihreitä klassikoita ja latinalaisvaikutteisia rytmejä. Konsertissa säväyttävät muun muassa Puhu hiljaa rakkaudesta, Canción del Mariachi, Caruso, Kohtalokas samba, Nessun dorma sekä Eloon!<br>Ilta on syntynyt halusta esittää kappaleita, jotka ovat koskettaneet Tökää ja kulkeneet hänen mukanaan matkalla tehtailta tähtiin. Töyssyä säestää Tähdet Tähdet -ohjelmastakin tuttu, Risto Niinikosken kipparoima yhtye.</p><p><b>Laulaja, näyttelijä ja viihteen kauhakuormaaja</b><br>Valkeakoskella vuonna 1981 syntynyt Mikko Töyssy on viihteen monitaituri, joka on tehnyt uraa näyttelijänä, laulajana ja juontajana niin televisiossa, elokuvissa, radiossa kuin näyttämölläkin. Tähdet, Tähdet -ohjelman yhdeksännen kauden finaalissa Töyssy hurmasi tuomarit ja yleisön Giacomo Puccinin oopperasta Durandot tutulla Nessun dorma aarialla ja Canción Del Mariachinilla elokuvasta Desperado. Hän viihdytti Putous-ohjelmassa neljän kauden ajan vuosina 2020-2023, ja voitti sketsihahmokilpailun kahdesti. Töyssyn on mukana tv-sarjassa Modernit miehet. Hän on esiintynyt lukuisissa elokuvissa, kuten Tuntematon sotilas, Napapiirin sankarit 4 ja Punttikomedia. Näyttämöllä hänet on nähty musiikkinäytelmissä ja komedioissa ympäri Suomen.</p><p>https://mikkotoyssy.fi/</p><p>Kesto n. 2 tuntia, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Mikko Töyssy, som korades till vinnare av tävlingen Tähdet, Tähdet 2025, ger sig ut på sin första soloturné våren 2026. Ilta Mikko Töyssyn kanssa är en dröm som går i uppfyllelse för den mångsidige underhållaren – en egen konsertturné som kombinerar musik, berättelser och Tökäs särpräglade humor.</p><p>En kväll full av stämning, humor och evergreens<br>Konserten bjuder på älskade låtar – klassiska evergreens och latininspirerade rytmer. Vi får bland annat höra Puhu hiljaa rakkaudesta, Canción del Mariachi, Caruso, Kohtalokas samba, Nessun dorma och Eloon!<br>Kvällen är född ur en önskan att framföra låtar som har berört Töka och följt honom på hans resa från fabrikerna till stjärnorna. Töyssy ackompanjeras av ett band som leds av Risto Niinikoski, även han känd från programmet Tähdet, Tähdet.</p><p>Sångare, skådespelare och underhållare<br>Mikko Töyssy, född i Valkeakoski 1981, är en mångsidig underhållare som har gjort karriär som skådespelare, sångare och programledare i tv, film, radio och på scenen. I finalen av den nionde säsongen av Tähdet, Tähdet imponerade Töyssy på juryn och publiken med arian Nessun dorma från Giacomo Puccinis opera Turandot och Canción Del Mariachi från filmen Desperado. Han var med i Putous under fyra säsonger mellan 2020 och 2023 och vann sketchtävlingen två gånger. Töyssy är med i tv-serien Moderna män. Han har medverkat i ett flertal filmer, bl.a. Okänd soldat, Napapiirin sankarit 4 och Punttikomedia. På scenen har han medverkat i musikföreställningar och komedier över hela Finland.</p><p>Längd ca 2 timmar, inklusive paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Mikko Töyssy, winner of the Tähdet, Tähdet 2025 competition, will embark on his first solo concert tour in spring 2026. An Evening with Mikko Töyssy is a dream come true for the multi-talented entertainer – a special concert tour that combines music, stories and Tökä’s characteristic humour.</p><p>An evening full of atmosphere, humour and evergreens<br>The concert will feature songs loved by the public – evergreen classics and Latin-inspired rhythms. The setlist will feature numbers such as Puhu hiljaa rakkaudesta, Canción del Mariachi, Caruso, Kohtalokas samba, Nessun dorma and Eloon!<br>The evening was born out of a desire to perform songs that have touched Tökä and accompanied him on his journey from factory floors to the stars. Töyssy will be accompanied by a band led by Risto Niinikoski, also known from the programme Tähdet, Tähdet.</p><p>Singer, actor and entertainment juggernaut<br>Born in Valkeakoski in 1981, Mikko Töyssy is a multi-talented entertainer who has made a career as an actor, singer and presenter on television, in films, on radio and on stage. In the final of the ninth season of Tähdet, Tähdet, Töyssy wowed the judges and the audience with the Nessun dorma aria from Giacomo Puccini’s opera Durandot and Canción Del Mariachini from the film Desperado. He entertained viewers on Putous for four seasons between 2020 and 2023 and won the sketch character competition twice. Töyssy is featured in the TV series Modernit miehet. He has appeared in numerous films, including The Unknown Soldier, Lapland Odyssey 4 and Witness the Fitness. On stage, he has appeared in musical plays and comedies all over Finland.</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>"
            },
            "name": {
                "fi": "Ilta Mikko Töyssyn kanssa",
                "sv": "Ilta Mikko Töyssyn kanssa",
                "en": "An Evening with Mikko Töyssy"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lada Productions Oy",
                "sv": "Lada Productions Oy",
                "en": "Lada Productions Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67261/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68092",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494824,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T08:12:08.213092Z",
                    "last_modified_time": "2026-02-10T08:12:08.213103Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783885.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494824/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T08:12:08.167323Z",
            "last_modified_time": "2026-03-20T01:14:07.982055Z",
            "date_published": null,
            "start_time": "2026-04-22T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/78C670D44CA8E4C0F3713ED261872D5D/Skidikino_S_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/78C670D44CA8E4C0F3713ED261872D5D/Skidikino_S_",
                "en": "http://www.vuotalo.fi/en/events/event/78C670D44CA8E4C0F3713ED261872D5D/Skidikino_S_"
            },
            "description": {
                "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton <br>Kesto: n. 30 min</p><p>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi<br>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.<br> <br>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus<br> <br>Längd: ca. 30 min<br>Språk: ordlös<br>Anmälan för grupper på kultus.hel.fi<br>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus<br> <br>Duration: 30 min<br>Language: no dialogue<br>Registration for daycare groups at kultus.hel.fi<br>More information: salla.fornaro@hel.fi</p>"
            },
            "name": {
                "fi": "Skidikino (S) – Myyrä ja kotka",
                "sv": "Skidikino (S) – Myyrä ja kotka",
                "en": "Skidikino (S) – Myyrä ja kotka"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68092/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67876",
            "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: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/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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494511,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T13:13:44.992819Z",
                    "last_modified_time": "2026-01-16T13:13:44.992841Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780533.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494511/?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-01-16T13:13:44.819301Z",
            "last_modified_time": "2026-03-20T01:14:07.809739Z",
            "date_published": null,
            "start_time": "2026-04-22T07:00:00Z",
            "end_time": "2026-04-22T09: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,
            "short_description": {
                "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!",
                "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!",
                "en": "In these imaginatively modified play environments, play gets to run wild!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FF3213435B006D043370C46B458671A4/Taideleikit_leikin_oma_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/FF3213435B006D043370C46B458671A4/Konstlekar_en_egen_plats_for_lek",
                "en": "http://www.annantalo.fi/en/events/event/FF3213435B006D043370C46B458671A4/Art_games_a_space_for_play"
            },
            "description": {
                "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin.</p><p>Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen   <br>Aika: 10–12 (nonstop)  <br>Ikäryhmä: 0-3v<br>Kieli: suomi    <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>",
                "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.  <br>Regi: Noora Puranen   <br>Tid: kl. 10–12 (non-stop)  <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>",
                "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen   <br>Time: 10.00–12.00 (non-stop)  <br>Age group: 0–3<br>Language: Finnish    <br>Free of charge</p>"
            },
            "name": {
                "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa",
                "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen",
                "en": "Art games – a space for play – Children aged 0–3 with an adult"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67876/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67804",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494385,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T15:13:15.436187Z",
                    "last_modified_time": "2026-01-05T15:13:15.436201Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782915.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494385/?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-01-05T15:13:15.340590Z",
            "last_modified_time": "2026-03-20T01:14:07.646591Z",
            "date_published": null,
            "start_time": "2026-04-22T06: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,
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.",
                "en": "Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D5321F60AF4C1D3C0F4C6F3387D332E7/Skidikino_Muumien_maailma",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D5321F60AF4C1D3C0F4C6F3387D332E7/Skidikino_Mumintrollens_varld",
                "en": "http://www.stoa.fi/en/events/event/D5321F60AF4C1D3C0F4C6F3387D332E7/Skidikino_The_world_of_Moomins"
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä 2026 nähdään rakastetun Muumiperheen seikkailuja restauroidun klassikko-nukkeanimaation muodossa. Maaliskuun Skidikinossa seurataan talvisia tarinoita, ja huhtikuussa ollaan jo keväisemmissä tunnelmissa.<br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>ikäsuositus: Päiväkoti-ikäisille  <br>Paikka: teatterisali<br>Kesto n. 35-40 min  <br>Kieli: suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: Kultus.hel.fi 13.1. klo 10 alkaen. <br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.</p><p>Våren 2026 får vi se den älskade muminfamiljens äventyr i form av en restaurerad klassisk dockanimation. På Skidikino i mars får vi ta del av vinterberättelser, och i april är det redan vårstämning.<br> <br>Till Skidikino hör Pikkukroko-läromedel, som kan laddas ner från Stoas webbplats. Biobesök är temat i det illustrerade materialet.</p><p>Åldersrekommendation: Barn i daghemsåldern  <br>Plats: teatersalen<br>Längd: cirka 35–40 min.  <br>Språk: finska  <br>Fri entré, obligatorisk anmälan för grupper: Kultus.hel.fi från 13.1 kl. 10.</p>",
                "en": "<p>Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them.</p><p>In spring 2026, the adventures of the beloved Moomin family will be presented in a restored classic puppet animation. In March, Skidikino will present winter stories, and in April, viewers will be treated to spring vibes.<br> <br>The Skidikino events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from the Stoa website. The illustrated material revolves around going to the cinema. <br> <br>Recommended age: For daycare-age children  <br>Location: theatre hall<br>Duration approx. 35–40 minutes  <br>Language: Finnish  <br>Free admission, registration required for groups: Kultus.hel.fi from 13 January from 10.00 onwards.</p>"
            },
            "name": {
                "fi": "Skidikino: Muumien maailma",
                "sv": "Skidikino: Mumintrollens värld",
                "en": "Skidikino: The world of Moomins"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67804/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68091",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494823,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T08:12:07.952817Z",
                    "last_modified_time": "2026-02-10T08:12:07.952830Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783884.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494823/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T08:12:07.865887Z",
            "last_modified_time": "2026-03-20T01:14:07.508541Z",
            "date_published": null,
            "start_time": "2026-04-22T06: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,
            "short_description": {
                "fi": "Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/56073FB9D17BC8C34525D58D6213C9FC/Skidikino_S_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/56073FB9D17BC8C34525D58D6213C9FC/Skidikino_S_",
                "en": "http://www.vuotalo.fi/en/events/event/56073FB9D17BC8C34525D58D6213C9FC/Skidikino_S_"
            },
            "description": {
                "fi": "<p>Kevään Skidikinossa moikataan myyrää! Myyrä saa uuden ystävän, pienen kotkan. Erilaisuudestaan huolimatta heidän ystävyytensä kestää jokaisen koettelemuksen.</p><p>Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa ihastuttavan riemukkaita hetkiä kaikenikäisille! Elokuvassa on musiikkisäestys. Soveltuu myös perheen pienimmille.</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. Vuotalo - Taidekasvatus</p><p>Kieli: sanaton <br>Kesto: n. 30 min</p><p>Ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi<br>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.<br> <br>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus<br> <br>Längd: ca. 30 min<br>Språk: ordlös<br>Anmälan för grupper på kultus.hel.fi<br>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus<br> <br>Duration: 30 min<br>Language: no dialogue<br>Registration for daycare groups at kultus.hel.fi<br>More information: salla.fornaro@hel.fi</p>"
            },
            "name": {
                "fi": "Skidikino (S) – Myyrä ja kotka",
                "sv": "Skidikino (S) – Myyrä ja kotka",
                "en": "Skidikino (S) – Myyrä ja kotka"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68091/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68217",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1609709,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-13T09:13:32.849562Z",
                    "last_modified_time": "2026-03-13T09:13:32.849576Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786278.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1609709/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T09:13:32.716363Z",
            "last_modified_time": "2026-03-20T01:14:06.340845Z",
            "date_published": null,
            "start_time": "2026-04-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,
            "short_description": {
                "fi": "Kino Caisa"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D0CEC94AAF9443E433C252C3E2B276B5/CaisaKallio_esittaa_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D0CEC94AAF9443E433C252C3E2B276B5/CaisaKallio_esittaa_",
                "en": "http://www.caisa.fi/en/events/event/D0CEC94AAF9443E433C252C3E2B276B5/CaisaKallio_esittaa_"
            },
            "description": {
                "fi": "<p>Kino Caisa</p><p>Caisa-Kallion maanantaissa nähdään lukiodiplomielokuvia ja muita kevään elokuvia. Luvassa fiktioita, dokumentteja, tanssielokuva ja musiikkivideo. Aiheina mm. täydellisyyden tavoittelu, ulkopuolisuus, ystävyys ja ihanat treffit Aladdinin tahtiin.</p><p>Vapaa pääsy.</p>"
            },
            "name": {
                "fi": "CaisaKallio esittää: – Median lukiodiplomeita ja muita elokuvia",
                "sv": "CaisaKallio esittää:",
                "en": "CaisaKallio esittää:"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68217/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/antti-autio-vuotalo-21050133/?affiliate=TFI#tab=",
                        "sv": "https://www.lippu.fi/event/antti-autio-vuotalo-21050133/?affiliate=TFI#tab=",
                        "en": "https://www.lippu.fi/event/antti-autio-vuotalo-21050133/?affiliate=TFI#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494140,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T16:13:15.652635Z",
                    "last_modified_time": "2025-12-08T16:13:15.652650Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780507.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494140/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T16:13:15.557798Z",
            "last_modified_time": "2026-03-20T01:14:05.507498Z",
            "date_published": null,
            "start_time": "2026-04-18T15: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,
            "short_description": {
                "fi": "Antti Autio konsertoi Vuotalossa uuden, viidennen albuminsa julkaisun kunniaksi.",
                "sv": "Antti Autio ger konsert på Nordhuset för att uppmärksamma lanseringen av sitt femte album.",
                "en": "Antti Autio will perform a concert at Vuotalo to celebrate the release of his fifth album."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AC3E3529ADE17DBC2895C6725754AF16/LOPPUUNMYYTY_Antti_Autio",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AC3E3529ADE17DBC2895C6725754AF16/SLUTSALT_Antti_Autio",
                "en": "http://www.vuotalo.fi/en/events/event/AC3E3529ADE17DBC2895C6725754AF16/SOLD-OUT_Antti_Autio"
            },
            "description": {
                "fi": "<p>Antti Autio konsertoi Vuotalossa uuden, viidennen albuminsa julkaisun kunniaksi.</p><p>Helmikuun lopussa julkaistava albumi ”Tie on maalattu maahan” kysyy: ovatko tiet ikuisia - ovatko ne olleet olemassa aina? Ja voiko teitä luoda itse? Syksyllä julkaistun singlen saattelemana Autio kutsuu kuuntelijansa Viimeiseen virtaan. \"Tää on se viimeinen elämä - uskallanko sen läpi kävellä?”</p><p>Antti Autio on yksi Suomen rakastetuimmista uuden polven laulaja-lauluntekijöistä. Autio soittaa yhtyeensä kanssa raikkaaseen ja vahvaan laululyriikkaan sekä polveilevaan kitarointiin pohjautuvaa suomenkielistä musiikkia. Voimakkaat ja vilpittömät kappaleet kaipuusta ja rakkaudesta ovat lumonneet kuulijat ympäri Suomen.</p><p>Aution musiikkia on kuunneltu Spotifyssa yli 22 miljoonan toiston verran ja artisti on nähty esiintyvän mm. Flow Festivalin päälavalla. Kriitikoiden arvostuksen osakseen saaneen artistin teoksia on noteerattu laajalti eri medioissa toistuvan ylistävään sävyyn. Kaikki talot huojuu -albumi ylitti kultalevyrajan syksyllä 2024.</p><p>Kesto: 2 t sis. väliajan</p>",
                "sv": "<p>Antti Autio ger konsert på Nordhuset för att uppmärksamma lanseringen av sitt femte album.</p><p>Albumet ”Tie on maalattu maahan”, som ges ut i slutet av februari, frågar: är vägarna eviga – har de alltid funnits? Och kan man själv skapa vägar? Med sin singel från i höstas bjuder Autio in lyssnaren till den sista strömmen. ”Det här är det sista livet – vågar jag gå igenom det?”</p><p>Antti Autio är en av Finlands mest älskade sångare och låtskrivare i den yngre generationen. Autio och hans band spelar finsk musik som baserar sig på en fräsch och stark sånglyrik och ett böljande gitarrspel. De starka och uppriktiga låtarna om längtan och kärlek har förtrollat lyssnare över hela Finland.</p><p>Autios musik har spelats över 22 miljoner gånger på Spotify och han har uppträtt bland annat på Flow Festivals huvudscen. Den kritikerrosade konstnärens verk har upprepade gånger lovordats i medierna. Albumet Kaikki talot huojuu nådde gränsen för en guldskiva hösten 2024.</p><p>Längd: 2 h inklusive paus</p>",
                "en": "<p>Antti Autio will perform a concert at Vuotalo to celebrate the release of his fifth album.</p><p>The album Tie on maalattu maahan (‘The Road is Painted onto the Ground’), to be released at the end of February, asks a question: are roads eternal – have they always been there? And can you create roads yourself? With the single Viimeiseen virtaan released last autumn, Autio invites the listener to join him in the titular final stream. “This is the last life – dare I walk through it?”</p><p>Antti Autio is one of Finland’s most beloved singer-songwriters of the new generation. Autio and his band play Finnish-language music based on fresh and strong song lyrics and adventurous guitar playing. Powerful and sincere songs about longing and love have enchanted listeners all over Finland.</p><p>Autio’s music has over 22 million plays on Spotify, and he has performed on the main stage of Flow Festival, among others. The critically acclaimed artist’s work has been widely addressed in various media outlets with recurring praise. The album Kaikki talot huojuu went gold in autumn 2024.</p><p>Duration: 2 h, incl. intermission</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY: Antti Autio – Levynjulkaisukiertue",
                "sv": "SLUTSÅLT: Antti Autio – Turné för skivsläpp",
                "en": "SOLD-OUT: Antti Autio – Album release tour"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}