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
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 ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
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=23®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=24®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=22®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "lippupiste:19999844", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:20.392858Z", "last_modified_time": "2025-08-17T04:16:28.342281Z", "date_published": null, "start_time": "2025-08-29T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Let'S Play Business Ennakko" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Sari Haapamäki, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999844/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000150", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000150/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000150/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000150/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:19.912887Z", "last_modified_time": "2025-03-17T22:17:19.912902Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:20.278306Z", "last_modified_time": "2025-08-17T04:16:28.176767Z", "date_published": null, "start_time": "2025-08-28T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kuningatarnäytelmä Ensi-Ilta" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "short_description": { "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000150/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999843", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999843/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999843/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999843/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:20.154427Z", "last_modified_time": "2025-08-17T04:16:28.027496Z", "date_published": null, "start_time": "2025-08-28T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Let'S Play Business Ennakko" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Sari Haapamäki, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999843/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000149", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000149/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000149/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000149/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:19.912887Z", "last_modified_time": "2025-03-17T22:17:19.912902Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:20.027115Z", "last_modified_time": "2025-08-17T04:16:27.850921Z", "date_published": null, "start_time": "2025-08-27T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kuningatarnäytelmä Ennakko" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "short_description": { "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000149/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000147", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000147/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000147/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000147/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:19.912887Z", "last_modified_time": "2025-03-17T22:17:19.912902Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.886464Z", "last_modified_time": "2025-08-17T04:16:27.674853Z", "date_published": null, "start_time": "2025-08-26T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kuningatarnäytelmä Ennakko" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "short_description": { "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000361", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.790317Z", "last_modified_time": "2025-08-17T04:16:27.499100Z", "date_published": null, "start_time": "2025-08-20T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Little_Star95 - Ooksä Online?" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20303853", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2505849/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-20303853/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-20303853/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-helsingin-kaupunginteatteri-20303853/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:10.162814Z", "last_modified_time": "2025-02-17T11:17:10.162829Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkekulissi222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T15:15:39.946108Z", "last_modified_time": "2025-08-17T04:16:27.293438Z", "date_published": null, "start_time": "2025-08-20T13:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keskiviikon Kulissikierros" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Suuri näyttämö LÄMPIÖ" }, "short_description": { "fi": "Tervetuloa tutustumaan peruskorjattuun yli 50-vuotiaaseen teatteritaloon sekä kurkistamaan kulissien taakse." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-keskiviikon-kulissikierros-2505849/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Tervetuloa tutustumaan peruskorjattuun yli 50-vuotiaaseen teatteritaloon sekä kurkistamaan kulissien taakse. </strong></p><p>Kierroksen sisältö vaihtelee ajankohdan mukaan. Kierrokselle on rajattu paikkamäärä. Kesto noin 1h. </p><p>Huomioithan, että Keskiviikon kulissikierros ei ole valitettavasti esteetön vaan sisältää paljon portaita. </p><p>Kierros lähtee pääovilta: Eläintarhantie 5. Ovet avataan varttia ennen kierroksen alkua.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20303853/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000360", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000360/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000360/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000360/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.551910Z", "last_modified_time": "2025-08-17T04:16:27.136770Z", "date_published": null, "start_time": "2025-08-19T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Little_Star95 - Ooksä Online?" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000360/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000359", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000359/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000359/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000359/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.456578Z", "last_modified_time": "2025-08-17T04:16:26.979940Z", "date_published": null, "start_time": "2025-08-18T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Little_Star95 - Ooksä Online?" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000359/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000363", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000363/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000363/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000363/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.355648Z", "last_modified_time": "2025-08-16T22:16:34.420287Z", "date_published": null, "start_time": "2025-08-16T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Little_Star95 - Ooksä Online?" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000363/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000362", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000362/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000362/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000362/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.258420Z", "last_modified_time": "2025-08-16T22:16:34.258771Z", "date_published": null, "start_time": "2025-08-16T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Little_Star95 - Ooksä Online?" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000362/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pyty", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490397, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-16T08:02:14.696311Z", "last_modified_time": "2025-08-16T08:02:14.696326Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/fc48f95e-fa8f-4af1-b1d9-36bba694b7c0.jpg", "cropping": "308,0,1192,884", "photographer_name": "", "alt_text": "Kuva kuorosta nimellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490397/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-27T05:07:15.704856Z", "last_modified_time": "2025-08-16T08:02:22.453583Z", "date_published": null, "start_time": "2025-08-19T15:00:00Z", "end_time": "2025-08-19T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Motiv-kuoro Sloveniasta esiintyy", "sv": "Motiv-kör från Slovenien uppträder", "en": "Motiv choir from Slovenia performs" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Motiv-kuoro Sloveniasta esiintyy.", "sv": "Motiv-kör från Slovenien uppträder.", "en": "Motiv choir from Slovenia performs." }, "info_url": null, "description": { "fi": "<p>Sekakuoro Motiv Nova Gorica perustettiin vuonna 2015 tavoitteenaan vierailla eri puolille maailmaa muuttaneiden slovenialaisten luona sekä tuoda slovenialaista lauluperinnettä tutuksi myös muille kansoille. Kuoro on esiintynyt muun muassa Kanadassa, Saksassa, Belgiassa ja Argentiinassa, ja se konsertoi mielellään myös kotimaassaan Sloveniassa.</p><p> Ohjelmistoon kuuluu sekä perinteisiä slovenialaisia kansanlauluja että taidemusiikkia. Kuoron taiteellisena johtajana on sen perustamisesta lähtien toiminut Miran Rustja</p>", "sv": "<p>Den blandade kören kommer från Nova Gorica, årets kulturhuvudstad. Kören har en varierad repertoar.</p><p>Repertoaren omfattar både traditionella slovenska folksånger och konstmusik. Miran Rustja har varit körens konstnärlige ledare sedan den grundades.</p>", "en": "<p>The mixed choir is from Nova Gorica, this year's cultural capital. The choir has a varied repertoire.</p><p>The repertoire includes both traditional Slovenian folk songs and art music. Miran Rustja has been the choir's artistic director since its founding.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pyty/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-2812", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.helsinginkaupunginorkesteri.fi/fi/buyingflow/tickets/14562/12504/" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" }, "price": { "fi": "6.50 - 49.50 €", "sv": "6.50 - 49.50 €", "en": "6.50 - 49.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-16T00:06:10.424693Z", "last_modified_time": "2025-08-16T00:06:10.424713Z", "date_published": null, "start_time": "2025-09-11T16:00:00Z", "end_time": "2025-09-11T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HKO: Kauneutta ja kontrasteja ", "sv": "HKO: Skönhet och kontraster ", "en": "HKO: Beauty and Contrasts " }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Musiikkitalo Konserttisali", "en": "Musiikkitalo Concert Hall" }, "short_description": { "fi": "”En voi soittaa Rahmaninovia tuntematta ihmetystä ja kiitollisuutta siitä, että sellaista kauneutta on olemassa”, kertoo illan solisti Boris Giltburg.", "sv": "”Jag kan inte spela Rachmaninov utan att känna häpnad och tacksamhet över att det kan finnas musik med sådan skönhet”, berättar solisten Boris Giltburg....", "en": "“I can't ever play it without feeling a sense of wonder and gratitude that such beauty exists,” says the evening’s soloist Boris Giltburg" }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2812", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/2812", "en": "https://helsinginkaupunginorkesteri.fi/en/node/2812" }, "description": { "fi": "<p>”En voi soittaa Rahmaninovia tuntematta ihmetystä ja kiitollisuutta siitä, että sellaista kauneutta on olemassa”, kertoo illan solisti Boris Giltburg.</p>", "sv": "<p>”Jag kan inte spela Rachmaninov utan att känna häpnad och tacksamhet över att det kan finnas musik med sådan skönhet”, berättar solisten Boris Giltburg....</p>", "en": "<p>“I can't ever play it without feeling a sense of wonder and gratitude that such beauty exists,” says the evening’s soloist Boris Giltburg</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2812/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66338", "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: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: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/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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3920176", "sv": "https://www.lippu.fi/eventseries/name-3920176", "en": "https://www.lippu.fi/eventseries/name-3920176" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1170047, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T07:22:37.169979Z", "last_modified_time": "2025-07-03T07:22:37.170030Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773468.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170047/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-03T07:22:37.032444Z", "last_modified_time": "2025-08-15T13:13:55.959171Z", "date_published": null, "start_time": "2025-09-13T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tri Zeiffal, Tri Zeigal ja virtahepo, jota ei koskaan saatu kiinni", "sv": "Tohtori Zeiffal, tohtori Zeigal ja virtahepo jota ei koskaan saatu kiinni", "en": "Doctor Zeiffal, Doctor Zeigal and the Hippo That Can Never Be Caught" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Klassikkoesitys palaa Kanneltaloon! Kahden näyttelijän koko perheen komediassa kaksi hupaisaa virtahepotutkijaa esittelevät tutkimuskohdettaan yleisölle.", "sv": "Klassikerföreställningen återvänder till Gamlasgården! I komedin med två skådespelare för hela familjen, där två skojiga flodhästforskare presenterar sitt forskningsobjekt för publiken.", "en": "The classic performance returns to Kanneltalo! In this two-actor family comedy, two quirky hippo researchers present their study subject to the audience." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1D90620AE8703CDDF5D61D64BDF85781/Tri_Zeiffal_Tri_Zeigal_ja_virtahepo_jota_ei_koskaan_saatu_kiinni_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1D90620AE8703CDDF5D61D64BDF85781/Tohtori_Zeiffal_tohtori_Zeigal_ja_virtahepo_jota_ei_koskaan_saatu_kiinni", "en": "http://www.kanneltalo.fi/en/events/event/1D90620AE8703CDDF5D61D64BDF85781/Doctor_Zeiffal_Doctor_Zeigal_and_the_Hippo_That_Can_Never_Be_Caught" }, "description": { "fi": "<p>Klassikkoesitys palaa Kanneltaloon! Kahden näyttelijän koko perheen komediassa kaksi hupaisaa virtahepotutkijaa esittelevät tutkimuskohdettaan yleisölle.</p><p>Luento saa kuitenkin yllättäviä käänteitä, kun paikalle porhaltaa aito ja elävä virtahepo.</p><p>Tämä hulvaton komedia on suomalainen versio palkitusta ja Englannissa suurta suosiota saaneesta esityksestä Dr Zeiffal, Dr Zeigal and the Hippo That Can Never Be Caught.</p><p>Hippohuumaa on ollut havaittavissa myös Suomessa - lapset ovat tulleet katsomaan esitystä useampaan kertaan.<br> <br>Näytelmän rooleissa esiintyvät lastenteatterin ammattilaiset: teatteriohjaaja-klovni Taina Mäki-Iso ja kapellimestari, oopperalaulaja ja klovni Jouni Bäckström.</p><p>Esityksen on ohjannut lontoolaisen The<br>Mouths of Lions -teatterin taiteellinen johtaja Georgia Murphy, joka ohjasi myös näytelmän kantaesityksen Englannissa.</p><p>Kesto: noin 60 min<br>Ikäsuositus: yli 4-vuotiaille<br>Kieli: suomi</p><p><b>Valtuusto 150 vuotta -etu</b></p><p>Tämä tapahtuma on maksuton 7–19-vuotiaille. <br>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/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20362414/?affiliate=FSF\">TÄSTÄ</a></u></p><p>Myös 0–6-vuotiaat pääsevät maksutta Valtuusto 150 -tapahtumiin. Huomioithan esityskohtaiset ikärajasuositukset.</p>", "sv": "<p>Klassikerföreställningen återvänder till Gamlasgården! I komedin med två skådespelare för hela familjen, där två skojiga flodhästforskare presenterar sitt forskningsobjekt för publiken.</p><p>Föreläsningen spårar dock ur när en riktig levande flodhäst sveper upp på scenen.</p><p>Denna lustiga komedi är en finsk version av den prisbelönta och i England mycket populära showen Dr Zeiffal, Dr Zeigal and the Hippo That Can Never Be Caught. Det har gått att se flodhästfeber<br>även i Finland - barnen har kommit för att titta på föreställningen flera gånger.<br> <br>I rollerna ser vi barnteaterproffs: teaterregissör-clownen <b>Taina Mäki-Iso</b> och kapellmästare, operasångare och kloven <b>Jouni Bäckström.</b> Föreställningen har regisserats av Georgia Murphy, ledare för The<br>Mouths of Lions-teatern i London. Hon regisserade även pjäsens urpremiär i England.</p><p>Uruppförandet var den 15 september 2018 på Musiikkiteatteri Kapsäkki. Helsingin Sanomat gav föreställningen fem stjärnor i sin recension!</p><p>Arbetsgrupp</p><p>Originalmanuskript: Georgia Murphy, Louise Dickinson, Oli Weatherly<br>Översättning till finska: Jouni Bäckström<br>På scenen: Jouni Bäckström och Taina Mäki-Storso<br>Rekvisita och scenografi: Petri Bäckström<br>Hippo-dräkten: Sarita Vepsäläinen<br>Produktion: The Fabulous Bäckström Brothers och Musiikkiteatteri Kapsäkki/Sanna Breilin</p><p>Längd: cirka 60 min.<br>Åldersrekommendation: barn över 4 år<br>Språk: finska</p><p>Fullmäktige 150 år-fördel<br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025! <br>Lös ut en gratisbiljett <u><a href=\"tähän lippulinkki\">TÄSTÄ</a></u>HÄR</p><p>0–6-åringar kan också avgiftsfritt delta i evenemangen Fullmäktige 150. Vänligen observera de föreställningsspecifika åldersgränserna.</p>", "en": "<p>The classic performance returns to Kanneltalo! In this two-actor family comedy, two quirky hippo researchers present their study subject to the audience.</p><p>The classic performance returns to Kanneltalo! In this two-actor family comedy, two quirky hippo researchers present their study subject to the audience.</p><p>However, the lecture is interrupted with a surprising twist, when an actual, live hippo shows up.</p><p>This hilarious comedy is a Finnish version of the award-winning and hugely popular UK production Dr Zeiffal, Dr Zeigal and the Hippo That Can Never Be Caught. Hippo fever has been<br>spotted in Finland too – children have come to see the show multiple times.<br> <br>The roles are performed by seasoned children's theatre professionals: theatre director and clown <b>Taina Mäki-Iso</b> and conductor, opera singer and clown <b>Jouni Bäckström.</b> The production is directed by<br>the artistic director of the London-based theatre company The Mouths of Lions, Georgia Murphy, who also directed the play's original premiere in England.</p><p>The Finnish premiere took place on 15 September 2018 at Music Theatre Kapsäkki. Helsingin Sanomat gave the performance a five-star review!</p><p>Creative team</p><p>Original script: Georgia Murphy, Louise Dickinson and Oli Weatherly<br>Finnish translation: Jouni Bäckström<br>Performers: Jouni Bäckström and Taina Mäki-Iso<br>Props and set design: Petri Bäckström<br>Hippo costume: Sarita Vepsäläinen<br>Production: The Fabulous Bäckström Brothers and Music Theatre Kapsäkki/Sanna Breilin</p><p>Duration: approximately 60 minutes.<br>Recommended age: 4 and older<br>Language: Finnish</p><p>Council 150 years<br>This event is free of charge for children and young people aged 7–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=\"tähän lippulinkki\">TÄSTÄ</a></u> HERE<br>Children aged 0–6 also get free entry to the Valtuusto 150 events. Please note the age recommendations for each performance.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66338/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66852", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1482101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T08:14:19.364544Z", "last_modified_time": "2025-08-14T08:14:19.364561Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775737.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1482101/?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-08-14T08:14:19.263967Z", "last_modified_time": "2025-08-15T12:14:09.316311Z", "date_published": null, "start_time": "2025-10-16T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lomakino: Vaiana (7)", "sv": "Lomakino: Vaiana (7)", "en": "Lomakino: Vaiana (7)" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vaiana on seikkailunhaluinen nuori tyttö, joka lähtee rohkealle matkalle pelastaakseen kansansa." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E58D73440FAE5F35F6C7C1DE83732A87/Lomakino_Vaiana_7_", "sv": "http://www.annantalo.fi/sv/evenemang/event/E58D73440FAE5F35F6C7C1DE83732A87/Lomakino_Vaiana_7_", "en": "http://www.annantalo.fi/en/events/event/E58D73440FAE5F35F6C7C1DE83732A87/Lomakino_Vaiana_7_" }, "description": { "fi": "<p>Vaiana on seikkailunhaluinen nuori tyttö, joka lähtee rohkealle matkalle pelastaakseen kansansa.</p><p>Matkan varrella hän tapaa mahtavan puolijumalan Mauin, joka auttaa häntä kehittämään taitojaan. Yhdessä he purjehtivat läpi vaarallisen meren, kohdaten hirviöitä ja haasteita, jotka koettelevat heidän rohkeuttaan ja sinnikkyyttään.</p><p>Ikäraja: 7<br>Kesto: 1 t 47 min <br>Kieli: suomi<br>Tekstitys: englanti</p><p>Vapaa pääsy. Paikkoja rajoitetusti.</p><p>Elokuva esitetään Annantalon auditoriossa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66852/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66851", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1482100, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T08:14:18.592580Z", "last_modified_time": "2025-08-14T08:14:18.592599Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775735.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1482100/?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-08-14T08:14:18.485457Z", "last_modified_time": "2025-08-15T12:14:08.794443Z", "date_published": null, "start_time": "2025-10-15T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lomakino: Naapurini Totoro (S)", "sv": "Lomakino: Naapurini Totoro (S)", "en": "Lomakino: Naapurini Totoro (S)" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Iki-ihana Naapurini Totoro!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/76B0814531C09E212295D931BF55894C/Lomakino_Naapurini_Totoro_S_", "sv": "http://www.annantalo.fi/sv/evenemang/event/76B0814531C09E212295D931BF55894C/Lomakino_Naapurini_Totoro_S_", "en": "http://www.annantalo.fi/en/events/event/76B0814531C09E212295D931BF55894C/Lomakino_Naapurini_Totoro_S_" }, "description": { "fi": "<p>Iki-ihana Naapurini Totoro!</p><p>Totoron nostalginen, 1930-luvun Showaan, Japaniin sijoittuva luonnonläheinen maailma ja tarina uuteen taloon muuttavista siskoksista sekä viereisessä metsässä elävistä maagisista karvaturreista sisältää useita Miyazakin tuotannon kantavia teemoja.</p><p>Ikäraja: S<br>Kesto: 1 t 26 min <br>Kieli: suomi<br>Tekstitys: englanti</p><p>Vapaa pääsy. Paikkoja rajoitetusti.</p><p>Elokuva esitetään Annantalon auditoriossa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66851/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66850", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1481804, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T07:14:59.165351Z", "last_modified_time": "2025-08-14T07:14:59.165372Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775733.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1481804/?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-08-14T07:14:59.038476Z", "last_modified_time": "2025-08-15T12:14:08.309166Z", "date_published": null, "start_time": "2025-10-14T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lomakino: Elemental (S)", "sv": "Lomakino: Elemental (S)", "en": "Lomakino: Elemental (S)" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Elemental tapahtuu tuli-, vesi-, maa- ja ilmaväen asuttamassa suurkaupungissa." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2A8A948AC2923A2EEDD389ACF6F7BD9B/Lomakino_Elemental_S_", "sv": "http://www.annantalo.fi/sv/evenemang/event/2A8A948AC2923A2EEDD389ACF6F7BD9B/Lomakino_Elemental_S_", "en": "http://www.annantalo.fi/en/events/event/2A8A948AC2923A2EEDD389ACF6F7BD9B/Lomakino_Elemental_S_" }, "description": { "fi": "<p>Elemental tapahtuu tuli-, vesi-, maa- ja ilmaväen asuttamassa suurkaupungissa.</p><p>Kun kovapintainen, nopeaälyinen ja tulisieluinen Virva ystävystyy hauskan, tunteellisen ja virran mukana menevän Vellun kanssa, hän alkaa kyseenalaistaa uskomuksiaan maailmasta, jossa he elävät.</p><p>Ikäraja: S<br>Kesto: 1 t 38 min <br>Kieli: suomi<br>Tekstitys: englanti</p><p>Vapaa pääsy. Paikkoja rajoitetusti.</p><p>Elokuva esitetään Annantalon auditoriossa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66850/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66670", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1481803, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T07:14:58.524833Z", "last_modified_time": "2025-08-14T07:14:58.524853Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775731.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1481803/?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-08-14T07:14:58.386793Z", "last_modified_time": "2025-08-15T12:14:07.981194Z", "date_published": null, "start_time": "2025-10-13T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lomakino: Coco (7)", "sv": "Lomakino: Coco (7)", "en": "Lomakino: Coco (7)" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Coco kertoo nuoresta Miguelista, joka unelmoi tulevansa muusikoksi perheensä kielloista huolimatta." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EAAF7D6DF6960220F94AA359EC259163/Lomakino_Coco_7_", "sv": "http://www.annantalo.fi/sv/evenemang/event/EAAF7D6DF6960220F94AA359EC259163/Lomakino_Coco_7_", "en": "http://www.annantalo.fi/en/events/event/EAAF7D6DF6960220F94AA359EC259163/Lomakino_Coco_7_" }, "description": { "fi": "<p>Coco kertoo nuoresta Miguelista, joka unelmoi tulevansa muusikoksi perheensä kielloista huolimatta.</p><p>Kun hän päätyy vahingossa Kuolleiden maahan, Miguel kohtaa edesmenneitä sukulaisiaan ja salaperäisen Hectorin. Yhdessä he lähtevät unohtumattomalle matkalle selvittämään perheensä salaisuuksia ja Miguelin todellista paikkaa maailmassa.</p><p>Ikäraja: K-7<br>Kesto: 1 t 44 min <br>Kieli: suomi<br>Tekstitys: englanti</p><p>Vapaa pääsy! Paikkoja rajoitetusti.</p><p>Elokuva esitetään Annantalon auditoriossa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66670/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66663", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1146922, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T09:12:49.566338Z", "last_modified_time": "2025-06-30T09:12:49.566354Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771139.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146922/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T09:12:49.444631Z", "last_modified_time": "2025-08-15T12:13:54.402517Z", "date_published": null, "start_time": "2025-08-21T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Caisa Poetry Night – Runokuu", "sv": "Caisa Poetry Night – Runokuu", "en": "Caisa Poetry Night – Runokuu" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Runokuu-kirjallisuusfestivaali tuo kansainvälisiä runoilijoita Caisan lavalle 21. elokuuta 2025!", "sv": "Litteraturfestivalen Runokuu för med sig internationella poeter till Caisas scen den 21 augusti 2025!", "en": "Poetry Moon Literature Festival brings international poets to the stage of Caisa in 21st of August 2025." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night", "sv": "http://www.caisa.fi/sv/evenemang/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night", "en": "http://www.caisa.fi/en/events/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night" }, "description": { "fi": "<p>Runokuu-kirjallisuusfestivaali tuo kansainvälisiä runoilijoita Caisan lavalle 21. elokuuta 2025!</p><p>Runokuu ilahduttaa runouden ystäviä Helsingissä ja sen lähialueilla joka vuosi aina elokuussa. Kansainvälinen runoilta Caisassa kokoaa yhteen elävän ja monimuotoisen joukon ääniä eri puolilta maailmaa.</p><p>Illan aikana esiintyvät irakilainen kirjailija Yaseen Ghaleb, kurdilainen runoilija Abdulla Pashew, ruotsalainen runoilija Siri Berzelius, norjalais-somalialainen runoilija Sumaya Jirde Ali sekä saksalainen kirjailija ja runoilija Simoné Goldschmidt-Lechner.</p><p>Kesto: 1,5 tuntia, ei väliaikaa<br>Ikäsuositus: 12+<br>Kieli: englanti</p><p>Vapaa pääsy</p>", "sv": "<p>Litteraturfestivalen Runokuu för med sig internationella poeter till Caisas scen den 21 augusti 2025!</p><p>Runokuu gläder poesiälskare i Helsingfors och dess närområden varje år i augusti. Den internationella poesikvällen på Caisa samlar en levande och mångsidig grupp röster från hela världen. Under kvällen uppträder bland annat den irakiska författaren Yaseen Ghaleb, den kurdiska poeten Abdulla Pashew och den tyska skribenten Simoné Goldschmidt-Lechner.</p><p>Längd: 1,5 timmar, utan paus<br>Åldersrekommendation: +12<br>Språk: engelska</p><p>Fritt inträde</p>", "en": "<p>Poetry Moon Literature Festival brings international poets to the stage of Caisa in 21st of August 2025.</p><p>Runokuu / Poetry Moon Literature Festival delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 21st of August 2025 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by Iraqi author Yaseen Ghaleb, Kurdish poet Abdulla Pashew, Swedish poet Siri Berzelius, Norwegian-Somalian poet Sumaya Jirde Ali, and German author and poet Simoné Goldschmidt-Lechner.</p><p>Duration: 1.5 hours, no intermission<br>Age recommendation: 12+<br>Language: English</p><p>Organised by Runokuu / Poetry Moon festival. <br>Performers: Yaseen Ghaleb, Abdulla Pashew and Simoné Goldschmidt-Lechner.</p><p>In Collaboration with Cultural Centre Caisa and Goethe-Institut Finnland.</p><p>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66663/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk3nbd44", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbkqa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-15T11:55:31.337680Z", "last_modified_time": "2025-08-15T11:55:31.337694Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ba214803-7cb0-4589-9e57-04cfd4b51722.png", "cropping": "260,0,1660,1400", "photographer_name": "Espoon aineistopankki", "alt_text": "Piirroskuva ihmisiä pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-15T11:56:00.730458Z", "last_modified_time": "2025-08-15T11:56:00.730478Z", "date_published": null, "start_time": "2025-12-18T16:00:00Z", "end_time": "2025-12-18T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Roda ry: Suomen kieli työelämässä", "sv": "Finska språket i arbetslivet", "en": "Finnish language in working life" }, "provider_contact_info": null, "provider": { "fi": "Roda ry", "sv": "Roda ry", "en": "Roda ry" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "short_description": { "fi": "Harjoitellaan suomen kieltä käytännönläheisesti työelämän näkökulmasta.", "sv": "Öva finska på ett praktiskt sätt utifrån ett arbetslivsperspektiv.", "en": "Practice Finnish in a practical way from a working life perspective." }, "info_url": null, "description": { "fi": "<p>Harjoitellaan suomen kieltä käytännönläheisesti työelämän näkökulmasta.</p><p><br></p><ul><li>työelämään liittyvät sanastot ja fraasit</li><li>työnhaun tilanteet: esittäytyminen, puhelinsoitot, haastattelut</li><li>työpaikalla toimiminen: ohjeiden ymmärtäminen, toimiminen työyhteisössä</li><li>Keskusteluja ja roolipelejä</li><li>Työelämän ja yhteiskunnan pelisääntöjen oppiminen</li></ul>", "sv": "<p>Vi övar finska på ett praktiskt sätt utifrån ett arbetslivsperspektiv.</p><p><br></p><ul><li>Ordförråd och fraser relaterade till arbetslivet.</li><li>Situationsbeskrivningar vid jobbsökande: presentera sig själv, telefonsamtal, intervjuer.</li><li>Arbeta på arbetsplatsen: förstå instruktioner, arbeta i en arbetsgemenskap.</li><li>Diskussioner och rollspel.</li><li>Lära sig reglerna för arbetslivet och samhället.</li></ul>", "en": "<p>We practice Finnish in a practical way from a working life perspective.</p><p><br></p><ul><li>Vocabulary and phrases related to working life</li><li>Job hunting situations: introducing yourself, phone calls, interviews</li><li>Working at the workplace: understanding instructions, working in a work community</li><li>Discussions and role-playing</li><li>Learning the rules of working life and society</li></ul>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk3nbd44/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26801, "next": "