Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=92&weekday=6%2C7
{ "meta": { "count": 7025, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=93&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=91&weekday=6%2C7" }, "data": [ { "id": "kulke:66052", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/nova-star-ilma-akrobatiakilpailu-malmitalo-20186339/", "sv": "https://www.lippu.fi/event/nova-star-ilma-akrobatiakilpailu-malmitalo-20186339/", "en": "https://www.lippu.fi/event/nova-star-ilma-akrobatiakilpailu-malmitalo-20186339/" }, "description": null, "price": { "fi": "20,80 € / 16,80 €", "sv": "20,80 € / 16,80 €", "en": "20,80 € / 16,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493763, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T12:13:50.204972Z", "last_modified_time": "2025-11-07T12:13:50.204987Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770644.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493763/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T12:13:50.112378Z", "last_modified_time": "2025-11-26T11:13:45.817050Z", "date_published": null, "start_time": "2025-11-28T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Roof Aerial Club: Nova Star ilma-akrobatiakilpailu", "sv": "Nova Star tävling i luftakrobatik", "en": "Nova Star Aerial Acrobatics Competition" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Viime vuonna ensimmäistä kertaa järjestetty Nova Star on lämminhenkinen harrastetason ilma-akrobatia kilpailu.", "sv": "Nova Star, som ordnades för första gången i fjol, är en varmhjärtad luftakrobatisk tävling på hobbynivå.", "en": "Held for the first time last year, Nova Star is a warm-hearted amateur-level aerial acrobatics competition." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C3659326B93146AFE77A05A5176DC400/Roof_Aerial_Club_Nova_Star_ilma-akrobatiakilpailu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C3659326B93146AFE77A05A5176DC400/Nova_Star_tavling_i_luftakrobatik", "en": "http://www.malmitalo.fi/en/events/event/C3659326B93146AFE77A05A5176DC400/Nova_Star_Aerial_Acrobatics_Competition" }, "description": { "fi": "<p>Viime vuonna ensimmäistä kertaa järjestetty Nova Star on lämminhenkinen harrastetason ilma-akrobatia kilpailu.</p><p>Kilpailussa on omat osallistujasarjat lapsille sekä aikuisille. Tapahtuman järjestää Roof Aerial Club.</p><p>Lisätietoa Roof Aerial Clubin toiminnasta: <u><a>www.roofaerialclub.fi</a></u></p><p>Kesto: 3 t 30 min, sis. 15 min. väliajan.</p>", "sv": "<p>Nova Star, som ordnades för första gången i fjol, är en varmhjärtad luftakrobatisk tävling på hobbynivå.</p><p>Nova Star, som ordnades för första gången i fjol, är en varmhjärtad luftakrobatisk tävling på hobbynivå.</p><p>Tävlingen har separata deltagarkategorier för barn och vuxna. Evenemanget ordnas av Roof Aerial Club.</p><p>Mer information om Roof Aerial Club (på finska): <u><a>www.roofaerialclub.fi</a></u></p><p>Längd: 3 timmar 30 minuter, inklusive paus 15 minuter</p>", "en": "<p>Held for the first time last year, Nova Star is a warm-hearted amateur-level aerial acrobatics competition.</p><p>It has separate categories for children and adults. The event is organised by the Roof Aerial Club.</p><p>More information on the Roof Aerial Club: <u><a>www.roofaerialclub.fi</a></u></p><p>Duration: 3 hours 30 min, incl. a 15-min intermission</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66052/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67091", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490951, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-30T11:13:27.891450Z", "last_modified_time": "2025-09-30T11:13:27.891463Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777911.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490951/?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-09-30T11:13:27.707641Z", "last_modified_time": "2025-11-26T10:12:22.534596Z", "date_published": null, "start_time": "2025-10-04", "end_time": "2026-09-05", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Piilossa tapahtuu!", "sv": "Piilossa tapahtuu!", "en": "Piilossa tapahtuu!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Piilossa-näyttelyn ohessa järjestetään tapahtumia ja työpajoja – välillä jopa näyttely itsessään muuttuu!", "sv": "Evenemang och verkstäder anordnas parallellt med utställningen I gömman – ibland ändras till och med själva utställningen!", "en": "Annantalo’s side programme for the Piilossa (Hidden) exhibition includes a variety of events and workshops – and, sometimes, even the exhibition itself changes!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_", "sv": "http://www.annantalo.fi/sv/evenemang/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_", "en": "http://www.annantalo.fi/en/events/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_" }, "description": { "fi": "<p>Piilossa-näyttelyn ohessa järjestetään tapahtumia ja työpajoja – välillä jopa näyttely itsessään muuttuu!</p><p>Tältä sivulta näet listauksen, josta näet mitä kaikkea on tulossa:</p><p>to 9.10.2025<br><b>Perhosia piilossa</b><br>Uusi teos näyttelyssä - Kuvataideryhmä Suti ja roiske ja Tanssi- ja kuvataideryhmä Värisevät varpaat ovat laittaneet näyttelytilaan perhosia piiloon - löydätkö ne?</p><p>to 15.11.2025<br><b>Piiloutuneet lapset</b><br>Uusi teos näyttelyssä - Ryhmät Lumotut silmät ja Lumotut kädet ovat toteuttaneet installaation keramiikka ja akryylimaalaus installaation, joissa naamioiden takana on piilossa salaperäinen lasten joukko.</p><p>ke 26.11.-20.12.2025<br><b>Muotokuvia Suomen eläimistä</b><br>Uusi teos näyttelyssä - Helsingin ranskalais-suomalaisen koulun 5B:n ja Vuoniityn peruskoulun 4E:n hiilipiirrokset ovat esillä Kellari tilassa.</p><p>la 29.11.2025 klo 10.30<a href=\"https://www.annantalo.fi/fi/tapahtumat/event/C0DD27E565F4D584A9D0B0CDA85032F5/Tehd__n_taidejuttuja__Piiloleikki__ry_v_rien_mets_ss_\"><br><b>Tehdään taidejuttuja: Piiloleikkiä ryövärien metsässä</b></a><br>Sukella Ronja Ryövärintyttären maailmaan teatterityöpajassa!</p><p>la 29.11.2025 klo 11.00 - 14.00<br><ahref=\"https://www.annantalo.fi/fi/tapahtumat/event/6BF3FEE689F1D83E9B8CD03F18241F0B/Annantalon_taidelauantai__Mullan_alla\"><b>Annantalon taidelauantai: Mullan alla</b></a><br>Minkälaisia asioita voisi piileksiä mullan alla marraskuussa? Juuria, onkaloita, myyriä vai matojen makuuhuone? Annantalon taidelauantain työpajassa pääset piirtämään ruskan sävyisillä kuivapastelliiduilla oman tulkintasi maanalaisesta maailmasta.</p><p>la 29.11.2025 klo 13.30<a href=\"https://www.annantalo.fi/fi/tapahtumat/event/77C9A59FEBC3F5E9427DF78760057F87/Tehd__n_taidejuttuja__Piiloleikki__ry_v_rien_mets_ss_\"><br><b>Tehdään taidejuttuja: Piiloleikkiä ryövärien metsässä</b></a><br>Sukella Ronja Ryövärintyttären maailmaan teatterityöpajassa!</p><p>to 15.1.2026<br><b>Piilopeli</b><br>Näyttelyssä avautuu omatoiminen pakopeli! - lisätietoa lähempänä tapahtumaa!</p><p>_</p><p>Annantalon vuosien 2025-2026 teemana on Piilossa. Se kutsuu perheitä tutkimaan, mitä kaikkea voi olla näkymättömissä – tunteita, unelmia, leikkejä tai kokonaisia tarinoita. Piilossa voi olla jotakin, joka vain odottaa tulevansa nähdyksi. Ehkä löydämme sen yhdessä Annantalosta!</p><p>Piilossa -näyttelyn oppimateriaalin löydät <a href=\"https://www.annantalo.fi/fi/n%C3%A4yttelyt-ja-esitykset#Piilossa-n%C3%A4yttelyn%20oppimateriaali\"><b>täältä</b></a></p>", "sv": "<p>Evenemang och verkstäder anordnas parallellt med utställningen I gömman – ibland ändras till och med själva utställningen!</p>", "en": "<p>Annantalo’s side programme for the Piilossa (Hidden) exhibition includes a variety of events and workshops – and, sometimes, even the exhibition itself changes!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67608", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-26T07:12:33.651399Z", "last_modified_time": "2025-11-26T07:12:33.651420Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782044.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-26T07:12:33.562644Z", "last_modified_time": "2025-11-26T07:12:33.813660Z", "date_published": null, "start_time": "2025-12-02", "end_time": "2025-12-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haagan Taideseura: Leena Salmio - Lumikuningattaren tanssi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lumikuningattaren tanssi -teoskokonaisuus koostuu viidestä tanssivasta Lumikuningattaresta, joiden voimalla taiotaan Helsinkiin talven ihmemaa! Joulukuun piristys – luminen talvi on monesti vain haave." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BA0D134D5DD8D7CF40524BC3A72C1F1B/Haagan_Taideseura_Leena_Salmio_-_Lumikuningattaren_tanssi" }, "description": { "fi": "<p>Lumikuningattaren tanssi -teoskokonaisuus koostuu viidestä tanssivasta Lumikuningattaresta, joiden voimalla taiotaan Helsinkiin talven ihmemaa! Joulukuun piristys – luminen talvi on monesti vain haave.</p><p>Meille ihan jokaiselle tekee hyvää nousta ylös, ottaa muutama tanssiaskel ja antaa musiikin viedä mukanaan. Kokeile vaikka Lumikuningattaren liikkeitä – kädet heilumaan ja jalkaa kohottaen. Joulukuun lämpöä Kanneltalon kahvilan seinillä juuri sinulle, joka pidät valoa mukanaan tuovasta lumen hehkusta. <br> <br>Leena Salmio on muotoilija amk, kulttuurituotannon yamk. Kuvallisen ilmaisun kautta hän haluaa herätellä katsojia ajattelemaan taiteen ja ympäröivän maailman ihmeitä ja liikettä. Työskentelytapana ovat akryylimaalaus, hiilipiirtäminen, pastelli- ja sekatekniikka. Töissään hän yhdistää eri materiaaleja ja tekniikoita. <br>IG: omppudesign <br> <br>Teoskuvat: Lumikuningattaren tanssi -sarja <br>Sekatekniikka, akryylimaalaus & liitupiirros kierrätystapetille (2025)</p><p>Kahvilan vitriinit<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67608/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67578", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-25T14:13:05.536352Z", "last_modified_time": "2025-11-25T14:13:05.536366Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781962.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T14:13:05.422681Z", "last_modified_time": "2025-11-25T14:13:05.715806Z", "date_published": null, "start_time": "2025-12-02", "end_time": "2025-12-19", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sortavalan laulujuhlat 1935 – valokuvanäyttely" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Valokuvanäyttely kertoo 90 vuotta sitten Sortavalassa Laatokan-Karjalassa järjestetyistä suurista laulujuhlista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/25988C7B03F567681C451B05F767EC48/Sortavalan_laulujuhlat_1935_valokuvanayttely" }, "description": { "fi": "<p>Valokuvanäyttely kertoo 90 vuotta sitten Sortavalassa Laatokan-Karjalassa järjestetyistä suurista laulujuhlista.</p><p>Ne pidettiin Kalevalan 100-vuotisriemuvuoden kunniaksi. Juhlat olivat aikanaan kansallinen suurponnistus, jonka järjestämiseen osallistuivat keskeiset kansalliset tahot. Se oli myös unohtumaton elämys kaikille mukana olleille.<br> <br>Sortavalan kaupunki täyttyi juhlavieraista ja esiintyjistä. Yhden viikonlopun aikana kuultiin ja nähtiin kuoroja, kansanmuusikoiden ja -tanssijoiden esityksiä, orkestereita ja soittokuntia.</p><p>Monet kuulluista teoksista olivat kantaesityksiä kuten Erkki Melartinin Aino-ooppera. Juhlien aikana paljastettiin kuvanveistäjä Alpo Sailon runonlaulajapatsas, joka on edelleen Sortavalan maamerkki.</p><p>Näyttelyn järjestää Sortavala-seura Ry</p><p>Vapaa pääsy!<br> <br>Aula, yhteistyö</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67308", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-25T11:12:59.832955Z", "last_modified_time": "2025-11-25T11:12:59.832972Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780918.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T11:12:59.724146Z", "last_modified_time": "2025-11-25T11:12:59.973683Z", "date_published": null, "start_time": "2026-01-02T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Joululomaleffa: Yksin kotona 2: Eksynyt New Yorkissa (7)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joululomalla nautitaan maksutta koko perheen klassikkoelokuvista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2B975946394EA3A4BBC0AC413809D7FE/Joululomaleffa_Yksin_kotona_2_Eksynyt_New_Yorkissa_7_" }, "description": { "fi": "<p>Joululomalla nautitaan maksutta koko perheen klassikkoelokuvista.</p><p>Klo 11 näytöksessä kaikenikäisille katsojille sallituissa näytöksissä ihan koko perhe vauvasta vaariin voi tulla yhdessä katsomaan iki-ihania Disneyn animaatioklassikoita ja klo 13 näytöksissä nähdään sukupolvia yhdistävän jouluelokuvaklassikon Yksin kotona kaksi ensimmäistä osaa.</p><p>Kevin elokuvasta Yksin kotona on täyttänyt kymmenen vuotta ja joutuu New Yorkiin, kun taas vanhemmat matkustavat Floridaan. Hän ottaa huoneen kaupungin ylellisimmästä hotellista ja nauttii elämästä. Hän törmää kuitenkin vanhoihin murtovaraskavereihinsa, jotka aikovat ryöstää New Yorkin suurimman lelukaupan.</p><p>McCallisterin suku on jälleen lähdössä jouluksi matkoille, tällä kertaa Floridaan. Buzz pilaa Kevinin soolon koulun joulujuhlassa, ja Kevin läimäyttää häntä samalla kaataen koko muun kuoron. Kun välikohtausta selvitellään kotona, Kevin saa jälleen aikaan riidan perheensä kanssa ja toivoo, että loma menisi pahemman kerran pilalle. Herra ja rouva McCallister heräävät aamulla, ja tajuavat nukkuneensa pommiin.</p><p>Lentokentän ihmisvilinässä Kevin eksyy perheestään ja päätyy New Yorkiin matkalla olevaan koneeseen. Perillä Kevin huomaa erehdyksensä. Hänellä on mukanaan isänsä luottokortti, jolla hän majoittautuu Plaza Hoteliin.</p><p>Kevinin isä huomaa korttinsa kadonneen ja ilmoittaa sen varastetuksi. Hotellin henkilökunta saa tämän selville ja näin Kevin syyllistyy varkauteen käytettyään korttia. Roistot Harry ja Marv ovat sattumalta myös saapuneet kaupunkiin ja yrittävät päästä Kevinistä eroon. Harry ja Marv aikovat murtautua lelukauppaan, mutta kun Kevin kuulee tämän, hän päättää pysäyttää roistot. Samalla Kevin tutustuu salaperäiseen naiseen, jolla on ystävinä kymmenittäin kyyhkysiä.</p><p>Vapaa pääsy!</p><p>Kesto: 2 h<br>Ikäraja: K-7<br>Kieli: englanti, tekstitetty suomeksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67307", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-25T11:12:59.491400Z", "last_modified_time": "2025-11-25T11:12:59.491414Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780917.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493903/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T11:12:59.365421Z", "last_modified_time": "2025-11-25T11:12:59.629535Z", "date_published": null, "start_time": "2026-01-02T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Joululomaleffa: Kaunotar ja Kulkuri (S)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joululomalla nautitaan maksutta koko perheen klassikkoelokuvista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88D5AA554618A7714B3EA2D1F4B04A87/Joululomaleffa_Kaunotar_ja_Kulkuri_S_" }, "description": { "fi": "<p>Joululomalla nautitaan maksutta koko perheen klassikkoelokuvista.</p><p>Klo 11 näytöksessä kaikenikäisille katsojille sallituissa näytöksissä ihan koko perhe vauvasta vaariin voi tulla yhdessä katsomaan iki-ihania Disneyn animaatioklassikoita ja klo 13 näytöksissä nähdään sukupolvia yhdistävän jouluelokuvaklassikon Yksin kotona kaksi ensimmäistä osaa.</p><p>Kaunotar ja Kulkuri on Disney-animaatioelokuva, joka kertoo rakastetun tarinan ylhäisestä Belle-koirasta, kauniista mutta yksinäisestä prinsessasta, ja Kulkurista, hurmaavasta ja vapaasta kulkukoirasta. Tarina alkaa Bellestä, joka tuntee itsensä ulkopuoliseksi elämässään. Eräänä päivänä hän tapaa Kulkurin, joka auttaa häntä pakenemaan kaupungin kurjuutta ja tylsyyttä. Heidän välilleen syntyy erityinen side, kun he kokevat seikkailuja yhdessä ja Belle oppii näkemään maailman eri tavalla.</p><p>Belle ja Kulkuri kohtaavat monia esteitä matkallaan. He joutuvat kohtaamaan julmia koiranpyydystäjiä, vaarallisia koiria ja muita vastoinkäymisiä. Samalla he löytävät myös romantiikan siemenen sydämissään. He viettävät romanttisen illallisen tunnetussa ravintolassa, ja elokuvan tunnetuimmassa kohtauksessa he jakavat yhteisen spagettin sydämeen koskettavalla tavalla. Lopulta heidän matkansa johtaa Belleä lopulta takaisin kotiin, mutta tämä kertomus pysyy ikuisesti heidän sydämissään.</p><p>Kaunotar ja Kulkuri on klassikkoelokuva, joka on lumonnut katsojiaan vuosikymmenten ajan tarinallaan rakkaudesta, seikkailuista ja elämän pienistä iloista. Elokuvassa korostetaan ennakkoluulojen voittamista ja erilaisten maailmojen yhdistämistä, ja se jättää katsojan miettimään, miten pienet hetket voivat muuttaa elämän suunnan ja tuoda yhteen ihmisiä, jotka ovat tarkoitettuja toisilleen.<br>Vapaa pääsy!</p><p>Kesto: 1 h 16 min<br>Ikäraja: S<br>Kieli: puhuttu suomeksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67307/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-3959", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" }, "price": { "fi": "6.50 - 41.00 €", "sv": "6.50 - 41.00 €", "en": "6.50 - 41.00 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1493899, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-25T09:27:16.108306Z", "last_modified_time": "2025-11-25T09:27:16.108319Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/sarjai.jpg", "name": "sarjai.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T09:26:06.326831Z", "last_modified_time": "2025-11-25T09:27:16.591522Z", "date_published": null, "start_time": "2025-12-06T09:23:59Z", "end_time": "2025-12-06T09:23:59Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Test concert for linked events" }, "location_extra_info": { "fi": "Musiikkitalo" }, "provider": null, "short_description": { "fi": "Test description\n\n...", "sv": "Beskrivning", "en": "Description" }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3959" }, "description": { "fi": "<p>Test description...</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3959/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-3952", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" }, "price": { "fi": "6.50 - 41.00 €", "sv": "6.50 - 41.00 €", "en": "6.50 - 41.00 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1493893, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-25T07:29:20.804156Z", "last_modified_time": "2025-11-25T07:29:20.804171Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/000-cat_DoAdjcH.jpg", "name": "Cat", "cropping": "426,0,2131,1704", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493893/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T07:29:21.149695Z", "last_modified_time": "2025-11-25T07:29:21.149709Z", "date_published": null, "start_time": "2025-11-30T07:28:24Z", "end_time": "2025-12-01T07:28:24Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HKO test" }, "location_extra_info": { "fi": "Musiikkitalo" }, "provider": null, "short_description": { "fi": "description\n\n...", "sv": "Beskrivning", "en": "Description" }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3952" }, "description": { "fi": "<p>description...</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3952/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67077", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493874, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T12:12:37.412134Z", "last_modified_time": "2025-11-24T12:12:37.412151Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777785.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493874/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T12:12:37.351962Z", "last_modified_time": "2025-11-24T13:12:34.262609Z", "date_published": null, "start_time": "2026-01-08", "end_time": "2026-01-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Olga Niekrasova: Valon ja varjon sirpaleet", "sv": "Olga Niekrasova: Fragment av ljus och skugga", "en": "Olga Niekrasova: Fragments of Light and Shadow" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Olga Niekrasova on palkittu ukrainalainen ohjaaja, käsikirjoittaja ja kuvataiteilija.", "sv": "Olga Niekrasova är en prisbelönt ukrainsk regissör, manusförfattare och bildkonstnär vars arbete sträcker sig över film, fotografi, poesi och blandformer.", "en": "Olga Niekrasova is an award-winning Ukrainian director, screenwriter, and visual artist whose work unfolds across film, photography, poetry, and mixed media." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F5D3255AFF8ED6F90774B424BEFB9A62/Olga_Niekrasova_Valon_ja_varjon_sirpaleet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F5D3255AFF8ED6F90774B424BEFB9A62/Olga_Niekrasova_Fragment_av_ljus_och_skugga", "en": "http://www.malmitalo.fi/en/events/event/F5D3255AFF8ED6F90774B424BEFB9A62/Olga_Niekrasova_Fragments_of_Light_and_Shadow" }, "description": { "fi": "<p>Olga Niekrasova on palkittu ukrainalainen ohjaaja, käsikirjoittaja ja kuvataiteilija.</p><p>Hänen työnsä ulottuvat elokuvasta valokuvaukseen, runouteen ja sekoitettuihin medioihin. Hänen toimintansa perustuu kokeiluun, ja se poistaa rajat eri taiteenalojen välillä luoden hybridejä muotoja, jotka sijoittuvat elokuvan, installaation ja performanssin välimaastoon. Yhdistämällä visuaalisen ja auditiivisen, lyyrisen ja sosiaalisen hän avaa uusia tiloja pohdinnalle trauman, selviytymisen ja inhimillisen yhteyden leikkauspisteistä.</p><p>Olga Niekrasovan elokuvat ja projektit on esitetty kansainvälisesti Euroopassa, Yhdysvalloissa ja Isossa-Britanniassa, ei vain elokuvateattereissa, vaan myös taidegallerioissa, kulttuurifoorumeilla ja poliittisissa instituutioissa. Hänen toimintansa osoittaa poikkeuksellista monipuolisuutta, sillä se yhdistää taiteelliset, siviilit ja julkiset tilat, säilyttäen sekä esteettisen terävyyden että sosiaalisen vaikuttavuuden.</p><p>Kokeellinen mutta syvästi inhimillinen, lyyrinen mutta horjumaton tyyli muuttaa henkilökohtaiset ja kollektiiviset muistot immersiivisiksi kokemuksiksi, jotka hämärtävät näkyvän ja näkymättömän rajat. Kerroksellisten medioiden ja fragmentoitujen tarinoiden käyttö luo aistillisen kielen, joka haastaa perinteisen tarinankerronnan ja vie yleisön elokuvalliseen ja emotionaaliseen matkaan, joka jää mieleen pitkäksi aikaa.</p><p>Helsingin Taiteilijaseura, Helsingin kulttuurikeskus Malmitalo ja Malmitalon galleria esittelevät “Valon ja varjon sirpaleet”, monialaisen näyttelyn, jonka on toteuttanut palkittu ukrainalainen ohjaaja, käsikirjoittaja ja kuvataiteilija Olga Niekrasova. Kokeellisten lyhytelokuvien, mustavalkoisen digitaalisen valokuvauksen ja nauhoitetun runouden yhdistelmä johdattaa yleisön syvälliseen tutkimusmatkaan muistin, siirtymisen, selviytymisen ja inhimillisen yhteyden teemoihin.</p><p>Vapaa pääsy</p>", "sv": "<p>Olga Niekrasova är en prisbelönt ukrainsk regissör, manusförfattare och bildkonstnär vars arbete sträcker sig över film, fotografi, poesi och blandformer.</p><p>Hennes praktik är rotad i experiment, och upplöser gränserna mellan discipliner för att skapa hybrida former som befinner sig någonstans mellan film, installation och performance. Genom att förena det visuella och auditiva, det lyriska och det sociala, öppnar hon nya rum för reflektion över trauma, motståndskraft och mänsklig kontakt.</p><p>Olga Niekrasovas filmer och projekt har visats internationellt i Europa, USA och Storbritannien, inte bara på biografer utan också i konstgallerier, kulturforum och politiska institutioner. Hennes praktik visar på anmärkningsvärd mångsidighet, där hon engagerar konstnärliga, civila och offentliga rum samtidigt som hon upprätthåller både estetisk skärpa och social påverkan.</p><p>Med en stil som är experimentell men djupt mänsklig, lyrisk men orädd, omvandlar Olga Niekrasova personliga och kollektiva minnen till uppslukande upplevelser som suddar ut gränsen mellan synligt och osynligt. Hennes användning av lager av medier och fragmenterade berättelser skapar ett sensoriskt språk som utmanar konventioner för berättande och leder publiken på en filmisk och emotionell resa som dröjer sig kvar långt efter mötet.</p><p>Helsingfors Konstnärsgille, Helsingfors kulturcentrum Malmitalo och Malmitalo Galleri presenterar “Fragment av ljus och skugga”, en tvärdisciplinär utställning av den prisbelönade ukrainska regissören, manusförfattaren och bildkonstnären Olga Niekrasova. Genom en suggestiv kombination av experimentella kortfilmer, monokrom digital fotografi och inspelad poesi bjuder Niekrasova in publiken till en uppslukande utforskning av minne, förflyttning, motståndskraft och mänskliga band.</p>", "en": "<p>Olga Niekrasova is an award-winning Ukrainian director, screenwriter, and visual artist whose work unfolds across film, photography, poetry, and mixed media.</p><p>Her practice is rooted in experimentation, dissolving the boundaries between disciplines to create hybrid forms that exist somewhere between cinema, installation, and performance. By merging the visual and the auditory, the lyrical and the social, she opens new spaces for reflection on the intersections of trauma, resilience, and human connection.</p><p>Olga Niekrasova’s films and projects have been showcased internationally across Europe, the United States, and the United Kingdom, appearing not only in cinemas but also in art galleries, cultural forums, and political institutions. Her practice demonstrates remarkable versatility, engaging with artistic, civic, and public spaces while maintaining both aesthetic urgency and social impact.</p><p>With a style that is experimental yet deeply human, lyrical yet unflinching, Olga Niekrasova transforms personal and collective memory into immersive experiences that blur the lines between the visible and the unseen. Her use of layered media and fragmented narratives creates a sensorial language that unsettles conventions of storytelling, leading audiences into a cinematic and emotional journey that lingers long after the encounter.</p><p>The Helsinki Artists’ Association, Helsinki Cultural Centre Malmitalo, Malmitalo Gallery present “Fragments of Light and Shadow”, a multidisciplinary exhibition by award-winning Ukrainian director, screenwriter, and visual artist Olga Niekrasova. Through an evocative fusion of experimental short films, monochrome digital photography, and recorded poetry, Olga Niekrasova invites audiences into an immersive exploration of memory, displacement, resilience, and human connection.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67077/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67223", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/out-ofsynckingzcafe-puheitajatekoja-4016787/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/out-ofsynckingzcafe-puheitajatekoja-4016787/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/out-ofsynckingzcafe-puheitajatekoja-4016787/" }, "description": null, "price": { "fi": "7 € / 20 / 0 €", "sv": "7 € / 20 / 0 €", "en": "7 € / 20 / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-03T11:12:26.018084Z", "last_modified_time": "2025-11-03T11:12:26.018096Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778358.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491267/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-30T13:13:22.240432Z", "last_modified_time": "2025-11-24T13:12:30.689725Z", "date_published": null, "start_time": "2025-11-29T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Out of Sync: ★ Kingz Café – puheita ja tekoja ★", "sv": "Out of Sync: ★ Kingz Café – puheita ja tekoja ★", "en": "★Kingz Café - words & action★" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Drag king poikabändi Out of Sync on syksyn ajan jakanut drag king-kokemustaan työpajasarjan merkeissä, joka huipentuu ★Kingz Café - words & action★ -tapahtumaan!", "en": "Your favourite drag king boyband Out of Sync has been sharing their tips’n’tricks for new drag kings in workshop series that finalises in ★Kingz Café - words & action★ at Kulttuurikeskus Caisa!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/CCB141C6A60723A20A19CCF4FF7A62A0/Out_of_Sync_Kingz_Caf_puheita_ja_tekoja_", "sv": "http://www.caisa.fi/sv/evenemang/event/CCB141C6A60723A20A19CCF4FF7A62A0/Out_of_Sync_Kingz_Caf_puheita_ja_tekoja_", "en": "http://www.caisa.fi/en/events/event/CCB141C6A60723A20A19CCF4FF7A62A0/_Kingz_Caf_-_words_action_" }, "description": { "fi": "<p>Drag king poikabändi Out of Sync on syksyn ajan jakanut drag king-kokemustaan työpajasarjan merkeissä, joka huipentuu ★Kingz Café - words & action★ -tapahtumaan!</p><p>Current political vibes on ajanut lempipoikabändimme toimistoon miettimään miksi on niin vaikeaa ryhtyä sanoista tekoihin. Faksit on lähetetty, on toiminnan aika.</p><p>Words & action -esitysilta on drag kingeyden ympärillä hyörivä, tapahtuma, jossa kingeyden ilmentymiä etsitään paneelikeskusteluissa ja esityksissä. Illan aikana lavalla hurmaavat sekä kokeneemmat drag kingit, että Kingz cafe -työpajasarjassa syksyllä taitojaan hioneet uudet tulokkaat.</p><p>Tervetuloa Caisaan nauttimaan, yllättymään ja reflektoimaan kanssamme!</p><p>Esiintyjät: Kiukkupussy, Vamp Master Brown, Slaya Bit, Out of Sync + tuoreet drag kingit Kingz Café- työpajasarjasta (TBA)</p><p>Panel talk by JÄBÄT&TUNTEET: “Playtime: Performing masculinities”<br>Kiukkupussy<br>Vamp Master Brown<br>Out of Sync<br>Moderator: Jäbät&Tunteet</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20890351/?affiliate=FSF=\">TÄSTÄ</a></u></p><p>Kesto: 1,5 h<br>Esityksen kielet: suomi, englanti<br>Ikäsuositus: +16</p>", "en": "<p>Your favourite drag king boyband Out of Sync has been sharing their tips’n’tricks for new drag kings in workshop series that finalises in ★Kingz Café - words & action★ at Kulttuurikeskus Caisa!</p><p>Current political vibes have driven your favourite boy band back to office to reflect on why it is so hard to move from words to actions. The faxes have been sent, it's time for action.</p><p>Words & action is a performance evening twirling around the theme: drag kings?! Together we are looking for the answers to this in panel discussions and performances. On the stage you will be charmed by both seasoned drag kings as well as fresh newcomers from the Kingz Café workshop series. <br>Come to enjoy, get surprised and reflective with us at Caisa!<br>Performers: Kiukkupussy, Vamp Master Brown, Slaya Bit, Out of Sync + fresh drag kings from workshop series Kingz Café (TBA)</p><p>Panel talk by JÄBÄT&TUNTEET: “Playtime: Performing masculinities”<br>Kiukkupussy<br>Vamp Master Brown<br>Out of Sync<br>Moderator: Jäbät&Tunteet</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>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20890351/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67223/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlmc2uxe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493880, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-24T12:15:38.689945Z", "last_modified_time": "2025-11-24T12:15:38.689962Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c26885c9-7a42-41ca-b62e-055d0fa0226d.jpg", "name": "Maalaus: Diana Khazieva", "cropping": "0,194,889,1084", "photographer_name": "", "alt_text": "Kuvassa on on maalattu henkilö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493880/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T12:17:09.689382Z", "last_modified_time": "2025-11-24T12:17:25.224311Z", "date_published": null, "start_time": "2025-11-25T06:00:00Z", "end_time": "2025-12-07T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Japanin myytit -Diana Khazievan taidenäyttely" }, "location_extra_info": { "fi": "Näyttelyseinä" }, "provider": null, "short_description": { "fi": "Tervetuloa ihastelemaan Japanin myytit-näyttelyä Salonkiin. Näyttely on esillä 7.12. asti. näyttelyseinällä." }, "info_url": null, "description": { "fi": "<p>Japanin myytit -taidenäyttely, jossa japanilaiset myytit saavat kuvallisen muodon.</p><p><br></p><p>Näyttelyssä tuodaan esiin japanilaishenkisiä teoksia, joissa yhdistyvät myytit ja luonnon kauneus.</p><p><br></p><p>Näyttelyssä kurki, onnen, rauhan ja pitkän iän symboli, liitää teosten läpi. Mukana on myös ihmishahmoja ja luontokuvia, joissa yhdistyvät tarkka havainnointi ja sisäinen rauha.</p><p><br></p><p>Teokset ammentavat herkkyydestä, rauhasta ja luonnon tarkasta havainnoinnista — kuin siivenisku veden pinnalla.</p><p><br></p><p>Tervetuloa!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlmc2uxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlk2ctli", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2clhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cltu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cmbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cmpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cm4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cnh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cnvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cobi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cosi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cpaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cply/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cpye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cqti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cq74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2crla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2csey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cs5a/?format=api" } ], "images": [ { "id": 1493861, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-24T09:55:03.793980Z", "last_modified_time": "2025-11-24T09:55:03.793997Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/648cc056-d3e2-48c2-99bb-c95bc9d95037.jpg", "name": "", "cropping": "874,0,3126,2252", "photographer_name": "", "alt_text": "..........", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493861/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T09:52:22.196264Z", "last_modified_time": "2025-11-24T09:55:18.235761Z", "date_published": null, "start_time": "2026-01-08T16:30:00Z", "end_time": "2026-05-21T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Englannin kielen keskusteluryhmä", "sv": "Diskussionsgrupp för engelska", "en": " English discussion group" }, "location_extra_info": { "fi": "Kapyysi", "sv": "Kapyysi", "en": "Kapyysi" }, "provider": null, "short_description": { "fi": "Tule keskustelemaan englantia rennossa porukassa. Kielikahvila on maksuton ja suunnattu kaikille, jotka haluavat keskustella englanniksi.", "sv": "Kom och prata engelska i en avslappnad grupp. Språkcaféet är kostnadsfritt och vänder sig till alla som vill diskutera engelska.", "en": "English discussion cafe every Thursday at 6.30 pm in Lippulaiva Library's communal kitchen Kapyysi. Join us to enhance your English skills. Welcome!" }, "info_url": null, "description": { "fi": "<p>Tule keskustelemaan englantia rennossa porukassa. Kielikahvila on maksuton ja suunnattu kaikille, jotka haluavat keskustella englanniksi tai vahvistaa englannin kielen taitoaan. Kielikahvila järjestetään joka torstai klo 18:30 - 19:45 yhteisökeittiö Kapyysissa. Tervetuloa! Kielikahvilaa vetävät kirjaston asiakkaat.</p>", "sv": "<p>Kom och prata engelska i en avslappnad grupp. Språkcaféet är kostnadsfritt och vänder sig till alla som vill diskutera engelska eller förbättra sina kunskaper i engelska. Språkcaféet äger rum varje torsdag från 18:30 till 19:45 i det gemensamma köket i Kapyys. Varmt välkomna! Språkcaféet arrangeras av bibliotekets låntagare.</p>", "en": "<p>English cafe every Thursday at 6.30 pm in Lippulaiva Library's communal kitchen Kapyysi. Join us to enhance your English skills. No cost, no registration. Just drop by! Everyone is Welcome! The group is organized by the library's customers.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2ctli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlk2c2we", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2ctwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cubm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cumi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cuw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cvem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cvoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cvzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cwe4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cwpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cw3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cxh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cxse/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cyi4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cytq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cy6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2czui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2c2le/?format=api" } ], "images": [ { "id": 1493862, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T09:42:22.453387Z", "last_modified_time": "2025-11-24T09:42:22.453402Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d6b62e2-f022-4d2a-8ce0-da240aaf3955.jpg", "name": "", "cropping": "874,0,3126,2252", "photographer_name": "", "alt_text": "Kuvassa on viisiä henkilöä tekemässä käsitöitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493862/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T09:41:04.113107Z", "last_modified_time": "2025-11-24T09:42:33.598029Z", "date_published": null, "start_time": "2026-01-08T15:30:00Z", "end_time": "2026-05-21T16: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, "name": { "fi": "Käsityökerho", "sv": "Hantverksklubb", "en": "Handicraft club" }, "location_extra_info": { "fi": "Hytti", "sv": "Hytti", "en": "Hytti" }, "provider": null, "short_description": { "fi": "Käsityöryhmä toimii omatoimisesti ja jokainen osallistuja tuo omat tarvikkeensa. Tule mukaan neulomaan ja tutustumaan muihin ryhmäläisiin.", "sv": "Hantverksgruppen är självstyrande och varje deltagare tar med sig sina egna tillbehör. Kom och sticka och träffa andra gruppmedlemmar.", "en": "The craft group is self-directed and each participant brings their own supplies. Come along to knit and meet other group members." }, "info_url": null, "description": { "fi": "<p>Käsityöryhmä toimii omatoimisesti ja jokainen osallistuja tuo omat tarvikkeensa.</p><p>Käsityökerho kokoontuu torstaisin klo 17:30 - 19:00 pienessä kokoustila Hytissä.</p><p>Tule mukaan neulomaan ja tutustumaan muihin ryhmäläisiin.</p>", "sv": "<p>Hantverksgruppen är självstyrande och varje deltagare tar med sig sina egna tillbehör.</p><p>Hantverksklubben träffas på torsdagar kl. 17.30-19.00 i det lilla mötesrummet Hytti.</p><p>Kom och sticka och träffa andra gruppmedlemmar.</p>", "en": "<p>The craft group is self-directed and each participant brings their own supplies.</p><p>The craft club meets on Thursdays from 17:30 to 19:00 in the small meeting room Hytti.</p><p>Come along to knit and meet other group members.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2c2we/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlj6e5ha", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T08:15:54.305868Z", "last_modified_time": "2025-11-24T08:17:17.716994Z", "date_published": null, "start_time": "2025-11-30T13:00:00Z", "end_time": "2025-11-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Espoonlahden Demareiden 50-vuotisjuhla" }, "location_extra_info": { "fi": "Salonki" }, "provider": null, "short_description": { "fi": "Espoonlahden Demareiden 50-vuotisjuhla Salongissa su 30.11. klo 15 alkaen. Tervetuloa!" }, "info_url": null, "description": { "fi": "<p>Espoonlahden Demareiden 50-vuotisjuhla Salongissa su 30.11. klo 15 alkaen. </p><p>Puhujana puolueen puheenjohtaja Antti Lindtman.</p><p>Tilaisuus on kaikille avoin. Tervetuloa!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlj6e5ha/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20003349", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "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-20003349/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003349/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003349/?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:41.892495Z", "last_modified_time": "2025-11-23T01:14:30.534568Z", "date_published": null, "start_time": "2025-11-22T19:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "en": "Club Act!One K-18" }, "location_extra_info": { "fi": "Studio Pasila LÄMPIÖ" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "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" }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003349/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20003480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3853425/?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/andre-wickstrom-30-vuotta-lavalla-helsingin-kaupunginteatteri-20003480/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-helsingin-kaupunginteatteri-20003480/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-helsingin-kaupunginteatteri-20003480/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 368526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-19T10:17:42.167361Z", "last_modified_time": "2025-03-19T10:17:42.167377Z", "url": "https://www.lippu.fi/obj/mam/finland/62/8a/aw222-tickets_370394_3126857_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/368526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T08:18:13.896277Z", "last_modified_time": "2025-11-23T01:14:30.400879Z", "date_published": null, "start_time": "2025-11-22T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Eikä Loppua Näy!", "sv": "André Wickström 30 Vuotta Lavalla" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY! Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta" }, "info_url": { "fi": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-3853425/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-3853425/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-3853425/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY!</strong></p><p>Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta! Se on pidempi aika kuin moni parisuhde kestää, ja rehellisesti sanottuna, enemmän nauruakin se on tuottanut.</p><p>Tässä juhlashow’ssa André palaa lavalle entistä viisaampana (tai ainakin keski-ikäisenä) ja tarjoilee parhaat palat vuosikymmenten varrelta – sekä tietenkin täysin uutta materiaalia, koska vanhojen juttujen kierrätys kuuluu vain politiikkaan. Illan aikana selviää muun muassa, miten suomenruotsalainen hillitty olemus on kaikkea muuta kuin tönkkösuolattu hapansilakka.</p><p>Tämä ilta on täynnä nostalgiaa, yllätyksiä ja ennen kaikkea naurua – sillä vaikka maailma muuttuu, yksi asia pysyy: André Wickström osaa yhä naurattaa meitä paremmin kuin meidän oma elämä. Tervetuloa juhlimaan 30 vuotta komiikkaa ja elämänviisautta (kantapäänkin kautta hankittuna)!</p><p>Liput: Peruslippu 35€ ja opisk/eläk/varushlö/työtön 30€, Esteetönlippu 35€ sis. avustajalipun<br>Hinnat sisältävät palvelumaksut!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20545931", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3956237/?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/vaaldets-historia-helsingin-kaupunginteatteri-20545931/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/vaaldets-historia-helsingin-kaupunginteatteri-20545931/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/vaaldets-historia-helsingin-kaupunginteatteri-20545931/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1464813, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T21:17:07.744760Z", "last_modified_time": "2025-08-11T21:17:07.744780Z", "url": "https://www.lippu.fi/obj/mam/finland/ca/a4/hkt-tickets_427263_3487579_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/1464813/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T21:17:13.581634Z", "last_modified_time": "2025-11-23T01:14:30.270617Z", "date_published": null, "start_time": "2025-11-22T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "sv": "Våldets Historia" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "sv": "Édouard Louis VÅLDETS HISTORIA Våldets historia är en gripande berättelse om klasskillnader, våld och den snäva mansrollen." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/valdets-historia-3956237/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/valdets-historia-3956237/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/valdets-historia-3956237/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Édouard Louis<br><strong>VÅLDETS HISTORIA</strong></p><p><br>Våldets historia on koskettava kertomus luokasta, väkivallasta ja kapeasta miehen mallista. Näytelmä perustuu ranskalaisen kirjailijan Édouard Louis’n menestysromaaneihin En finir avec Eddy Bellegueule ja Histoire de la violence.</p><p>Näytelmän ensimmäinen osa on Eddy-pojan kasvukertomus pikkukaupungissa Pohjois-Ranskassa. Eddyn elämää varjostavat oman perheen köyhyys ja julma koulukiusaaminen. Näytelmän toinen osa käsittelee aikuiseksi kasvaneen kirjailijan kohtaamaa seksuaalista väkivaltaa ja siitä toipumista.</p><p>Vaikka Louis’n romaanien lähtökohdat ovat hurjat, esityksen pyrkimyksenä on käsitellä vaikeita aiheita lempeästi ja monipuolisesti teatterin keinoin. Ohjaaja Jakob Höglund on tunnettu koreografisesta ja musiikillisesta näyttämökielestään, jota hän haluaa kehittää myös tässä teoksessa. Esityksen musiikin säveltää Elia Lombardini.</p><p>Édouard Louis kirjoitti esikoisteoksensa vain 21-vuotiaana, ja romaanista tuli heti julkaisun jälkeen sekä kriitikoiden että yleisön rakastama Ranskassa. Louis’n teoksia on käännetty kymmenille kielille ja niiden pohjalta on tehty teatteriesityksiä ympäri maailmaa. Lilla Teaternin Våldets historia on ensimmäinen kerta, kun Louis’n teoksia nähdään Suomessa näyttämöllä.</p><p>Maskdesign: Jaana Nykänen</p><p>Dramaturg: Henna Piirto</p>", "sv": "<p><br>Våldets historia är en gripande berättelse om klasskillnader, våld och den snäva mansrollen. Pjäsen bygger på den franska författaren Édouard Louis’ hyllade romaner En finir avec Eddy Bellegueule och Histoire de la violence.</p><p>Den första akten skildrar Eddys uppväxt i en småstad i norra Frankrike, där hans liv präglas av familjens fattigdom och grym mobbning. Den andra akten behandlar det sexuella våld som den vuxna författaren utsätts för och återhämtningen därefter.</p><p>Trots de brutala utgångspunkterna i Louis’ romaner vill föreställningen med teaterns medel skildra den svåra tematiken på ett inkännande och nyanserat sätt. Regissören Jakob Höglund är känd för sitt koreografiska och musikaliska scenspråk, vilket han vill vidareutveckla även i detta verk. Den nyskrivna musiken komponeras av Elia Lombardini.</p><p>Édouard Louis skrev sin debutroman som 21-åring, och den blev snabbt en publik- och kritikerfavorit i Frankrike. Hans verk har översatts till tiotals språk och teateruppsättningar baserade på dem har spelats världen över. Nu sätts Louis första gången upp på scen i Finland.</p><p>***</p><p><br>På scen: Andreas Kvisgaard, Salomon Z. Patrick, Pia Runnakko, Maria Lura Skrudland, Patrik Kumpulainen och Joachim Wigelius</p><p>Författare: Édouard Louis</p><p>Dramatisering: Rasmus Arikka</p><p>Översättning: Kasimir Koski</p><p>Regi: Jakob Höglund</p><p>Scenografi och kostym: Sven Haraldsson</p><p>Ljusdesign: Ville Aaltonen</p><p>Ljuddesign: Jaakko Virmavirta</p><p>Komponist: Elia Lombardini</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20545931/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999960", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-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-19999960/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999960/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999960/?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:41.779589Z", "last_modified_time": "2025-11-23T01:14:30.081938Z", "date_published": null, "start_time": "2025-11-22T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aleksi Suomesta" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "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" }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999960/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506313", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506313/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506313/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506313/?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:25.545787Z", "last_modified_time": "2025-11-23T01:14:29.949731Z", "date_published": null, "start_time": "2025-11-22T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Moulin Rouge! Musikaali" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "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" }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506313/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20003479", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3853425/?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/andre-wickstrom-30-vuotta-lavalla-helsingin-kaupunginteatteri-20003479/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-helsingin-kaupunginteatteri-20003479/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-helsingin-kaupunginteatteri-20003479/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 368526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-19T10:17:42.167361Z", "last_modified_time": "2025-03-19T10:17:42.167377Z", "url": "https://www.lippu.fi/obj/mam/finland/62/8a/aw222-tickets_370394_3126857_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/368526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T08:18:13.599339Z", "last_modified_time": "2025-11-23T01:14:29.786884Z", "date_published": null, "start_time": "2025-11-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Eikä Loppua Näy!", "sv": "André Wickström 30 Vuotta Lavalla" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY! Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta" }, "info_url": { "fi": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-3853425/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-3853425/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-3853425/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY!</strong></p><p>Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta! Se on pidempi aika kuin moni parisuhde kestää, ja rehellisesti sanottuna, enemmän nauruakin se on tuottanut.</p><p>Tässä juhlashow’ssa André palaa lavalle entistä viisaampana (tai ainakin keski-ikäisenä) ja tarjoilee parhaat palat vuosikymmenten varrelta – sekä tietenkin täysin uutta materiaalia, koska vanhojen juttujen kierrätys kuuluu vain politiikkaan. Illan aikana selviää muun muassa, miten suomenruotsalainen hillitty olemus on kaikkea muuta kuin tönkkösuolattu hapansilakka.</p><p>Tämä ilta on täynnä nostalgiaa, yllätyksiä ja ennen kaikkea naurua – sillä vaikka maailma muuttuu, yksi asia pysyy: André Wickström osaa yhä naurattaa meitä paremmin kuin meidän oma elämä. Tervetuloa juhlimaan 30 vuotta komiikkaa ja elämänviisautta (kantapäänkin kautta hankittuna)!</p><p>Liput: Peruslippu 35€ ja opisk/eläk/varushlö/työtön 30€, Esteetönlippu 35€ sis. avustajalipun<br>Hinnat sisältävät palvelumaksut!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }