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=713®istration__remaining_attendee_capacity__isnull=true
{ "meta": { "count": 36498, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=714®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=712®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:65667", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19877445/", "sv": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19877445/", "en": "https://www.lippu.fi/event/kino-helios-kesaekirja-malmitalo-19877445/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T12:14:45.425995Z", "last_modified_time": "2025-02-25T12:14:45.426019Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765887.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-25T12:14:45.368454Z", "last_modified_time": "2025-02-25T12:14:45.518663Z", "date_published": null, "start_time": "2025-03-12T13: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/39525B2D3070DEA7A1D293959B17E531/Kesakirja_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/39525B2D3070DEA7A1D293959B17E531/Kesakirja_S_", "en": "http://www.malmitalo.fi/en/events/event/39525B2D3070DEA7A1D293959B17E531/Kesakirja_S_" }, "short_description": { "fi": "Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa." }, "name": { "fi": "Kesäkirja (S) – Kino Helios", "sv": "Kesäkirja (S) – Kino Helios", "en": "Kesäkirja (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa.</p><p>Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.</p><p>Elokuvan pääosissa nähdään kahdeksankertainen Oscar®-ehdokas Glenn Close sekä suomalainen, nyt 10-vuotias, elokuvanäyttelijänä debytoiva Emily Matthews. Merkittävässä sivuroolissa näyttelee myös Anders Danielsen Lie. Lisäksi elokuvassa nähdään Pekka Strang, Sophia Heikkilä ja Ingvar Sigurdsson.</p><p>Charlie McDowellin ohjaama ja Robert Jonesin valkokankaalle sovittama Kesäkirja kuvattiin Suomessa kesällä 2023 muun muassa Itäisen Suomenlahden rannikolla, esimerkiksi Kotkan ja Porvoon saaristoissa.</p><p>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p>Ikäraja: S<br>Kesto: 95 min.<br>Ensi-ilta: 31.1.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65667/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65308", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?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/global-club-nights-kulttuurikeskus-caisa-19588566/", "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588566/", "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588566/" }, "price": { "fi": "11 € / 6 €", "sv": "11 € / 6 €", "en": "11 € / 6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153527, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-19T15:14:05.491843Z", "last_modified_time": "2024-12-19T15:14:05.491858Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760716.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153527/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T15:14:05.455773Z", "last_modified_time": "2025-02-25T12:14:41.372742Z", "date_published": null, "start_time": "2025-02-28T17: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AA0683979BC66E1E15C76382E450EBD0/Nei_ZIGMA_Los_Fabulosos", "sv": "http://www.caisa.fi/sv/evenemang/event/AA0683979BC66E1E15C76382E450EBD0/Nei_ZIGMA_Los_Fabulosos", "en": "http://www.caisa.fi/en/events/event/AA0683979BC66E1E15C76382E450EBD0/Nei_ZIGMA_Los_Fabulosos" }, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som jobbar och älskar musik samlas för att fira musik tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work in music and love it come together to celebrate music together." }, "name": { "fi": "Nei ZIGMA | Los Fabulosos – Global Club Nights", "sv": "Nei ZIGMA | Los Fabulosos – Global Club Nights", "en": "Nei ZIGMA | Los Fabulosos – Global Club Nights" }, "provider": null, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p><b>Illan aikataulu</b><br>klo 18.50 Sisäänpääsy<br>klo 19.00 Tervetulosanat & ekan bändin esittely<br>klo 19.05 NEI ZIGMA esiintyy<br>klo 20.05 Tauko (20 min)<br>klo 20.25 Toisen bändin esittely<br>klo 20.25 LOS FABULOSOS esiintyy<br>klo 21.25 Outro</p><p><b>Nei ZIGMA</b><br>Brasilialainen laulaja Nei Zigma esittää shown EVOCAÇÃO NEGREIRA (Musta Evokaatio) alkuperäisellä ohjelmistolla, joka perustuu hänen albumiinsa, jossa on mukana hänen yhtyeensä ORBITAL.</p><p>Esitys sekoittaa jazzia, rockia, sambaa, funkia sekä muita fuusioita ja nykyajan ääniä sekä uudelleentulkintoja brasilialaisesta mustasta musiikista. São Paulossa arvostetun kitaristin GUILHERME HELDin tuottama albumi esittelee yhteistyötä artistin ja runoilija ASSIS LIMAN välillä. Albumin runollisessa maisemassa taustalla soi muistoja Cafuzo-verisestä, jossa Pohjoisen rummut ja Brasilian kaakkoisosan lumoavat kuvat yhdistyvät maailman muihin kulttuureihin.</p><p><b>Los Fabulosos</b><br>Los Fabulosos (The Fabulous) on vuonna 2010 perustettu kuubalaisen son-musiikin supertrio. Kuubalaisen musiikin ytimessä sykkivä son on maailman mukaansatempaavinta musiikkia, ja virtuoosimaiset muusikot saavat ikivihreät bolerot ja rytmikkäät rumbat soimaan kuplivan kuumina. \"Fabujen\" kitarat ja lauluäänet soivat yhteen klassisen kiireettömällä pieteetillä ja nahkarumpujen villit rytmit maanittelevat tanssijoita vietäväkseen.</p><p>Los Fabulososin veljekset Ernesto ja Mario ovat kuubalaisen musiikin spesialisteja jo toisessa polvessa. Trion matalin taajuus, basisti La Bomba, on ollut mukana suomalaisissa kuubalaisen musiikin yhtyeissä (Son Sabroson, Salsa Caliente, Son Mercedes) 1990-luvun lopulta asti. Juurevuutta ei siis tämän yhtyeen soitosta puutu! Heittäydy vapaasti tunnelmoimaan Los Fabulososin täyttäessä tilan vuosikymmenten lempeällä nostalgialla.</p><p>VILI \"ERNESTO\" MUSTALAMPI: tres, laulu, clave<br>TERO \"MARIO\" RANTANEN: lyömäsoittimet, laulu<br>PURO \"LA BOMBA\" PAJU: basso, laulu</p><p><b>Global Club Nights</b> <br>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som jobbar och älskar musik samlas för att fira musik tillsammans.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p><b>Kvällens schema</b><br>kl. 18.50 Entré<br>kl. 19.00 Välkomstord<br>kl. 19.05 Intervju med artisterna<br>kl. 19.30 Los Fabulosos<br>kl. 20.30 Paus (20 min.)<br>kl. 20:50 Nei ZIGMA <br>kl. 22.00 Outro</p><p><b>Nei ZIGMA</b><br>Den brasilianska sångaren Nei Zigma framför showen EVOCAÇÃO NEGREIRA (Svart evokation) med originalrepertoar baserad på hans album med sitt band ORBITAL. <br>Föreställningen blandar jazz, rock, samba, funk och andra fusioner och samtida ljud med nytolkningar av brasiliansk svart musik. Albumet har producerats av den hyllade São Paulo-gitarristen GUILHERME HELD, och presenterar ett samarbete mellan artisten och poeten ASSIS LIMA. I albumets poetiska landskap ekar minnena av Cafuzo i bakgrunden, där trummorna från norr och de förtrollande bilderna från Brasiliens sydöstra del blandas med andra världskulturer.</p><p><b>Los Fabulosos</b><br>Los Fabulosos (The Fabulous) är en kubansk supertrio inom sonmusik som grundades år 2010. Den pulserande sonen i hjärtat av den kubanska musiken är bland den mest medryckande musiken i världen, med virtuosa musiker som får evigt unga boleron och rytmiska rumbor att bubbla hett. “Fabunas” gitarrer och sång klingar med en klassiskt stillsam skärpa och lädertrummornas vilda rytmer förför dansarna.<br>Bröderna Ernesto och Mario i Los Fabulosos är andra generationens specialister på kubansk musik. Trions lägsta frekvens, basisten La Bomba, har varit engagerad i finländska band för kubansk musik (Son Sabroson, Salsa Caliente, Son Mercedes) sedan slutet av 1990-talet. Det finns alltså ingen brist på roots i det här bandets spelande! Kasta dig in i atmosfären när Los Fabulosos fyller utrymmet med mjuk nostalgi från årtiondena.<br> <br>VILI “ERNESTO” MUSTALAMPI: tres, sång, clave<br>TERO “MARIO” RANTANEN: slagverk, sång<br>PURO “LA BOMBA” PAJU: bas, sång</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work in music and love it come together to celebrate music together.</p><p><b>Nei ZIGMA</b><br>Brazilian singer Nei Zigma presents the show EVOCAÇÃO NEGREIRA (Black Evocation) with an original repertoire based on his recent album, accompanied by his band ORBITAL,<br>mixing jazz, rock, samba, funk and other fusions and contemporary sounds and reinterpretations of Brazilian Black Music. Produced by renowned guitarist GUILHERME<br>HELD in São Paulo, the album presents some partnerships between the artist and poet ASSIS LIMA, having as a backdrop in its poetic landscape memories of a Cafuzo blood where drums from the North, and imaginaries of the enchantment of the Brazilian Northeast merge with other cultures of the world.</p><p><b>Los Fabulosos</b><br>Los Fabulosos (The Fabulous), founded in 2010, is a Finnish trio <br>performing traditional Cuban music: sparkling sones, evergreen boleros and rhytmic rumbas. This music, made famous worldwide by the Cuban band Buena Vista Social Club, is the perfect combination of the beautifully resonating voices, the guitars and the wild bongó drums that make dancers go wild.</p><p>The Los Fabulosos originally consists of the brothers, Vili \"Ernesto\" Mustalampi, Tero \"Mario\" Rantanen, who are Cuban music specialists already in the second generation. The lowest frequency in the band, the basist Puro \"La Bomba\" Paju, has performed Cuban music with other Finnish bands (Son Sabroson, Salsa Caliente, Son Mercedes) since the late 1990s. The groove of Los Fabulosos is deeply rooted.</p><p>Let yourself freely enjoy the nostalgic moments listening to Los Fabulosos interpret the best Cuban classics ever since.</p><p>Duration: 3,5 hrs</p><p><b>Global Club Nights</b><br>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment. With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65662", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267512, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T11:14:56.747994Z", "last_modified_time": "2025-02-25T11:14:56.748010Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759043.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267512/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-25T11:14:56.724200Z", "last_modified_time": "2025-02-25T11:14:56.822695Z", "date_published": null, "start_time": "2025-03-29T13: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7D61F59917E99A70B70B397D1759F0B7/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7D61F59917E99A70B70B397D1759F0B7/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/7D61F59917E99A70B70B397D1759F0B7/Risto_Rappaaja_ja_kaksoisolento_S_" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65662/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65661", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267510, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T11:14:54.554759Z", "last_modified_time": "2025-02-25T11:14:54.554776Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759034.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267510/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-25T11:14:54.527059Z", "last_modified_time": "2025-02-25T11:14:54.631251Z", "date_published": null, "start_time": "2025-03-22T13: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BEC08B204BC972A297DC0CA14595C78C/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BEC08B204BC972A297DC0CA14595C78C/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/BEC08B204BC972A297DC0CA14595C78C/Risto_Rappaaja_ja_kaksoisolento_S_" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65660", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 267507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T11:14:50.818938Z", "last_modified_time": "2025-02-25T11:14:50.818953Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759025.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/267507/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-25T11:14:50.770271Z", "last_modified_time": "2025-02-25T11:14:50.916197Z", "date_published": null, "start_time": "2025-03-15T13: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/57F6041C1E683E3235E7513083A94560/Risto_Rappaaja_ja_kaksoisolento_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/57F6041C1E683E3235E7513083A94560/Risto_Rappaaja_ja_kaksoisolento_S_", "en": "http://www.malmitalo.fi/en/events/event/57F6041C1E683E3235E7513083A94560/Risto_Rappaaja_ja_kaksoisolento_S_" }, "short_description": { "fi": "Onko kaupungissa Riston kaksoisolento?" }, "name": { "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios", "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65660/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agkrrif2yq", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45928/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" } ], "created_time": "2025-02-18T10:35:41.649853Z", "last_modified_time": "2025-02-25T10:12:40.852334Z", "date_published": null, "start_time": "2025-02-20T07:00:00Z", "end_time": "2025-03-29T07:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 5, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paikan lisätiedot on tämä kenttä, seksti" }, "provider_contact_info": null, "info_url": { "fi": "" }, "short_description": { "fi": "testi taas" }, "name": { "fi": "Paloheinän rieha" }, "provider": { "fi": "" }, "description": { "fi": "<p>Tää on tapahtuman kuvaus-kenttä.</p><p>Jooga on kokonaisvaltainen liikuntamuoto.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agkrrif2yq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19344138", "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:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-967155/?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/kiviae-taskussa-helsinki-helsingin-kaupunginteatteri-19344138/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kiviae-taskussa-helsinki-helsingin-kaupunginteatteri-19344138/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kiviae-taskussa-helsinki-helsingin-kaupunginteatteri-19344138/?affiliate=ADV&language=en" }, "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 152460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T10:16:44.815531Z", "last_modified_time": "2024-09-18T10:16:44.815551Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_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/152460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:16:44.055550Z", "last_modified_time": "2025-02-25T02:16:56.547167Z", "date_published": null, "start_time": "2025-02-24T16: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, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en" }, "short_description": { "fi": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän." }, "name": { "fi": "Kiviä Taskussa" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "description": { "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19344138/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65659", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 264045, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T15:14:21.250899Z", "last_modified_time": "2025-02-24T15:14:21.250911Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759032.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/264045/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T15:14:21.227258Z", "last_modified_time": "2025-02-24T15:14:21.312993Z", "date_published": null, "start_time": "2025-03-21T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70BF86F3E8A4D4A302F510426FAC1B7A/Hajyt_2_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/70BF86F3E8A4D4A302F510426FAC1B7A/Hajyt_2_16_", "en": "http://www.malmitalo.fi/en/events/event/70BF86F3E8A4D4A302F510426FAC1B7A/Hajyt_2_16_" }, "short_description": { "fi": "Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään." }, "name": { "fi": "Häjyt 2 (16) – Kino Helios", "sv": "Häjyt 2 (16) – Kino Helios", "en": "Häjyt 2 (16) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään.</p><p>Paras ystävä Jalo vasikoi aikanaan Konstan, joka punoo vankilassa kostoa. Vapauden koittaessa Karhu palaa Etelä-Pohjanmaalle. Häjyn veri virtaa vahvana suonissa ja pikkurikollisen leima loistaa otsassa. Konsta kohtaa yllättäen menneisyytensä ja joutuu päätöksen eteen, jatkaako vihan tiellä vai antaako anteeksi. Miten uuden sukupolven häjyn käy?</p><p>Ikäraja: 16<br>Kesto: 112 min.<br>Ensi-ilta: 19.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65659/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65658", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 264044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T15:14:18.170191Z", "last_modified_time": "2025-02-24T15:14:18.170203Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765888.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/264044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T15:14:18.145916Z", "last_modified_time": "2025-02-24T15:14:18.233370Z", "date_published": null, "start_time": "2025-03-12T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9E91AD1412A4A46AA06B5C75B84CA10/Hajyt_2_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9E91AD1412A4A46AA06B5C75B84CA10/Hajyt_2_16_", "en": "http://www.malmitalo.fi/en/events/event/A9E91AD1412A4A46AA06B5C75B84CA10/Hajyt_2_16_" }, "short_description": { "fi": "Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään." }, "name": { "fi": "Häjyt 2 (16) – Kino Helios", "sv": "Häjyt 2 (16) – Kino Helios", "en": "Häjyt 2 (16) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään.</p><p>Paras ystävä Jalo vasikoi aikanaan Konstan, joka punoo vankilassa kostoa. Vapauden koittaessa Karhu palaa Etelä-Pohjanmaalle. Häjyn veri virtaa vahvana suonissa ja pikkurikollisen leima loistaa otsassa. Konsta kohtaa yllättäen menneisyytensä ja joutuu päätöksen eteen, jatkaako vihan tiellä vai antaako anteeksi. Miten uuden sukupolven häjyn käy?</p><p>Ikäraja: 16<br>Kesto: 112 min.<br>Ensi-ilta: 19.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65658/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65657", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haejyt-2-3841196/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 264043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T15:14:17.307619Z", "last_modified_time": "2025-02-24T15:14:17.307635Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759017.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/264043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T15:14:17.256949Z", "last_modified_time": "2025-02-24T15:14:17.387072Z", "date_published": null, "start_time": "2025-03-08T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B5661E209939234E5476E9B9247AF275/Hajyt_2_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B5661E209939234E5476E9B9247AF275/Hajyt_2_16_", "en": "http://www.malmitalo.fi/en/events/event/B5661E209939234E5476E9B9247AF275/Hajyt_2_16_" }, "short_description": { "fi": "Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään." }, "name": { "fi": "Häjyt 2 (16) – Kino Helios", "sv": "Häjyt 2 (16) – Kino Helios", "en": "Häjyt 2 (16) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Konsta Karhu on jatkanut isänsä Jussi Murikan polkua ja istunut kiven sisässä sovittamassa syntejään.</p><p>Paras ystävä Jalo vasikoi aikanaan Konstan, joka punoo vankilassa kostoa. Vapauden koittaessa Karhu palaa Etelä-Pohjanmaalle. Häjyn veri virtaa vahvana suonissa ja pikkurikollisen leima loistaa otsassa. Konsta kohtaa yllättäen menneisyytensä ja joutuu päätöksen eteen, jatkaako vihan tiellä vai antaako anteeksi. Miten uuden sukupolven häjyn käy?</p><p>Ikäraja: 16<br>Kesto: 112 min.<br>Ensi-ilta: 19.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65652", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263696, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:13.375351Z", "last_modified_time": "2025-02-24T13:14:13.375364Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759035.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263696/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:13.350749Z", "last_modified_time": "2025-02-24T13:14:13.431497Z", "date_published": null, "start_time": "2025-03-22T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F3FAB548A2E723E106ADECF542CA2E9/The_Brutalist_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F3FAB548A2E723E106ADECF542CA2E9/The_Brutalist_16_", "en": "http://www.malmitalo.fi/en/events/event/4F3FAB548A2E723E106ADECF542CA2E9/The_Brutalist_16_" }, "short_description": { "fi": "Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen." }, "name": { "fi": "The Brutalist (16) – Kino Helios", "sv": "The Brutalist (16) – Kino Helios", "en": "The Brutalist (16) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen.</p><p>Uutta alkua kaipaa myös sodan aikana siirreltyjen rajalinjojen ja vaihtelevien hallitsijoiden rikki repimä avioliitto Erzsébet-vaimon kanssa. László on yksin vieraalla maalla ja asettuu Pennsylvaniaan, missä varakas ja vaikutusvaltainen teollisuuspohatta Harrison Lee Van Buren kiinnittää huomiota hänen kykyihinsä. Vallalla ja maineella on kuitenkin kova hinta.</p><p>The Brutalist keräsi 10 Oscar-ehdokkuutta: paras elokuva, ohjaus (Brady Corbet), miespääosa (Adrien Brody), naissivuosa (Felicity Jones), miessivuosa (Guy Pearce), käsikirjoitus, kuvaus, leikkaus, musiikki ja lavastus.</p><p>Elokuvan kestoon sisältyy 15 minuutin väliaika.</p><p>Ikäraja: 16<br>Kesto: 215 min. (sisältää 15 minuutin väliajan)<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65652/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65656", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:12.512399Z", "last_modified_time": "2025-02-24T13:14:12.512412Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:12.489274Z", "last_modified_time": "2025-02-24T13:14:12.568499Z", "date_published": null, "start_time": "2025-03-21T13: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/833E6AC9C0B3A5C903EE5D2A0FC55F58/The_Last_Showgirl_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/833E6AC9C0B3A5C903EE5D2A0FC55F58/The_Last_Showgirl_S_", "en": "http://www.malmitalo.fi/en/events/event/833E6AC9C0B3A5C903EE5D2A0FC55F58/The_Last_Showgirl_S_" }, "short_description": { "fi": "Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan." }, "name": { "fi": "The Last Showgirl (S) – Kino Helios", "sv": "The Last Showgirl (S) – Kino Helios", "en": "The Last Showgirl (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan.</p><p>Höyheniin ja kristalleihin pukeutunut tähti on Sin Cityn viimeisen jäljellä olevan perinteisen esityksen keskipiste. Lava ja naiset, joiden kanssa hän sen jakaa, ovat hänen rakastava, kinasteleva ja paljetein koristeltu perheensä.</p><p>Kun näyttämömestari Eddie (Dave Bautista, maskuliinisuuden huippu naismeren keskellä) ilmoittaa, että esitys päättyy pysyvästi kahden viikon kuluttua, Shelley ja hänen työkaverinsa joutuvat tekemään päätöksiä tulevaisuudestaan. Tulevaisuus näyttää kovin erilaiselta 50-vuotiaalle kuin parikymppiselle, kun ainoa ammattitaitosi on tanssiminen.</p><p>Ikäraja: S<br>Kesto: 89 min.<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65656/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65655", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:11.539471Z", "last_modified_time": "2025-02-24T13:14:11.539483Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263694/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:11.516446Z", "last_modified_time": "2025-02-24T13:14:11.600514Z", "date_published": null, "start_time": "2025-03-19T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/390BF20D18AF2E0ED00B51F4A442013F/The_Last_Showgirl_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/390BF20D18AF2E0ED00B51F4A442013F/The_Last_Showgirl_S_", "en": "http://www.malmitalo.fi/en/events/event/390BF20D18AF2E0ED00B51F4A442013F/The_Last_Showgirl_S_" }, "short_description": { "fi": "Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan." }, "name": { "fi": "The Last Showgirl (S) – Kino Helios", "sv": "The Last Showgirl (S) – Kino Helios", "en": "The Last Showgirl (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan.</p><p>Höyheniin ja kristalleihin pukeutunut tähti on Sin Cityn viimeisen jäljellä olevan perinteisen esityksen keskipiste. Lava ja naiset, joiden kanssa hän sen jakaa, ovat hänen rakastava, kinasteleva ja paljetein koristeltu perheensä.</p><p>Kun näyttämömestari Eddie (Dave Bautista, maskuliinisuuden huippu naismeren keskellä) ilmoittaa, että esitys päättyy pysyvästi kahden viikon kuluttua, Shelley ja hänen työkaverinsa joutuvat tekemään päätöksiä tulevaisuudestaan. Tulevaisuus näyttää kovin erilaiselta 50-vuotiaalle kuin parikymppiselle, kun ainoa ammattitaitosi on tanssiminen.</p><p>Ikäraja: S<br>Kesto: 89 min.<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65655/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65651", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263693, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:09.733403Z", "last_modified_time": "2025-02-24T13:14:09.733417Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759023.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263693/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:09.693618Z", "last_modified_time": "2025-02-24T13:14:09.792920Z", "date_published": null, "start_time": "2025-03-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EEB0F7915542E2A8848EC2F3D7D561D4/The_Brutalist_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EEB0F7915542E2A8848EC2F3D7D561D4/The_Brutalist_16_", "en": "http://www.malmitalo.fi/en/events/event/EEB0F7915542E2A8848EC2F3D7D561D4/The_Brutalist_16_" }, "short_description": { "fi": "Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen." }, "name": { "fi": "The Brutalist (16) – Kino Helios", "sv": "The Brutalist (16) – Kino Helios", "en": "The Brutalist (16) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen.</p><p>Uutta alkua kaipaa myös sodan aikana siirreltyjen rajalinjojen ja vaihtelevien hallitsijoiden rikki repimä avioliitto Erzsébet-vaimon kanssa. László on yksin vieraalla maalla ja asettuu Pennsylvaniaan, missä varakas ja vaikutusvaltainen teollisuuspohatta Harrison Lee Van Buren kiinnittää huomiota hänen kykyihinsä. Vallalla ja maineella on kuitenkin kova hinta.</p><p>The Brutalist keräsi 10 Oscar-ehdokkuutta: paras elokuva, ohjaus (Brady Corbet), miespääosa (Adrien Brody), naissivuosa (Felicity Jones), miessivuosa (Guy Pearce), käsikirjoitus, kuvaus, leikkaus, musiikki ja lavastus.</p><p>Elokuvan kestoon sisältyy 15 minuutin väliaika.</p><p>Ikäraja: 16<br>Kesto: 215 min. (sisältää 15 minuutin väliajan)<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65651/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65654", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263692, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:09.598249Z", "last_modified_time": "2025-02-24T13:14:09.598269Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759022.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263692/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:09.574441Z", "last_modified_time": "2025-02-24T13:14:09.655945Z", "date_published": null, "start_time": "2025-03-14T13: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1FA3DF3C302DA55D3F8FECCE17863EB4/The_Last_Showgirl_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1FA3DF3C302DA55D3F8FECCE17863EB4/The_Last_Showgirl_S_", "en": "http://www.malmitalo.fi/en/events/event/1FA3DF3C302DA55D3F8FECCE17863EB4/The_Last_Showgirl_S_" }, "short_description": { "fi": "Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan." }, "name": { "fi": "The Last Showgirl (S) – Kino Helios", "sv": "The Last Showgirl (S) – Kino Helios", "en": "The Last Showgirl (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan.</p><p>Höyheniin ja kristalleihin pukeutunut tähti on Sin Cityn viimeisen jäljellä olevan perinteisen esityksen keskipiste. Lava ja naiset, joiden kanssa hän sen jakaa, ovat hänen rakastava, kinasteleva ja paljetein koristeltu perheensä.</p><p>Kun näyttämömestari Eddie (Dave Bautista, maskuliinisuuden huippu naismeren keskellä) ilmoittaa, että esitys päättyy pysyvästi kahden viikon kuluttua, Shelley ja hänen työkaverinsa joutuvat tekemään päätöksiä tulevaisuudestaan. Tulevaisuus näyttää kovin erilaiselta 50-vuotiaalle kuin parikymppiselle, kun ainoa ammattitaitosi on tanssiminen.</p><p>Ikäraja: S<br>Kesto: 89 min.<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65654/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65653", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-showgirl-3841194/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263691, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:08.013656Z", "last_modified_time": "2025-02-24T13:14:08.013668Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759014.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263691/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:07.988895Z", "last_modified_time": "2025-02-24T13:14:08.074818Z", "date_published": null, "start_time": "2025-03-07T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2E2BB13920549A07BA96E851098FC996/The_Last_Showgirl_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2E2BB13920549A07BA96E851098FC996/The_Last_Showgirl_S_", "en": "http://www.malmitalo.fi/en/events/event/2E2BB13920549A07BA96E851098FC996/The_Last_Showgirl_S_" }, "short_description": { "fi": "Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan." }, "name": { "fi": "The Last Showgirl (S) – Kino Helios", "sv": "The Last Showgirl (S) – Kino Helios", "en": "The Last Showgirl (S) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Shelley (Golden Globe ja SAG-ehdokas Pamela Anderson) on ollut Las Vegasin showtyttönä jo yli 30 vuoden ajan.</p><p>Höyheniin ja kristalleihin pukeutunut tähti on Sin Cityn viimeisen jäljellä olevan perinteisen esityksen keskipiste. Lava ja naiset, joiden kanssa hän sen jakaa, ovat hänen rakastava, kinasteleva ja paljetein koristeltu perheensä.</p><p>Kun näyttämömestari Eddie (Dave Bautista, maskuliinisuuden huippu naismeren keskellä) ilmoittaa, että esitys päättyy pysyvästi kahden viikon kuluttua, Shelley ja hänen työkaverinsa joutuvat tekemään päätöksiä tulevaisuudestaan. Tulevaisuus näyttää kovin erilaiselta 50-vuotiaalle kuin parikymppiselle, kun ainoa ammattitaitosi on tanssiminen.</p><p>Ikäraja: S<br>Kesto: 89 min.<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65653/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65650", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-brutalist-3841193/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 263690, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-24T13:14:06.987225Z", "last_modified_time": "2025-02-24T13:14:06.987246Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759011.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/263690/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-24T13:14:06.930240Z", "last_modified_time": "2025-02-24T13:14:07.083325Z", "date_published": null, "start_time": "2025-03-05T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/39EC844891325D1E73D36C3C01513D77/The_Brutalist_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/39EC844891325D1E73D36C3C01513D77/The_Brutalist_16_", "en": "http://www.malmitalo.fi/en/events/event/39EC844891325D1E73D36C3C01513D77/The_Brutalist_16_" }, "short_description": { "fi": "Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen." }, "name": { "fi": "The Brutalist (16) – Kino Helios", "sv": "The Brutalist (16) – Kino Helios", "en": "The Brutalist (16) – Kino Helios" }, "provider": null, "description": { "fi": "<p>Huippulahjakas arkkitehti László Toth pakenee sodanjälkeisestä Euroopasta Amerikkaan aloittaakseen oman elämänsä ja uransa jälleenrakennuksen.</p><p>Uutta alkua kaipaa myös sodan aikana siirreltyjen rajalinjojen ja vaihtelevien hallitsijoiden rikki repimä avioliitto Erzsébet-vaimon kanssa. László on yksin vieraalla maalla ja asettuu Pennsylvaniaan, missä varakas ja vaikutusvaltainen teollisuuspohatta Harrison Lee Van Buren kiinnittää huomiota hänen kykyihinsä. Vallalla ja maineella on kuitenkin kova hinta.</p><p>The Brutalist keräsi 10 Oscar-ehdokkuutta: paras elokuva, ohjaus (Brady Corbet), miespääosa (Adrien Brody), naissivuosa (Felicity Jones), miessivuosa (Guy Pearce), käsikirjoitus, kuvaus, leikkaus, musiikki ja lavastus.</p><p>Elokuvan kestoon sisältyy 15 minuutin väliaika.</p><p>Ikäraja: 16<br>Kesto: 215 min. (sisältää 15 minuutin väliajan)<br>Ensi-ilta: 28.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65650/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agktpv3nyi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?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, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-02-24T12:03:40.142761Z", "last_modified_time": "2025-02-24T12:03:40.142779Z", "date_published": "2025-02-24T12:03:39.547000Z", "start_time": "2025-02-28", "end_time": "2025-03-01", "custom_data": { "spots": "1", "org_name": "Testipiste", "website_url": "", "contact_email": "etusuku@localhost.local", "contact_phone": "0400000000", "contact_last_name": "Sukutestihenkilö", "contact_first_name": "Etutestihenkilö" }, "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, "location_extra_info": null, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Testitettipaikka" }, "name": { "fi": "Testi" }, "provider": { "fi": "Activenakusteri Oy", "sv": "7769480-5" }, "description": { "fi": "Testitettipaikka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agktpv3nyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dpaq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz675q/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dp2m/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-20T15:21:44.490519Z", "last_modified_time": "2025-02-24T07:08:58.512087Z", "date_published": null, "start_time": "2025-05-21T14:00:00Z", "end_time": "2025-05-21T16: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, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Lukupiirissä päästään yhdessä muodostamaan vilkasta keskustelua jokaisen teoksen aihepiiristä.", "sv": " I läsecirkeln får deltagarna tillsammans skapa livliga diskussioner om varje boks tema", "en": " In the book club, participants will have the opportunity to engage in lively discussions about the themes of each work." }, "name": { "fi": "PERUTTU: Yhteiskunnallinen lukupiiri", "sv": "INSTÄLLD: samhällelig läsecirkel (På Finska) ", "en": "CANCELED: Book club on societal issues (In Finnish)" }, "provider": null, "description": { "fi": "<p>Syksyllä aloitettu lukupiiri jatkuu koko kevään 2025. Yhteiskunnallista lukupiiriä fasilitoi hallintotieteiden maisteri, ja kirjallisuuteen ja lukemiseen innokkaasti suhtautuva Henri Ahokas. Keskustelu on suomen kielellä.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>lukupiiriin ei tarvitse ilmoittautua ja mukaan saa tulla, vaikka ei olisi ehtinyt lukemaan päivän teosta.</p>", "sv": "<p>Hösten påbörjat bokcirkel fortsätter hela våren 2025. Den samhälleliga läsecirkeln leds av Henri Ahokas, magister i förvaltningsvetenskap och entusiastisk bokälskare. Diskussion är på finska.</p><p><br></p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>Man behöver inte anmäla sig till läsecirkeln, och det är fritt fram att delta även om man inte hunnit läsa dagens verk.</p>", "en": "<p>The book club started at the fall of 2024 will continue throughout the spring of 2025. The societal book club is facilitated by Henri Ahokas, a Master of Administrative Sciences and an enthusiast about literature. Discussion is in Finnish.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>No registration is required for the book club, and everyone is welcome to join, even if they haven’t had the chance to read the book of the day.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dpaq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dp2m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz675q/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dpaq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-20T15:21:41.927297Z", "last_modified_time": "2025-02-24T07:08:57.828832Z", "date_published": null, "start_time": "2025-01-22T15:00:00Z", "end_time": "2025-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, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Lukupiirissä päästään yhdessä muodostamaan vilkasta keskustelua jokaisen teoksen aihepiiristä.", "sv": " I läsecirkeln får deltagarna tillsammans skapa livliga diskussioner om varje boks tema", "en": " In the book club, participants will have the opportunity to engage in lively discussions about the themes of each work." }, "name": { "fi": "PERUTTU: Yhteiskunnallinen lukupiiri", "sv": "INSTÄLLD: samhällelig läsecirkel (På Finska) ", "en": "CANCELED: Book club on societal issues (In Finnish)" }, "provider": null, "description": { "fi": "<p>Syksyllä aloitettu lukupiiri jatkuu koko kevään 2025. Yhteiskunnallista lukupiiriä fasilitoi hallintotieteiden maisteri, ja kirjallisuuteen ja lukemiseen innokkaasti suhtautuva Henri Ahokas. Keskustelu on suomen kielellä.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>lukupiiriin ei tarvitse ilmoittautua ja mukaan saa tulla, vaikka ei olisi ehtinyt lukemaan päivän teosta.</p>", "sv": "<p>Hösten påbörjat bokcirkel fortsätter hela våren 2025. Den samhälleliga läsecirkeln leds av Henri Ahokas, magister i förvaltningsvetenskap och entusiastisk bokälskare. Diskussion är på finska.</p><p><br></p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>Man behöver inte anmäla sig till läsecirkeln, och det är fritt fram att delta även om man inte hunnit läsa dagens verk.</p>", "en": "<p>The book club started at the fall of 2024 will continue throughout the spring of 2025. The societal book club is facilitated by Henri Ahokas, a Master of Administrative Sciences and an enthusiast about literature. Discussion is in Finnish.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>No registration is required for the book club, and everyone is welcome to join, even if they haven’t had the chance to read the book of the day.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dp2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }