Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&include=location%2Ckeywords&page=211
{ "meta": { "count": 32757, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=212", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=210" }, "data": [ { "id": "espoo_le:agnns4xxiq", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "telephone": { "fi": "+358 9 8165 3776" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11733", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.739009Z", "last_modified_time": "2024-02-06T13:24:07.909651Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3118, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Kielikahvilat ja keskusteluryhmät", "sv": "Språkcafeér och diskussionsgrupper", "en": "Language Cafés and discussion groups", "ru": "Языковые кафе и дискуссионные клубы" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p556", "has_user_editable_resources": false, "alt_labels": [ "språk (språkvetenskap)", "kielet", "kieli (kielitiede)", "språk (typer)", "språket" ], "created_time": "2023-08-16T05:19:47.449652Z", "last_modified_time": "2023-08-16T05:19:47.449670Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3855, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kieli ja kielet", "sv": "språk", "en": "languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T09:28:03.360657Z", "last_modified_time": "2025-12-01T09:28:03.360678Z", "date_published": null, "start_time": "2026-01-13T16:00:00Z", "end_time": "2026-05-26T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska?", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé", "en": "Finnish Language Cafe" }, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti", "sv": "Finska Röda Korset", "en": "Finnish Red Cross" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xxiq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xxw4", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "telephone": { "fi": "+358 9 8165 3776" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11733", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.739009Z", "last_modified_time": "2024-02-06T13:24:07.909651Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3118, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Kielikahvilat ja keskusteluryhmät", "sv": "Språkcafeér och diskussionsgrupper", "en": "Language Cafés and discussion groups", "ru": "Языковые кафе и дискуссионные клубы" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p556", "has_user_editable_resources": false, "alt_labels": [ "språk (språkvetenskap)", "kielet", "kieli (kielitiede)", "språk (typer)", "språket" ], "created_time": "2023-08-16T05:19:47.449652Z", "last_modified_time": "2023-08-16T05:19:47.449670Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3855, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kieli ja kielet", "sv": "språk", "en": "languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T09:27:17.946283Z", "last_modified_time": "2025-12-01T09:27:17.946301Z", "date_published": null, "start_time": "2026-01-13T16:00:00Z", "end_time": "2026-05-26T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska?", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé", "en": "Finnish Language Cafe" }, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti", "sv": "Finska Röda Korset", "en": "Finnish Red Cross" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xxw4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xyna", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "telephone": { "fi": "+358 9 8165 3776" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2149", "has_user_editable_resources": false, "alt_labels": [ "opastaminen", "opastukset", "vägledning" ], "created_time": "2023-08-16T05:13:22.316826Z", "last_modified_time": "2023-08-16T05:13:22.316842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3818, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opastus", "sv": "guidning", "en": "guidance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xy6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-01T09:19:55.406670Z", "last_modified_time": "2025-12-01T09:19:55.406688Z", "date_published": null, "start_time": "2025-12-09T14:00:00Z", "end_time": "2025-12-09T16: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": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "MakerSpace " }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xyvq", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "telephone": { "fi": "+358 9 8165 3776" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2149", "has_user_editable_resources": false, "alt_labels": [ "opastaminen", "opastukset", "vägledning" ], "created_time": "2023-08-16T05:13:22.316826Z", "last_modified_time": "2023-08-16T05:13:22.316842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3818, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opastus", "sv": "guidning", "en": "guidance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xy6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-01T09:19:55.161685Z", "last_modified_time": "2025-12-01T09:19:55.161710Z", "date_published": null, "start_time": "2025-12-02T14:00:00Z", "end_time": "2025-12-02T16: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": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "MakerSpace " }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyvq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xy6e", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "telephone": { "fi": "+358 9 8165 3776" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2149", "has_user_editable_resources": false, "alt_labels": [ "opastaminen", "opastukset", "vägledning" ], "created_time": "2023-08-16T05:13:22.316826Z", "last_modified_time": "2023-08-16T05:13:22.316842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3818, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opastus", "sv": "guidning", "en": "guidance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyvq/?format=api" } ], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-01T09:19:54.221505Z", "last_modified_time": "2025-12-01T09:19:54.221527Z", "date_published": null, "start_time": "2025-12-02T14:00:00Z", "end_time": "2025-12-16T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "MakerSpace " }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xy6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmtssxcm", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "telephone": { "fi": "+358 9 8163 5097" }, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "description": null, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66mq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.137750Z", "last_modified_time": "2023-12-13T11:20:12.137771Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3078, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Finnoo", "sv": "Finno", "en": "Finnoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66qa", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.165590Z", "last_modified_time": "2023-12-13T11:20:12.165607Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 693, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Suvisaaristo", "sv": "Sommaröarna", "en": "Suvisaaristo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.364884Z", "last_modified_time": "2023-12-13T11:20:12.364908Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2667, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaitaa", "sv": "Kaitans", "en": "Kaitaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493960, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-01T09:09:21.616982Z", "last_modified_time": "2025-12-01T09:09:21.616997Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/6f1fe701-b862-4729-830c-5738a8490773.jpg", "name": "", "cropping": "282,0,1000,717", "photographer_name": "", "alt_text": "Kuvassa on lapsi, joka soittaa pianoa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493960/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T09:17:21.285882Z", "last_modified_time": "2025-12-01T09:09:44.253250Z", "date_published": null, "start_time": "2025-12-07T13:00:00Z", "end_time": "2025-12-07T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kuuntelemaan oppilaskonserttia Salonkiin sunnuntaina 7.12. klo 15:00 alkaen", "en": "Welcome to listen to the students concert on sunday 7.12. from 15:00 o clock onwards." }, "info_url": null, "name": { "fi": "International School Of Music Finlandin joulukonsertti", "en": "International School Of Music Finland's christmas concert" }, "description": { "fi": "<p>Tervetuloa kuuntelemaan International School Of Music Finlandin oppilaiden joulukonserttia Salonkiin sunnuntaina 7.12. klo 15:00 alkaen.</p><p>Tapahtuma on maksuton ja kaikille avoin.</p>", "en": "<p>Welcome to listen to the International School Of Music Finland's christmas concert students concert on sunday 7.12. from 15:00 o clock onwards.</p><p>The event is free of charge and open for all!</p>" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": { "fi": "International School Of Music Finland", "en": "International School Of Music Finland" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmtssxcm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66509", "has_user_editable_resources": false, "location": { "id": "tprek:7258", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:16.221655Z", "last_modified_time": "2024-02-06T13:09:51.033692Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 575, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947306, 60.16663 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.savoyteatteri.fi/", "sv": "http://www.savoyteatteri.fi/", "en": "http://www.savoyteatteri.fi/" }, "telephone": { "fi": "+358 9 310 36563" }, "name": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "description": null, "street_address": { "fi": "Kasarmikatu 46-48", "sv": "Kaserngatan 46-48", "en": "Kasarmikatu 46-48" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1318, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1061, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:49", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.697675Z", "last_modified_time": "2024-02-06T13:19:14.132899Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 575, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1406, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3912720", "sv": "https://www.lippu.fi/eventseries/3912720", "en": "https://www.lippu.fi/eventseries/3912720" }, "description": null, "price": { "fi": "17 € / Perhelippu 60 €", "sv": "17 € / Perhelippu 60 €", "en": "17 € / Perhelippu 60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 951667, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T09:13:59.265519Z", "last_modified_time": "2025-06-06T09:13:59.265535Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774755.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/951667/?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-06-06T09:13:59.109276Z", "last_modified_time": "2025-11-30T10:12:58.214421Z", "date_published": null, "start_time": "2025-11-30T13: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": "Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!", "sv": "Skivsläppskonsert för Mutaveijarits helt nya julskiva!", "en": "The Mutaveijarit band’s brand-new Christmas album release concert!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/810BBB1D3E2B31566D5DCAABCCB70F95/LOPPUUNMYYTY_Mutaveijarit_Joulutouhotus", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus", "en": "http://www.savoyteatteri.fi/en/events/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus" }, "name": { "fi": "LOPPUUNMYYTY: Mutaveijarit: Joulutouhotus", "sv": "Mutaveijarit: Joulutouhotus", "en": "Mutaveijarit: Joulutouhotus" }, "description": { "fi": "<p>Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis! Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet aivan uusia joulu- ja talvilauluja mutameininkiä unohtamatta.</p><p>Valloittavista esiintymisistä ja mukaansatempaavista, monisävyisistä lauluista tunnettu Mutaveijarit on viimeisen kymmenen vuoden aikana vakiinnuttanut asemansa yhtenä Suomen suosituimmista lastenmusiikkiyhtyeistä. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa uudenlaiselle musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja molemmat levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Vuonna 2023 julkaistiin Mutaveijareiden lauluista Ämpärillinen nuotteja -nuottikirja, josta on otettu jo uusintapainos.</p><p>Kesto n. 50 min, ei väliaikaa</p><p>Konsertti on ikärajaton</p><p>Liput 17 €, perhelippu (4 hlöä) 60 €</p><p>Alle 3-vuotias lapsi sylissä ilmaiseksi, jokainen omalla paikallaan istuva tarvitsee oman lipun.</p><p>Savoyssa on tarjolla rajoitettu määrä istuintyynyjä ja -korokkeita perheen pienimmille. Pyydämme käyttämään korokkeita vain todelliseen tarpeeseen, jotta niitä riittää mahdollisimman monelle.</p><p>Huomioithan myös. että Savoy-teatterin aulatilat ovat valitettavan rajalliset, ja lastenvaunuille ja -rattaille on niukasti tilaa. Pyydämme siis jättämään vaunut ja rattaat mahdollisuuksien mukaan kotiin tai esim. autoon konsertin ajaksi.</p><p>Lämmin kiitos yhteistyöstänne; näin takaamme onnistuneen ja iloisen konserttikokemuksen kaikille paikalle tulijoille!</p>", "sv": "<p>Skivsläppskonsert för Mutaveijarits helt nya julskiva!</p><p>Det är vinter hos Mutaveijarit och julen närmar sig redan. Men mitt i allt vinterskoj är Mutaveijarit fortfarande mitt uppe i alla julförberedelser! Receptet på risgrynsgröt är försvunnet, julklapparna ogjorda och de är inte alls klara med julstädningen. Julstöket är igång! Lyckligtvis går julförberedelserna som en dans när man leker tillsammans. Kom till en vintrig konsert för att förbereda dig inför julen genom att sjunga och leka tillsammans med Mutaveijarit. På konserten får du höra helt nya jul- och vintersånger i vanlig Mutaveijarit-stil.</p><p>Mutaveijarit, som är kända för sina charmerande och medryckande framträdanden samt mångtoniga sånger, har under de senaste tio åren etablerat sig som en av Finlands populäraste barnmusikgrupper. De fantasifulla och insiktsfulla sångerna samt inspirerande och pedagogiskt mångsidiga sånglekarna tar lyssnarna med på en ny musikalisk resa, med roliga och spännande vändningar som garanterar en underhållande konsertupplevelse för hela familjen.</p><p>Mutaveijarits två skivor Ympäri ämpäri! (2016) och Nyt mennään! (2019) har fått många utmärkelser av bland annat Småbarns musiklärare rf, och båda skivorna har nominerats till en Emma i kategorin barnmusik. År 2023 publicerades Mutaveijarits sånger i notboken Ämpärillinen nuotteja, som det redan har kommit en ny upplaga av.</p><p>Längd ca 45 min., ingen paus.</p><p>Konserten har ingen åldersgräns.</p><p>Biljetter 17 €, familjebiljett (4 pers.) 60 €</p><p>Barn under 3 år sitter gratis i knät, varje person som sitter på en egen plats behöver en biljett.</p>", "en": "<p>The Mutaveijarit band’s brand-new Christmas album release concert!</p><p>It's winter in Mutaveijarila and Christmas is already approaching. But in the midst of all the winter fun, Mutaveijarit have still not finished any of their Christmas preparations! The rice porridge recipe is missing, the Christmas presents have not been wrapped and the Christmas cleaning is not even halfway done. It’s going to be a real Christmas hassle! Luckily, finishing these Christmas tasks is easy when working together. Come listen to this wintery concert to get ready for Christmas by singing and playing with the Mutaveijarit. In the concert you will hear brand-new Christmas and winter songs, without forgetting the usual muddy fun of Mutaveijarit.</p><p>Over the past ten years, Mutaveijarit, known for their highly entertaining performances and captivating, multi-tonal songs, have established themselves as one of Finland's most popular children's music groups. The imaginative and insightful songs and inspiring and pedagogically diverse singing games take their audience on a new kind of musical journey, with fun and exciting twists and turns that guarantee an entertaining concert experience for the whole family.</p><p>The two albums by Mutaveijarit – Ympäri ämpäri! (2016) and Nyt mennään! (2019) – have received numerous accolades from e.g. the Vamo association of early childhood music teachers, and both albums have been nominated for the Emma award for children's music. In 2023, a selection of Mutaveijarit songs was published in a notebook called Ämpärillinen Nuotteja, and a second edition has already been printed.</p><p>Duration approx. 45 min, no intermission</p><p>The concert is not age-restricted</p><p>Tickets €17, family ticket (4 people) €60</p><p>Children under the age of 3 can share a seat with an adult, each person sitting in their own seat needs their own ticket.</p>" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20003350", "has_user_editable_resources": false, "location": { "id": "tprek:9340", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itä-pasila", "municipality": "Helsinki", "name": { "fi": "Itä-Pasila", "sv": "Östra Böle" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } } ], "created_time": "2023-08-15T08:13:25.079554Z", "last_modified_time": "2024-02-06T13:10:05.246698Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00520", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 315, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.940313, 60.199146 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/nayttamot/studio-pasila/", "sv": "https://hkt.fi/nayttamot/studio-pasila/", "en": "https://hkt.fi/nayttamot/studio-pasila/" }, "telephone": { "fi": "+358 9 394 01" }, "name": { "fi": "Studio Pasila", "sv": "Teaterstudio Pasila", "en": "Theatre Studio Pasila" }, "description": null, "street_address": { "fi": "Ratamestarinkatu 5", "sv": "Banmästargatan 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p5", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:56.367784Z", "last_modified_time": "2023-08-16T05:18:56.367801Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 71, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "viihde", "sv": "underhållning", "en": "entertainment" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9244", "has_user_editable_resources": false, "alt_labels": [ "stå-upp-komik" ], "created_time": "2023-08-16T05:08:33.693878Z", "last_modified_time": "2023-08-16T05:08:33.693903Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 126, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "stand up -komiikka", "sv": "ståuppkomik", "en": "stand-up comedy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003350/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003350/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003350/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.926542Z", "last_modified_time": "2025-02-17T11:16:43.926559Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.889423Z", "last_modified_time": "2025-11-30T03:14:39.699834Z", "date_published": null, "start_time": "2025-11-29T19: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": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi." }, "info_url": { "fi": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=en" }, "name": { "en": "Club Act!One K-18" }, "description": { "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p><br><strong>Lokakuu</strong><br>to 2.10. klo 19.00 Heli Sutela, Kaisa Pylkkänen, Ilari Johansson, Fredi Lilius<br>La 4.10. klo 21.00 Andre Wickström, Lauri Saviharju, Roosa Maskonen, Laura Haimila<br>Pe 10.10. klo 19.00 Anitta Ahonen, Mikko Vaismaa, Anders Helenius, Illusia Sarvas<br>La 11.10. klo 19.00 Anna Rimpelä, Eeva Vekki, Ray Zambino, Riku Sottinen<br>Pe 17.10. klo 19.00 Lauri Saviharju, Saana Peltola, Fabe, Raisa Omaheimo<br>La 18.10. klo 19.00 Heikki Vilja, Janne Grönroos, Karim Aldulaimi, James MacDonald<br>Pe 24.10. klo 19.00 Ursula Herlin, Marjut Ollitervo, Rich Lyons, Matti Patronen<br>La 25.10. klo 19.00 Miksu Pellikka, Ilari Johansson, Roosa Maskonen, Fathi Ahmed<br>Pe 31.10. klo 19.00 Johanna Tohni, Heli Sutela, Antti Haapala, Helena Pöllänen</p><p><strong>Marraskuu</strong><br>Pe 7.11. klo 19.00 Anitta Ahonen, Tommi Mujunen, Mika Eirtovaara, Helena Pöllänen<br>La 8.11. klo 19.00 Anna Rimpelä, André Wickström, Tomi Haustola, RudiRok<br>La 15.11. klo 19.00 Laura Haimila, Kaisa Pylkkänen, Aatu Raitala, Paul Westlake<br>la 22.11. klo 21.00 Ali Jahangiri - Mustavalkoista soolo Esitys kuvataan!<br>la 29.11. klo 21.00 Ali Jahangiri - Mustavalkoista soolo Esitys kuvataan!</p><p><strong>Joulukuu</strong><br>la 13.12. klo 19.00 Ursula Herlin, Ida Grönlund, Mebe, Matti Patronen</p><p>Yhteistyössä W&T Comedyn kanssa.</p>", "en": "<p><strong>CLUB ACT!ONE</strong></p>" }, "location_extra_info": { "fi": "Studio Pasila LÄMPIÖ" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003350/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999932", "has_user_editable_resources": false, "location": { "id": "tprek:46367", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:siltasaari", "municipality": "Helsinki", "name": { "fi": "Siltasaari", "sv": "Broholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T11:16:03.694168Z", "last_modified_time": "2025-02-01T06:09:58.729347Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 399, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.950369, 60.18024 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/nayttamot/arena-nayttamo/", "sv": "https://hkt.fi/nayttamot/arena-nayttamo/", "en": "https://hkt.fi/nayttamot/arena-nayttamo/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Arena-näyttämö - Helsingin kaupunginteatteri", "sv": "Arena-scenen - Helsingfors stadsteater", "en": "Arena Theatre - Helsinki City Theatre" }, "description": { "fi": "Arena-näyttämöllä on nähty Helsingin Kaupunginteatterin vauhdikkaita ja viihdyttäviä esityksiä syksystä 2010 alkaen. Ohjelmistossa on ollut komediaa ja musikaaleja, niin Broadwaylta kuin Suomestakin, stand upia, kotimaisia kantaesityksiä ja musiikintäyteisiä konsertti-iltoja.", "sv": "Arenascenen har varit värd för Helsingfors stadsteaters fartfyllda och underhållande föreställningar sedan hösten 2010. Programmet har innehållit komedi och musikaler, stand-up, inhemska premiärer och musikfyllda konsertkvällar.", "en": "The Arena stage has hosted the Helsinki City Theatre's fast-paced and entertaining performances since autumn 2010. The program has included comedy and musicals, stand-up comedy, domestic premieres and music-filled concert evenings." }, "street_address": { "fi": "Hämeentie 2", "sv": "Tavastvägen 2", "en": "Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999932/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999932/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999932/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.572788Z", "last_modified_time": "2025-11-30T03:14:39.559067Z", "date_published": null, "start_time": "2025-11-29T16: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": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506315", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "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": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506315/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506315/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506315/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "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", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "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:26.223876Z", "last_modified_time": "2025-11-30T03:14:39.426841Z", "date_published": null, "start_time": "2025-11-29T16: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," }, "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" }, "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, Wilhelm Blomberg, 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>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506315/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000254", "has_user_editable_resources": false, "location": { "id": "tprek:9353", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:13:26.380591Z", "last_modified_time": "2024-02-06T13:10:05.559954Z", "custom_data": null, "email": "info@hkt.fi", "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 285, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.937542, 60.167675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.hkt.fi/lillateatern/", "sv": "http://www.hkt.fi/lillateatern/", "en": "http://www.hkt.fi/lillateatern/" }, "telephone": { "fi": "+358 9 394 0373" }, "name": { "fi": "Lilla Teatern", "sv": "Lilla Teatern", "en": "Lilla Teatern" }, "description": null, "street_address": { "fi": "Yrjönkatu 30", "sv": "Georgsgatan 30" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849163/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000254/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000254/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000254/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1490709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T07:16:38.476528Z", "last_modified_time": "2025-09-10T07:16:38.476549Z", "url": "https://www.lippu.fi/obj/mam/finland/67/1b/hyenans-dagar-tickets_438240_3555827_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490709/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.413091Z", "last_modified_time": "2025-11-30T03:14:39.293278Z", "date_published": null, "start_time": "2025-11-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": { "sv": "Saara Turunen HYENANS DAGAR Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=en" }, "name": { "fi": "Hyenans Dagar" }, "description": { "fi": "<p>Saara Turunen<br><strong>HYENANS DAGAR</strong></p><p>Hyenans dagar (Hyeenan päivät) perustuu osittain Saara Turusen samannimiseen romaaniin.</p><p>Teos uppoutuu erääseen lisääntymiskertomukseen, se valottaa yhden naisen tarinaa hedelmöityshoidoista lapsen saamiseen. Esitys on raportinomainen seurantakertomus sekä yhden ajanjakson kuvaus, jossa yksityinen ja yhteiskunnallinen risteytyvät ja menevät sekaisin. Pinnan alla teos käsittelee kehollisuutta, kontrollia ja pärjäämisen kulttuuria. Draama sijaitsee kuvien ulkopuolella, osittain katsojan omassa mielessä. Esitys ei tarjoile valmiita vastauksia, pikemminkin se vain näyttää kohtauksia, hetkiä ja tilanteita, joista katsoja voi tehdä omat tulkintansa.</p><p>Kuten Turusen aiemmissakin töissä, myös Hyenans dagar -esityksessä musiikilla ja kuvallisuudella on keskeinen osansa.<br>Hyenans dagar on suunnattu kaikille, jotka ovat joskus tavoitelleet jotakin, kohdanneet vaikeuksia tai tulleet sysätyiksi itselleen tuntemattomaan maailmaan.</p>", "sv": "<p>Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam.</p><p>Föreställningen skildrar en kvinnas erfarenhet av fertilitetsbehandlingar och vägen till att få barn. Med ett dokumentärartat grepp skildras en tidsperiod i livet där gränsen mellan det privata och det samhälleliga suddas ut. Under ytan behandlar verket frågor om kroppslighet, kontroll och att alltid behöva klara sig själv. Dramat utspelar sig inte bara på scenen, utan också i åskådarens egna tankar och reflektioner. Föreställningen ger inga färdiga svar, utan bjuder istället på scener och ögonblick som publiken får tolka på sitt eget sätt.</p><p>Musiken och bildspråket spelar en central roll, precis som i Saara Turunens tidigare föreställningar.<br>Hyenans dagar riktar sig till alla som någonsin strävat efter något, upplevt motgångar eller kastats in i en okänd värld.</p><p>******</p><p>Aktörer: Kreeta Salminen, Elmer Bäck, Katja Küttner, Pia Runnakko, Alexander Wendelin</p><p>Manus och regi: Saara Turunen<br>Översättning: Kasimir Koski<br>Scenografi: Milja Aho<br>Dräktdesign: Liisa Pesonen<br>Ljusdesign: Ainu Palmu<br>Ljuddesign: Tuuli Kyttälä<br>Maskdesign: Jaana Nykänen</p>" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000254/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999961", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849162/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999961/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999961/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999961/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:29.901832Z", "last_modified_time": "2025-03-17T22:17:29.901845Z", "url": "https://www.lippu.fi/obj/mam/finland/2b/f1/aleksisuomesta222-tickets_369143_3117420_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.303752Z", "last_modified_time": "2025-11-30T03:14:39.138934Z", "date_published": null, "start_time": "2025-11-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": "Ari-Pekka Lahti ALEKSI SUOMESTA Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024)." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=en" }, "name": { "fi": "Aleksi Suomesta" }, "description": { "fi": "<p>Ari-Pekka Lahti<br><strong>ALEKSI SUOMESTA</strong></p><p>Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024). Näytelmä on Ari-Pekka Lahden sovitus Tuomas Kyrön samannimisestä kirjasta (WSOY, 2023), joka oli myös Tietokirjallisuuden Finlandia-palkintoehdokas.</p><p>Isovanhempiensa maatilalla Oulussa lapsuuttaan viettänyt, suomalaisen äidin ja senegalilaisen isän poika päättää tehdä itsestään sotilaan, ja lähtee 18-vuotiaana muukalaislegioonaan. Hän palvelee Afganistanissa ja useissa Afrikan maissa. Ukrainaan hän lähtee ensimmäisten vapaaehtoisten joukossa vuonna 2022, palaa välillä Suomeen, mutta lähtee uudestaan Ukrainaan syksyllä 2024, jossa hän menehtyy vuoden viimeisten päivien aikana.</p><p>Näytelmää on valmisteltu yhteistyössä Aleksi Lysanderin kanssa ja hänen toiveensa oli, että esitys toteutetaan ja siitä tulee mahdollisimman rehellinen kuvaus sodan jäljistä ja siitä, miten sota ei koskaan ole oikea ratkaisu.</p><p>Rooleissa: Roderick Kabanga, Eetu Känkänen</p><p>Kirjailija: Tuomas Kyrö<br>Dramatisointi: Ari-Pekka Lahti<br>Ohjaus: Tuomas Rinta-Panttila<br>Lavastus, valo- ja videosuunnittelu: Mika Haaranen<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999961/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999933", "has_user_editable_resources": false, "location": { "id": "tprek:46367", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:siltasaari", "municipality": "Helsinki", "name": { "fi": "Siltasaari", "sv": "Broholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T11:16:03.694168Z", "last_modified_time": "2025-02-01T06:09:58.729347Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 399, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.950369, 60.18024 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/nayttamot/arena-nayttamo/", "sv": "https://hkt.fi/nayttamot/arena-nayttamo/", "en": "https://hkt.fi/nayttamot/arena-nayttamo/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Arena-näyttämö - Helsingin kaupunginteatteri", "sv": "Arena-scenen - Helsingfors stadsteater", "en": "Arena Theatre - Helsinki City Theatre" }, "description": { "fi": "Arena-näyttämöllä on nähty Helsingin Kaupunginteatterin vauhdikkaita ja viihdyttäviä esityksiä syksystä 2010 alkaen. Ohjelmistossa on ollut komediaa ja musikaaleja, niin Broadwaylta kuin Suomestakin, stand upia, kotimaisia kantaesityksiä ja musiikintäyteisiä konsertti-iltoja.", "sv": "Arenascenen har varit värd för Helsingfors stadsteaters fartfyllda och underhållande föreställningar sedan hösten 2010. Programmet har innehållit komedi och musikaler, stand-up, inhemska premiärer och musikfyllda konsertkvällar.", "en": "The Arena stage has hosted the Helsinki City Theatre's fast-paced and entertaining performances since autumn 2010. The program has included comedy and musicals, stand-up comedy, domestic premieres and music-filled concert evenings." }, "street_address": { "fi": "Hämeentie 2", "sv": "Tavastvägen 2", "en": "Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999933/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999933/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999933/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.204982Z", "last_modified_time": "2025-11-30T03:14:39.000288Z", "date_published": null, "start_time": "2025-11-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": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506316", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "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": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506316/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506316/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506316/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "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", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "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:26.119086Z", "last_modified_time": "2025-11-30T03:14:38.866242Z", "date_published": null, "start_time": "2025-11-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": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "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" }, "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, Wilhelm Blomberg, 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>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506316/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20539228", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2503579/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539228/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539228/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539228/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1461551, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T10:15:48.431415Z", "last_modified_time": "2025-08-11T10:15:48.431434Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hkt12lahjaa222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1461551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T10:15:57.298586Z", "last_modified_time": "2025-11-30T03:14:38.726201Z", "date_published": null, "start_time": "2025-11-29T08: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": "Mauri Kunnas Kaksitoista lahjaa Joulupukille Rakastettu klassikko Pienen näyttämön lämpiö – Eläintarhantie 5 Ensi-ilta 1." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=en" }, "name": { "fi": "Kaksitoista Lahjaa Joulupukille" }, "description": { "fi": "<p>Mauri Kunnas<br><strong>Kaksitoista lahjaa Joulupukille</strong><br>Rakastettu klassikko</p><p>Pienen näyttämön lämpiö – Eläintarhantie 5<br>Ensi-ilta 1.11.2018<br>Noin 40 min, ei väliaikaa<br>Soveltuu 3-vuotiaasta ylöspäin.<br>10 €</p><p><strong>Mauri Kunnaksen rakastettu klassikkotarina taiotaan joulun aikaan eläväksi pienen näyttämön lämpiöön.Joulupukin kylässä, Korvatunturilla, käy kova vilske ja hyörinä, kun tonttujen suureen joulujuhlaan on enää kaksitoista päivää.<br></strong><br>Ville-tonttu pitää joulusta hurjan paljon ja lahjojen antaminen on parasta mitä hän tietää. Mutta Villellä on pulma. Miten Joulupukkia voisi ilahduttaa? Hän keksii antaa Joulupukille lahjan jokaisena päivänä ennen joulua. Ja hauskaahan siitä tulee, kun kaikki ei sujukaan suunnitelmien mukaan. Tonttupojan tempaukset onnellistuttavat kiireen keskellä ja tuovat hyvän joulumielen. Joulukylässä tapaat Ville-tontun, Joulupukin, Joulumuorin, oikeita ja sulavia poroja, Rekku-koiran, kissan ja tonttuväkeä!</p><p>Rooleissa: Sanna-June Hyde, Kaisa Torkkel ja Juha Jokela</p><p>Esitysoikeuksia valvoo Agency North / Suomen Näytelmäkirjailijat ja Käsikirjoittajat.</p>" }, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20539228/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66890", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "telephone": { "fi": "+358 9 310 85983" }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:33", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.509726Z", "last_modified_time": "2024-02-06T13:19:13.839978Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 761, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:758", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2025-01-16T11:10:18.586374Z", "last_modified_time": "2025-01-16T11:10:18.586416Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 146, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "valtuusto150" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6529", "has_user_editable_resources": false, "alt_labels": [ "noh-teatteri", "noo-teatteri", "noh theater" ], "created_time": "2023-08-16T05:16:17.404853Z", "last_modified_time": "2023-08-16T05:16:17.404870Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 543, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "no-teatteri", "sv": "no-teater", "en": "noh theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/", "sv": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/", "en": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/" }, "description": null, "price": { "fi": "20 € / 15 €/ 0 €", "sv": "20 € / 15 €/ 0 €", "en": "20 € / 15 €/ 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490501, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-22T11:15:14.074884Z", "last_modified_time": "2025-08-22T11:15:14.074904Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774950.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490501/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-22T11:15:13.929409Z", "last_modified_time": "2025-11-29T14:12:33.863327Z", "date_published": null, "start_time": "2025-11-29T16: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": "Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla. Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle!", "sv": "Nordic noir erövrar världen i tv och på bioduken. Stella Polaris tar den populära genren nu även till teaterscenen!", "en": "Nordic noir is taking over the world on TV and the big screen. Stella Polaris is now bringing the popular genre to the theatre stage as well!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C5A225FE336F449C95C39C5D4FA2680D/LOPPUUNMYYTY_Helsinki_Noir_Improvisoitu_rikosdraama_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C5A225FE336F449C95C39C5D4FA2680D/SLUTSALD_Helsinki_Noir_Improvisoitu_rikosdraama_", "en": "http://www.vuotalo.fi/en/events/event/C5A225FE336F449C95C39C5D4FA2680D/SOLD_OUT_Helsinki_Noir_Improvisoitu_rikosdraama_" }, "name": { "fi": "LOPPUUNMYYTY Helsinki Noir – Improvisoitu rikosdraama – Stella Polaris", "sv": "SLUTSÅLD Helsinki Noir – Improvisoitu rikosdraama – Stella Polaris", "en": "SOLD OUT Helsinki Noir – Improvisoitu rikosdraama – Stella Polaris" }, "description": { "fi": "<p>Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla. Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle!</p><p>Tummanpuhuva rikosdraama saa alkunsa yleisön antamista lähtökohdista, ja näin käynnistyy tapahtumaketju, jossa kaikki ovat epäiltyjä, kunnes toisin todistetaan.</p><p>Stella Polariksen taitavat improvisoijat tarttuvat rikostarinoista synkimpään ja tekevät siitä oman tulkintansa. Improvisaatiossa mitään ei ole ennalta sovittu, joten syyllinen voi olla kuka tahansa.</p><p>Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!</p><p>Esityksen kesto: n. 1 t 45 min (sis. väliajan). <br>Ikäsuositus: yli 13-vuotiaille <br>Esityksen kieli: suomi</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>", "sv": "<p>Nordic noir erövrar världen i tv och på bioduken. Stella Polaris tar den populära genren nu även till teaterscenen!</p><p>Det mörka brottsdramat börjar med utgångspunkter från publiken, och på så sätt utlöses en händelsekedja där alla är misstänkta tills motsatsen bevisas.</p><p>Stella Polaris skickliga improvisatörer tar tag i de mörkaste brottshistorierna och gör en egen tolkning av dem. I improvisation är ingenting förutbestämt, så den skyldiga kan vara vem som helst. <br> <br>Kom och skapa en föreställning med oss och se om brottet löses!</p><p>Föreställningens längd: ca 1 timme och 45 minuter (inklusive paus). <br>Åldersrekommendation: för personer över 13 år <br>Föreställningens språk: finska</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. 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-vuotalo-20611137/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Nordic noir is taking over the world on TV and the big screen. Stella Polaris is now bringing the popular genre to the theatre stage as well!</p><p>The dark crime drama begins based on the audience’s input, setting off a chain of events in which everyone is a suspect until proven otherwise.</p><p>Stella Polaris’s skilled improvisers take on the darkest crime stories and make their own interpretations. In improvisation, nothing is predetermined, so the culprit can be anyone.</p><p>Come create a performance together with us and see if the crime can be solved!</p><p>Duration of the performance: roughly 1 h 45 min (incl. intermission) <br>Recommended age: 13 and older <br>Performance language: Finnish</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Get your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-vuotalo-20611137/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "location_extra_info": null, "provider": { "fi": "Stella Polaris, Vuotalo", "sv": "Stella Polaris, Nordhuset", "en": "Stella Polaris, Vuotalo" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000252", "has_user_editable_resources": false, "location": { "id": "tprek:9353", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:13:26.380591Z", "last_modified_time": "2024-02-06T13:10:05.559954Z", "custom_data": null, "email": "info@hkt.fi", "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 285, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.937542, 60.167675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.hkt.fi/lillateatern/", "sv": "http://www.hkt.fi/lillateatern/", "en": "http://www.hkt.fi/lillateatern/" }, "telephone": { "fi": "+358 9 394 0373" }, "name": { "fi": "Lilla Teatern", "sv": "Lilla Teatern", "en": "Lilla Teatern" }, "description": null, "street_address": { "fi": "Yrjönkatu 30", "sv": "Georgsgatan 30" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849163/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000252/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000252/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000252/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1490709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T07:16:38.476528Z", "last_modified_time": "2025-09-10T07:16:38.476549Z", "url": "https://www.lippu.fi/obj/mam/finland/67/1b/hyenans-dagar-tickets_438240_3555827_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490709/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.047938Z", "last_modified_time": "2025-11-29T03:15:06.463411Z", "date_published": null, "start_time": "2025-11-28T16: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": "Saara Turunen HYENANS DAGAR Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=en" }, "name": { "fi": "Hyenans Dagar" }, "description": { "fi": "<p>Saara Turunen<br><strong>HYENANS DAGAR</strong></p><p>Hyenans dagar (Hyeenan päivät) perustuu osittain Saara Turusen samannimiseen romaaniin.</p><p>Teos uppoutuu erääseen lisääntymiskertomukseen, se valottaa yhden naisen tarinaa hedelmöityshoidoista lapsen saamiseen. Esitys on raportinomainen seurantakertomus sekä yhden ajanjakson kuvaus, jossa yksityinen ja yhteiskunnallinen risteytyvät ja menevät sekaisin. Pinnan alla teos käsittelee kehollisuutta, kontrollia ja pärjäämisen kulttuuria. Draama sijaitsee kuvien ulkopuolella, osittain katsojan omassa mielessä. Esitys ei tarjoile valmiita vastauksia, pikemminkin se vain näyttää kohtauksia, hetkiä ja tilanteita, joista katsoja voi tehdä omat tulkintansa.</p><p>Kuten Turusen aiemmissakin töissä, myös Hyenans dagar -esityksessä musiikilla ja kuvallisuudella on keskeinen osansa.<br>Hyenans dagar on suunnattu kaikille, jotka ovat joskus tavoitelleet jotakin, kohdanneet vaikeuksia tai tulleet sysätyiksi itselleen tuntemattomaan maailmaan.</p>", "sv": "<p>Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam.</p><p>Föreställningen skildrar en kvinnas erfarenhet av fertilitetsbehandlingar och vägen till att få barn. Med ett dokumentärartat grepp skildras en tidsperiod i livet där gränsen mellan det privata och det samhälleliga suddas ut. Under ytan behandlar verket frågor om kroppslighet, kontroll och att alltid behöva klara sig själv. Dramat utspelar sig inte bara på scenen, utan också i åskådarens egna tankar och reflektioner. Föreställningen ger inga färdiga svar, utan bjuder istället på scener och ögonblick som publiken får tolka på sitt eget sätt.</p><p>Musiken och bildspråket spelar en central roll, precis som i Saara Turunens tidigare föreställningar.<br>Hyenans dagar riktar sig till alla som någonsin strävat efter något, upplevt motgångar eller kastats in i en okänd värld.</p><p>******</p><p>Aktörer: Kreeta Salminen, Elmer Bäck, Katja Küttner, Pia Runnakko, Alexander Wendelin</p><p>Manus och regi: Saara Turunen<br>Översättning: Kasimir Koski<br>Scenografi: Milja Aho<br>Dräktdesign: Liisa Pesonen<br>Ljusdesign: Ainu Palmu<br>Ljuddesign: Tuuli Kyttälä<br>Maskdesign: Jaana Nykänen</p>" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000252/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999931", "has_user_editable_resources": false, "location": { "id": "tprek:46367", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:siltasaari", "municipality": "Helsinki", "name": { "fi": "Siltasaari", "sv": "Broholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T11:16:03.694168Z", "last_modified_time": "2025-02-01T06:09:58.729347Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 399, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.950369, 60.18024 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/nayttamot/arena-nayttamo/", "sv": "https://hkt.fi/nayttamot/arena-nayttamo/", "en": "https://hkt.fi/nayttamot/arena-nayttamo/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Arena-näyttämö - Helsingin kaupunginteatteri", "sv": "Arena-scenen - Helsingfors stadsteater", "en": "Arena Theatre - Helsinki City Theatre" }, "description": { "fi": "Arena-näyttämöllä on nähty Helsingin Kaupunginteatterin vauhdikkaita ja viihdyttäviä esityksiä syksystä 2010 alkaen. Ohjelmistossa on ollut komediaa ja musikaaleja, niin Broadwaylta kuin Suomestakin, stand upia, kotimaisia kantaesityksiä ja musiikintäyteisiä konsertti-iltoja.", "sv": "Arenascenen har varit värd för Helsingfors stadsteaters fartfyllda och underhållande föreställningar sedan hösten 2010. Programmet har innehållit komedi och musikaler, stand-up, inhemska premiärer och musikfyllda konsertkvällar.", "en": "The Arena stage has hosted the Helsinki City Theatre's fast-paced and entertaining performances since autumn 2010. The program has included comedy and musicals, stand-up comedy, domestic premieres and music-filled concert evenings." }, "street_address": { "fi": "Hämeentie 2", "sv": "Tavastvägen 2", "en": "Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999931/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999931/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999931/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:42.839585Z", "last_modified_time": "2025-11-29T03:15:06.296128Z", "date_published": null, "start_time": "2025-11-28T16: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": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999931/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506314", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "telephone": { "fi": "+358 9 394 022" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "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": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506314/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506314/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506314/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "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", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "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:26.000203Z", "last_modified_time": "2025-11-29T03:15:06.109027Z", "date_published": null, "start_time": "2025-11-28T16: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," }, "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" }, "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, Wilhelm Blomberg, 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>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506314/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67207", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "telephone": { "fi": "+358 9 310 80831" }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 618, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1101, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 673, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-27T14:13:51.278664Z", "last_modified_time": "2025-10-27T14:13:51.278678Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777821.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491205/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-27T14:13:51.155440Z", "last_modified_time": "2025-11-28T16:12:49.911214Z", "date_published": null, "start_time": "2025-11-29T09:00:00Z", "end_time": "2025-11-29T13: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": "Ala-Malmin joulutori pidetään poikkeuksellisesti Malmitalon aulassa ja parvella. Voit tehdä joululahjalöytöjä, napata mukillisen glögiä tai lautasellisen puuroa ja nauttia tunnelmasta. Valotaideryhmä Belenoksen valoprinsessa Celestia ja muut upeat valohahmot kiertävät alueella klo 13.30 ja 14.30. Lisäksi Klovni Dattarataa Pukinmäen taidekouluista tuo iloa lapsille ja aikuisille päivän aikana. Vapaa pääsy!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori", "sv": "http://www.malmitalo.fi/sv/evenemang/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori", "en": "http://www.malmitalo.fi/en/events/event/214B06939A5AFFDB4882D8907C84921B/Ala-Malmin_joulutori" }, "name": { "fi": "Ala-Malmin joulutori", "sv": "Ala-Malmin joulutori", "en": "Ala-Malmin joulutori" }, "description": { "fi": "<p>Ala-Malmin joulutori pidetään poikkeuksellisesti Malmitalon aulassa ja parvella. Voit tehdä joululahjalöytöjä, napata mukillisen glögiä tai lautasellisen puuroa ja nauttia tunnelmasta. Valotaideryhmä Belenoksen valoprinsessa Celestia ja muut upeat valohahmot kiertävät alueella klo 13.30 ja 14.30. Lisäksi Klovni Dattarataa Pukinmäen taidekouluista tuo iloa lapsille ja aikuisille päivän aikana. Vapaa pääsy!</p><p>Joulutori kokoaa yhteen paikallisia yrityksiä ja toimijoita.<br>Vapaa pääsy!</p>" }, "location_extra_info": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67207/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }