Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
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
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=26
{ "meta": { "count": 23125, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=27", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=25" }, "data": [ { "id": "espoo_le:agplm3ka7m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwecy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385417, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-29T12:28:07.976896Z", "last_modified_time": "2026-06-29T12:28:07.976909Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b37d46cf-9e05-489e-9665-b8c4222d3e22.jpg", "name": "", "cropping": "320,0,1600,1280", "photographer_name": "Unsplash kuvapankki", "alt_text": "mikrofoni telineessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385417/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-11T10:53:18.131828Z", "last_modified_time": "2026-06-29T12:29:28.506660Z", "date_published": "2026-06-11T10:52:00Z", "start_time": "2026-07-08T10:30:00Z", "end_time": "2026-07-08T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesän karaoke & yhteislaulu", "sv": "Somrig karaoke & allsång", "en": "Summertime karaoke & sing along-sessions" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan laulamaan yksin tai yhdessä", "sv": "Välkommen att sjunga solo eller allsång", "en": "Welcome to sing songs together or solo" }, "info_url": null, "description": { "fi": "<p>Kirjasto järjestää kolme kesäistä lauluhetkeä heinäkuussa. Tapahtuma on kaikenikäisille ja -tasoisille laulajille.</p><p><strong>Tiistai 7.7. klo 13.30 (Jukeboksi)</strong></p><p><strong>Keskiviikko 8.7. klo 13.30 (Jukeboksi)</strong></p><p><strong>Torstai 9.7. klo 16.00 (Estradi)</strong></p><p>Tervetuloa mukaan!</p>", "sv": "<p>Biblioteket ordnar tre somriga sångtillfällen i juli. Evenemangen lämpar sig för alla åldrar och nivåer av sångare.</p><p><strong>Tistad 7.7. kl. 13.30 (Jukeboksi)</strong></p><p><strong>Onsdag 8.7. kl. 13.30 (Jukeboksi)</strong></p><p><strong>Torsdag 9.7. kl. 16.00 (Estradi)</strong></p><p>Välkommen med!</p>", "en": "<p>The library arranges three summery singing events in July. The events are suitable for everyone, regardless of age or level of singing.</p><p><strong>Tuesday 7.7.at 13.30 (Jukeboksi)</strong></p><p><strong>Wenesday 8.7. at 13.30 (Jukeboksi)</strong></p><p><strong>Thursday 9.7. at 16.00 (Estradi)</strong></p><p>Welcome to join us!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplm3ka7m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplmaetne", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwecy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385417, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-29T12:28:07.976896Z", "last_modified_time": "2026-06-29T12:28:07.976909Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b37d46cf-9e05-489e-9665-b8c4222d3e22.jpg", "name": "", "cropping": "320,0,1600,1280", "photographer_name": "Unsplash kuvapankki", "alt_text": "mikrofoni telineessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385417/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-06-11T09:11:26.504014Z", "last_modified_time": "2026-06-29T12:28:35.479004Z", "date_published": "2026-06-11T09:20:00Z", "start_time": "2026-07-07T10:30:00Z", "end_time": "2026-07-07T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesän karaoke & yhteislaulu", "sv": "Somrig karaoke & allsång", "en": "Summertime karaoke & sing along-sessions" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan laulamaan yksin tai yhdessä", "sv": "Välkommen att sjunga solo eller allsång", "en": "Welcome to sing songs together or solo" }, "info_url": null, "description": { "fi": "<p>Kirjasto järjestää kolme kesäistä lauluhetkeä heinäkuussa. Tapahtuma on kaikenikäisille ja -tasoisille laulajille. </p><p><strong>Tiistai 7.7. klo 13.30 (Jukeboksi) </strong></p><p><strong>Keskiviikko 8.7. klo 13.30 (Jukeboksi)</strong></p><p><strong>Torstai 9.7. klo 16.00 (Estradi)</strong></p><p>Tervetuloa mukaan!</p>", "sv": "<p>Biblioteket ordnar tre somriga sångtillfällen i juli. Evenemangen lämpar sig för alla åldrar och nivåer av sångare. </p><p><strong>Tistad 7.7. kl. 13.30 (Jukeboksi)</strong></p><p><strong>Onsdag 8.7. kl. 13.30 (Jukeboksi)</strong></p><p><strong>Torsdag 9.7. kl. 16.00 (Estradi)</strong></p><p>Välkommen med!</p>", "en": "<p>The library arranges three summery singing events in July. The events are suitable for everyone, regardless of age or level of singing. </p><p><strong>Tuesday 7.7.at 13.30 (Jukeboksi)</strong></p><p><strong>Wenesday 8.7. at 13.30 (Jukeboksi)</strong></p><p><strong>Thursday 9.7. at 16.00 (Estradi)</strong></p><p>Welcome to join us!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplmaetne/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68649", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385410, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:54.970848Z", "last_modified_time": "2026-06-29T12:13:54.970860Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791499.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:54.860864Z", "last_modified_time": "2026-06-29T12:13:55.152587Z", "date_published": null, "start_time": "2026-10-17", "end_time": "2026-10-18", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ylistys eläimille -festivaali – Tiede x taide x eläinten oikeudet", "sv": "Ylistys eläimille -festivaali – Tiede x taide x eläinten oikeudet", "en": "Ylistys eläimille -festivaali – Tiede x taide x eläinten oikeudet" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Ylistys eläimille on poikkitaiteellinen ja -tieteellinen festivaali, jonka sydämessä ovat eläinten oikeudet." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FDD50886256F155EF81D30AE6518ADF6/Ylistys_elaimille_-festivaali", "sv": "http://www.stoa.fi/sv/evenemang/event/FDD50886256F155EF81D30AE6518ADF6/Ylistys_elaimille_-festivaali", "en": "http://www.stoa.fi/en/events/event/FDD50886256F155EF81D30AE6518ADF6/Ylistys_elaimille_-festivaali" }, "description": { "fi": "<p>Ylistys eläimille on poikkitaiteellinen ja -tieteellinen festivaali, jonka sydämessä ovat eläinten oikeudet.</p><p>Festivaali on juhla, joka kokoaa yhteen niin samanmieliset kuin eläinten oikeuksia hieman kauempaakin tarkastelevat. Se rakentuu tutkijoiden puheenvuoroista, taiteilijoiden esityksistä ja eläinoikeustoimijoiden vuorovaikutuksesta.<br> <br>Tapahtuma levittäytyy Stoan eri tiloihin ja yhdistää näyttelyt, puheenvuorot ja esitykset. Se on samaan aikaan ajatuksia herättävä ja viihdyttävä: musiikkia, keskustelua, naurua, ruokaa ja juomaa.<br> <br>Ylistys eläimille ei ole pelkkä tapahtuma, se on tila, jossa eläin ei ole kohde vaan vahvasti läsnä. Tavoitteena on synnyttää vuosittain toistuva festivaali, joka yhdistää taiteen ja tutkimuksen tavalla, joka herättää tunteita, jakaa tietoa ja motivoi pitämään eläinten puolta myös jatkossa.<br> <br>Festivaalin sydämenä toimii <i>Todellisuus sellaisena, kuin se ei meille näyttäydy</i> -näyttely, joka jatkuu Stoan tiloissa tapahtuman jälkeen aina 22.11.2026 asti.</p><p>Ylistys eläimille -festivaalin järjestävät Eläinoikeusakatemia ja Häiriköt Päämaja.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68649/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69046", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 2385409, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:54.106677Z", "last_modified_time": "2026-06-29T12:13:54.106690Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792469.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385409/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:54.015191Z", "last_modified_time": "2026-06-29T12:13:54.230450Z", "date_published": null, "start_time": "2026-10-14T12:00:00Z", "end_time": "2026-10-14T13:35:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Syyslomaleffa: Koiramies (7)", "sv": "Syyslomaleffa: Koiramies (7)", "en": "Syyslomaleffa: Koiramies (7)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopäisessä mutta elintärkeässä leikkauksessa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AB08ACDC8AD29FB016FF492B56FE104C/Syyslomaleffa_Koiramies_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/AB08ACDC8AD29FB016FF492B56FE104C/Syyslomaleffa_Koiramies_7_", "en": "http://www.malmitalo.fi/en/events/event/AB08ACDC8AD29FB016FF492B56FE104C/Syyslomaleffa_Koiramies_7_" }, "description": { "fi": "<p>Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopäisessä mutta elintärkeässä leikkauksessa.</p><p>Tuloksena on Koiramies – kaikkien pulassa olevien sankari, joka osaa noutaa, istua ja kieriä!</p><p>Hyväksyttyään uuden olomuotonsa Koiramiehen on onnistuttava vakuuttamaan poliisipäällikkö lainvalvojan taidoistaan ja estettävä pahan superroistokissa Peten ilkeät aikeet. Petellä on uusi ovela suunnitelma: hän aikoo kloonata itsensä. Kissanpentu Pikku-Peten avulla hän aikoo tuplata mahdollisuutensa pahantekoon. Asiat kuitenkin mutkistuvat, kun Pikku-Peten ja Koiramiehen välille syntyy yllättävä yhteys.</p><p>Kun yhteinen vihollinen sieppaa Pikku-Peten, Koiramiehen ja Peten on yhdistettävä voimansa kissanpennun pelastamiseksi. Tapahtumien tiimellyksessä he oppivat, että perheellä (ja kissanpennuilla!) on voima yhdistää pahimmatkin viholliset.</p><p>Animaatioseikkailu Koiramies pohjautuu Dav Pilkeyn suosittuihin lastenkirjoihin ja sen tuo valkokankaille mm. Kung Fu Panda -elokuvasarjan luonut studio DreamWorks Animation.</p><p>Kesto: 1 t 35 min<br>Kieli: Puhuttu suomeksi<br>Ikäraja: 7</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69046/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69045", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 2385408, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:53.786755Z", "last_modified_time": "2026-06-29T12:13:53.786769Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792468.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385408/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:53.683070Z", "last_modified_time": "2026-06-29T12:13:53.911359Z", "date_published": null, "start_time": "2026-10-14T10:00:00Z", "end_time": "2026-10-14T11:35:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Syyslomaleffa: Koiramies (7)", "sv": "Syyslomaleffa: Koiramies (7)", "en": "Syyslomaleffa: Koiramies (7)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopäisessä mutta elintärkeässä leikkauksessa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B8E35356831D0C936F6E7C88144130ED/Syyslomaleffa_Koiramies_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B8E35356831D0C936F6E7C88144130ED/Syyslomaleffa_Koiramies_7_", "en": "http://www.malmitalo.fi/en/events/event/B8E35356831D0C936F6E7C88144130ED/Syyslomaleffa_Koiramies_7_" }, "description": { "fi": "<p>Kun uskollinen poliisikoira ja sen omistaja loukkaantuvat virantoimituksessa, kaksikko sulautetaan yhteen sekopäisessä mutta elintärkeässä leikkauksessa.</p><p>Tuloksena on Koiramies – kaikkien pulassa olevien sankari, joka osaa noutaa, istua ja kieriä!</p><p>Hyväksyttyään uuden olomuotonsa Koiramiehen on onnistuttava vakuuttamaan poliisipäällikkö lainvalvojan taidoistaan ja estettävä pahan superroistokissa Peten ilkeät aikeet. Petellä on uusi ovela suunnitelma: hän aikoo kloonata itsensä. Kissanpentu Pikku-Peten avulla hän aikoo tuplata mahdollisuutensa pahantekoon. Asiat kuitenkin mutkistuvat, kun Pikku-Peten ja Koiramiehen välille syntyy yllättävä yhteys.</p><p>Kun yhteinen vihollinen sieppaa Pikku-Peten, Koiramiehen ja Peten on yhdistettävä voimansa kissanpennun pelastamiseksi. Tapahtumien tiimellyksessä he oppivat, että perheellä (ja kissanpennuilla!) on voima yhdistää pahimmatkin viholliset.</p><p>Animaatioseikkailu Koiramies pohjautuu Dav Pilkeyn suosittuihin lastenkirjoihin ja sen tuo valkokankaille mm. Kung Fu Panda -elokuvasarjan luonut studio DreamWorks Animation.</p><p>Kesto: 1 t 35 min<br>Kieli: Puhuttu suomeksi<br>Ikäraja: 7</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69045/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69044", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 2385407, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:53.351348Z", "last_modified_time": "2026-06-29T12:13:53.351363Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792465.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385407/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:53.260329Z", "last_modified_time": "2026-06-29T12:13:53.479432Z", "date_published": null, "start_time": "2026-10-13T12:00:00Z", "end_time": "2026-10-13T13:47:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Syyslomaleffa: Paddington seikkailee (7)", "sv": "Syyslomaleffa: Paddington seikkailee (7)", "en": "Syyslomaleffa: Paddington seikkailee (7)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Paddington seikkailee vie marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/344E69FE273BE89D19C26B256640A103/Syyslomaleffa_Paddington_seikkailee_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/344E69FE273BE89D19C26B256640A103/Syyslomaleffa_Paddington_seikkailee_7_", "en": "http://www.malmitalo.fi/en/events/event/344E69FE273BE89D19C26B256640A103/Syyslomaleffa_Paddington_seikkailee_7_" }, "description": { "fi": "<p>Paddington seikkailee vie marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta.</p><p>Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Kesto: 1 t 47min<br>Kieli: Puhuttu suomeksi<br>Ikäraja: 7<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69044/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69043", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 2385406, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:53.027103Z", "last_modified_time": "2026-06-29T12:13:53.027123Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792464.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385406/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:52.923638Z", "last_modified_time": "2026-06-29T12:13:53.159127Z", "date_published": null, "start_time": "2026-10-13T10:00:00Z", "end_time": "2026-10-13T11:47:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Syyslomaleffa: Paddington seikkailee (7)", "sv": "Syyslomaleffa: Paddington seikkailee (7)", "en": "Syyslomaleffa: Paddington seikkailee (7)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Paddington seikkailee vie marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2B33EC4C500B8DAEBF09C1CF0C39C482/Syyslomaleffa_Paddington_seikkailee_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2B33EC4C500B8DAEBF09C1CF0C39C482/Syyslomaleffa_Paddington_seikkailee_7_", "en": "http://www.malmitalo.fi/en/events/event/2B33EC4C500B8DAEBF09C1CF0C39C482/Syyslomaleffa_Paddington_seikkailee_7_" }, "description": { "fi": "<p>Paddington seikkailee vie marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta.</p><p>Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Kesto: 1 t 47min<br>Kieli: Puhuttu suomeksi<br>Ikäraja: 7<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69043/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69042", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385405, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T12:13:52.154732Z", "last_modified_time": "2026-06-29T12:13:52.154749Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792460.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385405/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T12:13:52.004055Z", "last_modified_time": "2026-06-29T12:13:52.332221Z", "date_published": null, "start_time": "2026-10-08T15:00:00Z", "end_time": "2026-10-08T16:34:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kappale kauneinta Suomea – Doc Helios", "sv": "Kappale kauneinta Suomea – Doc Helios", "en": "Kappale kauneinta Suomea – Doc Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Koskettava tarina perheestä, rakkaudesta ja irtipäästämisen vaikeudesta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A733B270044741CF7E4F5C661C4E4247/Kappale_kauneinta_Suomea", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A733B270044741CF7E4F5C661C4E4247/Kappale_kauneinta_Suomea", "en": "http://www.malmitalo.fi/en/events/event/A733B270044741CF7E4F5C661C4E4247/Kappale_kauneinta_Suomea" }, "description": { "fi": "<p>Koskettava tarina perheestä, rakkaudesta ja irtipäästämisen vaikeudesta.</p><p>Muutoksen tuulet puhaltavat Teron elämässä. Paras ystävä Henri, oma poika, löytää rinnalleen tyttöystävän, ja pienessä mökissä ei ole enää tilaa neljälle. Isän ja koiran on muutettava omaan tupaan, josta manaajan on karkoitettava pahat henget. Yksinäisyys ja etäisyys poikaansa saa Teron elämän horjumaan ja Henrin huolestumaan isänsä hyvinvoinnista.</p><p><i>Kappale kauneinta Suomea – The Beauty of Errors</i> kertoo perheen sisäisistä riippuvuussuhteista, miten ne muuttuvat ja mikä merkitys perheellä on. Muutos heijastuu erityisesti Teroon, joka joutuu pohtimaan ehkä jopa itsestäänselvyytenä pitämiään asioita.</p><p>Isovanhemmat ovat aina huolehtineet pojistaan Terosta ja Henristä. Heikki-papan lonkkavaivat ja Pirjo-mummin ikääntyminen kääntävät asetelman päälaelleen. Samalla Tero joutuu kohtaamaan kipeän todellisuuden: Henri ei ole enää lapsi. Teron on opittava päästämään irti ja kohdattava maailma yksin.</p><p>Kesto: 1 t 34 min<br>Kieli: suomi<br>Ikäraja: 7<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69042/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprgvu5ui", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385411, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T09:48:24.717906Z", "last_modified_time": "2026-06-29T09:48:24.717920Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/02ec07ea-c18d-4656-84e1-aca8f5a1f44e.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Teemu Mattsson", "alt_text": "Harmonikkataiteilija Henna-Maija Kuki", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385411/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-06-29T11:25:20.943469Z", "last_modified_time": "2026-06-29T12:10:20.488843Z", "date_published": null, "start_time": "2026-09-03T12:00:00Z", "end_time": "2026-09-03T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Muistoja tanssilavoilta ", "sv": "Kulturkedjan - Minnen från dansbanorna ", "en": "Cultural Chain - Memories from dancefloors " }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly people. Performances are also organised in libraries." }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "description": { "fi": "Muistoja Tanssilavoilta<p><strong>Torstai 3.9.2026 klo 15.00 Ison Omenan kirjaston Stage</strong></p><p>Lämpimästi tervetuloa laulamaan, kuuntelemaan ja tanssimaan iki-ihania tanssimusiikkiklassikkoja ja kansansävelmiä! </p><p><strong>Henna-Maija Kuki</strong> harmonikka ja laulu<strong> </strong></p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p><strong>Nettisivut: </strong></p><p><a href=\"https://hennamaijakuki.wordpress.com/\">www.hennakuki.com</a></p><p><a href=\"https://www.facebook.com/acchenna/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/acchenna/ \">Instagram</a></p><p>--</p><p>Espoon kaupungin Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa. Esityksiä järjestetään syksyn puolella syyskuusta marraskuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 36 esitystä. Esitykset rantautuvat isoimpien tapahtumakirjastojen lisäksi myös Pohjois-Espooseen.</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p>", "sv": "Minnen från dansbanorna <p><strong>Torsdag 3.9.2026 kl. 15.00 på Iso Omena biblioteket Stage</strong></p><p>Varmt välkommen att sjunga, lyssna på och dansa till härliga klassiker av dansmusik och folkmelodier! </p><p><strong>Henna-Maija Kuki</strong> dragspel och sång </p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p><strong>Webbplats:</strong> </p><p><a href=\"https://hennamaijakuki.wordpress.com/\">www.hennakuki.com</a></p><p><a href=\"https://www.facebook.com/acchenna/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/acchenna/ \">Instagram</a></p><p>--</p><p>Esbo stads kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek. Föreställningar arrangeras under hösten från september till november.</p><p>Kulturkedjan bjuder på fantastiska 36 föreställningar till biblioteken. Föreställningar kommer att ordnas på de stora evenemangsbiblioteken och dessutom även i Norra Esbo.</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p>", "en": "Memories from dancefloors <p><strong>Thursday, 3.9.2026 at 3:00 p.m., Stage at the Iso Omena Library</strong></p><p>Warmly welcome to sing, listen and dance wonderful dance music classics and folk tunes! </p><p><strong>Henna-Maija Kuki</strong> Harmonica and vocals. </p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p><strong>Web address:</strong> </p><p><a href=\"www.hennakuki.com \">www.hennakuki.com </a></p><p><a href=\"https://www.facebook.com/acchenna/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/acchenna/ \">Instagram</a></p><p>--</p><p>Espoo City Culture Chain offers art and culture services to elderly people. Performances are also organised in libraries. Performances are organized in the fall, from September through November.</p><p>The Cultural Chain brings an impressive 36 performances to libraries.Performances will be held at the largest event libraries as well as in Northern Espoo.</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvu5ui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprgvvfs4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvu6sa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvu7ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvu7ly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvu7xq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvade/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvva2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvbfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvbqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvb3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvcgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvcri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvc6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvedy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvveo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvez4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvffy/?format=api" } ], "images": [ { "id": 2385412, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-29T11:38:25.851714Z", "last_modified_time": "2026-06-29T11:38:25.851728Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1986033d-5e7c-4348-ae5a-8eeddb7a5d65.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Läksykerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385412/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T11:38:45.527540Z", "last_modified_time": "2026-06-29T11:38:45.527557Z", "date_published": null, "start_time": "2026-08-18T10:30:00Z", "end_time": "2026-12-15T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Läksykerho", "en": "Homework club+" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Läksykerho", "en": "Homework club" }, "info_url": null, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p>Saat tarvittaessa apua koulutehtäviin</p><p>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</p><p>Piirrä, väritä, pelaa UNOa ja muita pelejä</p><p>Tarjolla pieni terveellinen välipala yhteistyössä K-Market Lippulaivan kanssa</p><p>Ei ilmoittautumista – tule mukaan kun haluat!</p>", "en": "<p>Come do your homework, read, play board games, color, and relax in a safe and welcoming space!</p><p>Get help with your schoolwork if needed</p><p>Quiet time for reading and shared reading moments</p><p>Draw, color, play UNO and other games</p><p>Enjoy a small healthy snack in collaboration with K-Market Lippulaiva</p><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprgvvfs4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69545", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "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/itaekuskus/#calendar-start=2026-01", "sv": "https://www.lippu.fi/artist/itaekuskus/#calendar-start=2026-01", "en": "https://www.lippu.fi/artist/itaekuskus/#calendar-start=2026-01" }, "description": null, "price": { "fi": "24,50 € / 19 €", "sv": "24,50 € / 19 €", "en": "24,50 € / 19 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385404, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T11:13:52.916472Z", "last_modified_time": "2026-06-29T11:13:52.916485Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792304.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385404/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T11:13:52.800321Z", "last_modified_time": "2026-06-29T11:13:53.064689Z", "date_published": null, "start_time": "2026-12-12T16:00:00Z", "end_time": "2026-12-12T18:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Itäkuskus stand-up -klubi", "sv": "Itäkuskus stand up-klubb", "en": "Itäkuskus stand up club" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"", "sv": "Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”", "en": "The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/158E52946E4F63A037F3E6C56DD02125/Itakuskus_stand-up_-klubi", "sv": "http://www.stoa.fi/sv/evenemang/event/158E52946E4F63A037F3E6C56DD02125/Itakuskus_stand_up-klubb", "en": "http://www.stoa.fi/en/events/event/158E52946E4F63A037F3E6C56DD02125/Itakuskus_stand_up_club" }, "description": { "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p><b>Aikataulu</b><br>klo 18 | ovet ja Teatterisalin baari avoinna<br>klo 19 | showtime</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on myös tuottaja ja MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun! Tule ja koe ainutlaatuinen Itäkuskus-show – monet käy joka kerta.\"</p><p>Klubia ei suositella herkkähipiäisille! Toisinaan poliittinen korrektius tuntuu illoissa kaukaiselta aatteelta. Roustauksesta saavat osansa niin Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot kuin suomenkieliset fraasitkin, joita edes kantasuomalaiset eivät aina osaa lausua oikein.</p><p>Yleisön suusta:<br>”Täällä kuulen erinomaista läppää, mitä muualla en kuule.” <br>”Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.”</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin; illat myydään nopeasti loppuun.<br>Klubi-illan tarjoiluista vastaa ravintola Box Stoa ja Teatterisalin baari aukeaa klo 18.00. Tule ajoissa ja varaa parhaat paikat.</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18 (salissa anniskelua)<br>Kieli: suomi, välillä huono soomi ja ehkä joskus esiintyjä vetää englanniksi</p>", "sv": "<p>Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”</p><p><b>Tidtabell</b><br>kl. 18 | dörrarna och Teatersalens bar öppna<br>kl. 19 | showtime<br>På klubben glömmer du dina bekymmer och din stress. Denna unika show sveper med dig på en resa mot öst och bjuder på dråplig komik, unika inblickar i kulturella skillnader och det finska språket. Varje föreställning har flera varierande komiker med invandrarbakgrund – och naturligtvis framträder också en varierande känd kvotfinländsk komiker varje kväll.</p><p>Underhållningsstjärnan Fabe uppträder på alla klubbar. Det går inte att undvika Fabes videor, som visas över en miljon gånger och delas över 50 000 gånger i månaden i Finland. Varför har klubben blivit ett fenomen? Fabe svarar: “För att finländarna älskar mitt handhår och att skämta om det. Med hjälp av humor kan vi hantera alla ämnen och sammanföra kulturer. Det här är något helt unikt och otroligt. Det är värt att komma på plats!”</p><p>En av Finlands mest mångsidiga komiker fungerar som värd för klubbkvällarna: Komikern Mebe! Mebe är också producent och MC! Han är sympatisk, liknar en teddybjörn och charmar publiken med sina vassa repliker och skämt! “Detta får du inte se eller höra någon annanstans, den dråpliga Itäkuskus-showen är full av overraskningar och unika skämt och observationer. Detta är som Fazers mjölkchoklad, man blir beroende med en gång! Kom och upplev den unika Itäkuskus-showen, vi är många som aldrig missar en enda.”</p><p>Klubben rekommenderas inte för ömhudade! På kvällarna kan politisk korrekthet vara blott en avlägsen tanke. Både Skatteverket, Alko, Vanda, invandrarnas kulturella skillnader och finska fraser som inte ens infödda finländare alltid kan uttala på rätt sätt får sin del av roastningen.</p><p>Sagt bland publiken:<br>“Vi vill stödja invandrarartister.” <br>“Här slänger man käft som ingen annanstans.” <br>“Ett fantastiskt koncept och en kväll full av fantastiska artister, var och en så olika och bra på sitt eget sätt.”</p><p>Kom och upplev showen själv och ta med dig dina vänner!<br>Det är bra att köpa biljetter i god tid, eftersom kvällarna säljer slut snabbt.<br>Restaurang Box Stoa svarar för serveringen under klubbkvällen.</p><p>Längd: ca 2,5 timmar<br>Åldersgräns: 18 år<br>Språk: finska</p>", "en": "<p>The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”</p><p><b>Schedule</b><br>18:00 | doors and Theater Hall bar open<br>19:00 | show time</p><p>At the club, you can forget about your worries and stress. This unique show takes you on a trip to the East with hilarious comedy and unique insights into cultural differences and the Finnish language. There are several rotating immigrant comedians at each gig – and, of course, there is also a rotating, well-known Finnish comedian every evening.</p><p>All clubs feature entertainer Fabe. Fabe’s videos will have been hard to avoid, as they accumulate more than a million views per month in Finland and have been shared more than 50,000 times. Why has the club become such a phenomenon? Fabe replies: “Because Finns love my arm hair and jokes about them. You can talk about anything and create connections between cultures through humour. This is something totally unique and unbelievable. Be there!”</p><p>Club evenings are hosted by one of the most versatile comedians in Finland: Mebe! Mebe is also a producer and an MC! He is a sympathetic teddy bear-like person who charms the audience with quick one-liners and jokes! “You can't see and hear this anywhere else: the hilarious Itäkuskus show is full of surprises, unique jokes and observations. This is like Fazer's milk chocolate – the first time is all it takes to get you hooked! Come and experience the unique Itäkuskus show, like many others that visit every time.”</p><p>The club is not recommended for people without thick skin! Sometimes political correctness feels like a distant ideal in these evenings. The Tax Authority, Alko, the City of Vantaa, the cultural differences between immigrants, as well as phrases in Finnish that even native Finns can't get right – nothing is safe from getting roasted.</p><p>From the audience:<br>“We want to support immigrant performers.” <br>“The jokes here are excellent, the kind I don't hear anywhere else.” <br>\"The concept is great and the evening is full of good performers, everyone so different from one another and good in their own way.”</p><p>Come and experience it for yourself and bring your friends!<br>We recommend buying tickets in advance, as the events sell out quickly.<br>Restaurant Box Stoa is responsible for service during the club evening.</p><p>Duration: approx. 2.5 hours<br>Age limit: 18+<br>Language: Mainly Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69545/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68644", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 2385403, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T11:13:45.978970Z", "last_modified_time": "2026-06-29T11:13:45.978985Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791403.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385403/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T11:13:45.855498Z", "last_modified_time": "2026-06-29T11:13:46.128090Z", "date_published": null, "start_time": "2026-10-17", "end_time": "2026-11-22", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Häiriköt-päämaja & Eläinoikeusakatemia: Todellisuus sellaisena, kuin se ei meille näyttäydy", "sv": "Häiriköt-päämaja & Eläinoikeusakatemia: Todellisuus sellaisena, kuin se ei meille näyttäydy", "en": "Häiriköt-päämaja & Eläinoikeusakatemia: Todellisuus sellaisena, kuin se ei meille näyttäydy" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Eläimet ovat edessäsi, takanasi, päälläsi ja sisälläsi. Et ehkä näe heitä, mutta he näkevät sinut." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6D30EC71F3AC39F303908DDBDC1112FD/Hairikot-paamaja_Elainoikeusakatemia_Todellisuus_sellaisena_kuin_se_ei_meille_nayttaydy", "sv": "http://www.stoa.fi/sv/evenemang/event/6D30EC71F3AC39F303908DDBDC1112FD/Hairikot-paamaja_Elainoikeusakatemia_Todellisuus_sellaisena_kuin_se_ei_meille_nayttaydy", "en": "http://www.stoa.fi/en/events/event/6D30EC71F3AC39F303908DDBDC1112FD/Hairikot-paamaja_Elainoikeusakatemia_Todellisuus_sellaisena_kuin_se_ei_meille_nayttaydy" }, "description": { "fi": "<p>Eläimet ovat edessäsi, takanasi, päälläsi ja sisälläsi. Et ehkä näe heitä, mutta he näkevät sinut.</p><p>Vaikka maailmassa ja Suomessa kasvatetaan ja tapetaan vuosittain meihin ihmisiin verrattuna moninkertainen määrä muiden lajien edustajia, kiinnittyy huomiomme lähinnä pelkästään ihmisiin.</p><p>Häiriköt-päämajan ja Eläinoikeusakatemian näyttelyssä käännetään katse sinne, minne sitä tavallisesti ei haluta kääntää. Ja katsoessamme toisia huomaamme, että he ovat katsoneet meitä koko ajan.<br> <br>Näyttelyssä Jari Tammisen, Laura Gustafssonin, Ville Salervon ja Hanna Kukon teokset tarkastelevat aihetta muun muassa vastamainosten, eläinteollisuuden tuotantovälineiden sekä sarjakuvan keinoin.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68644/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69544", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/itaekuskus/#calendar-start=2026-01", "sv": "https://www.lippu.fi/artist/itaekuskus/#calendar-start=2026-01", "en": "https://www.lippu.fi/artist/itaekuskus/#calendar-start=2026-01" }, "description": null, "price": { "fi": "24,50 € /19 €", "sv": "24,50 € /19 €", "en": "24,50 € /19 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T11:13:45.384945Z", "last_modified_time": "2026-06-29T11:13:45.384960Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792303.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385402/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T11:13:45.240864Z", "last_modified_time": "2026-06-29T11:13:45.605253Z", "date_published": null, "start_time": "2026-10-16T15:00:00Z", "end_time": "2026-10-16T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Itäkuskus stand-up -klubi", "sv": "Itäkuskus stand up-klubb", "en": "Itäkuskus stand up club" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"", "sv": "Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”", "en": "The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/39EADBC88FD4016B83D2AD2201C75A1C/Itakuskus_stand-up_-klubi", "sv": "http://www.stoa.fi/sv/evenemang/event/39EADBC88FD4016B83D2AD2201C75A1C/Itakuskus_stand_up-klubb", "en": "http://www.stoa.fi/en/events/event/39EADBC88FD4016B83D2AD2201C75A1C/Itakuskus_stand_up_club" }, "description": { "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p><b>Aikataulu</b><br>klo 18 | ovet ja Teatterisalin baari avoinna<br>klo 19 | showtime</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on myös tuottaja ja MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun! Tule ja koe ainutlaatuinen Itäkuskus-show – monet käy joka kerta.\"</p><p>Klubia ei suositella herkkähipiäisille! Toisinaan poliittinen korrektius tuntuu illoissa kaukaiselta aatteelta. Roustauksesta saavat osansa niin Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot kuin suomenkieliset fraasitkin, joita edes kantasuomalaiset eivät aina osaa lausua oikein.</p><p>Yleisön suusta:<br>”Täällä kuulen erinomaista läppää, mitä muualla en kuule.” <br>”Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.”</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin; illat myydään nopeasti loppuun.<br>Klubi-illan tarjoiluista vastaa ravintola Box Stoa ja Teatterisalin baari aukeaa klo 18.00. Tule ajoissa ja varaa parhaat paikat.</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18 (salissa anniskelua)<br>Kieli: suomi, välillä huono soomi ja ehkä joskus esiintyjä vetää englanniksi</p>", "sv": "<p>Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”</p><p><b>Tidtabell</b><br>kl. 18 | dörrarna och Teatersalens bar öppna<br>kl. 19 | showtime<br>På klubben glömmer du dina bekymmer och din stress. Denna unika show sveper med dig på en resa mot öst och bjuder på dråplig komik, unika inblickar i kulturella skillnader och det finska språket. Varje föreställning har flera varierande komiker med invandrarbakgrund – och naturligtvis framträder också en varierande känd kvotfinländsk komiker varje kväll.</p><p>Underhållningsstjärnan Fabe uppträder på alla klubbar. Det går inte att undvika Fabes videor, som visas över en miljon gånger och delas över 50 000 gånger i månaden i Finland. Varför har klubben blivit ett fenomen? Fabe svarar: “För att finländarna älskar mitt handhår och att skämta om det. Med hjälp av humor kan vi hantera alla ämnen och sammanföra kulturer. Det här är något helt unikt och otroligt. Det är värt att komma på plats!”</p><p>En av Finlands mest mångsidiga komiker fungerar som värd för klubbkvällarna: Komikern Mebe! Mebe är också producent och MC! Han är sympatisk, liknar en teddybjörn och charmar publiken med sina vassa repliker och skämt! “Detta får du inte se eller höra någon annanstans, den dråpliga Itäkuskus-showen är full av overraskningar och unika skämt och observationer. Detta är som Fazers mjölkchoklad, man blir beroende med en gång! Kom och upplev den unika Itäkuskus-showen, vi är många som aldrig missar en enda.”</p><p>Klubben rekommenderas inte för ömhudade! På kvällarna kan politisk korrekthet vara blott en avlägsen tanke. Både Skatteverket, Alko, Vanda, invandrarnas kulturella skillnader och finska fraser som inte ens infödda finländare alltid kan uttala på rätt sätt får sin del av roastningen.</p><p>Sagt bland publiken:<br>“Vi vill stödja invandrarartister.” <br>“Här slänger man käft som ingen annanstans.” <br>“Ett fantastiskt koncept och en kväll full av fantastiska artister, var och en så olika och bra på sitt eget sätt.”</p><p>Kom och upplev showen själv och ta med dig dina vänner!<br>Det är bra att köpa biljetter i god tid, eftersom kvällarna säljer slut snabbt.<br>Restaurang Box Stoa svarar för serveringen under klubbkvällen.</p><p>Längd: ca 2,5 timmar<br>Åldersgräns: 18 år<br>Språk: finska</p>", "en": "<p>The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”</p><p><b>Schedule</b><br>18:00 | doors and Theater Hall bar open<br>19:00 | show time</p><p>At the club, you can forget about your worries and stress. This unique show takes you on a trip to the East with hilarious comedy and unique insights into cultural differences and the Finnish language. There are several rotating immigrant comedians at each gig – and, of course, there is also a rotating, well-known Finnish comedian every evening.</p><p>All clubs feature entertainer Fabe. Fabe’s videos will have been hard to avoid, as they accumulate more than a million views per month in Finland and have been shared more than 50,000 times. Why has the club become such a phenomenon? Fabe replies: “Because Finns love my arm hair and jokes about them. You can talk about anything and create connections between cultures through humour. This is something totally unique and unbelievable. Be there!”</p><p>Club evenings are hosted by one of the most versatile comedians in Finland: Mebe! Mebe is also a producer and an MC! He is a sympathetic teddy bear-like person who charms the audience with quick one-liners and jokes! “You can't see and hear this anywhere else: the hilarious Itäkuskus show is full of surprises, unique jokes and observations. This is like Fazer's milk chocolate – the first time is all it takes to get you hooked! Come and experience the unique Itäkuskus show, like many others that visit every time.”</p><p>The club is not recommended for people without thick skin! Sometimes political correctness feels like a distant ideal in these evenings. The Tax Authority, Alko, the City of Vantaa, the cultural differences between immigrants, as well as phrases in Finnish that even native Finns can't get right – nothing is safe from getting roasted.</p><p>From the audience:<br>“We want to support immigrant performers.” <br>“The jokes here are excellent, the kind I don't hear anywhere else.” <br>\"The concept is great and the evening is full of good performers, everyone so different from one another and good in their own way.”</p><p>Come and experience it for yourself and bring your friends!<br>We recommend buying tickets in advance, as the events sell out quickly.<br>Restaurant Box Stoa is responsible for service during the club evening.</p><p>Duration: approx. 2.5 hours<br>Age limit: 18+<br>Language: Mainly Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69544/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68631", "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/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/atomirotta-lahiorundi-2026-malmitalo-21650498/", "sv": "https://www.lippu.fi/event/atomirotta-lahiorundi-2026-malmitalo-21650498/", "en": "https://www.lippu.fi/event/atomirotta-lahiorundi-2026-malmitalo-21650498/" }, "description": null, "price": { "fi": "22€/17€", "sv": "22€/17€", "en": "22€/17€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385400, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T10:13:38.850483Z", "last_modified_time": "2026-06-29T10:13:38.850500Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791307.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385400/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T10:13:38.698561Z", "last_modified_time": "2026-06-29T10:13:39.041568Z", "date_published": null, "start_time": "2026-10-03T16:00:00Z", "end_time": "2026-10-03T17:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Atomirotta Lähiörundi 2026", "sv": "Atomirotta Lähiörundi 2026", "en": "Atomirotta Lähiörundi 2026" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/814AF806673DB6442C55A94D60AE0C3D/Atomirotta_Lahiorundi_2026", "sv": "http://www.malmitalo.fi/sv/evenemang/event/814AF806673DB6442C55A94D60AE0C3D/Atomirotta_Lahiorundi_2026", "en": "http://www.malmitalo.fi/en/events/event/814AF806673DB6442C55A94D60AE0C3D/Atomirotta_Lahiorundi_2026" }, "description": { "fi": "<p>Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!</p><p>Ystävänpäivänä 2014 perustettu Atomirotta on alusta asti seurannut vanhaa hienoa viisautta: tekemällä oppii! Yhtye on pitänyt aina langat täysin omissa käsissään ja vaalinut tiukasti hienoa DIY-perinnettä. Viisi albumia, lukuisia kulta- ja platinasinkkuja, oma levy-yhtiö, ohjelmatoimisto ja verkkokauppa sekä satoja räjäyttäviä keikkoja ennakkoluulottomasti kuumilta lähiöklubeilta aina suurimmille festarilavoille.</p><p>Atomijuna jyskyttää entistä voimakkaammin eteenpäin oikealla, omannäköisellä kurssillaan ja me, Rane, Mikko ja Juuso heitetään hiiliä pesään ja pidetään vaunut raiteilla! Pysykää mukana!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68631/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69540", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@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": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385396, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T08:14:28.967247Z", "last_modified_time": "2026-06-29T08:14:28.967262Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792342.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385396/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T08:14:28.815866Z", "last_modified_time": "2026-06-29T08:14:29.131719Z", "date_published": null, "start_time": "2026-10-09T16:00:00Z", "end_time": "2026-10-09T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsinki Experimental Series – Nomads Festival", "sv": "Helsinki Experimental Series – Nomads Festival", "en": "Helsinki Experimental Series – Nomads Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Improvisoitu musiikki, tanssi ja visuaalinen taide yhdistyvät illassa, jossa kohtaaminen ja läsnäolo ovat keskiössä.", "en": "Improvised music, dance and visual arts coalesce on an evening centered on shared encounters and being present in the moment." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4C3CFF87DF61C31077332CD73C58A526/Helsinki_Experimental_Series", "sv": "http://www.stoa.fi/sv/evenemang/event/4C3CFF87DF61C31077332CD73C58A526/Helsinki_Experimental_Series", "en": "http://www.stoa.fi/en/events/event/4C3CFF87DF61C31077332CD73C58A526/Helsinki_Experimental_Series" }, "description": { "fi": "<p>Improvisoitu musiikki, tanssi ja visuaalinen taide yhdistyvät illassa, jossa kohtaaminen ja läsnäolo ovat keskiössä.</p><p>Helsinki Experimental Series ei ole pelkkä konsertti, vaan alusta, jossa uusia yhteyksiä syntyy – taiteilijoiden välillä, yleisön ja esiintyjien välillä, sekä eri taiteenalojen välillä.<br>Helsinki Experimental Series (HES) laajenee syksyllä 2026 uuteen mittakaavaan, kun konsepti tuodaan Stoan suurelle näyttämölle osana Nomads Festivaalia 9.10. Kyseessä on sarjan tähänastisista kunnianhimoisin kokonaisuus, jossa intiimistä galleriaympäristöstä tuttu formaatti avataan suurempaan tilaan säilyttäen sen ydin: kohtaaminen, riski ja yhteisluominen.</p><p>Ilta rakentuu HES-sarjalle ominaisen dramaturgian varaan, keskiössä improvisoitu ja kokeellinen musiikki sekä monitaiteellinen esitystaide. Kuraattori Sergio Castrillón yhdistää Artistic Research, Action Research ja community engagement projektissa, joka tuo yhteen yhdeksän taiteilijaa eri taustoista, muodostaen kokonaisuuden, jossa musiikki, tanssi ja visuaalinen taide ovat jatkuvassa vuorovaikutuksessa. Esitykset syntyvät hetkessä, ilman ennalta määriteltyjä rakenteita, korostaen läsnäoloa, kuuntelua ja riskinottoa.</p><p>Tapahtuma toteutetaan yhteistyössä Sibelius-Akatemian Global Music Departmentin kanssa, joka tuo mukaan osan esiintyjistä opiskelijoina. Illassa kohtaavat näin eri tasoilla toimivat taiteilijat; ammattilaiset ja nousevat tekijät, luoden ainutlaatuisen tilan oppimiselle, vuorovaikutukselle ja uusien yhteistyömuotojen syntymiselle.</p><p>HES:n keskiössä on ajatus tilasta, jossa perinteiset roolit – esiintyjä ja yleisö, ammattilainen ja ensikertalainen – voivat liikkua ja muuttua. Illan aikana tämä konkretisoituu “Blind dates for improvisers” -osiossa, jossa yleisön jäsenet kutsutaan mukaan esitykseen. Kohtaamiset syntyvät ilman ennakkosopimuksia, rakentaen ainutkertaisia tilanteita, joissa eri taustat ja ilmaisutavat törmäävät ja sulautuvat.</p><p>Stoan ilta tuo HES-konseptin ensimmäistä kertaa suureen saliin, laajentaen kokemusta tilallisesti ja kehollisesti. Samalla se säilyttää sarjan ytimen: hetkessä syntyvän taiteen, joka perustuu kuunteluun, reagointiin ja luottamukseen.</p><p>Illan esiintyjät julkaistaan loppukesällä.</p><p>Kesto: 3 t</p>", "en": "<p>Improvised music, dance and visual arts coalesce on an evening centered on shared encounters and being present in the moment.</p><p>Helsinki Experimental Series is not merely a concert, but a platform where new connections are formed—between artists, between audience and performers, and across artistic disciplines.</p><p>Helsinki Experimental Series (HES) expands to a new scale in autumn 2026, as the concept is brought to the main stage of Stoa as part of the Nomads Festival on October 9. This marks the most ambitious edition of the series to date, where a format known from intimate gallery settings opens into a larger space while preserving its core: encounter, risk, and co-creation.</p><p>The evening is built around the characteristic dramaturgy of the HES series, with improvised and experimental music at its center, alongside multidisciplinary performance art. Curator Sergio Castrillón combines artistic research, action research, and community engagement in a project that brings together nine artists from diverse backgrounds, forming a dynamic whole where music, dance, and visual art are in constant interaction. The performances emerge in the moment, without predetermined structures, emphasizing presence, listening, and risk-taking.</p><p>The event is organized in collaboration with the Sibelius Academy’s Global Music Department, which contributes performers in the form of students. The evening thus brings together artists working at different stages of their careers—professionals and emerging practitioners—creating a unique space for learning, interaction, and the development of new forms of collaboration.</p><p>At the core of HES is the idea of a space where traditional roles—performer and audience, professional and first-timer—can shift and transform. This becomes concrete during the “Blind Dates for Improvisers” segment, where audience members are invited to take part in the performance. These encounters unfold without prior agreements, creating unique situations in which different backgrounds and modes of expression meet, collide, and merge.</p><p>The evening at Stoa introduces the HES concept to a large auditorium for the first time, expanding the experience spatially and physically. At the same time, it retains the essence of the series: art created in the moment, grounded in listening, responsiveness, and trust.</p><p>The performers of the evening will be announced in late summer.</p><p>Duration: 3 h</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68543", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T07:14:12.447944Z", "last_modified_time": "2026-06-29T07:14:12.447958Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790908.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T07:14:12.372749Z", "last_modified_time": "2026-06-29T07:14:12.562724Z", "date_published": null, "start_time": "2026-12-02T15:00:00Z", "end_time": "2026-12-02T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taidetauko-työpajat", "sv": "Taidetauko-työpajat", "en": "Taidetauko-työpajat" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/41E4F53E864DB287848D8BB492E873F7/Taidetauko-tyopajat", "sv": "http://www.stoa.fi/sv/evenemang/event/41E4F53E864DB287848D8BB492E873F7/Taidetauko-tyopajat", "en": "http://www.stoa.fi/en/events/event/41E4F53E864DB287848D8BB492E873F7/Taidetauko-tyopajat" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!</p><p>Kun illat pimentyvät ja kaamos lähestyy, on hyvä hetki laittaa luovuus liikkeelle. Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan kahvilassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Kahvila Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p><p><b>ke 2.12. klo 17–19 | Vimmelit, eli villit himmelit!</b><br>Pajassa saat opastuksen yksinkertaiseen himmelitekniikkaan. Sen jälkeen voit vapaasti ja orgaanisesti rakentaa omannäköisesi himmelin. Materiaaleina käytämme paperipillejä. Mukaan mahtuu kerrallaan noin 20 henkilöä.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68543/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68541", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385393, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T07:14:10.141709Z", "last_modified_time": "2026-06-29T07:14:10.141727Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790899.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385393/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T07:14:10.030680Z", "last_modified_time": "2026-06-29T07:14:10.260974Z", "date_published": null, "start_time": "2026-11-04T15:00:00Z", "end_time": "2026-11-04T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taidetauko-työpajat", "sv": "Taidetauko-työpajat", "en": "Taidetauko-työpajat" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0F706758633CD3E700335A7FBA6A3E15/Taidetauko-tyopajat", "sv": "http://www.stoa.fi/sv/evenemang/event/0F706758633CD3E700335A7FBA6A3E15/Taidetauko-tyopajat", "en": "http://www.stoa.fi/en/events/event/0F706758633CD3E700335A7FBA6A3E15/Taidetauko-tyopajat" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!</p><p>Kun illat pimentyvät ja kaamos lähestyy, on hyvä hetki laittaa luovuus liikkeelle. Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan kahvilassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Kahvila Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p><p><b>ke 4.11. klo 17–19 | Ovikoriste kaikille aisteille</b><br>Mehiläisvahasta ja erilaisista luonnonmateriaaleista syntyy kaunis koriste oveen tai ikkunaan. Koriste hellii niin haju-, näkö- kuin tuntoaistiakin.<br> <br><b>ke 2.12. klo 17–19 | Vimmelit, eli villit himmelit!</b><br>Pajassa saat opastuksen yksinkertaiseen himmelitekniikkaan. Sen jälkeen voit vapaasti ja orgaanisesti rakentaa omannäköisesi himmelin. Materiaaleina käytämme paperipillejä. Mukaan mahtuu kerrallaan noin 20 henkilöä.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68541/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68540", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385392, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-29T07:14:06.690827Z", "last_modified_time": "2026-06-29T07:14:06.690843Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790897.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385392/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T07:14:06.546055Z", "last_modified_time": "2026-06-29T07:14:06.902728Z", "date_published": null, "start_time": "2026-10-07T14:00:00Z", "end_time": "2026-10-07T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taidetauko-työpajat", "sv": "Taidetauko-työpajat", "en": "Taidetauko-työpajat" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/862D7D91FAF9270E0DE4E4C1B8D1A9B8/Taidetauko-tyopajat", "sv": "http://www.stoa.fi/sv/evenemang/event/862D7D91FAF9270E0DE4E4C1B8D1A9B8/Taidetauko-tyopajat", "en": "http://www.stoa.fi/en/events/event/862D7D91FAF9270E0DE4E4C1B8D1A9B8/Taidetauko-tyopajat" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan kahvilaan!</p><p>Kun illat pimentyvät ja kaamos lähestyy, on hyvä hetki laittaa luovuus liikkeelle. Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan kahvilassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Kahvila Stoa<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p><p><b>ke 7.10.klo 17–19 | Aarrekranssi krääsästä</b><br>Krääsäkin voi löytää kauniin muodon! Kokoamme kierrätetyistä aarteista ja rautalangasta iloa arkeen tuovan ainutkertaisen kranssin.<br> <br><b>ke 4.11. klo 17–19 | Ovikoriste kaikille aisteille</b><br>Mehiläisvahasta ja erilaisista luonnonmateriaaleista syntyy kaunis koriste oveen tai ikkunaan. Koriste hellii niin haju-, näkö- kuin tuntoaistiakin.<br> <br><b>ke 2.12. klo 17–19 | Vimmelit, eli villit himmelit!</b><br>Pajassa saat opastuksen yksinkertaiseen himmelitekniikkaan. Sen jälkeen voit vapaasti ja orgaanisesti rakentaa omannäköisesi himmelin. Materiaaleina käytämme paperipillejä. Mukaan mahtuu kerrallaan noin 20 henkilöä.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68734", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/marja-rautakorpi-ja-adelante-criaturas-stoa-21630805/", "sv": "https://www.lippu.fi/event/marja-rautakorpi-ja-adelante-criaturas-stoa-21630805/", "en": "https://www.lippu.fi/event/marja-rautakorpi-ja-adelante-criaturas-stoa-21630805/" }, "description": null, "price": { "fi": "22 € / 15 €", "sv": "22 € / 15 €", "en": "22 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1991545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-06T09:13:20.640097Z", "last_modified_time": "2026-05-06T09:13:20.640112Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791026.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1991545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-06T09:13:20.445177Z", "last_modified_time": "2026-06-29T06:13:30.558390Z", "date_published": null, "start_time": "2026-08-18T15:00:00Z", "end_time": "2026-08-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Marja Rautakorpi & Adelante: Criaturas", "sv": "Marja Rautakorpi & Adelante: Criaturas", "en": "Marja Rautakorpi & Adelante: Criaturas" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Marja Rautakorven ja nuorten flamencotanssiryhmä Adelanten teos ihmettelee ihmistä otuksena maailman kiihtyvässä sykkeessä.", "sv": "Marja Rautakorpis och de ungas flamencodansgrupp Adelantes verk förundrar sig över människan som varelse i en accelererande värld.", "en": "The work by Marja Rautakorpi and the youth flamenco dance group Adelante wonders about humans as creatures in the accelerating pulse of the world." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6A54D926360A4D5DABA41459420267B0/Marja_Rautakorpi_Adelante_Criaturas", "sv": "http://www.stoa.fi/sv/evenemang/event/6A54D926360A4D5DABA41459420267B0/Marja_Rautakorpi_Adelante_Criaturas", "en": "http://www.stoa.fi/en/events/event/6A54D926360A4D5DABA41459420267B0/Marja_Rautakorpi_Adelante_Criaturas" }, "description": { "fi": "<p>Marja Rautakorven ja nuorten flamencotanssiryhmä Adelanten teos ihmettelee ihmistä otuksena maailman kiihtyvässä sykkeessä.</p><p>Criaturas on Marja Rautakorven ja nuorten flamencoryhmä Adelanten yhdessä rakentama<br>teos, joka ihmettelee ihmistä otuksena maailman kiihtyvässä sykkeessä. Teos kysyy, miksi<br>aloimme ajaa yksilöitä erilleen ajassa, jossa tarvitsemme toisiamme?</p><p>Adelante on Marja Rautakorven kokoama uuden sukupolven flamencoryhmä, jollaista on<br>flamencon saralla kaivattu pitkään. Ryhmässä tanssii yhdeksän 15-35-vuotiasta edistynyttä<br>flamencotanssijaa erilaisista taustoista.</p><p>Ryhmä ja teos ovat muodostuneet Rautakorven luotsaamassa vuoden kestävässä<br>(09/2025–08/2026) pilottiprojektissa, jonka tavoitteena on ollut rakentaa yhdessä nuorten<br>kanssa näyttämöteos heille merkityksellisistä teemoista. Projekti on syntynyt tarpeesta koota<br>nuoria flamencon tekijöitä yhteen, tarjota heille tavoitteellista toimintaa ja tukea heidän<br>yksilöllistä kasvuaan kohti taiteilijuutta.</p><p>Marja Rautakorpi on Suomessa ja Espanjassa kouluttautunut flamencotanssitaiteilija,<br>koulutukseltaan tanssitaiteen maisteri (2023). Hän vaikuttaa taiteilijana, pedagogina ja<br>tuottajana esittävien taiteiden vapaalla kentällä. Rautakorpi etsii kokeellisia näkökulmia<br>flamencon tekemiseen rohkaisten kuuntelemaan flamencoa jaettuna kokemuksena ja<br>taiteidenvälisenä mahdollisuutena sen tiukan määrittelyn sijaan.</p><p>Criaturas-teoksen maailmaan voi virittäytyä seuraavan runon johdattelemana:<br>“Mitä jos sattumanvaraisesti paljastuu,<br>jonkinlainen liian iso voima?<br>Vähän mutatoituneet kädet ja mielet kielet,<br>pilkahduksina pysäkeillä,<br>voimasta kahlittuina,<br>yhdessä ovatkin sinua vastaan.<br>Yhdessä.<br>Yhdessä.<br>Yhdessä.<br>Mitä jos yhdessä tietoisesti murretaan,<br>jonkinlainen liian iso voima?<br>Löyhän monista partikkeleista,<br>erkanee ja yhtyy,<br>toisiinsa hioutuvia, kiinnittyviä.<br>Kokee ymmärtäessään suurempaa:<br>yksi muodostuu yhdessä.”<br>(Marja Rautakorpi & Adelante 2026)</p><p>Koreografia Marja Rautakorpi & Adelante<br>Tanssi Hilla Hanhela, Iida Kopra, Camila Laine, Janna Lappalainen, Laura Lindén, Sini<br>Mannerhovi, Nora Mekkid, Roosa Pietilä ja Milla-Maija Saari<br>Musiikin sävellys ja äänisuunnittelu Juho Suominen</p><p>Kesto: 1h<br>Kieli: suomi<br>Genre: tanssi</p><p>Somekanavat:<br>Marja Rautakorpi FB: https://www.facebook.com/marjarautakorpi<br>Marja Rautakorpi IG: https://www.instagram.com/marjarautakorpi/<br>Adelante-ryhmä IG: https://www.instagram.com/adelantefi<br>Adelante-ryhmä Tiktok: https://www.tiktok.com/@adelantefi</p>", "sv": "<p>Marja Rautakorpis och de ungas flamencodansgrupp Adelantes verk förundrar sig över människan som varelse i en accelererande värld.</p><p>Criaturas är ett verk skapat gemensamt av Marja Rautakorpi och de ungas flamencodansgrupp Adelante, som förundrar sig över människan som varelse i en accelererande värld. Verket frågar sig varför vi började driva isär individer i en tid när vi behöver varandra?</p><p>Adelante är Marja Rautakorpis sammanställda flamencodansgrupp för en ny generation. En sådan har varit ett efterlängtat tillskott på flamencoscenen. Gruppen består av nio avancerade flamencodansare i åldern 15–35 år från olika bakgrunder.</p><p>Gruppen och verket har formats i ett ettårigt pilotprojekt (09/2025–08/2026) under ledning av Rautakorpi, vars syfte har varit att bygga ett scenkonstverk tillsammans med ungdomar på teman som är relevanta för dem. Projektet har uppstått ur ett behov att samla ihop unga flamencodansare, erbjuda dem målinriktade aktiviteter och stödja deras individuella utveckling mot konstnärskap.</p><p>Marja Rautakorpi är en flamencodansare utbildad i Finland och Spanien, med en magisterexamen i danskonst (2023). Hon är konstnär, pedagog och producent inom det fria scenkonstfältet. Rautakorpi söker experimentella perspektiv på flamencoskapande och uppmuntrar oss att lyssna på flamenco som en gemensam upplevelse och en interkonstnärlig möjlighet, i stället för en strikt definition av den.</p><p>Koreografi: Marja Rautakorpi & Adelante<br>Dans: Hilla Hanhela, Iida Kopra, Camila Laine, Janna Lappalainen, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Roosa Pietilä och Milla-Maija Saari<br>Musikkomposition och ljuddesign: Juho Suominen</p><p>Språk: finska<br>Längd: cirka 1 timme</p>", "en": "<p>The work by Marja Rautakorpi and the youth flamenco dance group Adelante wonders about humans as creatures in the accelerating pulse of the world.</p><p>Criaturas is a work created by Marja Rautakorpi and the youth flamenco dance group Adelante and it explores humans as creatures in the accelerating pulse of the world. The work poses the question: why did we start to drive individuals apart in a time when we need each other?</p><p>Adelante, a flamenco dance group for the new generation assembled by Marja Rautakorpi, is a long-awaited addition to the flamenco scene. The group consists of nine advanced flamenco dancers aged 15–35 from different backgrounds.</p><p>The group and the work have been formed in a one-year pilot project (September 2025–August 2026) led by Rautakorpi, whose aim was to build a theatre piece together with young people on themes that are relevant to them. The project was born out of the need to bring together young flamenco artists, to offer them purposeful activities and to support their individual growth towards artistry.</p><p>Marja Rautakorpi is a flamenco dancer trained in Finland and Spain, with a master’s degree in dance (2023). She is an artist, educator and producer in the field of independent performing arts. Rautakorpi seeks experimental perspectives on flamenco, encouraging us to listen to flamenco as a shared experience and an inter-artistic possibility, rather than sticking to a strict definition of the art form.</p><p>Choreography: Marja Rautakorpi & Adelante<br>Dance: Hilla Hanhela, Iida Kopra, Camila Laine, Janna Lappalainen, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Roosa Pietilä and Milla-Maija Saari<br>Music composition and sound design: Juho Suominen</p><p>Language: Finnish<br>Duration: about 1 hour</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68361", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?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": 1791837, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-02T08:13:52.525293Z", "last_modified_time": "2026-04-02T08:13:52.525312Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785915.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791837/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-02T08:13:52.366671Z", "last_modified_time": "2026-06-29T06:13:29.418685Z", "date_published": null, "start_time": "2026-08-13T14:00:00Z", "end_time": "2026-08-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Re-Charge", "sv": "Re-Charge", "en": "Re-Charge" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Re-Charge on kihelmöivä ja räjähtelevä ruumiillinen katalogi vaihtoehtoiselle energiantuotannolle. Re-Charge latautuu rakkaudesta ja rakkaudelle.", "sv": "Re-Charge är en pirrande och explosiv kroppslig katalog för alternativ energiproduktion. Re-Charge laddas av och för kärlek.", "en": "Re-Charge is a tingling and explosive physical portfolio for alternative energy production. Re-Charge is charged by and for love." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/468A2280F632A1643BEA63AE8E027A25/Re-Charge", "sv": "http://www.stoa.fi/sv/evenemang/event/468A2280F632A1643BEA63AE8E027A25/Re-Charge", "en": "http://www.stoa.fi/en/events/event/468A2280F632A1643BEA63AE8E027A25/Re-Charge" }, "description": { "fi": "<p>Re-Charge on kihelmöivä ja räjähtelevä ruumiillinen katalogi vaihtoehtoiselle energiantuotannolle. Re-Charge latautuu rakkaudesta ja rakkaudelle.</p><p>Teos on osa laajempaa Charge-hanketta, joka tapahtuu teoksina ja työpajoina julkisissa tiloissa ja paikallisissa yhteisöissä.</p><p>Hankkeen keskiössä on tanssin riemu ja kansainvälinen yhteistyö.<br>Stoan aukiolle teos rantautuu elokuussa 13.8. klo 17.<br>Re-Charge tutkii fyysisesti eri latautumisen tapoja, ja ruumiillistuu ihmisparistoiksi. Se saa inspiraationsa supersankareista, biittikkään musiikin juhlasta /tekno/elektrodance/amapiano/nollypiano/disko/pop/ dubstep/trance/ you name it/, ruumiin ja mielen uupumuksesta, tanssin euforiasta, Formula 1:stä ja kiihdyttämisestä, videopeleistä ja transsimaisesta toistosta – energiaa tuottavasta energiasta.</p><p>Hanke tutkii länsimaisen yhteiskunnan totaalista riippuvuutta kestämättömästä energiantuotannosta, ja etsii leikkimielisiä vaihtoehtoja olla oma bioninen valonsa ja lihallinen paristonsa.<br>Re-Charge latautuu erityisesti rakkaudesta. Rakkaus ihmisten aitona supervoimana toimii teoksen liimana eri muodoissa, intensiteeteissä ja eri tavoin suodattuneena. Supersankareiden ruumiissa rakkaus väräjää, roihuaa, kaipaa, muuttaa radikaalisti jotain syvällä sisuksissa, sykkii.</p><p>Teoksessa monta eri polkua elää eloaan samanaikaisesti, kaaoksessa on sisäinen järjestys, ja sykkivät sydämet eivät lähde pesemälläkään. Tule latautumaan monikerroksisessa lämmittävien tunteiden kylvyssä, ja tanssimaan väristykset kaakkoon!</p><p>Re-Charge on teoksen Charge 2025 jatko-osa. Se on kollektiivisuuden juhlaa ja tanssin humua.</p><p>Hanketta toteuttaa kansainvälinen tanssiryhmä Muddiverse.</p><p>Muddiverse</p><p>Koreografia, tuotanto, puvut: Karoliina Loimaala<br>Tanssi ja kanssakoreografia: Krista-Julia Arppo, Anika Edström Kawaji, Maurice Bessanh, Anni Kaila, Louis Nam Le Van Ho, Karoliina Loimaala, Maya Oliva<br>Äänisuunnittelu ja musiikki: Iida Hägglund<br>Live-musiikki ja perkussiot: Hedson Agbogladja</p><p>Teoksen kesto: 45min</p><p>Tukemassa: Koneen säätiö, Stoan Kulttuurikeskus, Friskis & Svettis Helsinki, Myrskyryhmä</p><p>Ensi-ilta: 4.8.2026, Parrulaituri</p><p>Maksuton</p>", "sv": "<p>Re-Charge är en pirrande och explosiv kroppslig katalog för alternativ energiproduktion. Re-Charge laddas av och för kärlek.</p><p>Verket är en del av det större Charge-projektet, som består av verk och verkstäder på offentliga platser och i lokalsamhället. I centrum av projektet står dansglädje och internationellt samarbete.<br>Verket landar på Stoaplatsen den 13 augusti kl. 17.00.</p><p>Re-Charge utforskar fysiskt olika sätt att laddas, och förkroppsligas till mänskliga batterier. Det hämtar inspiration från superhjältar, hyllningen av beatmusik /techno/electrodance/amapiano/nollypiano/disco/pop/dubstep/trance/you name it/, utmattningen av kropp och själ, dansens eufori, Formel 1 och acceleration, videospel och trance-liknande repetition – energiproducerande energi. Projektet utforskar det västerländska samhällets totala beroende av ohållbar energiproduktion, och söker lekfulla alternativ till att vara sitt eget bioniska ljus och sitt eget köttsliga batteri.</p><p>Re-Charge laddas särskilt av kärlek. Kärleken som en äkta mänsklig superkraft fungerar som limmet i verket, i olika former, intensiteter och filtrerad på olika sätt. I superhjältarnas kroppar skälver, brinner, längtar, förändrar kärleken något djupt inombords, pulserar. I verket lever många olika vägar sina liv samtidigt, i kaoset finns en inre ordning och klappande hjärtan försvinner inte ens i tvätten. Kom och laddas i ett mångskiktat bad av värmande känslor, och dansa bort rysningarna!</p><p>Re-Charge är uppföljaren till Charge 2025. Det är en hyllning till kollektivitet och dansens begär. Projektet genomförs av den internationella dansgruppen Muddiverse.</p><p>Längd: cirka 1 timme<br>Fritt inträde!</p><p>Muddiverse</p><p>Koreografi, produktion och kostym: Karoliina Loimaala<br>Dans och gemensam koreografi: Krista-Julia Arppo, Anika Edström Kawaji, Maurice Bessanh, Anni Kaila, Louis Nam Le Van Ho, Karoliina Loimaala, Maya Oliva<br>Ljuddesign och musik: Iida Hägglund<br>Livemusik och slagverk: Hedson Agbogladja</p><p>Verkets längd: 45 minuter</p><p>Bild: Miikkael Kukkula<br>På bilden: Anni Kaila</p><p>Med stöd av: Konestiftelsen, Kulturcentret Stoa, Friskis & Svettis Helsinki, Myrskyryhmä<br>Premiär: 4.8.2026, Bjälkkajen</p>", "en": "<p>Re-Charge is a tingling and explosive physical portfolio for alternative energy production. Re-Charge is charged by and for love.</p><p>The work is part of the wider Charge project, which takes the form of works and workshops in public spaces and local communities. The joy of dance and international cooperation are at the heart of the project.</p><p>The work will land in Stoa square on 13 August at 17.00.<br>Re-Charge explores the different ways of becoming recharged through a physical approach, embodied in human batteries on Stoa square. The dance performance draws inspiration from celebrating music with a beat, that is techno / electro dance / amapiano / nollypiano / disco / pop / dubstep / trance / you name it, the exhaustion of body and mind, the euphoria of dance, Formula 1 racing and acceleration, video games and trance-like repetition – from energy that provides energy. The project explores Western society's total dependence on unsustainable energy production, and looks for playful ways to become one’s own bionic light and fleshy battery.</p><p>Re-Charge is charged in particular by love. Love as a genuine human superpower in different forms, intensities and filtered in different ways is the glue that keeps the work together. In the bodies of superheroes, love shivers, burns, yearns, radically changes something deep inside and pulsates. In the work, many different paths lead their lives simultaneously, there is an inner order to the chaos, and you could not erase the beating hearts if you tried. Come recharge in a multi-layered bath of warming emotions, and dance to electrify your body!</p><p>Re-Charge is the sequel to Charge 2025. It is a celebration of collectivity and the whirlwind that is dance. The project is implemented by the international dance group Muddiverse.</p><p>Duration: about 1 hour<br>Free entry!</p><p>Muddiverse</p><p>Choreography, production, costumes: Karoliina Loimaala<br>Dance and co-choreography: Krista-Julia Arppo, Anika Edström Kawaji, Maurice Bessanh, Anni Kaila, Louis Nam Le Van Ho, Karoliina Loimaala, Maya Oliva<br>Sound design and music: Iida Hägglund<br>Live music and percussion: Hedson Agbogladja</p><p>Duration: 45 min</p><p>Photo: Miikkael Kukkula<br>Pictured: Anni Kaila</p><p>Support: Kone Foundation, Stoa Cultural Centre, Friskis & Svettis Helsinki, Myrskyryhmä<br>Premiere: 4 August 2026, Parrulaituri</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }