Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=303
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=304", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=302" }, "data": [ { "id": "kulke:65172", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153236, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T16:14:51.648474Z", "last_modified_time": "2024-12-03T16:14:51.648491Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759601.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153236/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T16:14:51.608331Z", "last_modified_time": "2025-01-17T15:15:23.831373Z", "date_published": null, "start_time": "2025-01-22T14:00:00Z", "end_time": "2025-01-22T16: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, "provider_contact_info": null, "short_description": { "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.", "sv": "Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.", "en": "Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8D1CD2C5B5567A9625B622F1008C045B/Luova_hetki_-_Avoin_taidepaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8D1CD2C5B5567A9625B622F1008C045B/Kreativ_stund_oppen_konstworkshop", "en": "http://www.vuotalo.fi/en/events/event/8D1CD2C5B5567A9625B622F1008C045B/Creative_Moment_Open_Art_Workshop" }, "location_extra_info": null, "name": { "fi": "Luova hetki - Avoin taidepaja – Ristipistot", "sv": "Kreativ stund – öppen konstworkshop – Korsstygn", "en": "Creative Moment – Open Art Workshop – Cross-stitches" }, "description": { "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme eriteemaisia taidepajoja kerran kuussa Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille.</p><p><b>ke 22.01.2025 klo 16–18 Ristipistot</b><br>Tule kokeilemaan lähinäköäsi kirjomalla ristipistoja.<br>Alle kouluikäinen lapsi saa osallistua aikuisen kanssa. Ei sovi alle 4-vuotiaille.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko.<br>Kieli: suomi, englanti, ranska<br>Taidepajat ovat maksuttomia.</p>", "sv": "<p>Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.</p><p><b>Korsstygn</b><br>Kom och testa närseendet genom att brodera korsstygn.<br>Barn under skolåldern får delta i sällskap med en vuxen. Lämpar sig inte för barn under 4 år.</p><p>Verkstäderna leds av Chloé Mahy-Hulkko.<br>Språk: finska, engelska, franska<br>Konstverkstäderna är avgiftsfria.</p>", "en": "<p>Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship.</p><p><b>Cross-stitches</b><br>Come and test your near vision by embroidering cross-stitches.<br>A child under school age may participate with an adult. Not suitable for children under 4 years of age.</p><p>The workshops are led by Chloé Mahy-Hulkko.<br>Language: Finnish, English, French<br>Art workshops are free of charge.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65172/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65470", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156398, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T14:14:56.171528Z", "last_modified_time": "2025-01-17T14:14:56.171546Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760892.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156398/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T14:14:56.133409Z", "last_modified_time": "2025-01-17T14:14:56.256295Z", "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, "provider_contact_info": null, "short_description": { "fi": "Linda Ilves on säveltäjä, muusikko ja tanssija, joka asuu Helsingissä, Suomessa.", "sv": "Linda Ilves är kompositör, musiker och dansare och bosatt i Helsingfors i Finland.", "en": "Linda Ilves is a composer, musician and dancer based in Helsinki, Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F0BE6422E02E40EE6FEBC604497CEBAC/HOW_Radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/F0BE6422E02E40EE6FEBC604497CEBAC/HOW_Radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/F0BE6422E02E40EE6FEBC604497CEBAC/HOW_Radio_Global_Club_Nights" }, "location_extra_info": null, "name": { "fi": "HOW Radio: Global Club Nights – Linda Ilves", "sv": "HOW Radio: Global Club Nights – Linda Ilves", "en": "HOW Radio: Global Club Nights – Linda Ilves" }, "description": { "fi": "<p>Linda Ilves on säveltäjä, muusikko ja tanssija, joka asuu Helsingissä, Suomessa.</p><p>Hänen genrerajoja rikkova musiikkinsa ja taiteensa ovat löytäneet tiensä monille näyttämöille eri projektien kautta niin Suomessa kuin ulkomaillakin. Laulajana Linda on erittäin monipuolinen: hän on esiintynyt Kansallisteatterin suurella näyttämöllä, kiertänyt Eurooppaa Folk Hop -yhtyeen laulajana ja toiminut taustalaulajana Tukholman Globen-areenalla Euroviisuissa. Hänen ilmaisunsa kattaa tyylillisesti big band -jazzista ja modernista R&B:stä indie rockiin ja poppiin, ja hän on aina utelias löytämään uusia tapoja ilmaista itseään äänen kautta.</p><p>Linda tunnetaan myös ainutlaatuisena säveltäjänä: hänen musiikkinsa on aina elokuvallista ja ammentaa inspiraatiota esimerkiksi Radioheadilta, Ólafur Arnaldsilta, Lianne La Havasilta ja Danny Elfmanilta. Olipa kyse tanssiteoksen musiikin tekemisestä tansanialaista festivaalia varten, elokuvan alkuperäismusiikin säveltämisestä Venetsian elokuvajuhlien ensi-iltaan tai omien kappaleiden esittämisestä suorassa lähetyksessä kansallisella televisiokanavalla, Linda löytää aina tavan käyttää ääntään osana kokonaisuutta. Tämä antaa esityksille oman identiteettinsä ja henkilökohtaisen vivahteensa.</p><p>Ilveksellä on myös tausta katutanssityyleissä, kuten House ja Hip hop, ja hän on esiintynyt ja opettanut näitä tyylejä Suomessa ja ulkomailla yli 15 vuoden ajan. Liike ja tanssi ovat aina olleet Lindalle inspiraation ja motivaation lähde, tapa kokea ja jakaa tarinoita koko kehon avulla.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: www.helsinkiopenwaves.com</p>", "sv": "<p>Linda Ilves är kompositör, musiker och dansare och bosatt i Helsingfors i Finland.</p><p>Hennes genreöverskridande musik och konst har hittat sin väg till många scener via olika projekt i Finland och utomlands. Som sångerska är Linda mycket mångsidig: hon har uppträtt på Kansallisteatteris stora scen, turnerat i Europa som sångerska i ett Folk Hop-band och sjungit bakgrundssång i Globen i Stockholm under Eurovisionen. Hennes uttryck sträcker sig stilistiskt från bigband-jazz och modern R&B till indierock och pop, och hon är alltid nyfiken på att hitta nya sätt att uttrycka sig genom ljud.</p><p>Linda är också känd som en unik kompositör: hennes musik är alltid filmatisk och hämtar inspiration exemelvis från Radiohead, Ólafur Arnalds, Lianne La Havas och Danny Elfman. Oavsett om det handlar om att komponera musik till ett dansverk för en festival i Tanzania, komponera originalmusik till en filmpremiär på Venedigs filmfestival eller framföra sina egna låtar live på en nationell tv-kanal, hittar Linda alltid ett sätt att använda sin röst som en del av helheten. Detta ger föreställningarna en egen identitet och en personlig prägel.</p><p>Ilves har också en bakgrund inom streetdance-stilar, såsom house och hiphop, och hon har uppträtt och undervisat i dessa stilar i Finland och utomlands i över 15 år. Rörelse och dans har alltid varit en källa till inspiration och motivation för Linda, ett sätt att uppleva och dela berättelser med hjälp av hela kroppen.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på www.helsinkiopenwaves.com</p>", "en": "<p>Linda Ilves is a composer, musician and dancer based in Helsinki, Finland.</p><p>Her cross-genre music and artistry has been performed and portrayed on various stages in numerous projects both around Finland and abroad. As a singer Linda is very versatile and has performed as a singer in the National Theatre’s big stage, touring around Europe with a vocal Folk Hop band and worked as a backing vocalist on Globen’s stage in Stockholm for the Eurovision Song Contest. As a vocalist her stylistic range reaches all from big band jazz and modern r n’ b to indie rock and pop, always curious to explore different ways to express herself through voice.</p><p>Linda is also known for being a unique composer: her music always has a cinematic flare, inspired by artists/composers such as Radiohead, Olarfur Arnalds, Lianne La Havas and Danny Elfman.<br>Whether making and producing music for a dance piece for a festival in Tanzania, composing the original score for a movie premiere at the Venice film festival or performing her music on a live-stream for national television, she always finds a way to include her voice as a part of the whole. It gives the performance an identity of its own, a personal touch. Ilves also has a background in the street dances styles House and Hip hop and has been performing and teaching in both Finland and abroad for over 15 years. Movement and dance has always been a source of motivation and inspiration for Linda's artistic expression, a way for her to experience and share stories with and through the whole body.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: www.helsinkiopenwaves.com</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65470/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65119", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19597162/", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19597162/", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19597162/" }, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153161, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:18.159213Z", "last_modified_time": "2024-12-03T14:17:18.159236Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760404.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153161/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-12-03T14:17:18.131805Z", "last_modified_time": "2025-01-17T14:14:51.484635Z", "date_published": null, "start_time": "2025-01-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Suomalaisen Mikko Mäkelän (A Moment in the Reeds) käsikirjoittama ja ohjaama intiimi draamaelokuva.", "sv": "En intim dramafilm skriven och regisserad av den finländske regissören Mikko Mäkelä (A Moment in the Reeds).", "en": "Max (Ruaridh Mollica) is a 25-year-old aspiring novelist, living in London and paying his dues working at a literary magazine." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/855AF83980D4FD1CE6D76D958A01FCD1/KINO_CAISA_Sebastian_16_", "sv": "http://www.caisa.fi/sv/evenemang/event/855AF83980D4FD1CE6D76D958A01FCD1/KINO_CAISA_Sebastian_16_", "en": "http://www.caisa.fi/en/events/event/855AF83980D4FD1CE6D76D958A01FCD1/KINO_CAISA_Sebastian_16_" }, "location_extra_info": null, "name": { "fi": "KINO CAISA: Sebastian (16)", "sv": "KINO CAISA: Sebastian (16)", "en": "KINO CAISA: Sebastian (16)" }, "description": { "fi": "<p>Suomalaisen Mikko Mäkelän (A Moment in the Reeds) käsikirjoittama ja ohjaama intiimi draamaelokuva.</p><p>Sebastian sai maailmanensi-iltansa Sundancen elokuvafestivaalin kilpasarjassa tammikuussa 2024. Pääosan intensiivisen roolityön tekee Ruaridh Mollica. Muissa rooleissa nähdään muun muassa Jonathan Hyde, Hiftu Quasem ja Ingvar Sigurdsson.</p><p>Max (Ruaridh Mollica) on kunnianhimoinen, nuori kirjailijanalku, joka pyrkii Lontoon kulttuuripiireihin ja etsii öisin inspiraatiota esikoisromaaniinsa maksettuna seuralaisena, salanimellä Sebastian. Intohimoiset kohtaamiset miesten kanssa tarjoavat kirjallista aineistoa menestyksennälkäiselle Maxille, mutta kun kaksoiselämän rajat uhkaavat ylittyä, Maxin on pohdittava omaa identiteettiään. Mitä jos Sebastian onkin totta?</p><p>Ohjaus: Mikko Mäkelä<br>Kesto: 110 minuuttia<br>Kielet: englanti ja ranska<br>Tekstitys: englanti<br>Ikäraja: 16</p><p><b>KINO CAISA</b> <br>Kino Caisa on Caisan oma leffateatteri! Valkokankaallamme nähdään huolellisesti valikoituja elokuvia, jotka tarkastelevat ihmisyyden moninaisuutta eri näkökulmista.</p><p>Elokuvat kertovat tarinoita ihmisistä, joita ei tavallisesti nähdä valokeilassa – tai niiden tekijät kuuluvat itsekin johonkin vähemmistöön. Edustettuina ovat niin seksuaali- ja sukupuolivähemmistöt, vammaiset, neuroepätyypilliset ihmiset kuin etniset vähemmistötkin.</p><p>Inkluusion ja moninaisuuden ohella Kino Caisan leffoja yhdistää taiteellinen kunnianhimo ja korkeatasoisuus. Valkokankaan täyttävät tarinat tempaavat mukaansa, herättävät ajatuksia, koskettavat ja lisäävät empatiaa ja ymmärrystä kanssaihmisiä kohtaan.</p><p>Elokuvien kieli on englanti, joko puhuttuna tai tekstimuodossa.</p><p>Tämä tapahtuma on maksuton 16–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! Ohjeet maksuttoman lipun lunastamiseen löydät tältä verkkosivulta: https://nuorten.hel.fi/yleinen/valtuusto150/</p>", "sv": "<p>En intim dramafilm skriven och regisserad av den finländske regissören Mikko Mäkelä (A Moment in the Reeds).</p><p>Sebastian hade världspremiär på filmfestivalen Sundance i januari 2024. Ruaridh Mollica gör största delen av det intensiva rollarbetet. I de andra rollerna ses bland annat Jonathan Hyde, Hiftu Quasem och Ingvar Sigurdsson.</p><p>Max (Ruaridh Mollica) är en ambitiös ung författare som söker tillträde till Londons kulturkretsar. Han tillbringar sina nätter med att söka inspiration till sin debutroman som betald följeslagare under pseudonymen Sebastian. Passionerade möten med män ger den framgångshungrige Max litterärt material, men när dubbellivets gränser hotar att överskridas tvingas Max fundera över sin egen identitet. Tänk om Sebastian är verklig?</p><p>Genre: Drama <br>Regi: Mikko Mäkelä<br>Längd: 110’<br>Språk: engelska och finska<br>Textning: engelska<br>Åldersgräns: 16</p><p><b>Kino Caisa</b> <br>Kino Caisa är Caisas egen filmteater! På vår vita duk visas noggrant utvalda filmer som utforskar mänsklighetens mångfald ur olika perspektiv.</p><p>Filmerna berättar historier om människor som vanligtvis inte står i rampljuset – eller så tillhör filmernas skapare själva en minoritet. Representerade är såväl sexuella och könsminoriteter, personer med funktionsnedsättning, neurodivergenta individer som etniska minoriteter.</p><p>Förutom inkludering och mångfald förenas Kino Caisas filmer av konstnärlig ambition och hög kvalitet. Berättelserna som fyller den vita duken är fängslande, tankeväckande, rörande och främjar empati och förståelse för medmänniskor.</p><p>Språket i filmerna är engelska, antingen i tal eller text.</p>", "en": "<p>Max (Ruaridh Mollica) is a 25-year-old aspiring novelist, living in London and paying his dues working at a literary magazine.</p><p>Frustrated by his own ambitions and the pressures to succeed, Max begins moonlighting as a sex worker with the pseudonym Sebastian, secretly meeting men via an escorting platform and using his experiences to fuel his stories.</p><p>What begins as a few furtive meetings soon becomes a hidden nocturnal life, and the debut novel that he has been longing to write finally seems within reac Finding himself more comfortable as Sebastian than expected, yet determined to keep his exploits a secret, Max increasingly struggles to remain in control of a delicately balanced double-life.</p><p>As he confronts conflicting feelings of ecstasy, shame, a exhilarating liberation, Max has to reckon with whether Sebastian is merely a writer’s tool to achieve first-hand authenticity – or whether something more is at stake.</p><p>Director: Mikko Mäkelä<br>Duration: 110 minuuttia<br>Language: English, French<br>Subtitles: English<br>Age limit: 16</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65119/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65118", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19597162/", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19597162/", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19597162/" }, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153160, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:18.013121Z", "last_modified_time": "2024-12-03T14:17:18.013138Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760403.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153160/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-12-03T14:17:17.989281Z", "last_modified_time": "2025-01-17T14:14:51.333240Z", "date_published": null, "start_time": "2025-01-21T12: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, "provider_contact_info": null, "short_description": { "fi": "Suomalaisen Mikko Mäkelän (A Moment in the Reeds) käsikirjoittama ja ohjaama intiimi draamaelokuva.", "sv": "En intim dramafilm skriven och regisserad av den finländske regissören Mikko Mäkelä (A Moment in the Reeds).", "en": "Max (Ruaridh Mollica) is a 25-year-old aspiring novelist, living in London and paying his dues working at a literary magazine." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9F56BBB97F20A6489C194AFAF537BD72/KINO_CAISA_Sebastian_16_", "sv": "http://www.caisa.fi/sv/evenemang/event/9F56BBB97F20A6489C194AFAF537BD72/KINO_CAISA_Sebastian_16_", "en": "http://www.caisa.fi/en/events/event/9F56BBB97F20A6489C194AFAF537BD72/KINO_CAISA_Sebastian_16_" }, "location_extra_info": null, "name": { "fi": "KINO CAISA: Sebastian (16)", "sv": "KINO CAISA: Sebastian (16)", "en": "KINO CAISA: Sebastian (16)" }, "description": { "fi": "<p>Suomalaisen Mikko Mäkelän (A Moment in the Reeds) käsikirjoittama ja ohjaama intiimi draamaelokuva.</p><p>Sebastian sai maailmanensi-iltansa Sundancen elokuvafestivaalin kilpasarjassa tammikuussa 2024. Pääosan intensiivisen roolityön tekee Ruaridh Mollica. Muissa rooleissa nähdään muun muassa Jonathan Hyde, Hiftu Quasem ja Ingvar Sigurdsson.</p><p>Max (Ruaridh Mollica) on kunnianhimoinen, nuori kirjailijanalku, joka pyrkii Lontoon kulttuuripiireihin ja etsii öisin inspiraatiota esikoisromaaniinsa maksettuna seuralaisena, salanimellä Sebastian. Intohimoiset kohtaamiset miesten kanssa tarjoavat kirjallista aineistoa menestyksennälkäiselle Maxille, mutta kun kaksoiselämän rajat uhkaavat ylittyä, Maxin on pohdittava omaa identiteettiään. Mitä jos Sebastian onkin totta?</p><p>Ohjaus: Mikko Mäkelä<br>Kesto: 110 minuuttia<br>Kielet: englanti ja ranska<br>Tekstitys: englanti<br>Ikäraja: 16</p><p><b>KINO CAISA</b> <br>Kino Caisa on Caisan oma leffateatteri! Valkokankaallamme nähdään huolellisesti valikoituja elokuvia, jotka tarkastelevat ihmisyyden moninaisuutta eri näkökulmista.</p><p>Elokuvat kertovat tarinoita ihmisistä, joita ei tavallisesti nähdä valokeilassa – tai niiden tekijät kuuluvat itsekin johonkin vähemmistöön. Edustettuina ovat niin seksuaali- ja sukupuolivähemmistöt, vammaiset, neuroepätyypilliset ihmiset kuin etniset vähemmistötkin.</p><p>Inkluusion ja moninaisuuden ohella Kino Caisan leffoja yhdistää taiteellinen kunnianhimo ja korkeatasoisuus. Valkokankaan täyttävät tarinat tempaavat mukaansa, herättävät ajatuksia, koskettavat ja lisäävät empatiaa ja ymmärrystä kanssaihmisiä kohtaan.</p><p>Elokuvien kieli on englanti, joko puhuttuna tai tekstimuodossa.</p><p>Tämä tapahtuma on maksuton 16–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! Ohjeet maksuttoman lipun lunastamiseen löydät tältä verkkosivulta: https://nuorten.hel.fi/yleinen/valtuusto150/</p>", "sv": "<p>En intim dramafilm skriven och regisserad av den finländske regissören Mikko Mäkelä (A Moment in the Reeds).</p><p>Sebastian hade världspremiär på filmfestivalen Sundance i januari 2024. Ruaridh Mollica gör största delen av det intensiva rollarbetet. I de andra rollerna ses bland annat Jonathan Hyde, Hiftu Quasem och Ingvar Sigurdsson.</p><p>Max (Ruaridh Mollica) är en ambitiös ung författare som söker tillträde till Londons kulturkretsar. Han tillbringar sina nätter med att söka inspiration till sin debutroman som betald följeslagare under pseudonymen Sebastian. Passionerade möten med män ger den framgångshungrige Max litterärt material, men när dubbellivets gränser hotar att överskridas tvingas Max fundera över sin egen identitet. Tänk om Sebastian är verklig?</p><p>Genre: Drama <br>Regi: Mikko Mäkelä<br>Längd: 110’<br>Språk: engelska och finska<br>Textning: engelska<br>Åldersgräns: 16</p><p><b>Kino Caisa</b> <br>Kino Caisa är Caisas egen filmteater! På vår vita duk visas noggrant utvalda filmer som utforskar mänsklighetens mångfald ur olika perspektiv.</p><p>Filmerna berättar historier om människor som vanligtvis inte står i rampljuset – eller så tillhör filmernas skapare själva en minoritet. Representerade är såväl sexuella och könsminoriteter, personer med funktionsnedsättning, neurodivergenta individer som etniska minoriteter.</p><p>Förutom inkludering och mångfald förenas Kino Caisas filmer av konstnärlig ambition och hög kvalitet. Berättelserna som fyller den vita duken är fängslande, tankeväckande, rörande och främjar empati och förståelse för medmänniskor.</p><p>Språket i filmerna är engelska, antingen i tal eller text.</p>", "en": "<p>Max (Ruaridh Mollica) is a 25-year-old aspiring novelist, living in London and paying his dues working at a literary magazine.</p><p>Frustrated by his own ambitions and the pressures to succeed, Max begins moonlighting as a sex worker with the pseudonym Sebastian, secretly meeting men via an escorting platform and using his experiences to fuel his stories.</p><p>What begins as a few furtive meetings soon becomes a hidden nocturnal life, and the debut novel that he has been longing to write finally seems within reac Finding himself more comfortable as Sebastian than expected, yet determined to keep his exploits a secret, Max increasingly struggles to remain in control of a delicately balanced double-life.</p><p>As he confronts conflicting feelings of ecstasy, shame, a exhilarating liberation, Max has to reckon with whether Sebastian is merely a writer’s tool to achieve first-hand authenticity – or whether something more is at stake.</p><p>Director: Mikko Mäkelä<br>Duration: 110 minuuttia<br>Language: English, French<br>Subtitles: English<br>Age limit: 16</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65118/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64759", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-31T09:15:06.527330Z", "last_modified_time": "2024-10-31T09:15:06.527346Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759988.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-31T09:15:06.486476Z", "last_modified_time": "2025-01-17T14:14:49.094840Z", "date_published": null, "start_time": "2025-01-10", "end_time": "2025-02-01", "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, "provider_contact_info": null, "short_description": { "fi": "Sanna Kärkkäisen maalauksia autisminkirjon henkilön tunnekokemuksista ja ajatuksista arjessa.", "sv": "Sanna Kärkkäinens målningar handlar om de känslomässiga upplevelser och tankar som en person med autismspektrumstörning har i vardagen.", "en": "Sanna Kärkkäinen’s paintings about the everyday emotional experiences and thoughts of a person on the autism spectrum." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5FCAEB20FDE2EF49FA671390418C8DCF/Sanna_Karkkainen_Kohtaamisia", "sv": "http://www.caisa.fi/sv/evenemang/event/5FCAEB20FDE2EF49FA671390418C8DCF/Sanna_Karkkainen_Kohtaamisia_Moten_", "en": "http://www.caisa.fi/en/events/event/5FCAEB20FDE2EF49FA671390418C8DCF/Sanna_Karkkainen_Kohtaamisia_Encounters_" }, "location_extra_info": null, "name": { "fi": "Sanna Kärkkäinen – Kohtaamisia", "sv": "Sanna Kärkkäinen – Kohtaamisia (Möten)", "en": "Sanna Kärkkäinen – Kohtaamisia (Encounters)" }, "description": { "fi": "<p>Sanna Kärkkäisen maalauksia autisminkirjon henkilön tunnekokemuksista ja ajatuksista arjessa.</p><p>Kuinka ihmiset tulisi kohdata oikein? Entä miltä tuntuu, kun jää usein ulkopuolelle ryhmistä ja yhteisöistä niin työelämässä, koulussa, harrastuksissa kuin vapaa-ajallakin?</p><p>Monessa ammatissa toimimiseen kuuluu paljon kontaktien luontia ja verkostoitumista. Autisminkirjon henkilönä jää helposti kaiken tämän ulkopuolelle, mikä vaikeuttaa linkittymistä yhteisöihin. Ryhmien ja yhteisöjen ulkopuolelle jäänti ei rajoitu vain työhön, vaan ulottuu kaikille elämän osa-alueille. Näyttely tuo maalauksen keinoin esiin vähemmistöön kuulumisen haasteita elämän eri kohtaamisissa, keinuen abstraktin ja esittävän maailman välimaastossa.</p><p>Kuvataiteilija Sanna Kärkkäisen näyttelyssä on esillä maalauksia tunnekokemuksista ja ajatuksista autisminkirjon henkilönä elämisestä arjessa.</p><p>Näyttelytilassa on saatavilla kuulosuojaimia aistiärsykkeiden vähentämiseksi.</p>", "sv": "<p>Sanna Kärkkäinens målningar handlar om de känslomässiga upplevelser och tankar som en person med autismspektrumstörning har i vardagen.</p><p>Hur bör människor bemötas på rätt sätt? Hur känns det att ofta uteslutas från grupper och gemenskaper i arbetslivet, skolan, hobbyer och på fritiden?</p><p>I många yrken är skapande av kontakter och nätverkande väldigt närvarande. Som en person med autismspektrumstörning är det lätt att hamna utanför allt detta, vilket gör det svårt att förankras i gemenskaper. Utestängning från grupper och gemenskaper begränsas inte till arbetet, utan sträcker sig till alla delområden i livet. Utställningen använder måleri för att belysa utmaningarna med att tillhöra en minoritet i livets olika möten, och pendlar mellan den abstrakta och den föreställande världen.</p><p>Bildkonstnären Sanna Kärkkäinens utställning består av målningar som handlar om känslomässiga upplevelser och tankar om vardagen för en person med autism.</p><p>Hörselskydd finns tillgängliga i utställningsutrymmet för att minska sensoriska stimuli.</p>", "en": "<p>Sanna Kärkkäinen’s paintings about the everyday emotional experiences and thoughts of a person on the autism spectrum.</p><p>How should we engage with people in the right way? And how does it feel to be frequently excluded from groups and communities at work, at school, in hobbies and during your free time?</p><p>Many professions involve building contacts and networking. As a person on the autism spectrum, you can easily be excluded from all of this, making it difficult to connect with communities. Exclusion from groups and communities is not limited to work, but extends to all areas of life. The exhibition uses paintings to highlight the challenges of belonging to a minority in various life encounters, oscillating between abstract and representational worlds.</p><p>Visual artist Sanna Kärkkäinen’s exhibition features paintings about her emotional experiences and thoughts about her everyday life as a person on the autism spectrum.</p><p>Hearing protection is available in the exhibition space to reduce sensory stimuli.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64759/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23egna", "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:agggfz652q/?format=api" }, { "@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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehju/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490127, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-17T12:49:25.466749Z", "last_modified_time": "2025-01-17T12:49:25.466768Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8f92b7fd-eadf-4451-bc14-7c0867501172.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "pingiskerhon teksti, pingismaila ja lentävä pingispallo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490127/?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-17T12:50:59.238940Z", "last_modified_time": "2025-01-17T12:50:59.238965Z", "date_published": null, "start_time": "2025-05-30T14:00:00Z", "end_time": "2025-05-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 17-18.", "sv": "Pingisklubben för unga träffas fredagar klockan 17-18.\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 5 pm to 6 pm." }, "info_url": null, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 17-18.. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 17-18.</p><p>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe</p><p>from 5 pm to 6 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23egna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23eg3i", "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:agggfz652q/?format=api" }, { "@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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehju/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490127, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-17T12:49:25.466749Z", "last_modified_time": "2025-01-17T12:49:25.466768Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8f92b7fd-eadf-4451-bc14-7c0867501172.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "pingiskerhon teksti, pingismaila ja lentävä pingispallo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490127/?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-17T12:50:59.009200Z", "last_modified_time": "2025-01-17T12:50:59.009228Z", "date_published": null, "start_time": "2025-05-23T14:00:00Z", "end_time": "2025-05-23T15: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, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 17-18.", "sv": "Pingisklubben för unga träffas fredagar klockan 17-18.\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 5 pm to 6 pm." }, "info_url": null, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 17-18.. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 17-18.</p><p>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe</p><p>from 5 pm to 6 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eg3i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ehju", "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:agggfz652q/?format=api" }, { "@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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23egna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eg3i/?format=api" } ], "images": [ { "id": 1490127, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-17T12:49:25.466749Z", "last_modified_time": "2025-01-17T12:49:25.466768Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8f92b7fd-eadf-4451-bc14-7c0867501172.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "pingiskerhon teksti, pingismaila ja lentävä pingispallo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490127/?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-17T12:50:50.136383Z", "last_modified_time": "2025-01-17T12:50:50.136403Z", "date_published": null, "start_time": "2025-01-17T15:00:00Z", "end_time": "2025-05-30T15: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, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 17-18.", "sv": "Pingisklubben för unga träffas fredagar klockan 17-18.\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 5 pm to 6 pm." }, "info_url": null, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 17-18.. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 17-18.</p><p>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe</p><p>from 5 pm to 6 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65028", "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:32/?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:p1278/?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/artist/kanneltalo/musikaalisaevelin-kohti-kevaettae-3769549/", "sv": "https://www.lippu.fi/artist/kanneltalo/musikaalisaevelin-kohti-kevaettae-3769549/", "en": "https://www.lippu.fi/artist/kanneltalo/musikaalisaevelin-kohti-kevaettae-3769549/" }, "price": { "fi": "23,80 €", "sv": "23,80 €", "en": "23,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156230, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T11:14:59.588658Z", "last_modified_time": "2025-01-17T11:14:59.588675Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763536.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T11:14:59.564144Z", "last_modified_time": "2025-01-17T11:14:59.652609Z", "date_published": null, "start_time": "2025-04-12T13: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa musikaalien maailmaan tanssin siivittämänä!", "sv": "Välkommen till musikalens värld med sång och dans!", "en": "Come and enjoy musical tunes with lovely dances from musicals!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/21D34BE1DD8AACDC3AEA31F1A66012E7/Musikaalisavelin_kohti_kevatta_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/21D34BE1DD8AACDC3AEA31F1A66012E7/Musikalens_toner_med_dans_", "en": "http://www.kanneltalo.fi/en/events/event/21D34BE1DD8AACDC3AEA31F1A66012E7/Musical_tunes_with_dances_" }, "location_extra_info": null, "name": { "fi": "Musikaalisävelin kohti kevättä!", "sv": "Musikalens toner med dans!", "en": "Musical tunes with dances!" }, "description": { "fi": "<p>Tervetuloa musikaalien maailmaan tanssin siivittämänä!</p><p>Mukana iki-ihania säveliä musikaaleista Anastasia, Cats, Evita, Maija Poppanen, My Fair Lady, Oopperan kummitus, Secret Garden, Show Boat, Song & Dance ja West Side Story.</p><p>Esiintyjinä Mariia Bertus (laulu), Kalle Virtanen (laulu), Stefanie Tuurna (piano), Tina Tynys (viulu), Milena Törmi (viulu), ja Teuvo Taimioja (kitara). Mukana myös Espoon tanssiopiston tanssijoita.</p><p><b>Ohjelma</b></p><p>Feed the Birds, Mary Poppins <br>Anastasia Waltz, Anastasia <br>I Could Have Danced All Night, My Fair Lady <br>Tonight (Balcony Scene), West Side Story <br>Unexpected Song, Song & Dance <br>Phantom of the Opera Medley <br>Music of the Night, The Phantom of the Opera</p><p>Väliaika 20 min</p><p>Where in The World, The Secret Garden <br>How Could I Ever Know, The Secret Garden <br>Memory, Cats <br>You Are Love, The Show Boat <br>Don’t Cry for Me Argentina, Evita <br>Supercalifragilisticexpialidocious, Mary Poppins</p><p>Konsertin kesto on 90 min, väliaika 20 min. Esitys sopii koko perheelle.</p><p>Valokuvat Tero Turunen ja visuaalinen ilme Mark Hennessey.</p><p>Esityksen järjestää ConAnima® Pro bono productions yhteistyössä Kanneltalon, Espoon tanssiopiston ja muusikkojen kanssa.</p>", "sv": "<p>Välkommen till musikalens värld med sång och dans!</p><p>Vi får höra toner från Anastasia, Cats, Evita, Mary Poppins, My Fair Lady, The Phantom of The Opera, Secret Garden, Show Boat, Song & Dance och West Side Story.</p><p>Artisterna: Mariia Bertus (sång), Kalle Virtanen (sång), Stefanie Tuurna (piano), Tina Tynys (fiol), Milena Törmi (fiol), Teuvo Taimioja (gitarr) och elever från Espoon tanssiopisto.</p><p>Dansprogrammen uppförs av elever från Espoon tanssiopisto.</p><p>Konsertens längd är 90 minuter inkl. 20 minuters paus. Evenemanget passar hela familjen!</p><p>Bilder av Tero Turunen och visuell planering av Mark Hennessey.</p><p>Föreställningen produceras av ConAnima® Pro bono productions i samarbete med Kanneltalo, Espoon tanssiopisto och musiker.</p>", "en": "<p>Come and enjoy musical tunes with lovely dances from musicals!</p><p>Including Anastasia, Cats, Evita, Mary Poppins, My Fair Lady, The Phantom of The Opera, Secret Garden, Show Boat, Song & Dance and West Side Story.</p><p>Artists Mariia Bertus (vocal), Kalle Virtanen (vocals, Stefanie Tuurna (piano), Tina Tynys (violin), Milena Törmi (violin) and Teuvo Taimioja (guitar).</p><p>Dances created and performed by Espoon tanssiopisto.</p><p>The duration of the performance is 90 minutes, including a 20-minute intermission. The event is suitable for the whole family.</p><p>Pictures by Tero Turunen and visual image by Mark Hennessey.</p><p>The performance is organized by ConAnima® Pro bono productions in collaboration with Kanneltalo and as pro bono performers Espoon tanssiopisto and musicians.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65028/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65469", "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:32/?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:p1278/?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/artist/kanneltalo/musikaalisaevelin-kohti-kevaettae-3769549/", "sv": "https://www.lippu.fi/artist/kanneltalo/musikaalisaevelin-kohti-kevaettae-3769549/", "en": "https://www.lippu.fi/artist/kanneltalo/musikaalisaevelin-kohti-kevaettae-3769549/" }, "price": { "fi": "23,80 €", "sv": "23,80 €", "en": "23,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156229, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T11:14:59.319899Z", "last_modified_time": "2025-01-17T11:14:59.319919Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763535.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156229/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T11:14:59.280247Z", "last_modified_time": "2025-01-17T11:14:59.413443Z", "date_published": null, "start_time": "2025-04-12T11: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa musikaalien maailmaan tanssin siivittämänä!", "sv": "Välkommen till musikalens värld med sång och dans!", "en": "Come and enjoy musical tunes with lovely dances from musicals!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/549F97A197AD18EFCC4FE3246BF4FDCF/Musikaalisavelin_kohti_kevatta_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/549F97A197AD18EFCC4FE3246BF4FDCF/Musikalens_toner_med_dans_", "en": "http://www.kanneltalo.fi/en/events/event/549F97A197AD18EFCC4FE3246BF4FDCF/Musical_tunes_with_dances_" }, "location_extra_info": null, "name": { "fi": "Musikaalisävelin kohti kevättä!", "sv": "Musikalens toner med dans!", "en": "Musical tunes with dances!" }, "description": { "fi": "<p>Tervetuloa musikaalien maailmaan tanssin siivittämänä!</p><p>Mukana iki-ihania säveliä musikaaleista Anastasia, Cats, Evita, Maija Poppanen, My Fair Lady, Oopperan kummitus, Secret Garden, Show Boat, Song & Dance ja West Side Story.</p><p>Esiintyjinä Mariia Bertus (laulu), Kalle Virtanen (laulu), Stefanie Tuurna (piano), Tina Tynys (viulu), Milena Törmi (viulu), ja Teuvo Taimioja (kitara). Mukana myös Espoon tanssiopiston tanssijoita.</p><p><b>Ohjelma</b></p><p>Feed the Birds, Mary Poppins <br>Anastasia Waltz, Anastasia <br>I Could Have Danced All Night, My Fair Lady <br>Tonight (Balcony Scene), West Side Story <br>Unexpected Song, Song & Dance <br>Phantom of the Opera Medley <br>Music of the Night, The Phantom of the Opera</p><p>Väliaika 20 min</p><p>Where in The World, The Secret Garden <br>How Could I Ever Know, The Secret Garden <br>Memory, Cats <br>You Are Love, The Show Boat <br>Don’t Cry for Me Argentina, Evita <br>Supercalifragilisticexpialidocious, Mary Poppins</p><p>Konsertin kesto on 90 min, väliaika 20 min. Esitys sopii koko perheelle.</p><p>Valokuvat Tero Turunen ja visuaalinen ilme Mark Hennessey.</p><p>Esityksen järjestää ConAnima® Pro bono productions yhteistyössä Kanneltalon, Espoon tanssiopiston ja muusikkojen kanssa.</p>", "sv": "<p>Välkommen till musikalens värld med sång och dans!</p><p>Vi får höra toner från Anastasia, Cats, Evita, Mary Poppins, My Fair Lady, The Phantom of The Opera, Secret Garden, Show Boat, Song & Dance och West Side Story.</p><p>Artisterna: Mariia Bertus (sång), Kalle Virtanen (sång), Stefanie Tuurna (piano), Tina Tynys (fiol), Milena Törmi (fiol), Teuvo Taimioja (gitarr) och elever från Espoon tanssiopisto.</p><p>Dansprogrammen uppförs av elever från Espoon tanssiopisto.</p><p>Konsertens längd är 90 minuter inkl. 20 minuters paus. Evenemanget passar hela familjen!</p><p>Bilder av Tero Turunen och visuell planering av Mark Hennessey.</p><p>Föreställningen produceras av ConAnima® Pro bono productions i samarbete med Kanneltalo, Espoon tanssiopisto och musiker.</p>", "en": "<p>Come and enjoy musical tunes with lovely dances from musicals!</p><p>Including Anastasia, Cats, Evita, Mary Poppins, My Fair Lady, The Phantom of The Opera, Secret Garden, Show Boat, Song & Dance and West Side Story.</p><p>Artists Mariia Bertus (vocal), Kalle Virtanen (vocals, Stefanie Tuurna (piano), Tina Tynys (violin), Milena Törmi (violin) and Teuvo Taimioja (guitar).</p><p>Dances created and performed by Espoon tanssiopisto.</p><p>The duration of the performance is 90 minutes, including a 20-minute intermission. The event is suitable for the whole family.</p><p>Pictures by Tero Turunen and visual image by Mark Hennessey.</p><p>The performance is organized by ConAnima® Pro bono productions in collaboration with Kanneltalo and as pro bono performers Espoon tanssiopisto and musicians.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65469/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "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/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758977.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "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>" }, "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/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758974.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "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>" }, "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/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758969.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "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>" }, "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/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758965.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Maria (12) – Kino Helios", "sv": "Maria (12) – Kino Helios", "en": "Maria (12) – Kino Helios" }, "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>" }, "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, "price": null, "description": 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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760195.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Yleisön suosikit: Ohjus (12)", "sv": "Publikens favoriter: Missilen (12)", "en": "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>" }, "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" }, "price": null, "description": 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", "name": "asdf", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/30de3280-3514-ef11-9f8a-000d3ab59432", "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, "provider_contact_info": null, "short_description": { "fi": "MKtest 31122024 LE-välilehden kuvauskenttien korjaukset no:2 short description" }, "info_url": null, "location_extra_info": null, "name": { "fi": "MKtest 17012025 LE-täbin kuvauskenttien korjaukset" }, "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>" }, "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/" }, "price": { "fi": "17,80 € (alle 7-vuotiaat ilmaiseksi)", "sv": "17,80 € (alle 7-vuotiaat ilmaiseksi)", "en": "17,80 € (alle 7-vuotiaat ilmaiseksi)" }, "description": null } ], "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", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763533.jpg", "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, "provider_contact_info": 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" }, "location_extra_info": null, "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" }, "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>" }, "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, "price": null, "description": 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", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763664.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Kari Hotakainen – Maksuttomat maanantait", "sv": "Författarbesök: Kari Hotakainen – Kostnadsfria måndagar", "en": "Guest author: Kari Hotakainen – Free Mondays" }, "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>" }, "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/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758960.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Ainahan on huominen (7) – Kino Helios", "sv": "Ainahan on huominen (7) – Kino Helios", "en": "Ainahan on huominen (7) – Kino Helios" }, "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>" }, "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/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "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", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758956.jpg", "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, "provider_contact_info": 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_" }, "location_extra_info": null, "name": { "fi": "Ainahan on huominen (7) – Kino Helios", "sv": "Ainahan on huominen (7) – Kino Helios", "en": "Ainahan on huominen (7) – Kino Helios" }, "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>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65422/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27581, "next": "