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&hide_recurring_children=true&page=229
{ "meta": { "count": 21788, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=230", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=228" }, "data": [ { "id": "kulke:65435", "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-maria-12-3810816/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153727, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-13T10:14:05.182965Z", "last_modified_time": "2025-01-13T10:14:05.182983Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758977.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153727/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-13T10:14:05.158124Z", "last_modified_time": "2025-01-17T11:14:45.791932Z", "date_published": null, "start_time": "2025-02-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9FC42CDF3DF29AF8A483ED6765CFF66F/Maria_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9FC42CDF3DF29AF8A483ED6765CFF66F/Maria_12_", "en": "http://www.malmitalo.fi/en/events/event/9FC42CDF3DF29AF8A483ED6765CFF66F/Maria_12_" }, "description": { "fi": "<p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan.</p><p>Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen. Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>Ikäraja: 12<br>Kesto: 123 min.<br>Tekstitys: suomi ja ruotsi</p><p>Ensi-ilta: 24.1.2025</p>" }, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65434", "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-maria-12-3810816/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153726, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-13T10:14:04.129131Z", "last_modified_time": "2025-01-13T10:14:04.129146Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758974.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153726/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-13T10:14:04.096661Z", "last_modified_time": "2025-01-17T11:14:44.732955Z", "date_published": null, "start_time": "2025-02-05T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/27E151A2EE1CB6FE109FB1382001567F/Maria_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/27E151A2EE1CB6FE109FB1382001567F/Maria_12_", "en": "http://www.malmitalo.fi/en/events/event/27E151A2EE1CB6FE109FB1382001567F/Maria_12_" }, "description": { "fi": "<p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan.</p><p>Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen. Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>Ikäraja: 12<br>Kesto: 123 min.<br>Tekstitys: suomi ja ruotsi</p><p>Ensi-ilta: 24.1.2025</p>" }, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65434/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65433", "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-maria-12-3810816/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153725, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-13T10:14:02.989382Z", "last_modified_time": "2025-01-13T10:14:02.989395Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758969.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153725/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-13T10:14:02.966948Z", "last_modified_time": "2025-01-17T11:14:43.572293Z", "date_published": null, "start_time": "2025-01-31T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F86E16E2F2CAE9C34217B32E12BEF90/Maria_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F86E16E2F2CAE9C34217B32E12BEF90/Maria_12_", "en": "http://www.malmitalo.fi/en/events/event/4F86E16E2F2CAE9C34217B32E12BEF90/Maria_12_" }, "description": { "fi": "<p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan.</p><p>Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen. Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>Ikäraja: 12<br>Kesto: 123 min.<br>Tekstitys: suomi ja ruotsi</p><p>Ensi-ilta: 24.1.2025</p>" }, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65432", "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-maria-12-3810816/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153724, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-13T10:14:02.342342Z", "last_modified_time": "2025-01-13T10:14:02.342358Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758965.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153724/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-13T10:14:02.306926Z", "last_modified_time": "2025-01-17T11:14:42.969884Z", "date_published": null, "start_time": "2025-01-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, "short_description": { "fi": "1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/853B886A6F0A3070CB1226C345A84410/Maria_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/853B886A6F0A3070CB1226C345A84410/Maria_12_", "en": "http://www.malmitalo.fi/en/events/event/853B886A6F0A3070CB1226C345A84410/Maria_12_" }, "description": { "fi": "<p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan.</p><p>Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen. Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>Ikäraja: 12<br>Kesto: 123 min.<br>Tekstitys: suomi ja ruotsi</p><p>Ensi-ilta: 24.1.2025</p>" }, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65432/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65216", "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: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/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153332, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T15:14:09.460070Z", "last_modified_time": "2024-12-09T15:14:09.460120Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760195.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153332/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T15:14:09.432560Z", "last_modified_time": "2025-01-17T11:14:41.153098Z", "date_published": null, "start_time": "2025-01-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.", "sv": "I december 1984 träffade en sovjetisk missil Enare träsk, och en internationell konflikt följde.", "en": "In December 1984, a Soviet missile crashed into Lake Inari, setting off an international incident." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9AB283C11D72B773A81451D2CA191C2B/Yleison_suosikit_Ohjus_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9AB283C11D72B773A81451D2CA191C2B/Publikens_favoriter_Missilen_12_", "en": "http://www.malmitalo.fi/en/events/event/9AB283C11D72B773A81451D2CA191C2B/Audience_Favourites_The_Missile_Ohjus_12_" }, "description": { "fi": "<p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Joulukuussa 1984 Inarijärveen syöksyi neuvostoliittolainen ohjus, ja kansainvälinen selkkaus oli valmis.</p><p>Draamakomedia kertoo yksinhuoltaja Niinasta, joka saa uuden alun elämälleen paikallisen sanomalehden toimittajana - ja eteensä mahdollisen jymyjutun kylässä, jossa ei koskaan tapahdu mitään. Niina uppoaa syvälle kansainväliseen ohjuskriisiin. Lappi ja pieni kirkonkylä menevät sekaisin, ja ulkomaisia toimittajia lappaa paikalliseen hotelliin. Tutkimusten keskellä Niina tapaa hävittäjälentäjä Kain, ja samaan aikaan ex-mies Tapio on vapautumassa vankilasta. Niinan on löydettävä rajansa, jotta myös totuus ohjuksesta näkisi päivänvalon. Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin.</p><p>Ikäraja: 12<br>Kesto 115 min<br>Tekstitys: suomi</p><p>Vapaa pääsy!</p>", "sv": "<p>I december 1984 träffade en sovjetisk missil Enare träsk, och en internationell konflikt följde.</p><p>Dramakomedin berättar om ensamförsörjaren Niina, som får en nystart i livet som journalist vid den lokala dagstidningen – och stöter på en eventuell sensation i en by, där inget någonsin händer. Niina blir djupt inblandad i den internationella missilkrisen. Lappland och den lilla kyrkobyn förlorar vettet och utländska journalister strömmar till det lokala hotellet. Mitt under efterforskningarna möter Niina jaktplanspiloten Kai, och samtidigt håller ex-mannen Tapio på att friges från fängelset. Niina måste hitta sina gränser, också för att sanningen om missilen ska få se dagens ljus. Missilen är en film och gränser och gränslöshet, där politisk satir möter varm humor.</p><p>Publikens favoriter är Kino Helios nya filmserie, där vi får se Kino Helios publikfavoriter från tidigare säsonger som gratisvisningar.</p><p>Åldersgräns: 12<br>Längd 115 min.<br>Undertexter: finska</p><p>Fritt inträde!</p>", "en": "<p>In December 1984, a Soviet missile crashed into Lake Inari, setting off an international incident.</p><p>This comedy-drama tells the story of Niina, a single parent who gets a fresh start in life as a reporter for a local newspaper – and lands a potential big scoop in a village where nothing ever happens. Niina dives deep into the international missile crisis. Lapland and the tiny village get caught up in the chaos, and foreign journalists flock to the local hotel. Niina meets Kai, a fighter pilot, in the middle of her investigation. At the same time, her ex-husband, Tapio, is about to be released from prison. Niina must discover her limits so that the truth about the missile can also see the light of day. The Missile is a film about limits and limitlessness, where political satire meets warm humour.</p><p>Audience Favourites is Kino Helios’ new film series, featuring free screenings of the best-selling films from previous Kino Helios seasons.</p><p>Age limit: 12<br>Duration: 115 min<br>Subtitles: Finnish</p><p>Admission is free!</p>" }, "name": { "fi": "Yleisön suosikit: Ohjus (12)", "sv": "Publikens favoriter: Missilen (12)", "en": "Audience Favourites: The Missile (Ohjus) (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65216/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:6cf3dd51-e462-4fb2-94ce-8fd0fc7f1efe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_31122024_LE-vlilehden_kuvauskenttien_korjaukset_no22875064876" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 156225, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T11:12:15.300911Z", "last_modified_time": "2025-01-17T11:12:15.300928Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/30de3280-3514-ef11-9f8a-000d3ab59432", "name": "asdf", "cropping": "", "photographer_name": "asdf fdsa", "alt_text": "asdf", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156225/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2025-01-17T10:27:45.485535Z", "last_modified_time": "2025-01-17T11:12:16.696144Z", "date_published": "2025-01-17T10:25:20Z", "start_time": "2025-01-20T09:00:00Z", "end_time": "2025-01-20T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": "2024-12-02T08:00:00+02:00", "enrolment_end_time": "2025-01-03T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 31122024 LE-välilehden kuvauskenttien korjaukset no:2 short description" }, "info_url": null, "description": { "fi": "<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br> </div>" }, "name": { "fi": "MKtest 17012025 LE-täbin kuvauskenttien korjaukset" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:6cf3dd51-e462-4fb2-94ce-8fd0fc7f1efe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65026", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/kanneltalo/yhdessae-luoteis-helsingin-musiikkiopiston-kanteleensoittajien-konsertti-3787537/", "sv": "https://www.lippu.fi/artist/kanneltalo/yhdessae-luoteis-helsingin-musiikkiopiston-kanteleensoittajien-konsertti-3787537/", "en": "https://www.lippu.fi/artist/kanneltalo/yhdessae-luoteis-helsingin-musiikkiopiston-kanteleensoittajien-konsertti-3787537/" }, "description": null, "price": { "fi": "17,80 € (alle 7-vuotiaat ilmaiseksi)", "sv": "17,80 € (alle 7-vuotiaat ilmaiseksi)", "en": "17,80 € (alle 7-vuotiaat ilmaiseksi)" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156159, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T10:14:49.353758Z", "last_modified_time": "2025-01-17T10:14:49.353776Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763533.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156159/?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-01-17T10:14:49.308361Z", "last_modified_time": "2025-01-17T10:14:49.454428Z", "date_published": null, "start_time": "2025-04-11T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Luoteis-Helsingin musiikkiopiston kanteleensoittajien LuoMuKanteleet-yhtye juhlistaa musiikkiopiston 40-vuotista taivalta omalla juhlakonsertilla.", "sv": "Bandet LuoMuKanteleet från Luoteis-Helsingin musiikkiopisto firar musikinstitutets 40-åriga resa med en egen jubileumskonsert.", "en": "The LuoMuKanteleet ensemble of the Northwest Helsinki Music Institute’s kantele players celebrates the 40th anniversary of the music institute with its own anniversary concert." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1C448FF09F63D8BD39850927FCD0CC27/Yhdessa_Luoteis-Helsingin_musiikkiopiston_kanteleensoittajat_esiintyvat", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1C448FF09F63D8BD39850927FCD0CC27/Yhdessa_Tillsammans_kantelespelare_fran_Luoteis-Helsingin_musiikkiopisto_upptrader", "en": "http://www.kanneltalo.fi/en/events/event/1C448FF09F63D8BD39850927FCD0CC27/Together_kantele_players_from_Northwest_Helsinki_Music_Institute_perform" }, "description": { "fi": "<p>Luoteis-Helsingin musiikkiopiston kanteleensoittajien LuoMuKanteleet-yhtye juhlistaa musiikkiopiston 40-vuotista taivalta omalla juhlakonsertilla.</p><p>Esiintymässä on nykyisiä soittajia sekä soittajia vuosien varrelta.</p><p>Konsertin järjestää: Musiikkiyhdistys LuoMuKanteleet ry</p>", "sv": "<p>Bandet LuoMuKanteleet från Luoteis-Helsingin musiikkiopisto firar musikinstitutets 40-åriga resa med en egen jubileumskonsert.</p><p>Nuvarande musikanter och musikanter från årens lopp uppträder.</p><p>Konserten arrangeras av: Musiikkiyhdistys LuoMuKanteleet ry</p>", "en": "<p>The LuoMuKanteleet ensemble of the Northwest Helsinki Music Institute’s kantele players celebrates the 40th anniversary of the music institute with its own anniversary concert.</p><p>The performance will feature current musicians as well as musicians from the past.</p><p>The concert is organised by: Musiikkiyhdistys LuoMuKanteleet ry</p>" }, "name": { "fi": "Yhdessä – Luoteis-Helsingin musiikkiopiston kanteleensoittajat esiintyvät", "sv": "Yhdessä (Tillsammans) – kantelespelare från Luoteis-Helsingin musiikkiopisto uppträder", "en": "Together – kantele players from Northwest Helsinki Music Institute perform" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65026/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65034", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156105, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:15:04.021667Z", "last_modified_time": "2025-01-17T09:15:04.021686Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763664.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:15:03.995815Z", "last_modified_time": "2025-01-17T10:14:48.272046Z", "date_published": null, "start_time": "2025-04-07T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kirjailija Kari Hotakainen saapuu Kanneltalon kahvilan stagelle puhumaan uudesta teoksestaan ”Helmi”, joka on vauhdikas ja hauska kirja vakavista asioista.", "sv": "Författaren Kari Hotakainen kommer till kaféet stage i Gamlasgården för att tala om sitt nya verk “Helmi”, som är en fartfylld och rolig bok om allvarliga saker.", "en": "Author Kari Hotakainen takes the stage at the Kanneltalo café to talk about his new book, Helmi, a fast-paced and funny book about serious issues." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9A480AAE64F6031D574000AA19827319/Kirjailijavieraana_Kari_Hotakainen_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9A480AAE64F6031D574000AA19827319/Forfattarbesok_Kari_Hotakainen_", "en": "http://www.kanneltalo.fi/en/events/event/9A480AAE64F6031D574000AA19827319/Guest_author_Kari_Hotakainen_" }, "description": { "fi": "<p>Kirjailija Kari Hotakainen saapuu Kanneltalon kahvilan stagelle puhumaan uudesta teoksestaan ”Helmi”, joka on vauhdikas ja hauska kirja vakavista asioista.</p><p><b>Helmi (Siltala 2024)</b> <br>Kaikki alkaa siitä, kun lapsettomuudesta kärsivä pariskunta löytää sieniretkeltään suppilovahveron sijaan metsästä ihmisen, muistisairaan Helmin, joka ei aluksi muista edes omaa nimeään. Alkaa vauhdikas, töyssyinen ja monipolvinen matka, joka vie lukijan kohti elämän ydinkysymyksiä. Hurmaavan omapäinen Helmi vetelee lankoja umpisolmuun ja mutkia suoriksi.</p><p>Hersyvät henkilöhahmot kuljettavat yllätyksellistä tarinaa, jossa läheltä katsottuna traagiset asiat muuttuvat lukijan silmissä lämpimän koomisiksi. Juonenkäänteet ja osuva dialogi saavat nauramaan ääneen.<br> <br>Helmi on kuin Pirkka-brändi. Se on läsnä erilaisten yksilöiden kaikissa elämänvaiheissa lempeästi, arkisesti ja aina ihmistä puolustaen.</p><p>Tilaisuudessa Hotakaista haastattelee FM <b>Tuija Takala.</b></p><p>Kari Hotakainen aloitti kirjailijanuransa runoilijana. Hänen esikoiskokoelmansa Harmittavat takaiskut ilmestyi vuonna 1982. Hänen teoksiaan on käännetty yli 20 kielelle. Hotakainen on saanut muun muassa Topelius-palkinnon (2000), Finlandia-palkinnon Juoksuhaudantiestä (2003), Pohjoismaiden neuvoston kirjallisuuspalkinnon samaisesta romaanista vuonna 2004 sekä Runeberg-palkinnon vuonna 2010 romaanista Ihmisen osa. Ihmisen osalle myönnettiin vuonna 2011 myös arvostettu ranskalainen Prix Courrier International -palkinto parhaana käännöskirjana.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p><p>Vapaa pääsy</p>", "sv": "<p>Författaren Kari Hotakainen kommer till kaféet stage i Gamlasgården för att tala om sitt nya verk “Helmi”, som är en fartfylld och rolig bok om allvarliga saker.</p><p><b>Helmi (Siltala 2024)</b> <br>Allt börjar då ett barnlöst par går på svamputfärd i skogen, men istället för trattkantareller hittar de en människa, den minnessjuka Helmi, som till en början inte ens minns sitt eget namn. Så börjar en fartfylld, skumpig och slingrande resa som tar läsaren med mot livets kärnfrågor. Den charmigt egensinniga Helmi slår dubbelknut på trådarna och går rakt på sak.</p><p>De sprudlande karaktärerna för med sig i en överraskande berättelse, där tragiska saker blir varmt komiska då läsaren får granska dem närmare. Vändningarna i handlingen och den träffande dialogen får läsaren att skratta högt.<br> <br>Helmi är som Pirkka-varumärket. Det finns milt närvarande för olika individer i alla livsskeden, vardagligt och alltid med människan i försvar.</p><p>Vid evenemanget intervjuas Hotakainen av fil.mag. Tuija Takala.</p><p>Kari Hotakainen inledde sin författarkarriär som poet. Hans debutsamling Harmittavat takaiskut publicerades år 1982. Hans verk har översatts till över 20 språk. Hotakainen har bland annat belönats med Topelius-priset (2000), Finlandiapriset för Juoksuhaudantiestä (2003), Nordiska rådets litteraturpris för samma roman år 2004, och Runebergspriset år 2010 för romanen Ihmisen osa. År 2011 beviljades Ihmisen osa även det ansedda franska priset Prix Courrier International för bästa översatta bok.</p><p>Språk: finska</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p>", "en": "<p>Author Kari Hotakainen takes the stage at the Kanneltalo café to talk about his new book, Helmi, a fast-paced and funny book about serious issues.</p><p><b>Helmi (Siltala 2024)</b> <br>It all begins when a couple struggling with infertility find a human instead of chanterelles on their mushroom-hunting trip. She is the memory-impaired Helmi, who at first can’t even remember her own name. So begins a fast-paced, bumpy and multi-generational journey that leads the reader towards the core questions of life. The charmingly headstrong Helmi tends to overcomplicate some things and oversimplify others.</p><p>The lively characters carry this surprising story, which, when examined closely, turns tragic things into warmly comical ones for the reader. The plot twists and clever dialogue will make you laugh out loud.<br> <br>Helmi is like the Pirkka grocery store brand: present throughout the lives of different individuals in gentle, everyday ways, always standing up for people.</p><p>Hotakainen will be interviewed at the event by Tuija Takala, MA.</p><p>Kari Hotakainen started his writing career as a poet. His debut collection, Harmittavat takaiskut, was published in 1982. His works have been translated into more than 20 languages. Hotakainen received the Topelius Award (2000), the Finlandia Prize for Juoksuhaudantie (2003), the Nordic Council Literature Prize for the same novel in 2004, and the Runeberg Prize in 2010 for his novel The Human Part. In 2011, The Human Part was also awarded the prestigious French Prix Courrier International for best translated book.</p><p>Language: Finnish</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p>" }, "name": { "fi": "Kirjailijavieraana Kari Hotakainen – Maksuttomat maanantait", "sv": "Författarbesök: Kari Hotakainen – Kostnadsfria måndagar", "en": "Guest author: Kari Hotakainen – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65034/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65423", "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/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153713, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-10T14:14:32.073285Z", "last_modified_time": "2025-01-10T14:14:32.073311Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758960.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153713/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-10T14:14:32.047506Z", "last_modified_time": "2025-01-17T10:14:32.089855Z", "date_published": null, "start_time": "2025-01-24T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0679DF44C8F0F859A28F19C4E4BE5A5C/Ainahan_on_huominen_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0679DF44C8F0F859A28F19C4E4BE5A5C/Ainahan_on_huominen_7_", "en": "http://www.malmitalo.fi/en/events/event/0679DF44C8F0F859A28F19C4E4BE5A5C/Ainahan_on_huominen_7_" }, "description": { "fi": "<p>Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse.</p><p>40-luvun Italiaan sijoittuva draamakomedia kuvaa kauniisti ja voimallisesti sitä yhteiskunnallista murroskohtaa, jossa naisten ääni alkoi toisen maailmansodan jälkeen päästä kuuluviin. Roomalaisperheen äidin roolina on uurastaa näkymättömissä. Aviomies hakkaa ja haukkuu, mutta autokorjaamolla työskentelevä lempeä nuoruudenrakastettu pehmentää pelon sävyttämää arkea. Kun posti tuo yllättävän kirjeen, kuinka pitkään nurkkaan ajettu nainen enää alistuu asemaansa itsestäänselvyytenä?</p><p>Ainahan on huominen on kaikkien aikojen tuottoisin naisen ohjaama italialainen elokuva – kotimaassaan vuonna 2023 jopa katsotumpi kuin Barbie! Italian elokuvatoimittajat valitsivat elokuvan vuoden parhaaksi, samoin sekä tuomaristo että yleisö Rooman elokuvafestivaalilla. Göteborgin elokuvafestivaalilla se palkittiin vuoden parhaana kansainvälisenä elokuvana.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 118 min.<br>Ensi-ilta: 20.12.2024<br>Tekstitys: suomi ja ruotsi</p>" }, "name": { "fi": "Ainahan on huominen (7) – Kino Helios", "sv": "Ainahan on huominen (7) – Kino Helios", "en": "Ainahan on huominen (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65423/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65422", "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/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153712, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-10T14:14:31.941784Z", "last_modified_time": "2025-01-10T14:14:31.941800Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758956.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153712/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-10T14:14:31.914842Z", "last_modified_time": "2025-01-17T10:14:31.224323Z", "date_published": null, "start_time": "2025-01-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, "short_description": { "fi": "Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0735D468DF748204CE1EAC8ACE89F026/Ainahan_on_huominen_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0735D468DF748204CE1EAC8ACE89F026/Ainahan_on_huominen_7_", "en": "http://www.malmitalo.fi/en/events/event/0735D468DF748204CE1EAC8ACE89F026/Ainahan_on_huominen_7_" }, "description": { "fi": "<p>Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse.</p><p>40-luvun Italiaan sijoittuva draamakomedia kuvaa kauniisti ja voimallisesti sitä yhteiskunnallista murroskohtaa, jossa naisten ääni alkoi toisen maailmansodan jälkeen päästä kuuluviin. Roomalaisperheen äidin roolina on uurastaa näkymättömissä. Aviomies hakkaa ja haukkuu, mutta autokorjaamolla työskentelevä lempeä nuoruudenrakastettu pehmentää pelon sävyttämää arkea. Kun posti tuo yllättävän kirjeen, kuinka pitkään nurkkaan ajettu nainen enää alistuu asemaansa itsestäänselvyytenä?</p><p>Ainahan on huominen on kaikkien aikojen tuottoisin naisen ohjaama italialainen elokuva – kotimaassaan vuonna 2023 jopa katsotumpi kuin Barbie! Italian elokuvatoimittajat valitsivat elokuvan vuoden parhaaksi, samoin sekä tuomaristo että yleisö Rooman elokuvafestivaalilla. Göteborgin elokuvafestivaalilla se palkittiin vuoden parhaana kansainvälisenä elokuvana.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 118 min.<br>Ensi-ilta: 20.12.2024<br>Tekstitys: suomi ja ruotsi</p>" }, "name": { "fi": "Ainahan on huominen (7) – Kino Helios", "sv": "Ainahan on huominen (7) – Kino Helios", "en": "Ainahan on huominen (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65422/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65294", "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: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: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/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153455, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:14.453108Z", "last_modified_time": "2024-12-13T14:14:14.453125Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758951.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153455/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:14.430349Z", "last_modified_time": "2025-01-17T10:14:30.156836Z", "date_published": null, "start_time": "2025-01-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EA6F529E094CD42F169908A032B3474F/Thelma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EA6F529E094CD42F169908A032B3474F/Thelma_7_", "en": "http://www.malmitalo.fi/en/events/event/EA6F529E094CD42F169908A032B3474F/Thelma_7_" }, "description": { "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>" }, "name": { "fi": "Thelma (7) – Kino Helios", "sv": "Thelma (7) – Kino Helios", "en": "Thelma (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65294/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65293", "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: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: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/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:13.853525Z", "last_modified_time": "2024-12-13T14:14:13.853546Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758947.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:13.830396Z", "last_modified_time": "2025-01-17T10:14:29.380960Z", "date_published": null, "start_time": "2025-01-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, "short_description": { "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/560945E6114BC3FE5B6A3E8FAD8DB8FA/Thelma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/560945E6114BC3FE5B6A3E8FAD8DB8FA/Thelma_7_", "en": "http://www.malmitalo.fi/en/events/event/560945E6114BC3FE5B6A3E8FAD8DB8FA/Thelma_7_" }, "description": { "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>" }, "name": { "fi": "Thelma (7) – Kino Helios", "sv": "Thelma (7) – Kino Helios", "en": "Thelma (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65293/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65292", "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: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: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/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153451, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:13.388289Z", "last_modified_time": "2024-12-13T14:14:13.388303Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758944.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153451/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:13.364494Z", "last_modified_time": "2025-01-17T10:14:28.971145Z", "date_published": null, "start_time": "2025-01-11T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8CD75354117B607A2A5F7BFD4FF25BEA/Thelma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8CD75354117B607A2A5F7BFD4FF25BEA/Thelma_7_", "en": "http://www.malmitalo.fi/en/events/event/8CD75354117B607A2A5F7BFD4FF25BEA/Thelma_7_" }, "description": { "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>" }, "name": { "fi": "Thelma (7) – Kino Helios", "sv": "Thelma (7) – Kino Helios", "en": "Thelma (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65292/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65291", "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: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: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/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153449, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T14:14:13.135820Z", "last_modified_time": "2024-12-13T14:14:13.135835Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758941.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153449/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T14:14:13.109669Z", "last_modified_time": "2025-01-17T10:14:28.764230Z", "date_published": null, "start_time": "2025-01-10T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81C1EF3CC6C50860A80BD8C5845C67C2/Thelma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/81C1EF3CC6C50860A80BD8C5845C67C2/Thelma_7_", "en": "http://www.malmitalo.fi/en/events/event/81C1EF3CC6C50860A80BD8C5845C67C2/Thelma_7_" }, "description": { "fi": "<p>Josh Margolin ohjaama ja käsikirjoittama toimintaelokuva perustuu tositapahtumaan, jossa hänen isoäidiltään huijattiin rahaa.</p><p>Kun 93-vuotias isoäiti Thelma joutuu puhelimessa hänen lapsenlapsekseen tekeytyvän huijarin uhriksi, hän päättää ottaa oikeuden omiin käsiinsä saadakseen omaisuutensa takaisin.</p><p>Ikäraja: (7)<br>Kesto: 98 min.</p><p>Ensi-ilta: 25.12.2024<br>Tekstitys: suomi ja ruotsi</p>" }, "name": { "fi": "Thelma (7) – Kino Helios", "sv": "Thelma (7) – Kino Helios", "en": "Thelma (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65291/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23eii4", "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/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehxm/?format=api" } ], "images": [ { "id": 150450, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-17T07:59:13.420035Z", "last_modified_time": "2024-01-17T07:59:13.420055Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "shakkinappuloita pelilaudalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-17T09:39:29.270417Z", "last_modified_time": "2025-01-17T09:39:29.270437Z", "date_published": null, "start_time": "2025-02-04T15:00:00Z", "end_time": "2025-05-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Nuorille suunnattu shakkiklubi.", "sv": "Schackklubben för unga.", "en": "Chess Club for teens." }, "info_url": null, "description": { "fi": "<p>Shakkiklubi Entressen kirjaston nuorten osasto Kibessä.</p><p>Tiistai 4. helmikuuta</p><p>Tiistai 18. helmikuuta</p><p>Tiistai 3. maaliskuuta</p><p>Tiistai 18. maaliskuuta</p><p>Tiistai 1. huhtikuuta</p><p>Tiistai 15. huhtikuuta</p><p>Tiistai 29. huhtikuuta</p><p>Tiistai 13. toukokuuta</p><p>Tiistai 27. toukokuuta</p>", "sv": "<p>Entresse Librarys ungdomsavdelning i Kibe.</p><p>Tisdag 4. februari</p><p>Tisdag 18. februari</p><p>Tisdag 3. mars</p><p>Tisdag 18. mars</p><p>Tisdag 1. april</p><p>Tisdag 15. april</p><p>Tisdag 29. april</p><p>Tisdag 13. maj</p><p>Tisdag 27. maj</p>", "en": "<p>Chess Club in Entresse Library's youth section Kibe.</p><p>Tuesday 4. February</p><p>Tuesday 18. February</p><p>Tuesday 4. March</p><p>Tuesday 18. March</p><p>Tuesday 1. April</p><p>Tuesday 15. April</p><p>Tuesday 29. April</p><p>Tuesday 13. May</p><p>Tuesday 27. May</p>" }, "name": { "fi": "Mr. Omarin Shakkiklubi", "sv": "Mr. Omar Schackklubb ", "en": "Mr. Omar's Chess Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eii4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65018", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156103, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:14:55.776305Z", "last_modified_time": "2025-01-17T09:14:55.776320Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763511.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156103/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:14:55.748551Z", "last_modified_time": "2025-01-17T09:14:55.845131Z", "date_published": null, "start_time": "2025-03-31T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella vuorossa vieraileva muusikko Arto Pajukallio.", "sv": "Börja veckan med fullt hålligång! I vårens serie för klubben Juurilla står musikern Arto Pajukallio i turen på kaféets stage.", "en": "Start your week with some catchy tunes! In this spring's At the Roots Club series, guest musician Arto Pajukallio takes the stage at the café." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/948F86C5A44BF594663FA585A2E4BE97/Juurilla_Arto_Pajukallio", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/948F86C5A44BF594663FA585A2E4BE97/Vid_rotterna_Arto_Pajukallio", "en": "http://www.kanneltalo.fi/en/events/event/948F86C5A44BF594663FA585A2E4BE97/At_the_Roots_Arto_Pajukallio" }, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella vuorossa vieraileva muusikko Arto Pajukallio.</p><p>Arto Pajukallio on päätyönään työskennellyt toimittajana ja tehnyt toisen uran soittajana mm. Freud Marx Engels & Jungissa.</p><p>”En ole solistinen laulaja tai soittaja, ja hyppään suoraan oman epämukavuusalueeni syvään päätyyn astumalla Juurilla-klubin bändin vieraaksi. Koen kuitenkin vallan tehtäväkseni tuoda esille myös vähemmän tunnettua suomenkielistä rootsmusiikkia eri tekijöiltä, ehkä itseltänikin. Tehtäköön siis musiikillinen aikamatka lauluihin, joista monia ei osata toivoa.”</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Börja veckan med fullt hålligång! I vårens serie för klubben Juurilla står musikern Arto Pajukallio i turen på kaféets stage.</p><p>Arto Pajukallios huvudsakliga yrke är journalist och han har haft en andra karriär som musiker i bland annat Freud Marx Engels & Jung.</p><p>“Jag är inte en solistisk sångare eller musiker, och jag hoppar direkt utanför mitt bekvämlighetsområde och ner i den djupa änden genom att komma som gäst till Juurilla-klubbens band. Jag upplever det dock som min uppgift att hämta fram mindre känd finländsk rootsmusik av olika upphovsmän, kanske även av mig själv. Låt oss alltså göra en musikalisk tidsresa till sånger, varav många är sådana som man inte vet att man kan önska sig.”</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Start your week with some catchy tunes! In this spring's At the Roots Club series, guest musician Arto Pajukallio takes the stage at the café.</p><p>Arto Pajukallio has mainly worked as a journalist but has had a second career as a musician with Freud Marx Engels & Jung, among others.</p><p>“I’m not a lead singer or guitarist, and I’m jumping right into the deep end of my discomfort zone by joining the At the Roots Club band as their guest. But I feel like it’s totally my duty to showcase lesser-known Finnish roots music by different artists, maybe even myself. So let’s take a time-travelling musical journey through some songs that many of us don’t even know to request.”</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "name": { "fi": "Juurilla: Arto Pajukallio – Maksuttomat maanantait", "sv": "Vid rötterna: Arto Pajukallio – Kostnadsfria måndagar", "en": "At the Roots: Arto Pajukallio – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65018/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65416", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156102, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:14:53.069743Z", "last_modified_time": "2025-01-17T09:14:53.069760Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764722.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156102/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:14:53.027951Z", "last_modified_time": "2025-01-17T09:14:53.151805Z", "date_published": null, "start_time": "2025-03-15T08:00:00Z", "end_time": "2025-03-15T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule ostoksille tai varaa oma myyntipöytä!", "sv": "Kom och handla eller reservera ett eget bord!", "en": "Come shop or book your own sales table!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Kannelmaki_Lastenvaate_ja_-tarvikekirppis", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Gamlas_Loppis_for_barnklader_och_barnutrustning", "en": "http://www.kanneltalo.fi/en/events/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Kannelmaki_Flea_market_for_children_s_clothing_and_equipment" }, "description": { "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä!</p><p>Kirppis järjestetään Kanneltalon aulassa.</p><p>Pöydän hinta yhdistyksen jäseniltä 7 €, muilta 10 €.</p><p>Pöytävaraukset: https://kannelmaki.mll.fi/kirpputori/</p><p>Vapaa pääsy</p>", "sv": "<p>Kom och handla eller reservera ett eget bord!</p><p>Loppmarknaden ordnas i Gamlasgårdens lobby.<br>Ett bord kostar 7 € för föreningens medlemmar, 10 € för andra.</p><p>Bordsbokningar: https://kannelmaki.mll.fi/kirpputori/</p>", "en": "<p>Come shop or book your own sales table!</p><p>The flea market is held in the lobby of Kanneltalo.<br>Tables are priced at €7 for members, €10 for others.</p><p>Table reservations: https://kannelmaki.mll.fi/kirpputori/</p>" }, "name": { "fi": "MLL Kannelmäki: Lastenvaate ja -tarvikekirppis", "sv": "MLL Gamlas: Loppis för barnkläder och barnutrustning", "en": "MLL Kannelmäki: Flea market for children’s clothing and equipment" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65416/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64913", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431042/", "sv": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431042/", "en": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431042/" }, "description": null, "price": { "fi": "29,90 € / 24,80 €", "sv": "29,90 € / 24,80 €", "en": "29,90 € / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153358, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T12:14:42.633981Z", "last_modified_time": "2024-12-10T12:14:42.634003Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761632.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153358/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T12:14:42.608019Z", "last_modified_time": "2025-01-17T09:14:47.910178Z", "date_published": null, "start_time": "2025-02-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Stella Polariksen taitavat improvisoijat luovat ennennäkemättömän ja ainutlaatuisen musikaalin yleisön silmien edessä!", "sv": "Stella Polaris skickliga improvisatörer skapar en originell musikal utan like framför ögonen på publiken!", "en": "The talented improvisers of Stella Polaris create unprecedented and unique musicals right in front of their audience!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9B337B5F096F1FC8C6CED7A783D358B2/Stella_Polaris_Prima_vista_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9B337B5F096F1FC8C6CED7A783D358B2/Stella_Polaris_Prima_vista_", "en": "http://www.kanneltalo.fi/en/events/event/9B337B5F096F1FC8C6CED7A783D358B2/Stella_Polaris_Prima_vista_" }, "description": { "fi": "<p>Stella Polariksen taitavat improvisoijat luovat ennennäkemättömän ja ainutlaatuisen musikaalin yleisön silmien edessä!</p><p>Esitykset ovat täynnä hauskoja hahmoja, upeita tanssinumeroita sekä lauluja ja tarinoita, joiden aiheina vilisee elämän koko kirjo.<br> <br>Jokainen musikaali-ilta on ensi-ilta, joka syntyy yhdessä yleisön kanssa, ja joka ei tule koskaan enää toistumaan täsmälleen samanlaisena.<br> <br>Tule luomaan kanssamme uusi musikaalihitti — vain 6000 kilometrin päässä Broadwaysta!</p><p>Kesto: 2 tuntia, sisältäen väliajan.<br>Ikäsuositus: 13+</p><p><b>Työryhmä</b><br>Näyttelijät: Sari Siikander, Tiina Pirhonen, Ushma Olava, Elina Stirkkinen<br>Muusikot: Hannu Risku ja Topi Korhonen<br>Valot: Jyri Suominen</p>", "sv": "<p>Stella Polaris skickliga improvisatörer skapar en originell musikal utan like framför ögonen på publiken!</p><p>Föreställningarna är fulla av skojiga figurer, fantastiska dansnummer och sånger och berättelser, vars ämnen vimlar av livet i all dess brokiga mångfald.<br> <br>Varje musikalkväll är en premiär, som skapas i samarbete med publiken, och som aldrig mer kommer att upprepas i precis samma form.<br> <br>Kom och skapa en ny musikalhit med oss – bara 6 000 kilometer från Broadway!</p><p>I rollerna<br>De som uppträder varierar mellan föreställningarna.</p><p>Längd: 2 timmar, inklusive en paus.<br>Åldersrekommendation: 13+</p><p>I rollerna Sari Siikander, Tiina Pirhonen, Ushma Olava, Elina Stirkkinen<br>Musiker: Hannu Risku ja Topi Korhonen<br>Ljusdesign: Jyri Suominen</p>", "en": "<p>The talented improvisers of Stella Polaris create unprecedented and unique musicals right in front of their audience!</p><p>The performances are full of funny characters, fantastic dance numbers, songs and stories about the full spectrum of life.<br> <br>Every night of this musical is a premiere, created together with the audience, and will never be exactly the same again.<br> <br>Join us to create a new hit musical – just 6000 kilometres away from Broadway!</p><p>Performers<br>The performers change between shows.</p><p>Duration: 2 hours, including an intermission.<br>Age recommendation: 13+</p><p>Performers Sari Siikander, Tiina Pirhonen, Ushma Olava, Elina Stirkkinen<br>Musicians: Hannu Risku ja Topi Korhonen<br>Lighting design: Jyri Suominen</p>" }, "name": { "fi": "Stella Polaris: Prima vista – improvisoitu musikaaliesitys", "sv": "Stella Polaris: Prima vista – improviserad musikalföreställning", "en": "Stella Polaris: Prima vista – an improvised musical performance" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64913/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64912", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/event/stella-polaris-kanneltalo-kanneltalo-19431041/", "sv": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431041/", "en": "https://www.lippu.fi/event/stella-polaris-kanneltalo-kanneltalo-19431041/" }, "description": null, "price": { "fi": "16,30 €", "sv": "16,30 €", "en": "16,30 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T12:14:42.415717Z", "last_modified_time": "2024-12-10T12:14:42.415736Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761631.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153357/?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": "2024-12-10T12:14:42.388539Z", "last_modified_time": "2025-01-17T09:14:47.711068Z", "date_published": null, "start_time": "2025-02-15T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.", "sv": "I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.", "en": "In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7585ADE4D2217C939E079774307B8D10/Stella_Polaris_Maaginen_matka_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7585ADE4D2217C939E079774307B8D10/Stella_Polaris_En_magisk_resa", "en": "http://www.kanneltalo.fi/en/events/event/7585ADE4D2217C939E079774307B8D10/Stella_Polaris_A_magical_journey" }, "description": { "fi": "<p>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.</p><p>Improvisoidussa näytelmässä ei ole käsikirjoitusta, vaan näyttelijät, muusikko ja valosuunnittelija improvisoivat kaiken lapsilta saatujen ehdotusten pohjalta. Tulkaa viihtymään kanssamme ja ihmettelemään, kuinka lukuisat roolihahmot, laulut, tarinat ja lopulta kokonainen näytelmä syntyy yleisön silmien edessä. Taitavat improvisoijat venyvät mitä yllätyksellisimpiin tilanteisiin ja varmaa on, ettei naurun pyrskähdyksiltä ja pähkähulluilta käänteiltä vältytä.</p><p>Kesto: noin 45 min.<br>Ikäsuositus: 6+</p><p><b>Työryhmä:</b><br>Näyttelijät: Mikael Rejström, Teijo Eloranta, Antti Laukkarinen<br>Muusikko: Iiro Ollila<br>Valot: Jyri Suominen</p>", "sv": "<p>I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.</p><p>Det finns inget manus i föreställningen, utan skådespelarna, musikern och ljusdesignern improviserar allt utgående från förslag som de får av barnen. Kom och trivs med oss och förundras över hur talrika rollfigurer, låtar, berättelser och till slut ett helt skådespel uppstår framför publikens ögon. De skickliga improvisatörerna klarar av de mest överraskande situationerna, och det är säkert att vi får skratta högt och se vettlösa vändningar.</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 6+</p><p><b>Arbetsgrup:</b><br>I rollerna: Mikael Rejström, Teijo Eloranta, Antti Laukkarinen<br>musiker: Iiro Ollila<br>ljusdesign: Jyri Suominen</p>", "en": "<p>In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are.</p><p>The improvised performance has no script: the actors, musician and lighting designer improvise everything based on suggestions from the children. Come have fun with us and witness how numerous roles, songs, stories and, ultimately, the entire play are created right in front of the audience. The skilled improvisers can adapt to the most surprising situations, and what’s certain is there will be no shortage of laughs and crazy twists.</p><p>Duration: approx. 45 min<br>Age recommendation: 6+</p><p>Performers Mikael Rejström, Teijo Eloranta, Antti Laukkarinen<br>Musician: Iiro Ollila<br>Lighting design: Jyri Suominen</p>" }, "name": { "fi": "Stella Polaris: Maaginen matka – koko perheen improvisoitu seikkailu", "sv": "Stella Polaris: En magisk resa – improviserat äventyr för hela familjen", "en": "Stella Polaris: A magical journey – an improvised adventure for the whole family" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64912/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64593", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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: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/19161234", "en": "https://www.lippu.fi/event/19161234" }, "description": null, "price": { "fi": "38 €", "en": "38 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152603, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T09:15:14.983859Z", "last_modified_time": "2024-09-25T09:15:14.983875Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758277.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152603/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T09:15:14.922929Z", "last_modified_time": "2025-01-16T15:15:16.506261Z", "date_published": null, "start_time": "2025-01-23T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Italialaisartisti Alessandro Cortini Suomeen tammikuussa" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7A03A9606B4F82116977488EC27C7D07/Alessandro_Cortini_IT_", "en": "http://www.savoyteatteri.fi/en/events/event/7A03A9606B4F82116977488EC27C7D07/Alessandro_Cortini_IT_" }, "description": { "fi": "<p>Italialaisartisti Alessandro Cortini Suomeen tammikuussa</p><p>Elektronisen musiikin edelläkävijä Alessandro Cortini saapuu Suomeen ensi talvena. Arvostettu säveltäjä-tuottaja konsertoi Helsingin Savoy-teatterissa torstaina 23. tammikuuta. <br> <br>Elokuvallisen ja tummasävyisen ambientin värittämällä musiikillaan laajaa kansainvälistä suosiota nauttivan Alessandro Cortini on yli vuosikymmenen kestäneen uransa aikana julkaissut kahdeksan sooloalbumia. Viimeisin studioalbumi, vuonna 2021 ilmestynyt ”SCURO CHIARO” keräsi ylistäviä arvioita yllättävästä ja samalla hypnoottiseksi luonnehditusta soundimaailmastaan. Tuottelias artisti on tehnyt vuosien saatossa yhteistyötä mm. Depeche Moden, Mogwain, Lawrence Englishin ja Ladytronin kanssa ja hänen musiikkiaan on kuultu muun muassa huippusuositussa tv-sarjassa The Bear lukuisten muiden sarjojen, dokumenttien ja elokuvien sekä pelien lisäksi. Ahkerasti kautta maailman konsertoivan Cortinin säveltaidetta on nautittu myös Alexander McQueenin, Diorin ja Fendin muotinäytöksissä. Cortinin kymmenes studioalbumi ”NATI INFINITI” ilmestyy 4. lokakuuta Mute-levymerkillä.<br> <br>Illan aikataulu:<br>18:30–19:10 Meriheini Luoto<br>19:10–19:30 Väliaika<br>19:30–20:15 Alessandro Cortini</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>https://cortini.bandcamp.com/<br>https://open.spotify.com/artist/6cGVZq9WhCCRkTnn4cJYOg</p>", "en": "<p>Alessandro Cortini is an Italian talent whose solo instrumental production consists of dark ambient and smoky rhythmic compositions, blending hypnotic melodies. Best known as a longtime member of Nine Inch Nails, Cortini has dabbled in various musical realms, but recently, the composer-producer has been exploring cinematic synth music.</p><p>Evening schedule:<br>18:30-19:10 Meriheini Luoto<br>19:10-19:30 Intermission<br>19:30-20:15 Alessandro Cortini</p>" }, "name": { "fi": "Alessandro Cortini (IT) – + Meriheini Luoto", "en": "Alessandro Cortini (IT) – + Meriheini Luoto" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Fullsteam Agency", "en": "Fullsteam Agency" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64593/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }