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&page=136&weekday=6%2C7
{ "meta": { "count": 6639, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=137&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=135&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agmk226pry", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-15T10:12:01.333030Z", "last_modified_time": "2025-05-15T10:12:01.333047Z", "date_published": null, "start_time": "2025-08-16T12:00:00Z", "end_time": "2025-08-16T13: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, "provider": null, "short_description": { "fi": "Tervetuloa nauttimaan improvisaatioteatterista – Impromnia saapuu Sellon kirjaston Jaminurkkaan!" }, "description": { "fi": "<p>Tervetuloa nauttimaan improvisaatioteatterista – Impromnia saapuu Sellon kirjaston Jaminurkkaan!</p><p>Luvassa on ainutlaatuinen esitys, joka syntyy siinä hetkessä ja nähdään vain kerran. Voit piipahtaa hetkeksi tai jäädä nauttimaan koko esityksestä – valinta on sinun. Luvassa on rentoa tunnelmaa, huumoria ja kiehtovia kohtauksia. Tule mukaan ja koe improvisaation taika!</p>" }, "info_url": null, "name": { "fi": "Improvisaatioteatteria" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226pry/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226rqq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-15T07:05:40.655664Z", "last_modified_time": "2025-05-15T07:05:40.655680Z", "date_published": null, "start_time": "2025-06-07T09:00:00Z", "end_time": "2025-06-07T13: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, "provider": null, "short_description": { "fi": "Tervetuloa tekemään löytöjä vinyylikirpparille!" }, "description": { "fi": "<p>Tervetuloa tekemään löytöjä vinyylikirpparille!</p><p>Tarjolla Lovea, Vertigoa, ... vinyylinä, cd:nä sekä kasetteina.</p><p>Tarjolla myös muuta musiikkiin liittyvää!</p>" }, "info_url": null, "name": { "fi": "Vinyylikirppis" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aula" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226rqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226r3q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-15T06:18:43.866298Z", "last_modified_time": "2025-05-15T06:18:43.866314Z", "date_published": null, "start_time": "2025-05-24T13:00:00Z", "end_time": "2025-05-24T13: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, "provider": null, "short_description": { "fi": "Luvassa tuulahdus kevättä, iloa ja hyviä hetkiä. Tule nauttimaan lauluista, tansseista ja muista musiikkiesityksistä.", "sv": "En fläkt av vår, glädje och goda tider i antågande. Kom och njut av sång, dans och andra musikframträdanden.", "en": "A breath of spring, joy and good times ahead. Come and enjoy singing, dancing and other musical performances." }, "description": { "fi": "<p>Luvassa tuulahdus kevättä, iloa ja hyviä hetkiä. Tule nauttimaan lauluista, tansseista ja muista musiikkiesityksistä.</p>", "sv": "<p>En fläkt av vår, glädje och goda tider i antågande. Kom och njut av sång, dans och andra musikframträdanden.</p>", "en": "<p>A breath of spring, joy and good times ahead. Come and enjoy singing, dancing and other musical performances.</p>" }, "info_url": null, "name": { "fi": "Le Song kuoron kevätkonsertti", "sv": "Le Song-körens vårkonsert", "en": "Le Song choir spring concert" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226r3q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66360", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p2433/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 762874, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-14T12:14:14.892795Z", "last_modified_time": "2025-05-14T12:14:14.892821Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767353.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/762874/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-05-14T12:14:14.729155Z", "last_modified_time": "2025-05-14T12:14:15.053260Z", "date_published": null, "start_time": "2025-06-25T16:00:00Z", "end_time": "2025-08-13T16: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, "provider": null, "short_description": { "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2025 opetellaan jälleen paritansseja!", "sv": "Från foxtrot till fusku, från jenka till samba, från vals till tango! Sommaren 2025 lär vi oss pardanser igen!", "en": "From foxtrot to single-time swing, jenkka to samba and waltz to tango! In the summer of 2025, we will once again be learning partner dances!" }, "description": { "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2025 opetellaan jälleen paritansseja!</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta. Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy!</p><p>Mukaan tanssimaan voi tulla milloin vain. Vuotorilla tanssitaan <br>keskiviikkoisin klo 19-19.45. Opetuksesta vastaavat koulutetut tanssinopettajat. Sateen sattuessa tanssitaan Vuotalon aulassa.</p>", "sv": "<p>Från foxtrot till fusku, från jenka till samba, från vals till tango! Sommaren 2025 lär vi oss pardanser igen!</p><p>I stadsdanserna får du helt avgiftsfritt träna olika pardanser under handledning. Du behöver inga förhandskunskaper, ingen anmälan eller ens en danspartner – den får du på plats!</p><p>Du kan komma med och dansa när du vill. För undervisningen svarar utbildade danslärare. Om det regnar dansar vi i Nordhusets entréhall.</p>", "en": "<p>From foxtrot to single-time swing, jenkka to samba and waltz to tango! In the summer of 2025, we will once again be learning partner dances!</p><p>The Dancing in the City sessions offer opportunities to practise different partner dances under supervision and completely free of charge. No prior skills, registration or even a dance partner are required – we have plenty of them to offer!</p><p>You can join any time. The teaching will be provided by trained dance teachers. In the event of rain, the dancing will take place in the lobby of Vuotalo.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BE30218DF99E6352E2FEC7531BA48B93/Kaupunkitanssit_Vuotorilla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BE30218DF99E6352E2FEC7531BA48B93/Stadsdans_pa_Nortorget", "en": "http://www.vuotalo.fi/en/events/event/BE30218DF99E6352E2FEC7531BA48B93/Dancing_in_the_City_at_Vuotori_Square" }, "name": { "fi": "Kaupunkitanssit Vuotorilla", "sv": "Stadsdans på Nortorget", "en": "Dancing in the City at Vuotori Square" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66360/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226zna", "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/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226shq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226s6m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226tuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226uma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226vc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226vzy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226wqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226xia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226x7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226ywu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T09:43:59.681665Z", "last_modified_time": "2025-05-14T12:03:56.037977Z", "date_published": null, "start_time": "2025-06-06T10:00:00Z", "end_time": "2025-08-15T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Avointa toimintaa aikuisille kirjaston kesäpihalla. Sateen sattuessa olemme sisällä. ", "sv": "Öppen verksamhet för vuxna på bibliotekets sommargård. Vid regn är vi inomhus. ", "en": "Open activities for adults in the library's summer courtyard. In case of rain, we are indoors. " }, "description": { "fi": "<p>Tervetuloa kirjaston kesäpihalle! Kesäpihalla vaihtuvaa ohjelmaa perjantaisin klo 13 alkaen. Ohjelma päättyy viimeistään klo 15. Ei ennakkoilmoittautumista.</p><p><br></p><p>6.6. Mikä kukka/kasvi olisin? Luontotietoa ja hauskoja sanataideharjoituksia.</p><p>13.6. Villiyrttien maistelua ja tutustumista.</p><p>27.6. Lautapelivinkkaus ja pulmapelejä.</p><p>4.7. Tietovisa.</p><p>11.7. Opetellaan korttipelejä.</p><p>18.7. Pistokastreffit, tuo pistokkaita, ota pistokkaita, kerro kasvimuistoja.</p><p>25.7. Kirjavinkkaus.</p><p>1.8. Kollaasi luonnon- ja kierrätysmateriaaleista.</p><p>8.8. Aikuisten satuhetki.</p><p>15.8. Bingo ja kauden päättäjäiset.</p><p><br></p><p>Sateen sattuessa olemme sisätiloissa kirjaston keskiaukiolla. Tapahtuma järjestetään suomeksi. Tervetuloa!</p>", "sv": "<p>Välkommen till bibliotekets sommarträdgård! På fredagar från kl. 13.00 och framåt bjuder Sommarträdgården på ett varierat program. Programmet avslutas senast kl. 15.00.</p><p><br></p><p><br></p><p><br></p><p>6.6. Vilken blomma/växt skulle jag vara? Naturfakta och roliga ordkonstövningar.</p><p>13.6. Provsmakning och utforskning av vilda örter.</p><p>27.6. Brädspelsquiz och pusselspel.</p><p>4.7. Frågesport.</p><p>11.7. Lära sig kortspel.</p><p>18.7. Datum för sticklingar av växter, ta med sticklingar, ta sticklingar, dela växtminnen. </p><p>25.7. Ge bort en bok.</p><p>1.8 Collage av natur- och återvinningsmaterial.</p><p>8.8. Sagostund för vuxna.</p><p>15.8. Bingo och säsongsavslutningsfest.</p><p><br></p><p>Om det regnar är vi inomhus på bibliotekets torg. Evenemanget hålls på finska. Välkomna till oss!</p>", "en": "<p>Welcome to the library's summer courtyard! On Fridays from 1 pm onwards, the Summer Garden offers a varied program. The program ends at 3pm at the latest.</p><p><br></p><p>6.6. What flower/plant would I be? Nature facts and fun word art exercises.</p><p>13.6. Tasting and exploring wild herbs.</p><p>27.6. Board game quiz and puzzle games.</p><p>4.7. Quiz.</p><p>11.7. Learning card games.</p><p>18.7. Plant cuttings date, bring cuttings, take cuttings, share plant memories. </p><p>25.7. Book giveaway.</p><p>1.8 Collage of natural and recycled materials.</p><p>8.8. Story time for adults.</p><p>15.8. Bingo and end-of-season party.</p><p><br></p><p>In case of rain, we will be indoors in the library's central square. The event will be held in Finnish. Welcome!</p>" }, "info_url": null, "name": { "fi": "Aikuisten pihaperjantai", "sv": "Trädgårdsfredag för vuxna", "en": "Garden Friday for adults" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226zna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22637e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226254/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2263i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2263t4/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-13T11:57:24.415448Z", "last_modified_time": "2025-05-13T15:47:08.358073Z", "date_published": null, "start_time": "2025-06-12T14:00:00Z", "end_time": "2025-07-10T15: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, "provider": null, "short_description": { "fi": "Kasettien kuuntelua nostalgisessa levyraatihengessä" }, "description": { "fi": "<p>Kaiva kellarista rakkaat C-kasettisi, ja valitse valmiiksi, minkä biisin haluat soittaa. Kuuntelemme kappaleita nostalgisessa levyraatihengessä ja muistelemme yhdessä \"oi niitä aikoja\". Kasettisoitin tulee kirjastolta. </p><p>Ei ennakkoilmoittautumista! Tapaamme ryhmätyöhuone Ilmarissa, kirjaston 2. krs. Vetäjinä kirjastopedagogit Päivi ja Toni.</p>" }, "info_url": null, "name": { "fi": "C-kasettiklubi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Ilmari ryhmätyötila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22637e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66203", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 699448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-06T12:13:57.016556Z", "last_modified_time": "2025-05-06T12:13:57.016574Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767281.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-06T12:13:56.911904Z", "last_modified_time": "2025-05-13T14:14:08.821897Z", "date_published": null, "start_time": "2025-05-30T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Helsingin Balalaikkaorkesteri on maailman toiseksi vanhin venäläisiä kansansoittimia soittava orkesteri.", "sv": "Helsingin Balalaikkaorkesteri är världens näst äldsta orkester som spelar ryska folkinstrument.", "en": "Helsinki Balalaika Orchestra is the world’s second oldest orchestra playing the Russian folk instruments, founded back in 1910." }, "description": { "fi": "<p>Helsingin Balalaikkaorkesteri on maailman toiseksi vanhin venäläisiä kansansoittimia soittava orkesteri.</p><p>Orkesteri on perustettu vuonna jo vuonna 1910. Orkesterin ohjelmistossa on lauluja eri maista, ja Espalla kuullaan esimerkiksi mustalaissävelmiä, ukrainalaisia kappaleita ja mahdollisesti jopa lattarirytmejä.</p><p>Orkesteria johtaa Gennadi Klykov ja laulusolistina toimii Heli Jormanainen.</p>", "sv": "<p>Helsingin Balalaikkaorkesteri är världens näst äldsta orkester som spelar ryska folkinstrument.</p><p>Orkestern grundades redan 1910. I orkesterns program finns sånger från olika länder, och på Esplanadestraden får man lyssna på till exempel romska melodier, ukrainska låtar och eventuellt rentav latinorytmer.</p><p>Gennadi Klykov leder orkestern och Heli Jormanainen är sångsolist.</p>", "en": "<p>Helsinki Balalaika Orchestra is the world’s second oldest orchestra playing the Russian folk instruments, founded back in 1910.</p><p>The orchestra’s repertoire features songs from different countries, bringing Roma songs, Ukrainian compositions and maybe even Latin rhythms to the Espa Stage.</p><p>The orchestra’s conductor is Gennadi Klykov and the soloist is Heli Jormanainen.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/89CAD91ECA57F585AE245EF55B33E12C/Helsingin_Balalaikkaorkesteri", "sv": "http://www.espanlava.fi/sv/evenemang/event/89CAD91ECA57F585AE245EF55B33E12C/Helsingin_Balalaikkaorkesteri", "en": "http://www.espanlava.fi/en/events/event/89CAD91ECA57F585AE245EF55B33E12C/Helsinki_Balalaika_Orchestra" }, "name": { "fi": "Helsingin Balalaikkaorkesteri – Open Stage", "sv": "Helsingin Balalaikkaorkesteri – Open Stage", "en": "Helsinki Balalaika Orchestra – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66203/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66192", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691744, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:44.934572Z", "last_modified_time": "2025-05-05T13:13:44.934591Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759426.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691744/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:44.855257Z", "last_modified_time": "2025-05-13T13:14:09.998819Z", "date_published": null, "start_time": "2025-05-24T08:00:00Z", "end_time": "2025-05-24T13: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, "provider": null, "short_description": { "fi": "Varma lähestyvän kesän merkki on jo perinteeksi muodostunut Espan Big Band Marathon!", "sv": "Espan Big Band Marathon, som redan blivit en tradition, är ett garanterat tecken på att sommaren är på kommande!", "en": "Espa’s traditional Big Band Marathon is a sure sign of the approaching summer!" }, "description": { "fi": "<p>Varma lähestyvän kesän merkki on jo perinteeksi muodostunut Espan Big Band Marathon!</p><p>Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin. Tule viettämään kesäistä lauantaita yhdessä suurten jazzorkesterien kanssa!</p><p><b>Aikataulu:</b><br>klo 11 Vaskivuori Big Band<br>klo 12 PJK Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Reunion Big Band<br>klo 15 Ladies First Big Band</p>", "sv": "<p>Espan Big Band Marathon, som redan blivit en tradition, är ett garanterat tecken på att sommaren är på kommande!</p><p>Fem underbara grupper framför ett mångsidigt sortiment av Big band-musik, allt från groovande sommarhittar till traditionella Big band-kompositioner. Kom med och tillbringa sommarlördagen tillsammans med de stora jazzorkestrarna!</p><p><b>Tidtabell:</b><br>kl. 11 Vaskivuori Big Band<br>kl. 12 PJK Big Band<br>kl. 13 Ebeli Big Band<br>kl. 14 Reunion Big Band<br>kl. 15 Ladies First Big Band</p>", "en": "<p>Espa’s traditional Big Band Marathon is a sure sign of the approaching summer!</p><p>The five amazing bands present a diverse offering of big band music, from groovy summer hits to more traditional big band compositions.</p><p>Enjoy your summer Saturday together with these big jazz orchestras!</p><p><b>Schedule:</b><br>11:00 Vaskivuori Big Band<br>12:00 PJK Big Band<br>13:00 Ebeli Big Band<br>14:00 Reunion Big Band<br>15:00 Ladies First Big Band</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon", "sv": "http://www.espanlava.fi/sv/evenemang/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon", "en": "http://www.espanlava.fi/en/events/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon" }, "name": { "fi": "Big Band Marathon", "sv": "Big Band Marathon", "en": "Big Band Marathon" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66192/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66191", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691743, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:44.561416Z", "last_modified_time": "2025-05-05T13:13:44.561441Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764972.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:44.488017Z", "last_modified_time": "2025-05-13T13:14:09.770428Z", "date_published": null, "start_time": "2025-05-23T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Musiikkikoulu Demon oppilaat esittävät keväisessä konsertissa rakastettuja elokuvabiisejä.", "sv": "På vårkonserten uppträder elever från Musiikkikoulu Demo med kära filmlåtar.", "en": "Students of the Music School Demo perform popular film songs in their spring concert." }, "description": { "fi": "<p>Musiikkikoulu Demon oppilaat esittävät keväisessä konsertissa rakastettuja elokuvabiisejä.</p><p>Lavalla nähdään laaja kattaus eri-ikäisiä musiikin harrastajia ja eri instrumentteja.</p><p>Tervetuloa kuuntelemaan!</p>", "sv": "<p>På vårkonserten uppträder elever från Musiikkikoulu Demo med kära filmlåtar.</p><p>På estraden ses ett brett sortiment musikhobbyister i olika åldrar och med olika instrument.</p><p>Välkommen för att lyssna!</p>", "en": "<p>Students of the Music School Demo perform popular film songs in their spring concert.</p><p>The concert will fill the stage with a wide range of music enthusiasts of different ages and their different instruments.</p><p>Come and enjoy!</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Musiikkikoulu_Demo_esittaa_Musiikkia_Valkokankaalta", "sv": "http://www.espanlava.fi/sv/evenemang/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Musiikkikoulu_Demo_framfor_Filmduksmusik_Musiikkia_Valkokankaalta_", "en": "http://www.espanlava.fi/en/events/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Music_School_Demo_presents_Music_from_the_big_screen" }, "name": { "fi": "Musiikkikoulu Demo esittää: Musiikkia Valkokankaalta", "sv": "Musiikkikoulu Demo framför: Filmduksmusik (Musiikkia Valkokankaalta)", "en": "Music School Demo presents: Music from the big screen" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66191/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66190", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 691742, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T13:13:44.240926Z", "last_modified_time": "2025-05-05T13:13:44.240945Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764940.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691742/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T13:13:44.144972Z", "last_modified_time": "2025-05-13T13:14:09.589645Z", "date_published": null, "start_time": "2025-05-23T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espan konserttia edeltää usein vartioparaati, joka käynnistyy Senaatintorilta kello 12.30.</p><p>MIL-Espa-puistokonsertteja on järjestetty vuodesta 1927 lähtien Esplanadin puistossa.</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-konserten föregås ofta av en vaktparad som börjar på Senatstorget kl. 12.30.</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>The MIL-Espa concert is often preceded by a guard parade starting from the Senate Square at 12:30.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Ilmavoimien_Big_Band", "sv": "http://www.espanlava.fi/sv/evenemang/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Flygvapnets_Big_Band", "en": "http://www.espanlava.fi/en/events/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Air_Force_Big_Band" }, "name": { "fi": "MIL-Espa: Ilmavoimien Big Band", "sv": "MIL-Espa: Flygvapnets Big Band", "en": "MIL-Espa: Air Force Big Band" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66190/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65896", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" }, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446806, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:38.184976Z", "last_modified_time": "2025-04-01T14:13:38.184991Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767912.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446806/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:38.171041Z", "last_modified_time": "2025-05-13T13:14:08.281156Z", "date_published": null, "start_time": "2025-05-18T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.", "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.", "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour." }, "description": { "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 60 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754499/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Längd: 60 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754499/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 60 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754499/?affiliate=FSF\">HERE</a></u></p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1D95E93B96D3B208912FE16B896F8091/Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/1D95E93B96D3B208912FE16B896F8091/Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/1D95E93B96D3B208912FE16B896F8091/Teatteri_Nirvana_HATKAT_" }, "name": { "fi": "Teatteri Nirvana: HATKAT", "sv": "Teatteri Nirvana: HATKAT", "en": "Teatteri Nirvana: HATKAT" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65896/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66177", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 690400, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T09:13:15.949125Z", "last_modified_time": "2025-05-05T09:13:15.949143Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765928.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690400/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T09:13:15.858099Z", "last_modified_time": "2025-05-13T13:14:07.748741Z", "date_published": null, "start_time": "2025-05-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Espan lavalla vietetään lastenkulttuurin juhlaviikkoa! Red Nose Company tuo Espan lavalle riemukkaan klovniversion Punahilkka-sadusta.", "sv": "Barnkulturens jubileumsvecka firas på Esplanadestraden! Red Nose Company har med sig en clownversion av sagan Rödluvan på Esplanadestraden.", "en": "Celebration of Children’s Culture Week on Espa Stage! Red Nose Company will take over the Espa Stage with their joyful clown version of the fairytale Little Red Riding Hood." }, "description": { "fi": "<p>Espan lavalla vietetään lastenkulttuurin juhlaviikkoa! Red Nose Company tuo Espan lavalle riemukkaan klovniversion Punahilkka-sadusta.</p><p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén, riemukkaana tulkintana. Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan.</p><p>Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa? Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä.</p><p>Esitys on suunnattu erityisesti alakoululaisille ja heidän perheilleen.</p><p>Esityksen kesto noin 60 min<br>Ikäsuositus: 6+<br>Kieli: suomi</p><p><b>Työryhmä:</b><br>Käsikirjoitus: Minna Puolanto, Hanna Seppä ja Niina Sillanpää<br>Rooleissa: Minna Puolanto (Babylon) ja Hanna Seppä (Ré)<br>Ohjaus: Niina Sillanpää<br>Valo- ja äänisuunnittelu: Jere Kolehmainen<br>Pukusuunnittelu: Noora Salmi</p><p>Teos on Red Nose Companyn ja Kanneltalon yhteistuotanto</p>", "sv": "<p>Barnkulturens jubileumsvecka firas på Esplanadestraden! Red Nose Company har med sig en clownversion av sagan Rödluvan på Esplanadestraden.</p><p>Historien om Rödluvan har berättats från generation till generation i hundratals år. Nu sätts den älskade sagan upp på scenen i en dråplig tolkning av två clowner, Babylon och Ré. En gåva från mormor ger Rödluvan superkrafter och hjälper henne att klara av knepiga situationer. Trots superkrafterna behövs också publikens hjälp. <br>Hur går mötet mellan vargen och Rödluvan i den här moderna, uppdaterade versionen?<br>Clownerna får publiken att reflektera över teman som tillit och trygghet utan att spara på humorn.</p><p>Föreställningen riktar sig särskilt till lågstadieelever och deras familjer.</p><p>Föreställningens längd är ca 60 min.<br>Åldersrekommendation: 6+<br>Språk: finska<br> <br><b>ARBETSGRUPP</b><br>På scenen: Hanna Seppä och Minna Puolanto<br>Regi: Niina Sillanpää<br>Manus: Arbetsgrupp<br>Ljus- och ljuddesign: Jere Kolehmainen<br>Kostymdesign: Noora Salmi<br>Produktion: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Grafisk design: Ilari Kallinen</p><p>Föreställningen är en samproduktion med Gamlasgården</p>", "en": "<p>Celebration of Children’s Culture Week on Espa Stage! Red Nose Company will take over the Espa Stage with their joyful clown version of the fairytale Little Red Riding Hood.</p><p>The tale of the Little Red Riding Hood has been told for centuries. Now two clowns Babylon & Ré take this beloved story into their hands and tune it to the 21 century. Little Red Riding Hood receives a magical cape from her grandmother – it turns out to have superpower that helps in difficult situations. This show will investigate themes of trust and safety without forgetting joy and laughter.</p><p>We especially welcome for 6–12-year-old kids and their families.</p><p>Length of the show: 60 minutes<br>Age recommendation: 6+<br>Language: Finnish</p><p><b>WORKING GROUP</b><br>On stage: Hanna Seppä and Minna Puolanto<br>Director: Niina Sillanpää<br>Script: working group<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Production: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Graphical design: Ilari Kallinen</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/85B04B3F42243DB320EFEC0A8E6E84EE/Red_Nose_Company_Punahilkan_paluu_", "sv": "http://www.espanlava.fi/sv/evenemang/event/85B04B3F42243DB320EFEC0A8E6E84EE/Red_Nose_Company_Punahilkan_paluu_Rodluvans_aterkomst_", "en": "http://www.espanlava.fi/en/events/event/85B04B3F42243DB320EFEC0A8E6E84EE/Red_Nose_Company_Punahilkan_paluu_The_Return_of_The_Little_Red_Riding_Hood_" }, "name": { "fi": "Red Nose Company: Punahilkan paluu – Lastenkulttuurin juhlaviikon tapahtuma", "sv": "Red Nose Company: Punahilkan paluu (Rödluvans återkomst) – Evenemang under barnkulturens jubileumsvecka", "en": "Red Nose Company: Punahilkan paluu (The Return of The Little Red Riding Hood)" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66177/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66176", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 690399, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T09:13:15.565527Z", "last_modified_time": "2025-05-05T09:13:15.565545Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765950.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690399/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T09:13:15.476783Z", "last_modified_time": "2025-05-13T13:14:07.468418Z", "date_published": null, "start_time": "2025-05-17T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Espan lavalla vietetään lastenkulttuurin juhlaviikkoa hurmaavan Mirkka & Luis -lastenmusiikkiyhtyeen rytmeistä ja sanoista nauttien.", "sv": "På Esplanadestraden firas barnkulturens jubileumsvecka med glädje av rytmen och orden hos barnmusikgruppen Mirkka & Luis.", "en": "Espa Stage celebrates the Children’s Culture Week with the rhythms and lyrics of the charming children’s band Mirkka & Luis." }, "description": { "fi": "<p>Espan lavalla vietetään lastenkulttuurin juhlaviikkoa hurmaavan Mirkka & Luis -lastenmusiikkiyhtyeen rytmeistä ja sanoista nauttien.</p><p>Mirkka & Luis -lastenmusiikkiyhtyeen intohimona on laulattaa, naurattaa ja liikuttaa niin mieltä kuin kehoakin. Palkittua yhtyettä onkin kiitelty korkeatasoisesta musiikista sekä oivaltavista, ajankohtaisista ja puhuttelevista sanoituksista, jotka ovat yhtyeen omaa käsialaa. Lisäksi yhtyeen valloittava läsnäolo hurmaa niin lapset kuin aikuisetkin.</p><p>Siispä tervetuloa kuulemaan parasta lastenmusiikkia!</p><p>”Lapsille parasta, tottakai!”</p><p>Kesto: 1 tunti</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p>", "sv": "<p>På Esplanadestraden firas barnkulturens jubileumsvecka med glädje av rytmen och orden hos barnmusikgruppen Mirkka & Luis.</p><p>Barnmusikgruppen Mirkka & Luis har som passion att få såväl knopp som kropp att sjunga, skratta och röra sig. Den prisbelönta gruppen har även prisats för högklassig musik samt för insiktsfulla, aktuella och tilltalande texter, skrivna av gruppen. Dessutom charmar gruppens erövrande närvaro såväl barnen som vuxna.</p><p>Välkommen att lyssna på den bästa barnmusiken!</p><p>”Självklart det bästa för barnen!”</p><p>Längd: 1 timme</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>", "en": "<p>Espa Stage celebrates the Children’s Culture Week with the rhythms and lyrics of the charming children’s band Mirkka & Luis.</p><p>The children’s music group Mirkka & Luis is passionate about making their audience sing, laugh and move, both in body and mind. The award-winning ensemble has been praised for their high-class music as well as their insightful, timely and thought-provoking lyrics written by the band members themselves. The band’s captivating presence also charms children and adults alike.</p><p>Come and enjoy the best of children’s music!</p><p>“Only the best for children, of course!”</p><p>Duration: 1 hour</p><p>The performance is produced in cooperation with the Concert Centre Finland.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6859FB844ADDD1BDB6F9EB3DEF82505B/Mirkka_Luis", "sv": "http://www.espanlava.fi/sv/evenemang/event/6859FB844ADDD1BDB6F9EB3DEF82505B/Mirkka_Luis", "en": "http://www.espanlava.fi/en/events/event/6859FB844ADDD1BDB6F9EB3DEF82505B/Mirkka_Luis" }, "name": { "fi": "Mirkka & Luis – Lastenkulttuurin juhlaviikon tapahtuma", "sv": "Mirkka & Luis – Evenemang under barnkulturens jubileumsvecka", "en": "Mirkka & Luis – Children’s Culture Week event" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66176/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65895", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" }, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446805, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:37.893971Z", "last_modified_time": "2025-04-01T14:13:37.893986Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767910.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446805/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:37.878410Z", "last_modified_time": "2025-05-13T13:14:07.205267Z", "date_published": null, "start_time": "2025-05-16T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.", "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.", "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour." }, "description": { "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 60 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754498/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Längd: 60 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754498/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 60 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754498/?affiliate=FSF\">HERE</a></u></p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BD4DE16FD24191B8DEF9D5B1CFA448D2/Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/BD4DE16FD24191B8DEF9D5B1CFA448D2/Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/BD4DE16FD24191B8DEF9D5B1CFA448D2/Teatteri_Nirvana_HATKAT_" }, "name": { "fi": "Teatteri Nirvana: HATKAT", "sv": "Teatteri Nirvana: HATKAT", "en": "Teatteri Nirvana: HATKAT" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65895/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2264la", "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/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-13T12:28:33.381063Z", "last_modified_time": "2025-05-13T12:28:33.381079Z", "date_published": null, "start_time": "2025-06-01T09:00:00Z", "end_time": "2025-06-01T11: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, "provider": null, "short_description": { "fi": "Lähde mukaan viettämään kummipäivää sunnuntaina 1.6. klo 12 - 14" }, "description": { "fi": "<p>Tervetuloa viettämään mukava hetki kummilapsen kanssa Lippulaivan kirjastoon (3. krs). Yhteistä puuhaa kummille ja kummilapselle: tule pyörittämään onnenpyörää ja nauttimaan kahvia ja mehua. Hyvällä säällä olemme kirjaston sisäpihalla!</p>" }, "info_url": null, "name": { "fi": "Kummipäivä" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2264la/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65698", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 374758, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-20T12:15:00.785822Z", "last_modified_time": "2025-03-20T12:15:00.785854Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766423.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/374758/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-20T12:15:00.760316Z", "last_modified_time": "2025-05-13T09:14:01.976616Z", "date_published": null, "start_time": "2025-06-03", "end_time": "2025-08-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa tanssimaan Malmille kesätiistaisin kello 16–16.45!", "sv": "Välkommen till Malm och att dansa på sommartisdagar kl. 16–16.45!", "en": "Come along and dance in Malmi on summer Tuesdays at 16.00–16.45!" }, "description": { "fi": "<p>Tervetuloa tanssimaan Malmille kesätiistaisin kello 16–16.45!</p><p>Kaupunkitanssit tarjoaa maksutonta paritanssiopetusta kesäaikaan eri puolilla pääkaupunkiseutua.</p><p>Kaupunkitanssit sopivat niin aloittelijoille kuin kokeneimmillekin tanssijoille, opetus mukautetaan aina osallistujien taitotasoon. Tanssimaan voi tulla yksin tai parin kanssa, eikä ennakkoilmoittautumista tarvita.</p><p>Opetuksesta vastaavat koulutetut tanssinopettajat. Sadesäällä tanssitaan Malmitalon aulassa. Kaupunkitanssit järjestää Tanssiteatteri Tsuumi yhteistyössä Malmitalon kanssa.</p><p>\"Kaupunkitanssien kaltaiset matalan kynnyksen tapahtumat tuovat tanssin ilon kaikkien ulottuville!\"</p><p><b>OPETUSOHJELMA</b><br>Ti 3.6. klo 16–16.45 hidas valssi<br>Ti 10.6. klo 16–16.45 humppa<br>Ti 17.6. klo 16–16.45 valssi<br>Ti 24.6. klo 16–16.45 jenkka <br>Ti 1.7. klo 16–16.45 salsa<br>Ti 8.7. klo 16–16.45 tango<br>Ti 15.7. klo 16–16.45 polkka<br>Ti 22.7. klo 16–16.45 cha cha<br>Ti 29.7. klo 16–16.45 foksi<br>Ti 5.8. klo 16–16.45 bachata<br>Ti 12.8. klo 16–16.45 fusku<br>Ti 19.8. klo 16–16.45 masurkka<br>Ti 26.8. klo 16–16.45 samba</p>", "sv": "<p>Välkommen till Malm och att dansa på sommartisdagar kl. 16–16.45!</p><p>Stadsdanserna erbjuder avgiftsfri pardansundervisning sommartid på olika håll i huvudstadsregionen.</p><p>Stadsdanserna passar både nybörjare och erfarna dansare, undervisningen anpassas alltid till deltagarnas färdighetsnivå. Du kan komma för att dansa ensam eller med din partner, och det behövs ingen förhandsanmälan.</p><p>Utbildade danslärare svarar för undervisningen. Vid regnväder dansar vi i entréhallen i Malms kulturhus. Dansteatern Tsuumi arrangerar stadsdanserna i samarbete med Malms kulturhus.</p><p>”Lågtröskelevenemang som stadsdanserna gör att alla får ta del av dansglädjen!”</p><p><b>UNDERVISNINGSPROGRAM</b><br>Ti 3.6 kl. 16–16.45 långsam vals<br>Ti 10.6 kl. 16–16.45 humppa<br>Ti 17.6 kl. 16–16.45 vals<br>Ti 24.6 kl. 16–16.45 jenka<br>Ti 1.7 kl. 16–16.45 salsa<br>Ti 8.7 kl. 16–16.45 tango<br>Ti 15.7 kl. 16–16.45 polka<br>Ti 22.7 kl. 16–16.45 cha-cha<br>Ti 29.7 kl. 16–16.45 foxtrot<br>Ti 5.8 kl. 16–16.45 bachata<br>Ti 12.8 kl. 16–16.45 fusku<br>Ti 19.8 kl. 16–16.45 mazurka<br>Ti 26.8 kl. 16–16.45 samba</p>", "en": "<p>Come along and dance in Malmi on summer Tuesdays at 16.00–16.45!</p><p>Dancing in the City events offer free-of-charge partner dance instruction during the summer season across the Helsinki Metropolitan Area.</p><p>The urban barn dance events are suitable for both beginners and more experienced dancers; teaching is always adapted to the skill level of the participants. You can come along alone or with a partner, and you do not need to sign up in advance.</p><p>The instructors will be trained dance teachers. If it rains, we will dance in the Malmitalo lobby. The Dancing in the City events dances are hosted by Tsuumi Dance Theatre in cooperation with Malmitalo.</p><p>“Low-threshold events like Dancing in the City will make the joy of dancing available to everyone!\"</p><p><b>SCHEDULE</b><br>Tue 3 June, 4:00–4:45 PM Slow Waltz<br>Tue 10 June, 4:00–4:45 PM Humppa<br>Tue 17 June, 4:00–4:45 PM Waltz<br>Tue 24 June, 4:00–4:45 PM Jenkka<br>Tue 1 July, 4:00–4:45 PM Salsa<br>Tue 8 July, 4:00–4:45 PM Tango<br>Tue 15 July, 4:00–4:45 PM Polka<br>Tue 22 July, 4:00–4:45 PM Cha Cha<br>Tue 29 July, 4:00–4:45 PM Foxtrot<br>Tue 5 August, 4:00–4:45 PM Bachata<br>Tue 12 August, 4:00–4:45 PM Fusku<br>Tue 19 August, 4:00–4:45 PM Mazurka<br>Tue 26 August, 4:00–4:45 PM Samba</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8FE747900A2046FE6BE188CD64C60426/Kaupunkitanssit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8FE747900A2046FE6BE188CD64C60426/Stadsdans", "en": "http://www.malmitalo.fi/en/events/event/8FE747900A2046FE6BE188CD64C60426/Dancing_in_the_City" }, "name": { "fi": "Kaupunkitanssit – Malmin tapahtumakesä", "sv": "Stadsdans – Malms evenemangssommar", "en": "Dancing in the City – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65698/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65617", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 221215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T13:14:13.133082Z", "last_modified_time": "2025-02-13T13:14:13.133118Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756113.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-13T13:14:13.093374Z", "last_modified_time": "2025-05-13T08:15:17.442679Z", "date_published": null, "start_time": "2025-05-17T13:00:00Z", "end_time": "2025-05-17T17: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, "provider": null, "short_description": { "fi": "Mitä olisikaan kevät ilman Idän kyläjuhlia? Nämä juhlat ovat elämys aisteille ja toukokuun parhaat bileet!", "sv": "Vad vore våren utan byafesten Idän kyläjuhla? Den här festen är en upplevelse för sinnena och den bästa festen i maj!", "en": "What would spring be without the Idän kyläjuhla festival? This party is an experience for the senses and the best party of May!" }, "description": { "fi": "<p>Mitä olisikaan kevät ilman Idän kyläjuhlia? Nämä juhlat ovat elämys aisteille ja toukokuun parhaat bileet!</p><p>Stoan aukiolla voit fiilistellä musiikkia, hengästyä huimapäisestä sirkustaiteesta, nauttia ruoasta ja virittyä kevääseen monenlaisen taiteen ja tekemisen kautta. Tule kanssamme luomaan juhlatunnelmaa!</p><p><b>Esiintyjät</b><br>klo 16.00 Kissa<br>klo 16.45 katusirkus MUIAT<br>klo 17.15 Senya <br>klo 18.00 katusirkus MUIAT<br>klo 18.30 Eevil Stöö</p><p>Lisäksi erilaisia työpajoja Stoan aukiolla klo 16-19. <br>Tapahtuman juontajana loistaa Lina Schiffer!</p><p><b>Eevil Stöö</b><br>Parikymmentä vuotta pelissä vaikuttanut Eevil Stöö on suomalaisen räpin omaperäinen helmi, jonka vyöltä löytyy niin listaykkösiä kuin Teosto-palkintokin.</p><p><b>Senya</b><br>Ikoni-singlellään näyttävästi suuremman yleisön tietoisuuteen noussut uuden aallon RnB-Rap-artisti Senya julkaisi toisen pitkäsoittonsa syyskuussa 2024. Artistin tuorein single Rockstar ilmestyi helmikuussa 2025 singahtaen suoraan Spotifyn Top20-listalle.</p><p><b>MUIAT</b> on rehellinen nykysirkusteos, jossa naiset saavat olla juuri sellaisia kuin he ovat, eikä heidän ominaisuuksiaan kyseenalaisteta. Teoksessa esiintyjät Kamilla Nisso, Iitu Kivimäki ja Anniina Peltovako tutkailevat naiseutta omien kokemustensa kautta hyödyntäen sirkusteniikan mahdollisuuksia ja fyysisen ilmaisun keinoja. Ihmispyramideja ja akrobatiaa sisältävä esitys kyseenalaistaa vanhanaikaisia sukupuolirooleja ja pyrkii avartamaan katsojien mieltä, huumoria unohtamatta.</p><p><b>Kissa</b><br>Kissa on helsinkiläinen rockyhtye, joka tarjoaa tilaisuuden irtautua perinteiden ja käytännöllisyyden kahleista. Heidän musiikkinsa luovii sujuvasti genrerajoilla uhkuen garage rockin raakaa ja spontaania ilmaisua, sekä kuljettaen kuuntelijan voimapopin hellään syleilyyn.</p><p><b>Työpajat klo 16-19</b></p><p><b>Muotokuva-automaatti</b><br>Piirrosperformanssi, jossa saat käsin piirretyn muotokuvan itsestäsi 4 minuutissa. Automaatin muotokuvien ei tarvitse kilpailla värikkään tekoälytaiteen kanssa: lyijykynän sielukkuudella, oikean ihmisen jättämällä jäljellä ja vuosien piirtämisen harjoittelulla automaatti tavoittaa jotain aitoa jokaisesta mallistaan. Automaatin piirtäjä: kuvataiteilija Verna Kuntsi<br>Muotokuva-automaatti käytettävissä klo 16–19, pois lukien huoltoajat: klo 16.50-17.00 tauko ja 17.50-18.00 tauko.</p><p><b>Kirjontaa koviksille</b><br>Pysähdy hetkeksi tekemään ristipistotyö, jossa on asennetta! Työskennellään värikkäillä langoilla kierrätysmateriaaleille. Tarjolla on ideoita hip hop -teemaan ja väkeviin viesteihin. Kirjonta kestää tovin, eli voit tarvittaessa jatkaa hommaa myös kotona. Sopii erityisen hyvin aikuisille, mutta myös kaikille yli 8- vuotiaille. Ohjaaja: Chloé Mahy-Hulkko</p><p><b>Vinyylikuvapaja</b><br>Kaipaako laukkusi tai hupparisi uutta ilmettä? Itäkeskuksen kirjaston pisteellä voit painaa valmiiksi leikattuja vinyylikuvia omiin tekstiileihisi.</p><p><b>Watan Ry:n käsityöpaja</b> <br>Watan ry:n pajassa tutustutaan Lähi-idän alueen käsityötekniikoihin.</p><p><b>Avaimenperä-työpaja</b><br>Kirjoita nahkaiseen avaimenperään oma lempinimi tai muu ilahduttava viesti. Työpajassa valmistetaan huonekaluteollisuuden ylijäämänahasta avaimenperät, joihin lyödään kohokirjaimin haluttu teksti. Ohjaaja: Greta Salonen</p><p><b>Somaliland Liaison Office ry:n tapahtumapiste</b><br>Perintö loistaa kirkkaimmin kulttuurijuhlissa, joten anna jokaisen kulttuurifestivaalin avata silmäsi globaaleille ihmeille. Nauti muun muassa ruoasta, hennasta ja perinteisistä käsitöistä. Somaliland Liaison Office ry in Finland edistää kulttuurivaihtoa sekä osallistuu erilaisiin tapahtumiin Suomessa, sekä vahvistaa oman identiteetin tuntemusta.</p><p><b>Sirkus Magentan värikäs sirkuspaja klo16-18</b><br>Matalan kynnyksen sirkusohjausta ja erilaisten sirkusvälineiden kokeilua. Paja sopii kaiken ikäisille, voit osallistua itsellesi sopivalla tyylillä.</p><p>Tapahtumiin ja työpajoihin on vapaa pääsy.</p><p>Ravintola Box Stoa on auki tapahtuman ajan.</p>", "sv": "<p>Vad vore våren utan byafesten Idän kyläjuhla? Den här festen är en upplevelse för sinnena och den bästa festen i maj!</p><p>På Stoaplatsen kan du njuta av musik, tappa andan av svindlande cirkuskonst, njuta av mat och komma i vårstämning genom en mängd av konst och aktiviteter. Häng med och skapa feststämning!</p><p><b>Uppträdanden</b><br>kl. 16.00 Kissa<br>kl. 16.45 gatu-cirkus MUIAT<br>kl. 17.15 Senya<br>kl. 18.00 gatu-cirkus MUIAT<br>kl. 18.30 Eevil Stöö</p><p>Dessutom olika verkstäder på Stoas torg kl. 16–19!</p><p><b>Eevil Stöö</b><br>Eevil Stöö har varit aktiv i över tjugo år och är en originell pärla inom finsk rap. På hans meritlista finns både topplistettor och Teosto-priset.</p><p><b>Senya</b><br>RnB-rapartisten Senya slog igenom med sin ikoniska singel och fick sitt stora genombrott. Hennes andra album släpptes i september 2024, och den senaste singeln Rockstar klättrade direkt till Spotifys Top 20 i februari 2025.</p><p><b>MUIAT</b><br>MUIAT är en ärlig samtida cirkusföreställning där kvinnorna får vara precis som de är, utan att deras egenskaper ifrågasätts. Genom sina egna erfarenheter utforskar artisterna Kamilla Nisso, Iitu Kivimäki och Anniina Peltovako kvinnlighet med hjälp av cirkusteknik och fysisk uttryckskraft. Föreställningen, som innehåller mänskliga pyramider och akrobatik, utmanar föråldrade könsroller och vill vidga publikens vyer – med humor som en viktig ingrediens.</p><p><b>Kissa</b><br>Kissa är ett rockband från Helsingfors som bjuder in publiken att frigöra sig från traditionens och det praktiskas bojor. Deras musik rör sig smidigt över genregränserna, med rå och spontan garagerock och öm powerpop i fin balans.</p><p>Fritt inträde<br>Rekommenderad ålder: alla<br>Språk: flerspråkigt</p>", "en": "<p>What would spring be without the Idän kyläjuhla festival? This party is an experience for the senses and the best party of May!</p><p>At Stoa Square, you can vibe with the music, be astounded by reckless circus art, enjoy food and get ready for spring with a wide range of art and activities. Join us in creating a festive atmosphere!</p><p><b>Performances</b><br>4:00 PM Kissa<br>4:45 PM street circus MUIAT<br>5:15 PM Senya<br>6:00 PM street circus MUIAT<br>6:30 PM Eevil Stöö</p><p>Also various workshops at Stoa square from 4 PM to 7 PM!</p><p><b>Eevil Stöö</b><br>With over two decades in the game, Eevil Stöö is a unique gem in Finnish rap, known for topping the charts and receiving the Teosto Prize.</p><p><b>Senya</b><br>The new wave RnB-Rap artist Senya made a striking entrance into the public eye with her iconic debut single. Her second album was released in September 2024, and her latest single Rockstar hit Spotify’s Top 20 right after its release in February 2025.</p><p><b>MUIAT</b><br>MUIAT is a raw and honest contemporary circus performance where women are free to be exactly who they are, without judgment. Performers Kamilla Nisso, Iitu Kivimäki, and Anniina Peltovako explore womanhood through their personal experiences, using circus techniques and physical expression. The show, featuring human pyramids and acrobatics, challenges outdated gender roles and seeks to broaden the viewer’s perspective – with a healthy dose of humor.</p><p><b>Kissa</b><br>Kissa is a rock band from Helsinki that invites listeners to break free from the chains of tradition and practicality. Their music flows effortlessly across genre boundaries, blending the raw spontaneity of garage rock with the tender embrace of power pop.</p><p>Free entry<br>Recommended age: all<br>Language: multilingual</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5E7EE02842E6478B0720072D70F861F0/Idan_kylajuhla", "sv": "http://www.stoa.fi/sv/evenemang/event/5E7EE02842E6478B0720072D70F861F0/Byafesten_Idan_kylajuhla", "en": "http://www.stoa.fi/en/events/event/5E7EE02842E6478B0720072D70F861F0/Idan_kylajuhla" }, "name": { "fi": "Idän kyläjuhla – Eevil Stöö, Senya, Kissa, katusirkusta ja paljon muuta!", "sv": "Byafesten Idän kyläjuhla – Eevil Stöö, Senya, Kissa, gatucirkus och mycket mer!", "en": "Idän kyläjuhla – Eevil Stöö, Senya, Kissa, street circus and much more!" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65617/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66331", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 747125, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T14:13:19.835462Z", "last_modified_time": "2025-05-12T14:13:19.835478Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/747125/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-12T14:13:19.766106Z", "last_modified_time": "2025-05-12T14:13:19.937556Z", "date_published": null, "start_time": "2025-06-27T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Koko perheen Taikahetki Robert Jägerhornin seurassa on suunnattu kaikille aina perheen pikkuväestä vaariin.", "sv": "Magiskt kul med Robert Jägerhorn riktar sig till alla, från de yngsta i familjen till de äldsta.", "en": "The show Magical Fun with Robert Jägerhorn is aimed at everyone from the youngest members of the family to the grandparents." }, "description": { "fi": "<p>Koko perheen Taikahetki Robert Jägerhornin seurassa on suunnattu kaikille aina perheen pikkuväestä vaariin.</p><p>Luvassa on uskomattomia taikoja, hauskanpitoa ja paljon mahdollisuuksia yleisön osallistumiselle.</p><p>Esityksen kesto on 40 minuuttia.</p>", "sv": "<p>Magiskt kul med Robert Jägerhorn riktar sig till alla, från de yngsta i familjen till de äldsta.</p><p>Föreställningen bygger på otrolig magi, massor med kul och många möjligheter för publiken att delta.</p><p>Kom och se! Och ta me' både mormor och lillebrorn! För här kommer Robert Jägerhorn som ett magimonster med otroliga trollkonster.</p><p>Längd 40 minuter.</p>", "en": "<p>The show Magical Fun with Robert Jägerhorn is aimed at everyone from the youngest members of the family to the grandparents.</p><p>It's based on incredible magic, lots of fun and opportunities for audience participation.</p><p>The show is 40 minutes long.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2C578F5FF36B9C1F4EC364888635CD61/Taikahetki_Robert_Jagerhornin_seurassa", "sv": "http://www.espanlava.fi/sv/evenemang/event/2C578F5FF36B9C1F4EC364888635CD61/Magiskt_kul_med_Robert_Jagerhorn", "en": "http://www.espanlava.fi/en/events/event/2C578F5FF36B9C1F4EC364888635CD61/Magical_Fun_with_Robert_Jagerhorn" }, "name": { "fi": "Taikahetki Robert Jägerhornin seurassa", "sv": "Magiskt kul med Robert Jägerhorn", "en": "Magical Fun with Robert Jägerhorn" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65851", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 612870, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T11:13:18.406329Z", "last_modified_time": "2025-04-25T11:13:18.406345Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767671.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/612870/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-25T11:13:18.336054Z", "last_modified_time": "2025-05-12T10:14:11.711930Z", "date_published": null, "start_time": "2025-06-03T14:30:00Z", "end_time": "2025-08-05T15: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, "provider": null, "short_description": { "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon. Kesällä 2025 opetellaan jälleen paritansseja!", "sv": "Från foxtrot till fusku, från jenkka till samba, från vals till tango. Sommaren 2025 lär vi oss pardans igen!", "en": "From foxtrot to fusku, from jenkka to samba, from waltz to tango. In summer 2025, we’re learning partner dances again!" }, "description": { "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon. Kesällä 2025 opetellaan jälleen paritansseja!</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta. Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy! Mukaan tanssimaan voi tulla milloin vain. Opetuksesta vastaavat koulutetut tanssinopettajat. Sateen sattuessa tanssitaan Kanneltalon aulassa.</p><p><b>Ohjelma</b><br>ti 3.6. klo 17.30–18.15 bugg<br>ti 10.6. klo 17.30–18.15 masurkka <br>ti 17.6. klo 17.30–18.15 jenkka<br> ti 24.6. klo 17.30–18.15 foksi <br>ti 1.7. klo 17.30–18.15 fusku <br>ti 8.7. klo 17.30–18.15 hidas valssi <br>ti 15.7. klo 17.30–18.15 samba<br>ti 22.7. klo 17.30–18.15 valssi<br>ti 29.7. klo 17.30-18.15 cha cha<br>ti 5.8. klo 17.30-18.15 tango</p><p>Opetuskieli: suomi<br>Paikka: Kannelmäen Sitratori</p><p>Vapaa pääsy</p>", "sv": "<p>Från foxtrot till fusku, från jenkka till samba, från vals till tango. Sommaren 2025 lär vi oss pardans igen!</p><p>På Stadstans får du prova olika pardanser – med handledning och helt gratis. Du behöver inga förkunskaper, ingen anmälan och inte ens en danspartner – du hittar en på plats! Du kan hoppa med och börja dansa när som helst. Undervisningen leds av utbildade danslärare.</p><p>Gratis undervisning i pardanser på finska på Sitratorget genom hela sommaren, sammanlagt 10 gånger. Vid regn i Gamlasgårdens entréhall.</p><p><b>Program:</b><br>tis 3.6 kl. 17.30–18.15 bugg<br>tis 10.6 kl. 17.30–18.15 mazurka<br>tis 17.6 kl. 17.30–18.15 jenka<br>tis 24.6 kl. 17.30–18.15 foxtrot<br>tis 1.7 kl. 17.30–18.15 fusku<br>tis 8.7 kl. 17.30–18.15 långsam vals<br>tis 15.7 kl. 17.30–18.15 samba<br>tis 22.7 kl. 17.30–18.15 vals<br>tis 29.7 kl. 17.30–18.15 cha cha<br>tis 5.8 kl. 17.30–18.15 tango</p>", "en": "<p>From foxtrot to fusku, from jenkka to samba, from waltz to tango. In summer 2025, we’re learning partner dances again!</p><p>At City Dances, you’ll get to try out a variety of partner dances – with guidance and completely free of charge.</p><p>No prior experience, registration, or even a dance partner is needed – you'll find one on the spot! You can join the dancing at any time. The lessons are led by qualified dance instructors.</p><p><b>Schedule:</b><br>Tue 3 June, 5:30–6:15 pm – bugg<br>Tue 10 June, 5:30–6:15 pm – mazurka<br>Tue 17 June, 5:30–6:15 pm – jenka<br>Tue 24 June, 5:30–6:15 pm – foxtrot<br>Tue 1 July, 5:30–6:15 pm – fusku<br>Tue 8 July, 5:30–6:15 pm – slow waltz<br>Tue 15 July, 5:30–6:15 pm – samba<br>Tue 22 July, 5:30–6:15 pm – waltz<br>Tue 29 July, 5:30–6:15 pm – cha cha<br>Tue 5 August, 5:30–6:15 pm – tango</p><p>The teaching happens in Finnish, but it’s possible to join without speaking the language.</p><p>If it rains, lessons will be held in Kanneltalo lobby.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/315DF224CFD56919BAF6DDD26B6719FB/Kaupunkitanssit_Kannelmaen_Sitratorilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/315DF224CFD56919BAF6DDD26B6719FB/Stadsdans_pa_Cittertorget_i_Gamlas", "en": "http://www.kanneltalo.fi/en/events/event/315DF224CFD56919BAF6DDD26B6719FB/Dancing_in_the_City_on_Sitratori_square_in_Kannelmaki" }, "name": { "fi": "Kaupunkitanssit Kannelmäen Sitratorilla", "sv": "Stadsdans på Cittertorget i Gamlas", "en": "Dancing in the City on Sitratori square in Kannelmäki" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65851/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2266vu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2265sm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22656i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266ju/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T09:36:35.650917Z", "last_modified_time": "2025-05-12T09:36:35.650935Z", "date_published": null, "start_time": "2025-06-06T10:00:00Z", "end_time": "2025-06-27T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</p><p><br></p>" }, "info_url": null, "name": { "fi": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266vu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }