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=200
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=201", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=199" }, "data": [ { "id": "kulke:65029", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/m/m-3763328/", "sv": "https://www.lippu.fi/artist/m/m-3763328/", "en": "https://www.lippu.fi/artist/m/m-3763328/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153554, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T07:14:19.835617Z", "last_modified_time": "2024-12-30T07:14:19.835630Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763538.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153554/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T07:14:19.808482Z", "last_modified_time": "2025-04-11T11:13:40.755851Z", "date_published": null, "start_time": "2025-05-03T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "M:n musiikki on uljaan mystistä elektropoppia, joka on täynnä lämmintä haikeutta, pehmeää minimalismia ja toismaallisten tarinoiden poukkoilevaa kujeilua.", "sv": "M:s musik är imponerande mystisk elektropop, som är full av varm nostalgi, mjuk minimalism och studsande skämt ur berättelser från andra världar.", "en": "M’s music is a bold, mystical electro-pop, full of warm melancholy, soft minimalism and the playful twists of otherworldly stories." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "M", "sv": "M", "en": "M" }, "description": { "fi": "<p>M:n musiikki on uljaan mystistä elektropoppia, joka on täynnä lämmintä haikeutta, pehmeää minimalismia ja toismaallisten tarinoiden poukkoilevaa kujeilua.</p><p>Tarinat ovat kuin tajunnan läikähdyksiä, faktan ja fiktion rajatilojen taivutusta, arkisen ja absurdin vinksahtaneita kohtaamisia. M on omintakeisella ilmaisullaan lunastanut paikkansa suomalaisen popskenen kiinnostavimpien artistien joukossa.</p><p>M-artistinimen takaa löytyy laulaja-lauluntekijä Minja Koski.<br>Keikoilla Kosken lisäksi nähdään tuttuun tapaan kaikilla viidellä albumilla vaikuttaneet tuottaja-muusikko Miikka Ahlman sekä muusikot Aleksi Kaufmann, Jussi-Pekka Parviainen ja Simo Saukkola.</p><p>kesto 75 min</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kanneltalo-19738736/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>M:s musik är imponerande mystisk elektropop, som är full av varm nostalgi, mjuk minimalism och studsande skämt ur berättelser från andra världar.</p><p>Berättelserna är som skvättar av medvetande, böjliga gränstillstånd mellan fakta och fiktion, knäppa möten mellan det vardagliga och det absurda. Genom sitt särpräglade uttryck har M säkrat sin plats bland de mest intressanta artisterna på den finländska popscenen.</p><p>Bakom artistnamnet M finns sångerskan och låtskrivaren Minja Koski.</p><p>På spelningarna får vi som vanligt utöver Koski även se producenten och musikern Miikka Ahlman samt musikerna Aleksi Kaufmann, Jussi-Pekka Parviainen och Simo Saukkola som varit verksamma på alla de fem albumen.</p><p>Längd: 75 min</p><p><b>Fullmäktige 150 år-fördel</b><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!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kanneltalo-19738736/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>M’s music is a bold, mystical electro-pop, full of warm melancholy, soft minimalism and the playful twists of otherworldly stories.</p><p>The stories are like splashes of consciousness, bending boundaries between fact and fiction into twisted encounters of the mundane and the absurd. With her original musical expression, M has earned her place among the most interesting artists in the Finnish pop scene.</p><p>Behind the stage name “M” is singer-songwriter Minja Koski.<br>As usual, Koski will be joined on her gigs by producer-musician Miikka Ahlman, who has contributed to all five albums, as well as musicians Aleksi Kaufmann, Jussi-Pekka Parviainen and Simo Saukkola.</p><p>Running time 75 min</p><p><b>Council 150 years</b><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=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kanneltalo-19738736/?affiliate=FSF\">HERE</a></u></p>" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C91B73A9ABAFAD55410DC654C954F8C5/M", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C91B73A9ABAFAD55410DC654C954F8C5/M", "en": "http://www.kanneltalo.fi/en/events/event/C91B73A9ABAFAD55410DC654C954F8C5/M" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65029/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65336", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/", "sv": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/", "en": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153614, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T13:14:18.336711Z", "last_modified_time": "2024-12-31T13:14:18.336724Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760547.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153614/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T13:14:18.310465Z", "last_modified_time": "2025-04-11T08:13:30.553949Z", "date_published": null, "start_time": "2025-05-03T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tuomo Rannankari esittää Malmitalossa tunnetuimpia lastenlaulujaan yhdessä muusikko Anssi Salmisen kanssa.", "sv": "Tuomo Rannankari framför sina mest kända barnsånger på Malms kulturhus tillsammans med musikern Anssi Salminen.", "en": "Tuomo Rannankari will perform his best-known children’s songs in Malmitalo together with musician Anssi Salminen." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Tuomo Rannankari", "sv": "SLUTSÅLD Tuomo Rannankari", "en": "SOLD OUT Tuomo Rannankari" }, "description": { "fi": "<p>Tuomo Rannankari esittää Malmitalossa tunnetuimpia lastenlaulujaan yhdessä muusikko Anssi Salmisen kanssa.</p><p>Tuomo Rannankari on TV:stä tuttu muusikko, lauluntekijä ja juontaja. Tuomon lastenlaulut ovat monille suomalaislapsille tuttuja esi- ja alkuopetuksen oppimateriaaleista, TV:n lastenohjelmista sekä muista lasten konserteista. Hänet palkittiin työstään Vuoden lastenmusiikintekijä -palkinnolla vuonna 2019. Tuomo on levyttänyt kolme lastenlevyä sekä Sininen pallo -levyn yhdessä Oulu Sinfonian kanssa. Lisäksi hän on vieraillut myös Muumi-levyn solistina.</p><p>Malmitalon konsertissa Tuomo esiintyy duona yhdessä muusikko Anssi Salmisen kanssa. Konsertissa kuullaan Tuomon tunnetuimpia kappaleita, kuten ”Hiekkakakkuorkesteri”, ”Pomppimaan”, ”Seikkailulaulu” ja ”Sininen pallo”.</p><p>Kesto: noin 45 min</p>", "sv": "<p>Tuomo Rannankari framför sina mest kända barnsånger på Malms kulturhus tillsammans med musikern Anssi Salminen.</p><p>Tuomo Rannankari är en musiker, låtskrivare och programledare som är välkänd från TV. Tuomos barnsånger är kända för många finländska barn från för- och elementarundervisningens läromaterial, barnprogram på TV samt konserter. År 2019 belönades han för sitt arbete med priset Vuoden lastenmusiikintekijä. Tuomo har spelat in tre barnalbum samt albumet Sininen pallo tillsammans med Oulu Sinfonia. Han har också gästat som solist på Mumin-albumet.</p><p>På konserten i Malms kulturhus framträder Tuomo som duo tillsammans med musikern Anssi Salminen. På konserten får vi höra Tuomos mest kända låtar, såsom “Hiekkakakkuorkesteri”, “Pomppimaan”, “Seikkailulaulu” och “Sininen pallo”.</p><p>Längd: ca 45 min.</p>", "en": "<p>Tuomo Rannankari will perform his best-known children’s songs in Malmitalo together with musician Anssi Salminen.</p><p>Tuomo Rannankari is a well-known musician, songwriter and TV host. Tuomo’s children’s songs are familiar to many Finnish children from pre-school and early childhood education materials, children’s TV programmes and concerts. He received the 2019 Children’s Music Writer of the Year award for his work. Tuomo has recorded three children’s albums and the Sininen pallo album with the Oulu Symphony Orchestra. He has also appeared as a guest vocalist on the Moomin album.</p><p>At the Malmitalo concert, Tuomo will perform in a duo with musician Anssi Salminen. The concert will feature some of Tuomo’s best-known songs, such as “Hiekkakakkuorkesteri”, “Pomppimaan”, “Seikkailulaulu” and “Sininen pallo”.</p><p>Duration: approx. 45 min</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5C0E5398AD75310DE1CE200D92665E6/LOPPUUNMYYTY_Tuomo_Rannankari", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A5C0E5398AD75310DE1CE200D92665E6/SLUTSALD_Tuomo_Rannankari", "en": "http://www.malmitalo.fi/en/events/event/A5C0E5398AD75310DE1CE200D92665E6/SOLD_OUT_Tuomo_Rannankari" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65336/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65905", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 510960, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-11T08:13:30.029909Z", "last_modified_time": "2025-04-11T08:13:30.029921Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760446.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/510960/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-11T08:13:30.017352Z", "last_modified_time": "2025-04-11T08:13:30.065550Z", "date_published": null, "start_time": "2025-04-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "KINO CAISA: Crossing (7)", "sv": "KINO CAISA: Crossing (7)", "en": "KINO CAISA: Crossing (7)" }, "description": { "fi": "<p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan.</p><p>Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa. Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.<br>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.<br> <br>★★★★★ \"Puhdasta elokuvan taikaa... Crossing on yksinkertaisesti moninaisuutta ymmärtävä, läpeensä humanistinen ja italialaisesta neorealismista inspiraatiota hakenut matkakertomus. Se ei osoittele. Ja kuten aina, tärkein matka tehdään sisäisesti.\" -HS<br> <br>Genre: Draama <br>Ohjaus: Levan Akin<br>Kesto: 106 minuuttia <br>Kieli: georgia, turkki, englanti<br>Tekstitys: suomi<br>Ikäraja: 7</p>" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1F462B04CB68267D7F41834EE1EC49D3/KINO_CAISA_Crossing_7_", "sv": "http://www.caisa.fi/sv/evenemang/event/1F462B04CB68267D7F41834EE1EC49D3/KINO_CAISA_Crossing_7_", "en": "http://www.caisa.fi/en/events/event/1F462B04CB68267D7F41834EE1EC49D3/KINO_CAISA_Crossing_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65904", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 510959, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-11T08:13:29.952876Z", "last_modified_time": "2025-04-11T08:13:29.952887Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760445.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/510959/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-11T08:13:29.940326Z", "last_modified_time": "2025-04-11T08:13:29.989748Z", "date_published": null, "start_time": "2025-04-29T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "KINO CAISA: Crossing (7)", "sv": "KINO CAISA: Crossing (7)", "en": "KINO CAISA: Crossing (7)" }, "description": { "fi": "<p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan.</p><p>Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa. Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.<br>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.<br> <br>★★★★★ \"Puhdasta elokuvan taikaa... Crossing on yksinkertaisesti moninaisuutta ymmärtävä, läpeensä humanistinen ja italialaisesta neorealismista inspiraatiota hakenut matkakertomus. Se ei osoittele. Ja kuten aina, tärkein matka tehdään sisäisesti.\" -HS<br> <br>Genre: Draama <br>Ohjaus: Levan Akin<br>Kesto: 106 minuuttia <br>Kieli: georgia, turkki, englanti<br>Tekstitys: suomi<br>Ikäraja: 7</p>" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1337485952215464A0206E816FAC6A21/KINO_CAISA_Crossing_7_", "sv": "http://www.caisa.fi/sv/evenemang/event/1337485952215464A0206E816FAC6A21/KINO_CAISA_Crossing_7_", "en": "http://www.caisa.fi/en/events/event/1337485952215464A0206E816FAC6A21/KINO_CAISA_Crossing_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65904/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65903", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-caisa/", "sv": "https://www.lippu.fi/artist/kino-caisa/", "en": "https://www.lippu.fi/artist/kino-caisa/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 505536, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-10T13:14:28.471278Z", "last_modified_time": "2025-04-10T13:14:28.471297Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760443.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/505536/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-10T13:14:28.450898Z", "last_modified_time": "2025-04-11T08:13:28.615719Z", "date_published": null, "start_time": "2025-04-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "KINO CAISA: Kovia totuuksia (7)", "sv": "KINO CAISA: Kovia totuuksia (7)", "en": "KINO CAISA: Kovia totuuksia (7)" }, "description": { "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva Kovia totuuksia kertoo kahdesta kovin erilaisesta siskoksesta. Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita. Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa.</p><p>Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Genre: Draama <br>Ohjaus: Mike Leigh<br>Kesto: 96 minuuttia <br>Kieli: englanti <br>Tekstitys: suomi<br>Ikäraja: 7</p>" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/89477A68BE412E46E9573DFD4BF337FE/KINO_CAISA_Kovia_totuuksia_7_", "sv": "http://www.caisa.fi/sv/evenemang/event/89477A68BE412E46E9573DFD4BF337FE/KINO_CAISA_Kovia_totuuksia_7_", "en": "http://www.caisa.fi/en/events/event/89477A68BE412E46E9573DFD4BF337FE/KINO_CAISA_Kovia_totuuksia_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65903/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65902", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-caisa/", "sv": "https://www.lippu.fi/artist/kino-caisa/", "en": "https://www.lippu.fi/artist/kino-caisa/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 510958, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-11T08:13:28.473965Z", "last_modified_time": "2025-04-11T08:13:28.473980Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760442.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/510958/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-11T08:13:28.453374Z", "last_modified_time": "2025-04-11T08:13:28.526767Z", "date_published": null, "start_time": "2025-04-22T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "KINO CAISA: Crossing (7)", "sv": "KINO CAISA: Crossing (7)", "en": "KINO CAISA: Crossing (7)" }, "description": { "fi": "<p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan.</p><p>Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa. Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.<br>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.<br> <br>★★★★★ \"Puhdasta elokuvan taikaa... Crossing on yksinkertaisesti moninaisuutta ymmärtävä, läpeensä humanistinen ja italialaisesta neorealismista inspiraatiota hakenut matkakertomus. Se ei osoittele. Ja kuten aina, tärkein matka tehdään sisäisesti.\" -HS<br> <br>Genre: Draama <br>Ohjaus: Levan Akin<br>Kesto: 106 minuuttia <br>Kieli: georgia, turkki, englanti<br>Tekstitys: suomi<br>Ikäraja: 7</p>" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/674B157667A161A19AE06DA85B75864B/KINO_CAISA_Crossing_7_", "sv": "http://www.caisa.fi/sv/evenemang/event/674B157667A161A19AE06DA85B75864B/KINO_CAISA_Crossing_7_", "en": "http://www.caisa.fi/en/events/event/674B157667A161A19AE06DA85B75864B/KINO_CAISA_Crossing_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65902/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65901", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-caisa/", "sv": "https://www.lippu.fi/artist/kino-caisa/", "en": "https://www.lippu.fi/artist/kino-caisa/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 505535, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-10T13:14:27.502978Z", "last_modified_time": "2025-04-10T13:14:27.502996Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760440.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/505535/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-10T13:14:27.484505Z", "last_modified_time": "2025-04-11T08:13:27.767766Z", "date_published": null, "start_time": "2025-04-15T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "KINO CAISA: Kovia totuuksia (7)", "sv": "KINO CAISA: Kovia totuuksia (7)", "en": "KINO CAISA: Kovia totuuksia (7)" }, "description": { "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva Kovia totuuksia kertoo kahdesta kovin erilaisesta siskoksesta. Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita. Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa.</p><p>Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Genre: Draama <br>Ohjaus: Mike Leigh<br>Kesto: 96 minuuttia <br>Kieli: englanti <br>Tekstitys: suomi<br>Ikäraja: 7</p>" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9999FFE25836D278CF38A20E9490BEBB/KINO_CAISA_Kovia_totuuksia_7_", "sv": "http://www.caisa.fi/sv/evenemang/event/9999FFE25836D278CF38A20E9490BEBB/KINO_CAISA_Kovia_totuuksia_7_", "en": "http://www.caisa.fi/en/events/event/9999FFE25836D278CF38A20E9490BEBB/KINO_CAISA_Kovia_totuuksia_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65901/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65900", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-caisa/", "sv": "https://www.lippu.fi/artist/kino-caisa/", "en": "https://www.lippu.fi/artist/kino-caisa/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 505534, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-10T13:14:27.293048Z", "last_modified_time": "2025-04-10T13:14:27.293075Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760439.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/505534/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-10T13:14:27.245334Z", "last_modified_time": "2025-04-11T08:13:27.640520Z", "date_published": null, "start_time": "2025-04-15T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "KINO CAISA: Kovia totuuksia (7)", "sv": "KINO CAISA: Kovia totuuksia (7)", "en": "KINO CAISA: Kovia totuuksia (7)" }, "description": { "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva Kovia totuuksia kertoo kahdesta kovin erilaisesta siskoksesta. Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita. Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa.</p><p>Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Genre: Draama <br>Ohjaus: Mike Leigh<br>Kesto: 96 minuuttia <br>Kieli: englanti <br>Tekstitys: suomi<br>Ikäraja: 7</p>" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/6B4879477537F2FEF7506E0827F8E500/KINO_CAISA_Kovia_totuuksia_7_", "sv": "http://www.caisa.fi/sv/evenemang/event/6B4879477537F2FEF7506E0827F8E500/KINO_CAISA_Kovia_totuuksia_7_", "en": "http://www.caisa.fi/en/events/event/6B4879477537F2FEF7506E0827F8E500/KINO_CAISA_Kovia_totuuksia_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65900/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65544", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "48,90 €", "sv": "48,90 €", "en": "48,90 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/", "sv": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/", "en": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201801, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T14:15:21.366962Z", "last_modified_time": "2025-02-07T14:15:21.366980Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765121.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201801/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-07T14:15:21.314870Z", "last_modified_time": "2025-04-11T08:13:27.464666Z", "date_published": null, "start_time": "2025-04-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suuren kysynnän vuoksi The Animalsin lisäkonsertti nyt myynnissä!", "sv": "Legendariska The Animals återkommer till Malms kulturhus!", "en": "The legendary The Animals are coming back to Malmitalo!" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY The Animals (UK) – Jäähyväiskiertue", "sv": "SLUTSÅLD The Animals (UK) – Avskedsturné", "en": "SOLD OUT The Animals (UK) – Farewell tour" }, "description": { "fi": "<p>Suuren kysynnän vuoksi The Animalsin lisäkonsertti nyt myynnissä!</p><p>\"House of the Rising Sun\", \"We Gotta Get Out of This Place\", \"Dont Let Me Be Understood\", \"It´s My Life\", \"I Put A Spell On You\", \"Boom Boom\" och \"Bring It On Home To Me”… Tällä hittilistalla The Animalsista (UK) on kiistatta yksi maailman vaikutusvaltaisimmista yhtyeistä. Sen nimekkäiden fanien joukkoon lukeutuu muun muassa Bruce Springsteen.</p><p>Vuonna 1964 energisen rock and rollin aalto pyyhkäisi maailman nuorison yli ja sen harjalla ratsastivat The Beatles, The Rolling Stones - ja tietysti John Steelin ja Eric Burdonin perustama The Animals. Nimensä yhtye sai villistä lavaesiintymisestään.</p><p>Vaikka The Animalsin meno lavalla on sittemmin rauhoittunut, pian kuusikymppisiään juhlivan bändin musiikki on vähintäänkin voimissaan ja legenda vain kasvaa. Hiljattain Classic Rock magazine nosti yhtyeen debyyttialbumin ”50 Albums That Built Blues Rock” -listalleen.</p><p>Alkuperäisestä kokoonpanosta mukana on toinen perustajajäsen John Steel. Lisäksi yhtyeessä soittavat Danny Handley, Barney Williams ja Norman Helm.</p><p>Kesto: 1 h 15 min<br>Ikäsuositus: 7</p>", "sv": "<p>Legendariska The Animals återkommer till Malms kulturhus!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Dont Let Me Be Understood”, “It´s My Life”, “I Put A Spell On You”, “Boom Boom” och “Bring It On Home To Me”… Med denna hitlista är The Animals (UK) otvivelaktigt ett av världens med inflytelserika band. Bland annat Bruce Springsteen räknas bland dess berömda fans.</p><p>År 1964 svepte en våg av energisk rock and roll över världens ungdom och på dess krön red The Beatles, The Rolling Stones – och naturligtvis The Animals, som grundades av John Steel och Eric Burdon. Bandet fick sitt namn av det vilda framträdandet på scenen.</p><p>Även om The Animals fart på scenen har lugnat ner sig sedan dess, är det snart sextioåriga bandets musik i minst lika god form och legenden bara växer. Classic Rock Magazine tog nyligen upp bandets debutalbum på sin lista “50 Albums That Built Blues Rock”.</p><p>Av den ursprungliga ensemblen kvarstår en av de grundande medlemmarna, John Steel. Dessutom spelar Danny Handley, Barney Williams och Norman Helm i bandet.</p><p>Längd: 1 h 15 min.</p>", "en": "<p>The legendary The Animals are coming back to Malmitalo!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Don’t Let Me Be Misunderstood”, “It’s My Life”, “I Put A Spell On You”, “Boom Boom” and “Bring It On Home To Me”... With this hit list, The Animals (UK) are arguably one of the most influential bands in the world. Bruce Springsteen is one of their most prominent fans.</p><p>In 1964, a wave of energetic rock and roll swept the world’s youth, led by The Beatles, The Rolling Stones – and of course The Animals, founded by John Steel and Eric Burdon. The band’s name comes from their wild stage presence.</p><p>Although The Animals have since slowed down on stage, the music of a band about to celebrate their sixtieth anniversary is at least as powerful as ever, and their legend is only growing. Recently, Classic Rock magazine included the band’s debut album in its “50 Albums That Built Blues Rock” list.</p><p>John Steel is one of the two founding members of the original band, who is joined in the current line-up by musicians Danny Handley, Barney Williams and Norman Helm.</p><p>Duration: 1 h 15 min</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E30C1D189C161D42764F4F8F4CE1722/LOPPUUNMYYTY_The_Animals_UK_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E30C1D189C161D42764F4F8F4CE1722/SLUTSALD_The_Animals_UK_", "en": "http://www.malmitalo.fi/en/events/event/8E30C1D189C161D42764F4F8F4CE1722/SOLD_OUT_The_Animals_UK_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65544/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19667079", "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:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802086/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667079/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667079/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667079/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:07.867833Z", "last_modified_time": "2025-02-17T11:17:07.867850Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/dc/10/hkt-kaunotarja-hirviot222-tickets_342444_2945406_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/235446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.841372Z", "last_modified_time": "2025-04-10T23:16:50.943348Z", "date_published": null, "start_time": "2025-04-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Sinna Virtanen KAUNOTAR JA HIRVIÖT Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vink" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "name": { "fi": "Kaunotar Ja Hirviöt Ensi-Ilta" }, "description": { "fi": "<p>Sinna Virtanen<br><strong>KAUNOTAR JA HIRVIÖT</strong></p><p>Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vinksahtaneeseen fantasiakylään.</p><p>Näytelmä purkaa ja kertoo uudestaan kertomusta Kaunottaresta ja Hirviöstä, jonka ensimmäinen julkaistu versio on Gabrielle-Suzanne Barbot de Villeneuven vuodelta 1740.</p><p>Teos lainaa, varastaa ja väärentää eri versioita saduista yhdistellen söpöä ja makaaberia, kinkyä ja pikkusievää, pahaa ja enkelimäistä. Sadun eri versioiden alle piiloutuu tosimaailmassa tapahtunut erästä italialaista kyläyhteisöä vuonna 2012 järkyttänyt nuoren naisen raaka murhatapaus.</p><p>Teos tarkastelee draamanjanoamme sekä saduissa ja uutisissa toistuvia myrkyllisiä asetelmia.</p><p>Kaunotar ja hirviöt on eeppinen tutkielma surusta ja sen myymisestä. Esitys kysyy, voiko sadusta paeta menettämättä henkeään tai ainakin itseään.</p><p>Kaunotar ja hirviöt on palkitun näytelmäkirjailijan Sinna Virtasen (s.1987) kevyesti päivitetty kandidaatin näytelmä Teatterikorkeakoulusta vuodelta 2012.</p><p>Teoksen ohjaa Linda Wallgren (s.1988) yksi nuoren polven kiinnostavimmista ohjaajista, jonka edelliset työt on palkittu Tiedonjulkistamisen valtionpalkinnolla (2022) sekä Eino Kalima- ohjaajapalkinnolla (2024). Näyttämöllä Teatterikorkeakoulun näyttelijäntaiteen 3. vuosikurssi.</p><p>Rooleissa: Sonja Arffman, Heidi Finnberg, Elina Kanerva, Mikael Karvia, Väinö Lehtinen, Miriam Mekhane, Yosef Nousiainen, Rebecca Nugent, Iina Nyländen, Pablo Ounaskari, Milla Palin, Janika Suopanki Kirjailija: Sinna Virtanen</p><p>Ohjaaja: Linda Wallgren Lavastus: Sanna Levo<br>Pukusuunnittelu: Kaisa Savolainen (Aalto ARTS)<br>Valosuunnittelu: Aku Lahti<br>Äänisuunnittelu: Juri Jänis (TeaK, taiteellinen opinnäyte, TeM)<br>Naamioinnin suunnittelu: Henri Karjalainen</p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667079/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350711", "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-3748848/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350711/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350711/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350711/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235437, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.685563Z", "last_modified_time": "2025-02-17T11:16:43.685581Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/uusi-eden_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235437/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.714737Z", "last_modified_time": "2025-04-10T23:16:50.890021Z", "date_published": null, "start_time": "2025-04-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Henri Lyysaari Uusi Eden Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta.", "en": "Juho Mantere" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "name": { "fi": "Uusi Eden" }, "description": { "fi": "Henri Lyysaari<br><strong>Uusi Eden</strong></p><p>Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta. Hillittömän hauskassa show’ssa Juho Mantereen groteski ote kohtaa Disney-musikaalin hengen.</p><p>Globaali ydinsota on pyyhkinyt planeetan yli, mutta sattuman oikusta eräs teatteri Pasilassa henkilökuntineen on säästynyt tuholta. Kun teatterilaisten vanhat ammatit osoittautuvat hyödyttömiksi post-apokalyptisessä todellisuudessa, he aloittavat neuvokkaan talkkarin johdolla uuden elämän rakennusprojektin.</p><p>Vanhan teatterin raunioille syntyy yhteisö, jota he kutsuvat Uudeksi Edeniksi. Yhdessä he vannovat, etteivät koskaan toista menneisyyden virheitä — mutta pian käy ilmi, ettei paratiisissakaan kaikki ole täydellistä.</p><p>Entinen näyttelijäopiskelija Sonja haaveilee edelleen roolista, jota ei koskaan saanut, ja ex-pizzakuski Petteri unelmoi saavuttamattomasta rakkaudesta. Samaan aikaan Edenin johtajaksi nousseella talkkarilla on salaisuus, joka uhkaa murentaa koko yhteisön.</p><p>Teatterissa ja rakkaudessa kaikki keinot ovat sallittuja, mutta missä kulkee raja, kun kyseessä on oma selviytyminen ja usko parempaan tulevaisuuteen?</p><p>Uusi Eden on Helsingin Kaupunginteatterin ja Q-teatterin yhteistuotanto, joka yhdistää mustan huumorin, ajankohtaiset teemat ja sykähdyttävän musiikin tavalla, jota et ole ennen kokenut. Se on hengästyttävän hauska ja sydäntäsärkevän kaunis tarina toivosta ja rakkaudesta — sekä siitä, miten pitkälle olemme valmiita menemään kamppailussa paremman maailman puolesta.</p><p>Musikaalin on kirjoittanut ja ohjannut Juho Mantere, jonka edellinen teos ”Uuteen nousuun – Laman lasten elämä ja teot” kohosi teatteritapaukseksi Q-teatterissa. Musiikin on säveltänyt Henri Lyysaari, yksi nuoren polven lupaavimmista säveltäjistä.</p><p>Rooleissa: Miiko Toiviainen, Anna-Sofia Tuominen, Tiina Peltonen, Niki Rautén, Ushma Olava, Leenamari Unho, Unto Nuora, Mikko Vihma</p><p>Kapellimestari: Henri Lyysaari<br>Muusikot: Ossi Maristo, Juhana Kiiski, Maria Lamminen</p><p>Käsikirjoitus, ohjaus sekä laulujen sanat: Juho Mantere<br>Sävellys: Henri Lyysaari<br>Lavastus ja valosuunnittelu: William Iles<br>Pukusuunnittelu Riina Leea Nieminen<br>Äänisuunnittelu: Jaakko Virmavirta<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Vastuudramaturgi: Ari-Pekka Lahti</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy</p>", "en": "<p>Juho Mantere" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350711/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350666", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@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-3748841/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350666/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350666/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350666/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.456387Z", "last_modified_time": "2025-02-17T11:16:41.456408Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-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/235431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.585753Z", "last_modified_time": "2025-04-10T23:16:50.833227Z", "date_published": null, "start_time": "2025-04-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri." }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "name": { "fi": "Eikä Yksikään Pelastunut" }, "description": { "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350666/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350581", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [ { "@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-3748845/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350581/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350581/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350581/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235435, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.389566Z", "last_modified_time": "2025-02-17T11:16:42.389583Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/skymning_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235435/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.463841Z", "last_modified_time": "2025-04-10T23:16:50.776488Z", "date_published": null, "start_time": "2025-04-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "sv": "Kjell Westö - Annina Enckell Skymning 41 – berättelsen om Molly och Henry Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lilla Teatern" }, "name": { "sv": "Skymning 41 - Berättelsen Om Molly Och Henry" }, "description": { "fi": "<p>***<br>Vuonna 1939 vastarakastuneet Molly ja Henry kohtaavat sodan, joka muuttaa heidän elämänsä. Näyttelijä Molly lähtee Ruotsiin keräämään rahaa Suomen puolesta, kun Henry taas raportoi rintaman kauhuista, mutta hänen rehelliset tekstinsä jäävät julkaisematta. Esitys, joka perustuu Kjell Westön romaaniin, kertoo sodan vaikutuksista siviileihin sekä rakkaudesta ja moraalista kriisiaikana.</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br> Lipunvälittäjä: Lippupiste Oy<br></p>", "sv": "<p>Kjell Westö - Annina Enckell<br><strong>Skymning 41 – berättelsen om Molly och Henry</strong></p><p>Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att hamna i krig. Henry skickas inte till fronten, han är för gammal för att bli inkallad. Ändå förändrar kriget allt. Skådespelerskan Molly åker på turné till Sverige för att samla in pengar för Finlands sak, medan Henry reser till fronten för att skriva reportage om krigets fasor. Henrys texter blir inte publicerade, hans förmän tycker språket är för rått och ärligt. De saknar patriotiska berättelser om den finska soldaten – en hjälte som stålt dör för fosterlandet. Samtidigt måste Molly spela triviala roller i lättsamma komedier då hon egentligen skulle vilja “stå på scenen och gestalta mänskans villkor här i världen”. Molly och Henry försöker hitta tillbaka till livet som det var, men kriget är en gapande käft som slukar åt sig människornas glädje och hopp.</p><p>Föreställningen baserar sig på Kjell Westös roman och den handlar om en nation i krig, om hur retoriken i samhället militariseras och om hur kriget påverkar den civila befolkningen. Det är även en berättelse om kärlek och moral i kristid och om att kämpa för det man tror på.</p><p>Aktörer: Saga Sarkola, Elmer Bäck, Pia Runnakko, Alexander Wendelin, Joachim Wigelius, Antti Timonen</p><p>Regi: David Sandqvist<br>Dramatisering: Annina Enckell<br>Scenografi: Peter Ahlqvist<br>Dräktdesign: Sari Suominen<br>Ljusdesign: Pekka Pitkänen<br>Ljuddesign: Niklas Lundström<br>Maskdesign: Jutta Kainulainen<br>Dramaturgi: Henna Piirto</p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350581/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036795", "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-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036795/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036795/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036795/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_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/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.334185Z", "last_modified_time": "2025-04-10T23:16:50.709621Z", "date_published": null, "start_time": "2025-04-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036795/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19790131", "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:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748849/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19790131/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19790131/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19790131/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235432, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.590376Z", "last_modified_time": "2025-02-17T11:16:41.590394Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/sinun-margot_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.201627Z", "last_modified_time": "2025-04-10T23:16:50.654899Z", "date_published": null, "start_time": "2025-04-10T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Meri Valkama – Tuomas Timonen Sinun, Margot Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nous" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "name": { "fi": "Sinun, Margot" }, "description": { "fi": "<p>Meri Valkama – Tuomas Timonen<br><strong>Sinun, Margot</strong></p><p>Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nousi heti ilmestyttyään kirjallisuutemme merkkiteokseksi. Helsingin Kaupunginteatteri vastaa lukijoiden ja katsojien lukuisiin pyyntöihin valmistamalla Riikka Oksasen ohjaamana menestysromaanin pohjalta upean teatteriversion suurelle näyttämölle.</p><p>Vilja Siltasen isä Markus on juuri kuollut. Hänen asunnostaan löytyy nippu kirjeitä naiselta nimeltä Margot. Viljan äiti ei suostu sanomaan kirjeistä mitään, joten Viljan on matkustettava takaisin Berliiniin selvittämään, keneltä kirjeet ovat.</p><p>Vilja on varttunut DDR:ssä, jossa hänen isänsä työskenteli ulkomaankirjeenvaihtajana 1980-luvun alkupuolella. Perhe piti Itä-Saksaa ihannevaltiona. Sitten Berliinin muuri murtui ja perheonni hajosi. Miksi? Ja kuka kirjeiden Margot oikein on?</p><p>Sinun, Margot laajenee yksilön ja perheen tarinasta suureksi, kokonaista aikakautta tarkastelevaksi jännitysnäytelmäksi. Otteessaan pitävä draama onnistuu pohtimaan poikkeuksellisella tavalla ajankohtaisia kysymyksiä: Voiko menneisyyden muistaminen auttaa ymmärtämään nykyisyyttä?</p><p>Sinun, Margot on intensiivinen, psykologinen näytelmä siitä, mitä tapahtuu, kun ihanteelliseksi rakennettu kuva elämästä, aatteesta, tai ihmisestä alkaa särkyä. Kuka tai mitä ihminen lopulta on, jollei tiedä totuutta omasta menneisyydestään?</p><p>Viljan roolissa nähdään Jussi-palkittu Satu Tuuli Karhu. Margotina loistaa elokuvista ja televisiosta tuttu Sara Soulié. Viljan isää Markusta näyttelee useissa elokuvissa vaikutuksen tehnyt Martin Bahne ja Viljan äitiä Rosaa näyttelee upea Sanna-June Hyde.</p><p>Rooleissa: Satu Tuuli Karhu, Sara Soulié, Martin Bahne, Helena Haaranen, Vuokko Hovatta, Sanna-June Hyde, Tuukka Leppänen, Lasse Lipponen, Sanna Majuri, Risto Kaskilahti, Samuli Pajunen, Emma Pälsynaho, Raili Raitala</p><p>Kirjailija: Meri Valkama<br>Dramatisointi: Tuomas Timonen<br>Ohjaus: Riikka Oksanen<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Tiina Kaukanen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Milja Mensonen<br>Dramaturgi: Ari-Pekka Lahti<br>Ohjaajan assistentti: Kirsi Karlenius</p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19790131/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19326911", "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-3594382/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326911/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326911/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326911/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:44.559638Z", "last_modified_time": "2025-02-17T11:16:44.559655Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:07.098481Z", "last_modified_time": "2025-04-10T23:16:50.594273Z", "date_published": null, "start_time": "2025-04-10T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta." }, "provider_contact_info": null, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "name": { "fi": "Mollin Iltahepuli" }, "description": { "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Kaisa Torkkel, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326911/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:19e05756-64db-41fa-8318-9303c2c6e67e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:23512/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?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:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?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:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_testaus_1041442921677" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?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:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?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:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-04-10T12:03:42.003351Z", "last_modified_time": "2025-04-10T12:19:20.934869Z", "date_published": "2025-04-10T11:54:48Z", "start_time": "2025-04-10T12:02:00Z", "end_time": "2025-04-10T14:02:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 18, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-04-10T05:00:00+03:00", "enrolment_end_time": "2025-04-18T05:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Kuvaus2" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "LE testaus 10.4" }, "description": { "fi": "<div><p>Kuvaus</p></div>" }, "provider": { "fi": "Järkkäri" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:19e05756-64db-41fa-8318-9303c2c6e67e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64845", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "16,80 € / 10 €", "sv": "16,80 € / 10 €", "en": "16,80 € / 10 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "sv": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "en": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 330629, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-12T13:15:03.117634Z", "last_modified_time": "2025-03-12T13:15:03.117648Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760476.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330629/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-12T13:15:03.099891Z", "last_modified_time": "2025-04-10T11:14:25.383696Z", "date_published": null, "start_time": "2025-05-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.", "sv": "Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.", "en": "The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Lumikki ja seitsemän kääpiötä – Balettikoulu Anne Hirvosen kevätnäytös", "sv": "Snövit och de sju dvärgarna", "en": "Snow White and the seven dwarfs – Ballet school Anne Hirvonen’s spring performance" }, "description": { "fi": "<p>Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.</p><p>Balettikoulu Anne Hirvonen on vuodesta 1997 toiminut balettikoulu. Balettikoulu antaa ammattitaitoista tanssitaiteen opetusta eri ikäisille ja tasoisille oppilaille. Opetusaineet ovat klassinen baletti ja lastentanssi.</p><p>Lue lisää toiminnasta:<br><u><a>https://www.balettikouluannehirvonen.com</a></u></p><p>Kesto: 1 t</p>", "sv": "<p>Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.</p><p>Balettikoulu Anne Hirvonen är en balettskola som varit verksam sedan 1997. Balettskolan erbjuder professionell undervisning i dans för elever i olika åldrar och på olika nivåer. Skolan undervisar i klassisk balett och barndans.</p><p>Längd: 1 h</p>", "en": "<p>The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year.</p><p>Ballet school Anne Hirvonen has been active since its establishment in 1997. The school offers professional-level dance instruction to dancers of different ages and skill levels. The school teaches classic ballet and children's dance.</p><p>Duration: 1 h</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A48862D591F412DCA0BA344EFBEF7B63/Lumikki_ja_seitseman_kaapiota", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A48862D591F412DCA0BA344EFBEF7B63/Snovit_och_de_sju_dvargarna", "en": "http://www.malmitalo.fi/en/events/event/A48862D591F412DCA0BA344EFBEF7B63/Snow_White_and_the_seven_dwarfs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64845/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64844", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "16,80 € / 10 €", "sv": "16,80 € / 10 €", "en": "16,80 € / 10 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "sv": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "en": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 330628, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-12T13:15:02.994675Z", "last_modified_time": "2025-03-12T13:15:02.994697Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760475.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330628/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-12T13:15:02.973101Z", "last_modified_time": "2025-04-10T11:14:25.314332Z", "date_published": null, "start_time": "2025-05-10T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.", "sv": "Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.", "en": "The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year." }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Lumikki ja seitsemän kääpiötä – Balettikoulu Anne Hirvosen kevätnäytös", "sv": "Snövit och de sju dvärgarna", "en": "Snow White and the seven dwarfs – Ballet school Anne Hirvonen’s spring performance" }, "description": { "fi": "<p>Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.</p><p>Balettikoulu Anne Hirvonen on vuodesta 1997 toiminut balettikoulu. Balettikoulu antaa ammattitaitoista tanssitaiteen opetusta eri ikäisille ja tasoisille oppilaille. Opetusaineet ovat klassinen baletti ja lastentanssi.</p><p>Lue lisää toiminnasta:<br><u><a>https://www.balettikouluannehirvonen.com</a></u></p><p>Kesto: 1 t</p>", "sv": "<p>Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.</p><p>Balettikoulu Anne Hirvonen är en balettskola som varit verksam sedan 1997. Balettskolan erbjuder professionell undervisning i dans för elever i olika åldrar och på olika nivåer. Skolan undervisar i klassisk balett och barndans.</p><p>Längd: 1 h</p>", "en": "<p>The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year.</p><p>Ballet school Anne Hirvonen has been active since its establishment in 1997. The school offers professional-level dance instruction to dancers of different ages and skill levels. The school teaches classic ballet and children's dance.</p><p>Duration: 1 h</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F5178FF38221B7147B3054341866D779/Lumikki_ja_seitseman_kaapiota", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F5178FF38221B7147B3054341866D779/Snovit_och_de_sju_dvargarna", "en": "http://www.malmitalo.fi/en/events/event/F5178FF38221B7147B3054341866D779/Snow_White_and_the_seven_dwarfs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64844/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65507", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 221072, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T12:14:55.766077Z", "last_modified_time": "2025-02-13T12:14:55.766102Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763435.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221072/?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-02-13T12:14:55.728069Z", "last_modified_time": "2025-04-10T11:14:23.443181Z", "date_published": null, "start_time": "2025-04-30T13:00:00Z", "end_time": "2025-04-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jos kaipaat väriä, vauhtia ja sirkusta vappuun, niin astu sisään Race Horse Companyn sirkustelttaan!", "sv": "Om du letar efter färg, fart och cirkus för ditt valborgsfirande, kliv då in i Race Horse Companys cirkustält!", "en": "If you are looking for colour, speed and a circus on May Day, step inside Race Horse Company’s circus tent!" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Race Horse Companyn vauhdikas sirkusvappu", "sv": "The Race Horse Companys fartfyllda valborgscirkus", "en": "Race Horse Company’s action-packed circus May Day" }, "description": { "fi": "<p>Jos kaipaat väriä, vauhtia ja sirkusta vappuun, niin astu sisään Race Horse Companyn sirkustelttaan!</p><p>Tunnelma on taatusti teltan katossa, kun nämä hurjapäiset sirkustaiteilijat valtaavat Stoan teatterisalin.</p><p>Tule yksin, koko perheen voimin tai muulla vappuisalla porukalla hakemaan yllätyksiä täynnä oleva, kuplivan hyväntuulinen lähtö vappuun.</p><p><b>Lisäksi työpajoja</b></p><p><b>Vappu kukkii!</b> <br>Pajassa syntyy muhkeana, värikkäänä, ihan hupsuna tupsuna terälehtiään avaavia silkkipaperikukkia. <br>Ohjaaja: Jenni Vilander</p><p><b>Jättisaippuakuplia</b> <br>Stoan aukiolla pääset itse kokeilemaan jättisaippuakuplien tekemistä. Ohjaaja: Enrique Salas</p><p>Kesto: 2 h non-stop, viihdy sen aikaa kun jaksat</p><p>Vapaa pääsy</p>", "sv": "<p>Om du letar efter färg, fart och cirkus för ditt valborgsfirande, kliv då in i Race Horse Companys cirkustält!</p><p>Stämningen kommer garanterat att nå ända upp till taket när de här våghalsiga cirkusartisterna tar över Stoas teatersal.</p><p>Kom ensam, med hela familjen eller med en grupp för en överraskningsfylld, sprudlande och rolig start på julhelgen.</p><p>Längd: 2 h nonstop, stanna så länge du vill</p><p>Fritt inträde</p>", "en": "<p>If you are looking for colour, speed and a circus on May Day, step inside Race Horse Company’s circus tent!</p><p>The atmosphere is guaranteed to be through the roof when these ferocious circus artists take over Stoa’s theatre.</p><p>Come alone, with the whole family or with another May Day group to start your May Day in a surprise-filled, bubbly and feel-good manner.</p><p>Duration: 2 h nonstop, enjoy for as long as you can</p><p>Free admission</p>" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/32A4A2DEAE1F0229B064310C8778A63D/Race_Horse_Companyn_vauhdikas_sirkusvappu", "sv": "http://www.stoa.fi/sv/evenemang/event/32A4A2DEAE1F0229B064310C8778A63D/The_Race_Horse_Companys_fartfyllda_valborgscirkus", "en": "http://www.stoa.fi/en/events/event/32A4A2DEAE1F0229B064310C8778A63D/Race_Horse_Company_s_action-packed_circus_May_Day" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65507/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26813, "next": "