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&hide_recurring_children=true&page=209
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=210", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=208" }, "data": [ { "id": "espoo_le:aghvqxedse", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-08T12:43:03.926308Z", "last_modified_time": "2024-05-08T12:43:03.926333Z", "date_published": null, "start_time": "2024-05-16T13:00:00Z", "end_time": "2024-05-16T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten ja nuorten torstaipajat" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Paja" }, "short_description": { "fi": "Lasten ja nuorten pajailtapäivä joka torstai Ison Omenan kirjaston pajassa. " }, "info_url": { "fi": "https://helmet.finna.fi/?lng=fi" }, "description": { "fi": "<p>Lasten ja nuorten pajailtapäivä joka torstai Ison Omenan kirjaston pajassa. </p><p>Pajojen teemat vaihtelevat viikoittain. Tervetuloa mukaan! </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvqxedse/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e3247b1a-b59e-4433-8261-9deee77a2e0c", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Testataan_TPR726413724" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:1588b49a-1d68-4992-8939-4cb3a42663cd/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-08T10:04:54.286746Z", "last_modified_time": "2024-05-08T12:33:36.290895Z", "date_published": "2024-05-07T11:24:21Z", "start_time": "2024-05-09T13:33:00Z", "end_time": "2024-05-09T15:33:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-07T10:00:00+03:00", "enrolment_end_time": "2024-05-08T18:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Testataan TPR" }, "provider_contact_info": null, "provider": { "fi": "Testi" }, "location_extra_info": null, "short_description": { "fi": "Testi" }, "info_url": null, "description": { "fi": "<div><div>Testi</div></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e3247b1a-b59e-4433-8261-9deee77a2e0c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63093", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:58.430297Z", "last_modified_time": "2024-02-16T09:12:58.430315Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738551.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:58.415358Z", "last_modified_time": "2024-05-08T12:12:51.900120Z", "date_published": null, "start_time": "2024-05-19T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pyörällä ajamisen taito – Näytelmä elämänpyörästä", "sv": "Konsten att cykla – En pjäs om livscykeln", "en": "The Art of Riding a Bike – A play about the wheel of life" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C8B8EBF958A0D8AE468CF81648ED6426/Pyoralla_ajamisen_taito", "sv": "http://www.caisa.fi/sv/evenemang/event/C8B8EBF958A0D8AE468CF81648ED6426/Konsten_att_cykla_", "en": "http://www.caisa.fi/en/events/event/C8B8EBF958A0D8AE468CF81648ED6426/The_Art_of_Riding_a_Bike" }, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63092", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10906, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:58.287386Z", "last_modified_time": "2024-02-16T09:12:58.287404Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738549.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10906/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:58.268868Z", "last_modified_time": "2024-05-08T12:12:51.650432Z", "date_published": null, "start_time": "2024-05-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pyörällä ajamisen taito – Näytelmä elämänpyörästä", "sv": "Konsten att cykla – En pjäs om livscykeln", "en": "The Art of Riding a Bike – A play about the wheel of life" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3B7D7A083D14AC054722F5C2BB635B99/Pyoralla_ajamisen_taito", "sv": "http://www.caisa.fi/sv/evenemang/event/3B7D7A083D14AC054722F5C2BB635B99/Konsten_att_cykla_", "en": "http://www.caisa.fi/en/events/event/3B7D7A083D14AC054722F5C2BB635B99/The_Art_of_Riding_a_Bike" }, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63091", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10905, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:58.162275Z", "last_modified_time": "2024-02-16T09:12:58.162296Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738550.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10905/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:58.138724Z", "last_modified_time": "2024-05-08T12:12:51.382161Z", "date_published": null, "start_time": "2024-05-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pyörällä ajamisen taito – Näytelmä elämänpyörästä", "sv": "Konsten att cykla – En pjäs om livscykeln", "en": "The Art of Riding a Bike – A play about the wheel of life" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9FC5961DB5F4869010C34859E67CACDD/Pyoralla_ajamisen_taito", "sv": "http://www.caisa.fi/sv/evenemang/event/9FC5961DB5F4869010C34859E67CACDD/Konsten_att_cykla_", "en": "http://www.caisa.fi/en/events/event/9FC5961DB5F4869010C34859E67CACDD/The_Art_of_Riding_a_Bike" }, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63090", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:57.971546Z", "last_modified_time": "2024-02-16T09:12:57.971567Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738548.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:57.940119Z", "last_modified_time": "2024-05-08T12:12:51.039041Z", "date_published": null, "start_time": "2024-05-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pyörällä ajamisen taito - Ensi-ilta – Näytelmä elämänpyörästä", "sv": "Konsten att cykla - premiär – En pjäs om livscykeln", "en": "The Art of Riding a Bike - premiere – A play about the wheel of life" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4801D5E625AE06B71F8D99141734AC92/Pyoralla_ajamisen_taito_-_Ensi-ilta", "sv": "http://www.caisa.fi/sv/evenemang/event/4801D5E625AE06B71F8D99141734AC92/Konsten_att_cykla_-_premiar", "en": "http://www.caisa.fi/en/events/event/4801D5E625AE06B71F8D99141734AC92/The_Art_of_Riding_a_Bike_-_premiere" }, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br>Lue lisää kulttuurikavereista täältä: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63090/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjhwklecy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-08T11:55:18.850982Z", "last_modified_time": "2024-05-08T11:55:18.851005Z", "date_published": null, "start_time": "2024-05-26T12:00:00Z", "end_time": "2024-05-26T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Intialaisen tanssin konsertti", "sv": "Indisk danskonsert", "en": "Indian dance concert" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Intialaisen tanssin konsertti", "sv": "Indisk danskonsert", "en": "Indian dance concert" }, "info_url": null, "description": { "fi": "<p>Intialaisen tanssin konsertti</p>", "sv": "<p>Indisk danskonsert</p>", "en": "<p>Indian dance concert</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjhwklecy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjhwkleoe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-08T11:35:13.395538Z", "last_modified_time": "2024-05-08T11:35:13.395562Z", "date_published": null, "start_time": "2024-05-20T15:00:00Z", "end_time": "2024-05-20T16:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Espoon perinneseuran kevättapahtuma", "sv": "Vårens evenemang", "en": "Spring event " }, "provider_contact_info": null, "provider": { "fi": "Espoon perinneseura" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Espoon perinneseuran toiminnan teemana vuonna 2024 on Espoon tie sivistyskaupungiksi. ", "sv": "Temat för Esbo hembygdsförenings verksamhet 2024 är Esbos väg mot att bli en kulturstad. Evenemanget är på finska.", "en": "The theme of the Espoo Heritage Society's activities in 2024 is Espoo's road to becoming a city of culture. Event is in Finnish." }, "info_url": null, "description": { "fi": "<p>Espoon perinneseuran toiminnan teemana vuonna 2024 on Espoon tie sivistyskaupungiksi. Järjestämme tapahtuman, jossa esitellään vuoden teema, keskustellaan sivistyksen merkityksestä Espoossa ja kuullaan musiikkia.</p><p>Ohjelma:<br>18.00 Tapahtuman avaus: Esko Uotila, Espoon perinneseuran vuoden teema: Espoon tie sivistyskaupungiksi<br>18.15 Leikarien pelimannimusikkia<br>18.25 Lavalla teemasta keskustelemassa kamarineuvos Sampo Suihko, Leikari-muusikko Reino Harjunkoski ja Tauno Satomaa. Jututtajana Martti Hellström<br>18.50 Leikarien pelimannimusiikkia<br>19.10. Päätös. Yhteenvetoa. Martti Hellström</p><p>Tervetuloa!<br></p>", "sv": "<p>Temat för Esbo hembygdsförenings verksamhet 2024 är Esbos väg mot att bli en kulturstad. Vi ordnar ett evenemang där vi presenterar årets tema, diskuterar utbildningens betydelse i Esbo och lyssnar på musik. Evenemanget är på finska.</p>", "en": "<p>The theme of the Espoo Heritage Society's activities in 2024 is Espoo's road to becoming a city of culture. We will organise an event to present the theme of the year, discuss the importance of education in Espoo and listen to music. Event is in Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjhwkleoe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghvp3ris4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-08T10:15:20.097769Z", "last_modified_time": "2024-05-08T10:15:20.097793Z", "date_published": "2024-05-08T10:30:00Z", "start_time": "2024-05-20T13:00:00Z", "end_time": "2024-05-20T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maailman mehiläispäivä", "sv": "Världsbidagen", "en": "World Bee Day" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Maailman mehiläispäivää vietetään 20.5. Päivä on kunnianosoitus maailman pölyttäjille ja ekosysteemille.", "sv": "Den 20.5 firar vi Världsbidagen. Dagen är en hyllning för alla världens pollengivare och ekosystemet.", "en": "World Bee Day is celebrated on 20 May as a tribute to the world's pollinators and ecosystem." }, "info_url": null, "description": { "fi": "<p>Maailman mehiläispäivää vietetään 20.5. Lippulaivan kirjastossa.<br>Tapahtumassa pääset maistelemaan Lippulaivan kauppakeskuksen omaa hunajaa ja tutustua miten hunajaa voi käyttää ruuanlaitossa.<br>Lisäksi Pajassa pääsee askartelemaan yhteistä taideteosta jonka teemana on kukkaniitty. </p>", "sv": "<p>Världsbidagen firas den 20.5 på Lippulaivabiblioteket. Under evenemanget får du smaka på Lippulaiva köpcentrets egen honung och får tips på hur du kan använda honung i matlagningen. I Paja-verkstaden har du möjligheten att delta i skapandet av ett gemensamt konstverk med temat blomsteräng. </p>", "en": "<p>World Bee Day will be celebrated on 20 May at the Lippulaivan Library.<br>At the event, you can taste the Lippulaiva shopping centre's own honey and learn how to use honey in cooking.<br>You can also take part in a workshop where you can make a collective artwork on the theme of a flower meadow</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvp3ris4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghvpoet6m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-08T09:56:58.663431Z", "last_modified_time": "2024-05-08T09:56:58.663455Z", "date_published": null, "start_time": "2024-05-18T09:00:00Z", "end_time": "2024-05-18T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keskipäivän Katrilli", "en": "Noon Katrilli" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "short_description": { "fi": "Kansanmusiikin ja kansantanssin päivänä Musiikkiyhdistys Espoon Pelimannit ry on kutsunnut soittajia ja tanssijoita keskipäivän Katrilliin.", "en": "On the Day of Folk Music and Folk Dance, the Espoo Pelimannit Music Association has invited musicians and dancers to the noon Katrilli." }, "info_url": null, "description": { "fi": "<p>Kansanmusiikin ja kansantanssin päivänä Musiikkiyhdistys Espoon Pelimannit ry on kutsunnut soittajia ja tanssijoita keskipäivän Katrilliin.</p>", "en": "<p>On the Day of Folk Music and Folk Dance, the Espoo Pelimannit Music Association has invited musicians and dancers to the noon Katrilli.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvpoet6m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghrvei6da", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2762/?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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-26T13:09:14.882872Z", "last_modified_time": "2024-05-08T06:57:00.365343Z", "date_published": null, "start_time": "2024-05-28T10:00:00Z", "end_time": "2024-05-28T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikuntaneuvontakiertue Sellon kirjastossa", "sv": "Motionsrådgivningturné i Sellobibloteket", "en": "Exercise counselling tour at Sello Library" }, "provider_contact_info": null, "provider": { "fi": "Länsi-Uudenmaan hyvinvointialue", "sv": "Västra Nylands välfärdsområde", "en": "Western Uusimaa Wellbeing Services County" }, "location_extra_info": null, "short_description": { "fi": "Tule juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! ", "sv": "Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj.", "en": "Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. " }, "info_url": null, "description": { "fi": "<p>Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa tiistaisin ja torstaisin klo 13–16.</p><p>ti 14.5. Lippulaivan kirjasto <br>to 16.5. Iso Omenan kirjasto <br>ti 21.5. Kalajärven kirjasto <br>to 23.5. Entressen kirjasto <br>ti 28.5. Sellon kirjasto <br>to 30.5. Tapiolan kirjasto <br></p>", "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis.</p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br>to 30.5. kl. 13–16 Hagalunds bibliotek</p>", "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.</p><p><br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue . 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br>Thu. 30.5. 13–16 Tapiola library</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei6da/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63436", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150747, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-24T10:14:34.798965Z", "last_modified_time": "2024-04-24T10:14:34.798990Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749905.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150747/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-24T10:14:34.747591Z", "last_modified_time": "2024-05-07T13:12:53.397141Z", "date_published": null, "start_time": "2024-05-30T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "UMO Helsinki Ensemble – Kevätjuhla – Lounaskonsertti", "en": "UMO Helsinki Ensemble – Spring Fever – Lunchtime concert" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra", "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra" }, "location_extra_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/65A9F6E2BA369FFD32909A918CD4106D/UMO_Helsinki_Ensemble_Kevatjuhla_", "en": "http://www.savoyteatteri.fi/en/events/event/65A9F6E2BA369FFD32909A918CD4106D/UMO_Helsinki_Ensemble_Spring_Fever_" }, "description": { "fi": "<p>Tässä UMO Helsinki Jazz Orchestran kevätkauden päättävässä lounaskonsertissa nautitaan tuore annos jazzia kahden nuoremman jazzsukupolven kirkkaan tähden luotsaamana. UMOn pasunisti <b>Kasperi Sarikoski</b> ja saksofonisti <b>Max Zenger</b> ovat valikoineet konserttiohjelman molempien omista sävellyksistä.</p><p>Sarikoski on soittanut UMOn riveissä vakituisena vuodesta 2019 ja Zenger vuodesta 2023. Molemmat ovat ansioituneita ja aktiivisia muusikoita myös UMOn ulkopuolella.</p><p>Kasperi Sarikoski (s. 1988) on esiintynyt lukuisten kotimaisten jazzartistien kanssa ja muun muassa Jukka Linkolan, Jukka Perkon ja Teppo Mäkysen yhtyeissä. Kansainvälisistä orkestereista mainittakoon esiintymiset Duke Ellington Orchestran, Stockholm Jazz Orchestran sekä Jazz at Lincoln Center Orchestran ja Wynton Marsalisin kanssa. Omaa musiikkiaan Sarikoski on julkaissut kaksi levyllistä, <i>Essence</i> sekä <i>3 + 1</i>, joista jälkimmäisen satoa kuullaan myös lounaskonsertissa.</p><p>Max Zenger (s. 1988) johtaa omia yhtyeitään, kuten <i>Maxxxtet</i> ja <i>Globus</i>, jolla voitti ensimmäisen sijan Euroopan yleisradioiden jazzyhtyekilpailussa 2018. Zenger on valittu Pori Jazz Festivaalin nousevaksi kyvyksi 2017 ja Turku Jazz Festivaalin vuoden artistiksi 2018. Hän on myös levy-yhtiö Flame Jazz Recordsin yksi perustajajäsenistä ja toimii Porvoo Jazz Festivalin taiteellisena johtajana. Zenger on julkaissut kymmenen omista sävellyksistään koostuvaa albumia ja soittanut kymmenillä muilla levyillä. Konserttiin Zenger on valikoinut musiikkia Globus-yhtyeensä toiselta <i>Flores</i>-albumilta – jolla sattumoisin soittaa myös Kasperi Sarikoski.</p><p><b>UMO Helsinki Ensemble</b> on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan.</p><p>Konsertin kesto 1 h.</p><p>Kasperi Sarikoski, pasuuna <br>Max Zenger, alttosaksofoni <br>Tuomo Uusitalo, piano<br>Anssi Tirkkonen, rummut <br>Juuso Rinta, basso</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 4 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä.</p><p>Ravintola Minne Gardenissa on konsertin asiakkaille tarjolla buffetlounas etuhintaan konsertin jälkeen, tee tilaus täältä:<br>https://savoyteatteriravintolat.fi/tapahtumatarjoilut/lounaskonsertti-umo-helsinki-ensemble-kevatjuhla</p>", "en": "<p>In this lunchtime concert ending the spring season of the UMO Helsinki Jazz Orchestra, enjoy a vibrant jazz program led by two bright stars of the younger Finnish jazz generation. UMO's trombonist <b>Kasperi Sarikoski</b> and saxophonist <b>Max Zenger</b> have selected their own compositions for the concert program.</p><p>Sarikoski has been playing in UMO since 2019 and Zenger since 2023. They are both distinguished musicians also active outside of UMO.</p><p>Kasperi Sarikoski (b. 1988) has performed with numerous Finnish jazz artists and, among others, including bands led by Jukka Linkola, Jukka Perko and Teppo Mäkynen. Of international orchestras, he has performed with the Duke Ellington Orchestra, Stockholm Jazz Orchestra and Jazz at Lincoln Center Orchestra and Wynton Marsalis. Sarikoski has released two albums of his own music, <i>Essence</i> and <i>3 + 1</i>. This lunchtime concert features music from the latter, which he composed and recorded while studying at the Juilliard School in New York.</p><p>Max Zenger (b. 1988) leads his own bands, such as <i>Maxxxtet</i> and <i>Globus,</i> with which he won the first place in the European Broadcasting Union’s (EBU) jazz ensemble competition in 2018. In 2017, Zenger was named the Talent of the Year of the Pori Jazz Festival and in 2018 he was chosen as Artist of the Year for Turku Jazz Festival. He is a founding member of the record label Flame Jazz Records and artistic director of the Porvoo Jazz Festival. Zenger has released ten albums with his own compositions and played on dozens of other records. For this concert, Zenger has handpicked music from his Globus band’s album <i>Flores</i> – on which also Kasperi Sarikoski plays.</p><p>The <b>UMO Helsinki Ensemble</b> is a smaller group assembled from members of the UMO Helsinki Jazz Orchestra, many of whom – in addition to having a long career in UMO – are involved in numerous individual projects.</p><p>Duration 1 hour.</p><p>Kasperi Sarikoski, trombone <br>Max Zenger, alto saxophone <br>Tuomo Uusitalo, piano<br>Anssi Tirkkonen, drums <br>Juuso Rinta, bass</p><p>Please note! The admission is free but it is recommendable to book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi webshop (0 €). At Lippu.fi stores commission is 3 € / order, at R-kioski 3 € / order + 1 € / ticket. Max. 4 tickets / booking. Larger group bookings directly from Savoy. Entry with an advance ticket until 11:50. After this, any empty seats will be filled with customers without tickets. Please arrive early for the doors will be closed once the concert has started.</p><p>Production: Savoy Theatre & UMO Helsinki Jazz Orchestra</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63026", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/vuotalo/kolmen-kielen-stand-up-klubi-3624441/", "sv": "https://www.lippu.fi/artist/vuotalo/kolmen-kielen-stand-up-klubi-3624441/", "en": "https://www.lippu.fi/artist/vuotalo/kolmen-kielen-stand-up-klubi-3624441/" }, "description": null, "price": { "fi": "20 €", "sv": "20 €", "en": "20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10600, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-07T10:13:59.810933Z", "last_modified_time": "2024-02-07T10:13:59.810951Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743728.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10600/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-07T10:13:59.770533Z", "last_modified_time": "2024-05-07T13:12:49.409089Z", "date_published": null, "start_time": "2024-05-08T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kolmen kielen Stand-Up-klubi", "sv": "Kolmen kielen Stand-Up-klubi", "en": "Kolmen kielen Stand-Up-klubi" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vuotalo järjestää toukokuussa 2024 kolmen kielen stand up-illan!", "sv": "Nordhuset arrangerar i maj 2024 en trespråkig stand-up-klubbkväll!", "en": "Vuosaari House will organize a stand-up evening in three languages in May 2024!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CEB374A1563C2EA702080446060E5517/Kolmen_kielen_Stand-Up-klubi", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CEB374A1563C2EA702080446060E5517/Kolmen_kielen_Stand-Up-klubi", "en": "http://www.vuotalo.fi/en/events/event/CEB374A1563C2EA702080446060E5517/Kolmen_kielen_Stand-Up-klubi" }, "description": { "fi": "<p>Vuotalo järjestää toukokuussa 2024 kolmen kielen stand up-illan!</p><p>Illassa on mukana sekä uusia lupaavia koomikkoja että komedian ammattilaisia, jotka esiintyvät suomen, ruotsin ja englannin kielellä.</p><p>Lavalla: Karim Aldulaimi & Bahar Tokat samt Amir Amokrane, Arnaud P. praplan, Bill Munsil, Harri Muikkula, Joonas Ranta, Max Nilsson ja Minna Tuominen.</p><p>Klubi-ilta, A-oikeudet, Kahvila Pokkari vastaa tarjoilusta. Ovet avataan klo 17.30. Liput à 20€ @ Lippu.fi tai lippuautomaatilta ovelta.</p>", "sv": "<p>Nordhuset arrangerar i maj 2024 en trespråkig stand-up-klubbkväll!</p><p>Under kvällen uppträder både nya lovande förmågor samt proffessionella komiker som uppträder på finska, svenska och engelska.</p><p>På scen: Karim Aldulaimi & Bahar Tokat samt Amir Amokrane, Arnaud P. praplan, Bill Munsil, Harri Muikkula, Joonas Ranta, Max Nilsson och Minna Tuominen.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari. Dörrarna öppnas kl. 17.30. Längd 2h.</p><p>Biljetter à 20 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>Vuosaari House will organize a stand-up evening in three languages in May 2024!</p><p>Languages: Finnish, Swedish, English</p><p>On stage: Karim Aldulaimi & Bahar Tokat samt Amir Amokrane, Arnaud P. praplan, Bill Munsil, Harri Muikkula, Joonas Ranta, Max Nilsson and Minna Tuominen.</p><p>Club night, Café Pokkari takes care of the refreshments.<br>Doors open at 5:30 PM. Duration 2h incl. intermission.</p><p>Tickets at 20 € from lippu.fi or from the ticket machine at the door starting.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63026/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghvgnjzre", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T11:21:45.573799Z", "last_modified_time": "2024-05-07T12:14:20.895159Z", "date_published": null, "start_time": "2024-05-14T09:00:00Z", "end_time": "2024-05-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Työnantajatreffit: SPR Kontti", "sv": "Työnantajatreffit rekryteringevenemang", "en": "Työnantajatreffit recruitment event" }, "provider_contact_info": null, "provider": { "fi": "Työllisyys Espoo" }, "location_extra_info": null, "short_description": { "fi": "Rekrytointitapahtuma Sellon kirjastossa", "sv": "Rekryteringevenemang i Sellobiblioteket", "en": "Recruitment event in Sello Library" }, "info_url": { "fi": "https://sprkontti.fi/toihin-konttiin" }, "description": { "fi": "<p>Tässä rekrytointitapahtumassa SPR Kontti etsii työntekijöitä uuteen myymälään. </p><p>Tilaisuus alkaa klo 12 yritysesittelyllä. Esittelyn jälkeen mahdollisuus pikahaastatteluun, joten ota mukaan CV:si.</p><p>SPR Kontti avaa uuden Kontti-myymälän Leppävaaran Galleriaan elokuussa 2024. Uuteen avattavaan myymälään tarvitaan noin 30 henkilöä erilaisiin tavarankäsittely- ja myymälätehtäviin. Töiden aloitus on porrastetusti heinä - elokuun aikana.</p><p>Haemme Gallerian myymälään nyt tekijöitä monipuolisiin tehtäviin niin osastoille kuin muuhunkin <br>myymälätoimintaan: </p><p>- Astiat<br>- Pukeutuminen<br>- Kirjat<br>- Kodintekstiilit<br>- Lelut ja lastentarvikkeet<br>- Pienelektroniikka<br>- Vapaa-aika<br>- Alkulajittelu<br>- Kassa ja myymälätyö.</p><p>Valittavilla henkilöillä tulee olla:</p><p>• mahdollisuus aloittaa noin 2 kk:n työkokeilulla <br>• oikeus 100 %:n palkkatukeen (varmistathan tämän omavalmentajaltasi)<br>• motivaatiota ja riittävää työkykyä<br>• riittävää kielitaitoa ymmärtää suomenkielisiä ohjeita <br>• valmiutta vuoro- ja viikonlopputyöhön.</p><p>Tarjoamme kattavan perehdytyksen, tukea ja ohjausta sekä kannustavan työyhteisön, jossa saat olla oma itsesi.</p><p>Hakemukset: rekry.espoonkontti@punainenristi.fi.</p><p>Paikalla on myös Espoon kaupungin edustajia, jotka neuvovat työnhaussa.</p><p>Lämpimästi tervetuloa!</p><p>#SinunTyösiPuolella</p>", "sv": "<p>Evenemanget är på finska. Läs mer om evenemanget på finska.</p>", "en": "<p>The event will be held in Finnish. More information is available on the Finnish event page.<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvgnjzre/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63397", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150648, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T10:13:42.169931Z", "last_modified_time": "2024-04-17T10:13:42.169947Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749144.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150648/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:13:42.143584Z", "last_modified_time": "2024-05-07T11:13:03.525291Z", "date_published": null, "start_time": "2024-05-15T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kyllä isä osaa (7) – Kino Helios" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D66FBF8492DF7A7A8BBC28BAB572CBE8/Kylla_isa_osaa_7_" }, "description": { "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63397/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63396", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150647, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T10:13:41.333683Z", "last_modified_time": "2024-04-17T10:13:41.333699Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749142.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150647/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:13:41.309280Z", "last_modified_time": "2024-05-07T11:13:02.991472Z", "date_published": null, "start_time": "2024-05-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kyllä isä osaa (7) – Kino Helios" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0FFD1781E24A34EDFA3869654E699E81/Kylla_isa_osaa_7_" }, "description": { "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63396/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63395", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T10:13:40.810586Z", "last_modified_time": "2024-04-17T10:13:40.810601Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749140.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:13:40.784712Z", "last_modified_time": "2024-05-07T11:13:02.674418Z", "date_published": null, "start_time": "2024-05-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kyllä isä osaa (7) – Kino Helios" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26AF2D4FA2FDB671FDAF96524AA09EEC/Kylla_isa_osaa_7_" }, "description": { "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghvfsafm4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsaewa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsae2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsae5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsae7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsafdi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsafha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsafke/?format=api" } ], "images": [ { "id": 151005, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-06T06:47:46.895221Z", "last_modified_time": "2024-05-06T06:47:46.895250Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/satuhetki.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "aikuinen lukee kirjaa lapsille", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-05-07T11:03:03.776288Z", "last_modified_time": "2024-05-07T11:03:03.776314Z", "date_published": "2024-05-07T10:54:00Z", "start_time": "2024-09-04T15:30:00Z", "end_time": "2024-12-11T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Iltasatuhetki", "sv": "Kvällens sagostund", "en": "Evening storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "Avoin suomenkielinen iltasatuhetki", "sv": "Kvällens sagostund på finska", "en": "Evening storytime in Finnish" }, "info_url": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään joka toinen keskiviikko klo 18.30 - 19.00 avoin satuhetki kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat ja isovanhemmat. Luemme tarinoita suomen kielellä.</p>", "sv": "<p>Varannan onsdag kl 18.30 - 19.00 anordnar Sellos bibliotek en öppen sagostund i bibliotekets barnavdelning. Alla barn, föräldrar, mor- och farföräldrar är välkomna att delta i sagostunden. Vi läser sagor på finska.</p>", "en": "<p>Every second Wednesday at 18.30 - 19.00, Sello Library organises an open story time in the children's section of the library. All children, parents and grandparents are welcome to join the storytime. We read stories in Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfsafm4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghvfery34", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-07T09:21:11.279689Z", "last_modified_time": "2024-05-07T09:21:11.279714Z", "date_published": "2024-05-07T09:30:31.244000Z", "start_time": "2024-05-29T05:00:00Z", "end_time": "2024-06-09T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten kuvakirjavaalit", "sv": "Barnens bilderboksval ", "en": "Children’s picture book elections " }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "Barnavdelningen", "en": "Children's section" }, "short_description": { "fi": "Entressen kirjasto järjestää lapsille omat kuvakirjavaalit. ", "sv": "Entresse biblioteket ordnar ett eget bilderboksval för barn. ", "en": "Entresse library will host its very own picture book elections for children. " }, "info_url": null, "description": { "fi": "<p>Entressen kirjasto järjestää lapsille omat kuvakirjavaalit. </p><p>Espoon kirjastot tukevat lasten demokratiakasvatusta järjestämällä omat kuvakirjavaalit europarlamenttivaalien aikana. Kaikki lapset voivat käyttää äänioikeuttaan kirjastossa ja vaikuttaa siihen, kuka suosittu lastenkirjallisuuden hahmo johtaa kirjastoja tulevaisuudessa. </p><p>Äänioikeus on sinun henkilökohtainen oikeutesi. Kukaan ei voi äänestää puolestasi. Äänestäminen antaa sinulle mahdollisuuden vaikuttaa siihen, millainen maailma on tulevaisuudessa. Muista, että äänestys on salainen, vain sinä itse voit jälkikäteen kertoa siitä muille. </p><p>Äänestäminen on helppoa! Saavu kirjastoon ja kirjoita parhaan ehdokkaasi numero vaalilappuun ja ojenna se rohkeasti vaalivalvojalle (kirjastotyöntekijälle). </p><p>Äänestysaika on 29.5.-9.6.2024. Arkisin klo 8-20 ja viikonloppuisin klo 10-18. </p><p>Vaalitulos julkistetaan 12. kesäkuuta 2024 kirjastossa. </p>", "sv": "<p>Entresse biblioteket ordnar ett eget bilderboksval för barn. </p><p>Biblioteken i Esbo stöder barns demokratifostran genom att ordna barnens bilderboksval i samband med Europaparlamentsvalet. Alla barn kan med sin rösträtt vara med och påverka vilken populär barnboksfigur som ska leda biblioteken i framtiden. </p><p>Rösträtten är din personliga rättighet. Ingen kan rösta för dig. Att rösta ger dig möjlighet att påverka hur världen ska se ut i framtiden. Kom ihåg att röstningen är hemlig. Det är bara du som vet vem du röstade på och du är den enda som kan berätta om ditt val för andra. </p><p>Det är enkelt att rösta! Kom till biblioteket och skriv kandidatens siffra på valsedeln, sedan är det bara att ge lappen till en valövervakare (bibliotekarie). </p><p>Röstningstiden är 29.5.-9.6.2024. På vardagar 8-20 och på helger 10-18. </p><p>Valresultatet publiceras 12 juni 2024 på biblioteket.</p>", "en": "<p>Entresse library will host its very own picture book elections for children. </p><p>Espoo City Libraries want to help teach children about democracy with its very own picture book elections while the European Elections are going on. Every single child can use their voice and select which famous children’s book character will rule libraries in the future. </p><p>The right to vote is your personal right. Nobody can vote on your behalf. Voting gives you an opportunity to inpact the way our world is in the future. Remember that voting is done in secret, only you can talk about it afterwards to others. </p><p>Voting is easy! Come to the library and write your candidate’s number on the ticket and give it to one of the election supervisors (librarians). </p><p>Time for voting is from 29.5.2024 until 9.6.2024. You can vote on weekdays at 8-20 o’clock and on weekends at 10-18 o’clock. </p><p>The voting results will be published on 12. June 2024 at Entresse Library. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvfery34/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghvewrugm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-05-07T08:45:04.234122Z", "last_modified_time": "2024-05-07T08:45:04.234148Z", "date_published": null, "start_time": "2024-06-13T10:00:00Z", "end_time": "2024-06-13T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Askartelupaja", "sv": "Pysselverkstad", "en": "Craft workshop" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule mukaan askartelemaan kesäisiä juttuja! Sopii kaiken ikäisille.", "sv": "Kom och pyssla sommargrejer med oss! Passar alla åldrar.", "en": "Come join us for summer crafts! Suitable for all ages." }, "info_url": null, "description": { "fi": "<p>Tule mukaan askartelemaan kesäisiä juttuja! Sopii kaiken ikäisille.</p>", "sv": "<p>Kom och pyssla sommargrejer med oss! Passar alla åldrar.</p>", "en": "<p>Come join us for summer crafts! Suitable for all ages.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvewrugm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19181, "next": "