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 normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1014®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1015®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1013®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:61888", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7138, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T14:14:15.369581Z", "last_modified_time": "2024-02-06T13:22:51.443113Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743833.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7138/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T14:14:15.325133Z", "last_modified_time": "2024-02-06T13:22:51.481694Z", "date_published": null, "start_time": "2024-01-03", "end_time": "2024-01-31", "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": "Talvi taiteilijana - Raimo Ketolaisen valokuvia – Haagan Taideseura" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/920A5695A4F9EE098A6FEDC24C344EE1/Talvi_taiteilijana_-_Raimo_Ketolaisen_valokuvia_" }, "location_extra_info": null, "description": { "fi": "<p>Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p><p>Lisätiedot <br>https://www.haagantaideseura.com/</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61147", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3510029" }, "price": { "fi": "57/47/27/15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-19T15:14:55.048063Z", "last_modified_time": "2024-02-06T13:22:51.349253Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738009.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-19T15:14:55.018091Z", "last_modified_time": "2024-02-06T13:22:51.390276Z", "date_published": null, "start_time": "2023-12-31T17: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": "LOPPUUNMYYTY: Savoyn uusivuosi: The Beatles -tribuutti – Jiri Nikkinen The Beatles Tribute Band & Pepe Willberg" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DC4A55A865671C8A4FF79A1263E69AD8/LOPPUUNMYYTY_Savoyn_uusivuosi_The_Beatles_-tribuutti" }, "location_extra_info": null, "description": { "fi": "<p>HUOM! Konsertti on loppuunmyyty, mahdollisesti vapautuvia lippuja voi tiedustella keikkapäivänä ovelta.</p><p>Savoy-teatterissa on uudenvuodenaattona luvassa A Hard Days Night kuorrutettuna Savoy Trufflella, kun Suomen omat Beatles-legendat Pepe Willberg ja Jiri Nikkinen yhtyeineen tarjoilevat konsertin täydeltä All You Need Is Lovea.</p><p>Pepe Willberg ja Jiri Nikkinen ovat koonneet oman Beatles-ohjelmiston, joka on upea kokonaisuus enimmäkseen kahdella stemmalla laulettavia Beatles-kappaleita. Nämä kaksi Beatles-asiantuntijaa muodostavat eittämättä Suomen parhaan laulukokoonpanon kyseiseen asiaan. Pepe ja Jiri pitävät kiinni alkuperäisistä bändisovituksista, mikä korostaa heidän saumattomasti yhteensopivaa laulusoundiaan.</p><p>Pepe Willberg opetteli uransa ensimmäisenä laulun, Twist and Shout- kappaleen jo 60-luvulla. Siitä asti Beatles-musiikki on ollut tiiviisti hienon laulajan ohjelmistossa. Kaikki tuntevat hitin Rööperiin vuodelta 1967.</p><p>Jiri Nikkinen, tuo Suomen John Lennon on perehtynyt pikkutarkasti koko laulajan uransa ajan Beatlesin musiikkiin. Tunnetuin levytys suomeksi lienee Elekieltä.</p><p>Jiri Nikkinen The Beatles Tribute Band on erikoistunut The Beatlesin ja muun sixties-musiikin esittämiseen, oikealla 60's -asenteella ja soundeilla, originaaleista sävellajeista. Tämä kansainvälistä tunnustusta saanut ryhmä vie kuulijansa aikamatkalle Hampurin aikaisista vuosista aina Abbey Roadille saakka, Liverpooliin, rakkauden kesään -67 ja Lontoon Savile Row’lle. Yhtye on esiintynyt mm. Liverpoolin BeatleWeek -tapahtuman pääkonsertissa, ja keikkailee jatkuvasti niin kotimaassa kuin ulkomaillakin.</p><p>Ohjelmisto on yhtä ilotulitusta hiteistä harvinaisuuksiin, sekä englanniksi että suomeksi laulettuna. Musiikki on kaikille universaalin tuttua ikään tai kansallisuuteen katsomatta.</p><p>Kokoonpano: <br>Pepe Willberg, laulu, kitarat<br>Jiri Nikkinen, laulu, kitarat<br>Jiri Bertula, basso, laulu<br>Jarkko Rantanen, rummut, laulu<br>Teemu Aitoaho, kitara, laulu</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri" }, "short_description": { "fi": "HUOM! Konsertti on loppuunmyyty, mahdollisesti vapautuvia lippuja voi tiedustella keikkapäivänä ovelta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61726", "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:288/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6704, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T11:13:18.441998Z", "last_modified_time": "2024-02-06T13:22:51.256253Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742727.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6704/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T11:13:18.394096Z", "last_modified_time": "2024-02-06T13:22:51.297252Z", "date_published": null, "start_time": "2023-12-21", "end_time": "2024-01-20", "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": "Terhi Ekebom: Latvusto", "en": "Terhi Ekebom: The Canopy" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/532CBB0EC7B5AE81EEECB4405B3EF4D7/Terhi_Ekebom_Latvusto", "en": "http://www.malmitalo.fi/en/events/event/532CBB0EC7B5AE81EEECB4405B3EF4D7/Terhi_Ekebom_The_Canopy" }, "location_extra_info": null, "description": { "fi": "<p>Näyttely tutkii ihmisen erillisyyden kokemusta, yhteyden haasteellisuutta, sekä luontosuhdetta ja luonnon olemassaolon oikeutta.</p><p>Teossarjassa pieni hahmo kiipeää korkealla puiden latvustossa. Miksi hän on siellä? Miksi noin korkealla, etäällä muista? Metsä on paikoin abstrakti kuvaten puiden, jäkälien ja lehtien rytmejä. Välillä teosten huomio kiinnittyy mikrotasolle, välillä laajempaan kuvakulmaan. Serigrafiatekniikalla toteutetussa teossarjassa on tarinallinen, liikkeen ja liikkumisen jatkumo.</p><p>Teosten yhteydessä on kuultavana Sebastian Boulterin niitä varten säveltämä teos Latvusto / Juuristo.</p><p>Avajaiset keskiviikkona 20.12. klo 17:00–19:00.</p><p>TaM <b>Terhi Ekebom</b> on helsinkiläinen kuvittaja, kuvataiteilija ja sarjakuvataitelija. Hän työskentelee monipuolisilla tekniikoilla tehden kuvitusta ja julkista taidetta, joista viimeisimpinä ovat valmistuneet mm. Alavan päiväkodin teokset sekä seinämaalaukset Vaasan keskussairaalaan, Viron Põltsamaalle ja Ravintolamuseon aulaan Helsingissä. Parhaillaan hän piirtää puu-aihesta serigrafiasarjaa ja valmistelee julkisen taiteen teoskokonaisuutta Turkuun.</p>", "en": "<p>The exhibition explores the experience of human isolation, the challenge of connection, and the relationship with nature and nature's right to exist as itself.</p><p>In the series of works, a small figure climbs high among the trees. Why is she there? Why so high, far from others? The forest is drawn partly as abstract details, depicting the rhythms of trees, lichens and leaves. Sometimes the attention of the works is focused on the micro level, sometimes on a wider perspective. The series of works is realized with serigraphy technique and it has a visual narrative, a continuum of movement and rhythm.</p><p>In connection with the works one can hear the soundworld The Canopy / The Roots Latvusto composed by Sebastian Boulter.</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Näyttely tutkii ihmisen erillisyyden kokemusta, yhteyden haasteellisuutta, sekä luontosuhdetta ja luonnon olemassaolon oikeutta.", "en": "The exhibition explores the experience of human isolation, the challenge of connection, and the relationship with nature and nature's right to exist as itself." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61726/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61187", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-tanssiklubi-masterin-joulukonsertti-2023-stoa-17866117/#tab=" }, "price": { "fi": "31/22 / 18 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5642, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-25T11:14:53.200595Z", "last_modified_time": "2024-02-06T13:22:51.158782Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738265.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5642/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-25T11:14:53.169489Z", "last_modified_time": "2024-02-06T13:22:51.205977Z", "date_published": null, "start_time": "2023-12-20T17:00:00Z", "end_time": "2023-12-20T18:20: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": "Tanssiklubi Masterin joulukonsertti 2023" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CFACB4A08E2B314BEBCDF9145809FCB2/Tanssiklubi_Masterin_joulukonsertti_2023" }, "location_extra_info": null, "description": { "fi": "<p>Tanssiklubi Masterin kokoperheen tanssiesitys. Tule seuraamaan henkeäsalpaavia tanssiesityksiä, jotka tulevat liikuttamaan jokaista katsojaa.</p><p>Stoan upeassa teatterisalissa nähdään jopa yli 100 Masterin lahjakasta tanssijaa. Tanssioppilaat esittävät useita erilaisia tanssityylejä niin ryhmissä, kuin sooloesityksinä.<br>Lava tulee täyttymään kaikenikäisistä tanssijoista.</p><p>Tervetuloa unohtumattomaan tapahtumaan!</p><p>Kesto n. 1 t 20 min<br>Liput 31 / 22 / 18 €</p><p>www.tanssiklubimaster.fi</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Tanssiklubi Masterin kokoperheen tanssiesitys. Tule seuraamaan henkeäsalpaavia tanssiesityksiä, jotka tulevat liikuttamaan jokaista katsojaa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61187/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61140", "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:29/?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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T14:00:31.367233Z", "last_modified_time": "2024-02-06T13:22:51.057513Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733542.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-12T14:00:31.224721Z", "last_modified_time": "2024-02-06T13:22:51.102557Z", "date_published": null, "start_time": "2023-12-20T16: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": "Onsdagsbio: Länge leve bonusfamiljen", "sv": "Onsdagsbio: Länge leve bonusfamiljen", "en": "Onsdagsbio: Länge leve bonusfamiljen" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2D3BE6D8B6B47D7AFAB2E8CAE949DA3C/Onsdagsbio_Lange_leve_bonusfamiljen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2D3BE6D8B6B47D7AFAB2E8CAE949DA3C/Onsdagsbio_Lange_leve_bonusfamiljen", "en": "http://www.vuotalo.fi/en/events/event/2D3BE6D8B6B47D7AFAB2E8CAE949DA3C/Onsdagsbio_Lange_leve_bonusfamiljen" }, "location_extra_info": null, "description": { "fi": "<p>Lisa ja Patrik ovat korjanneet avioliittonsa Patrikin vuotta aiemmin tapahtuneen uskottomuuden jäljiltä, kun postiluukusta tipahtaa kirje käräjäoikeudesta.</p><p>Lisa on täysin unohtanut jättäneensä avioerohakemuksen tilanteen ollessa pahimmillaan, ja avioero on nyt tosiasia. Patrik järkyttyy, hän ei missään nimessä halua olla eronnut, joten hän päättää yllättää Lisan ja järjestää tunturihäät uudenvuodenaattona. Paikan päällä selviää, että Lisakin on ollut uskoton, ja kaikki kääntyy päälaelleen.</p><p>Maa: Ruotsi 2022 <br>Genre: Draamakomedia<br>Ohjaajat: Felix Herngren<br>Näyttelijät: Vera Vitali, Erik Johansson, Fredrik Hallgren, Johan Ulveson, Måns Nathanaelson, Niklas Engdahl, Marianne Mörck, Christer Lindarw, Frank Dorsin</p><p>Kieli: ruotsi <br>Tekstitys: suomi<br>Kesto: 1 t 46 min.<br>K7</p><p>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>", "sv": "<p>Lisa och Patrik har lappat ihop sitt äktenskap efter Patriks otrohet ett år tidigare när ett brev från tingsrätten dimper ner.</p><p>Det visar sig att Lisa glömt bort att hon lämnade in skilsmässopapper när det var som sämst mellan dem och nu är skilsmässan ett faktum. Patrik blir bestört, han vill absolut inte vara skild från Lisa och bestämmer sig för att överraska henne i fjällen med ett bröllop på nyårsafton. Väl på plats kommer det fram att Lisa också har varit otrogen, och allt vänds upp och ner.</p><p>Land: Sverige 2022 <br>Genre: Dramakomedi<br>Regi: Felix Herngren<br>Skådespelare: Vera Vitali, Erik Johansson, Fredrik Hallgren, Johan Ulveson, Måns Nathanaelson, Niklas Engdahl, Marianne Mörck, Christer Lindarw, Frank Dorsin</p><p>Språk: Svenska <br>Text: Finsk<br>Längd: 1 h 46 min.<br>F7</p><p>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>", "en": "<p>Follows Lisa and Patrik who have patched up their marriage after Patrik's infidelity, but everything turns upside down when they receive a letter from the district court about their divorce papers, which Lisa had forgotten she had filed.</p><p>Patrik doesn´t want to divorce and decides to surprise Lisa with a wedding in Lapland on New Years Eve. There he finds out that also Lisa has been unfaithful and everything turns upside down.</p><p>Land: Sweden 2022 <br>Genre: Dramacomedy<br>Director: Felix Herngren<br>Actors: Vera Vitali, Erik Johansson, Fredrik Hallgren, Johan Ulveson, Måns Nathanaelson, Niklas Engdahl, Marianne Mörck, Christer Lindarw, Frank Dorsin<br>Language: Swedish <br>Subtitles: Finnish<br>Running time: 1 h 46 min.<br>Age limit: 7<br>Free entry</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Lisa ja Patrik ovat korjanneet avioliittonsa Patrikin vuotta aiemmin tapahtuneen uskottomuuden jäljiltä, kun postiluukusta tipahtaa kirje käräjäoikeudesta.", "sv": "Lisa och Patrik har lappat ihop sitt äktenskap efter Patriks otrohet ett år tidigare när ett brev från tingsrätten dimper ner.", "en": "Follows Lisa and Patrik who have patched up their marriage after Patrik's infidelity, but everything turns upside down when they receive a letter from the district court about their divorce papers, which Lisa had forgotten she had filed." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61140/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61331", "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:31/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kynttiloeiden-syttyessae-joulukonsertti-pepe-willberg-jouluorkesteri-malmitalo-17896723/" }, "price": { "fi": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5981, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T12:14:23.191028Z", "last_modified_time": "2024-02-06T13:22:50.957840Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739366.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5981/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T12:14:23.160926Z", "last_modified_time": "2024-02-06T13:22:51.002872Z", "date_published": null, "start_time": "2023-12-20T16: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": "Pepe Willberg & Joulukvartetti: Kynttilöiden syttyessä | LOPPUUNMYYTY – Malmitalon joulu" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5C20169D7436ACEA3D9CF1523D5C08D/Pepe_Willberg_Joulukvartetti_Kynttiloiden_syttyessa_LOPPUUNMYYTY" }, "location_extra_info": null, "description": { "fi": "<p>Tule rauhoittumaan joulun aikaan legendaarisen laulajan Pepe Willbergin ja Joulukvartetin säestämänä.</p><p><b>Pepe Willberg</b> esittää puolitoista tuntia kestävissä konsertissaan muun muassa laulut: Arkihuolesi kaikki heitä, Kun joulu on, Heinillä härkien kaukalon, On hanget korkeat nietokset, Ave Maria, Varpunen jouluaamuna, En etsi valtaa loistoa, Maa on niin kaunis ja Oi jouluyö.</p><p>Luvassa on myös monia kansainvälisiä jouluklassikoita.</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Tule rauhoittumaan joulun aikaan legendaarisen laulajan Pepe Willbergin ja Joulukvartetin säestämänä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61674", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6616, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-13T10:12:54.381088Z", "last_modified_time": "2024-02-06T13:22:50.852172Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742480.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6616/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-12-13T10:12:54.347640Z", "last_modified_time": "2024-02-06T13:22:50.897216Z", "date_published": null, "start_time": "2023-12-20T14:00:00Z", "end_time": "2023-12-20T16: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": "Tiikerijuhlat – Main kamalan tyhmä päivä -teoksen julkaisutilaisuus", "sv": "Tigerfest – Main kamalan tyhmä päivä -bokens release (Mais fruktansvärt dumma dag)", "en": "Tiger party – Main kamalan tyhmä päivä book launch party" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/93105B7C692DF25FD0F0B0955325DC8E/Tiikerijuhlat", "sv": "http://www.annantalo.fi/sv/evenemang/event/93105B7C692DF25FD0F0B0955325DC8E/Tigerfest", "en": "http://www.annantalo.fi/en/events/event/93105B7C692DF25FD0F0B0955325DC8E/Tiger_party" }, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa Main kamalan tyhmä päivä -teoksen julkaisutilaisuuteen Annantalolle ke 20.12. klo 16-18</p><p>Ohjelmassa tiikerimäistä ohjelmaa ja herkuttelua sekä lukuhetki.<br>Tilaisuuden järjestävät kirjantekijät yhdessä Annantalon kanssa.</p><p>Sanna Sofia Vuori ja Nadja Sarell: Main kamalan tyhmä päivä<br>Mielikuvitusta hivelevä kuvakirja sanoittaa ja kuvittaa ihastuttavasti lapsen arkea ja tunne-elämää.</p><p>Kun Mai herää aamulla, ulkona sataa. Juuri tänään ei olisi saanut sataa, sillä vaikka Main uusi hieno takki odottaa eteisessä, hänen täytyy laittaa sadevaatteet. Mai ei halua syödä mitään, sillä hänen mahassaan asuu tiikeri, jolle ei kannata antaa ruokaa. Äiti ja isäkin vain murisevat toiselleen.</p><p>Kun Mai vihdoin ennättää päiväkotiin, tiikerit painivat hänen mahassaan. Ja lisäksi kaikilla muilla lapsilla on jo tänään valmiiksi kaveri. Main päivä on siis aivan kamalan tyhmä. Lounaan jälkeen tiikerit heräävät ja alkavat murista ja pyöriskellä…Mutta iltapäivällä äiti hakee Main aikaisin kotiin. Edessä onkin Main kamalan kiva ilta! Tiikeritkin alkavat näyttää ihan tavallisilta kissoilta.</p><p>Teos on suunnattu kolmevuotiaasta ylöspäin ja se on Tammen kustantama.</p><p>Kuva: Nadja Sarell</p>", "sv": "<p>Välkommen på releasefest för boken Main kamalan tyhmä päivä till Annegården ons 20.12. kl 16-18.</p><p>Tigrigt program för alla, delikatessen och en läsestund. <br>Tillställningen är organiserad av bokens skapare i samarbete med Annegården.</p><p>Sanna Sofia Vuori och Nadja Sarell: Main kamalan tyhmä päivä<br>En bilderbok som kittlar fantasin och lägger både ord och bild på barnets vardag och känslor.</p><p>Det regnar när Mai vaknar på morgonen. Idag hade det inte fått regna för Mai har en ny fin rock som väntar i tamburen. Nu måste hon klä på sig regnkläder. Mai vill inte äta nånting alls för det bor en tiger i hennes mage och den lönar det sig inte att mata. Mamma och pappa morrar också till varann.</p><p>När Mai kommer till dagis brottas tigrarna i magen och alla andra barn har redan ett lekpar. Mais dag är alldeles fruktansvärt dum. Under vilan vaknar ännu fler tigrar och börjar härja runt… Men på eftermiddagen hämtar mamma Mai tidigt. Det blir en fruktansvärt fin kväll! Tigrarna börjar se ut som alldeles vanliga katter.</p><p>Boken är riktad till alla över tre år och har kommit ut på Tammi.<br> <br>Bild: Nadja Sarell</p>", "en": "<p>Welcome to celebrate ”Main kamalan tyhmä päivä” picture book's launch at Annantalo on Wednesday 20th December from 4pm until 6pm.</p><p>There will be fun tigerlike programme, some treats and snacks to enjoy and a reading of the new book.</p><p>The event is organised by author Sanna Sofia Vuori and illustrator Nadja Sarell together with Annantalo.<br> <br>Photo: Nadja Sarell</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Tervetuloa Main kamalan tyhmä päivä -teoksen julkaisutilaisuuteen Annantalolle ke 20.12. klo 16-18", "sv": "Välkommen på releasefest för boken Main kamalan tyhmä päivä till Annegården ons 20.12. kl 16-18.", "en": "Welcome to celebrate ”Main kamalan tyhmä päivä” picture book's launch at Annantalo on Wednesday 20th December from 4pm until 6pm." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61674/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61330", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T12:14:23.062237Z", "last_modified_time": "2024-02-06T13:22:50.755996Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739651.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5980/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T12:14:23.041518Z", "last_modified_time": "2024-02-06T13:22:50.800844Z", "date_published": null, "start_time": "2023-12-20T14:00:00Z", "end_time": "2023-12-20T16: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": "Joulupuuro – Malmitalon joulu" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D676896A49A7D79625B2F48A4ABF4C0/Joulupuuro" }, "location_extra_info": null, "description": { "fi": "<p>Tarjolla on herkullista joulupuuroa.</p><p>Malmitalo toivottaa kaikille hyvää joulua, tervetuloa!</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Tarjolla on herkullista joulupuuroa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60178", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4646, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:16.670583Z", "last_modified_time": "2024-02-06T13:22:50.661112Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734096.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4646/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:16.483528Z", "last_modified_time": "2024-02-06T13:22:50.706326Z", "date_published": null, "start_time": "2023-12-20T14:00:00Z", "end_time": "2023-12-20T17: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": "Jouluinen kynttiläpaja" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/81E763726EE00FCB432267B977B68310/Jouluinen_kynttilapaja" }, "location_extra_info": null, "description": { "fi": "<p>Huom! Muuttunut aika: paja pidetään ke 20.12. Kiireisten jouluvalmistelujen keskellä on hyvä pitää pieni tauko. Työpajassa valmistetaan kynttilöitä kastamalla lankaa toistuvasti sulatettuun vahaan.</p><p>Pajaan mahtuu kerrallaan noin 20 henkilöä. Yksi kynttilä per osallistuja. Työpajaa ohjaa kuvataiteilija, muotoilija Chloé Mahy-Hulkko.</p><p>Ikäsuositus: Alle 10-vuotiaat aikuisen kanssa. <br>Työpajan ohjaa: Chloé Mahy-Hulkko<br>Tapahtuman kieli: suomi, ranska, englanti<br>Vapaa pääsy, ei ennakkoilmoittautumista</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Huom! Muuttunut aika: paja pidetään ke 20.12. Kiireisten jouluvalmistelujen keskellä on hyvä pitää pieni tauko. Työpajassa valmistetaan kynttilöitä kastamalla lankaa toistuvasti sulatettuun vahaan." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60178/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61141", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T14:00:30.996676Z", "last_modified_time": "2024-02-06T13:22:50.571201Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737105.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-12T14:00:30.850181Z", "last_modified_time": "2024-02-06T13:22:50.609593Z", "date_published": null, "start_time": "2023-12-20T08:30:00Z", "end_time": "2023-12-20T09:20: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": "Jultomten och trolltrumman (T) | Dagisbio", "sv": "Jultomten och trolltrumman (T) | Dagisbio" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/345AD8BCDE5A0256DC59435ACF1F341B/Jultomten_och_trolltrumman_T_Dagisbio", "sv": "http://www.vuotalo.fi/sv/evenemang/event/345AD8BCDE5A0256DC59435ACF1F341B/Jultomten_och_trolltrumman_T_Dagisbio" }, "location_extra_info": null, "description": { "fi": "<p>Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.</p><p>Aattovalmistelut edistyvät hyvää vauhtia, mutta kaikki ei sittenkään ole ihan niin kuin pitäisi. Kuka pani pippuria pipareihin? Kuka sammutti taivaalta revontulet? Miksi virus sotkee tietokoneohjelman juuri, kun Joulupukki on löytämäisillään ratkaisun kiperään lahjapulmaan? Kuka tekee Joulupukille kiusaa ja miksi ihmeessä?<br> <br>Musiikki: Sotta ja Pytty<br>Suomi 1996<br>Kesto: 51 min<br>Ruotsinkielinen puhe, suomenkielinen tekstitys. <br>Ikäraja: S<br>Vapaa pääsy, mutta ryhmille pakollinen ennakkovaraus: Kultus.fi<br>Järj. Vuotalo</p>", "sv": "<p>Tecknad film som baserar sig på Mauri Kunnas bok med samma namn.</p><p>Dagarna innan Julafton anländer den sista säcken med brev till Tomten. Längst ner ligger ett brev som är lite äldre än alla andra, det är en teckning som föreställer, ja säg det. Medans den snuvige Tomtefar försöker lista ut vad det är teckningen föreställer så börjar underliga saker hända.<br> <br>Musik: Sås och Kopp<br>Utgivningsår: 1996<br>Längd: 51 min<br>Svenskt tal, finsk text. <br>Åldersgräns: T<br>Fritt deltagande men obligatorisk platsbokning för grupper via Kultus.fi<br>Arr. Nordhuset</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.", "sv": "Tecknad film som baserar sig på Mauri Kunnas bok med samma namn." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61141/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60641", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4664, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:35.539118Z", "last_modified_time": "2024-02-06T13:22:50.481835Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733540.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4664/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:28:35.395443Z", "last_modified_time": "2024-02-06T13:22:50.520765Z", "date_published": null, "start_time": "2023-12-20T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jultomten och trolltrumman (T) | Dagisbio", "sv": "Jultomten och trolltrumman (T) | Dagisbio" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8F1D6D06AA411929B382F4FA6526D110/Jultomten_och_trolltrumman_T_Dagisbio", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8F1D6D06AA411929B382F4FA6526D110/Jultomten_och_trolltrumman_T_Dagisbio" }, "location_extra_info": null, "description": { "fi": "<p>Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.</p><p>Aattovalmistelut edistyvät hyvää vauhtia, mutta kaikki ei sittenkään ole ihan niin kuin pitäisi. Kuka pani pippuria pipareihin? Kuka sammutti taivaalta revontulet? Miksi virus sotkee tietokoneohjelman juuri, kun Joulupukki on löytämäisillään ratkaisun kiperään lahjapulmaan? Kuka tekee Joulupukille kiusaa ja miksi ihmeessä?<br> <br>Musiikki: Sotta ja Pytty<br>Suomi 1996<br>Kesto: 51 min<br>Ruotsinkielinen puhe, suomenkielinen tekstitys. <br>Ikäraja: S<br>Vapaa pääsy, mutta ryhmille pakollinen ennakkovaraus: Kultus.fi<br>Järj. Vuotalo</p>", "sv": "<p>Tecknad film som baserar sig på Mauri Kunnas bok med samma namn.</p><p>Dagarna innan Julafton anländer den sista säcken med brev till Tomten. Längst ner ligger ett brev som är lite äldre än alla andra, det är en teckning som föreställer, ja säg det. Medans den snuvige Tomtefar försöker lista ut vad det är teckningen föreställer så börjar underliga saker hända.<br> <br>Musik: Sås och Kopp<br>Utgivningsår: 1996<br>Längd: 51 min<br>Svenskt tal, finsk text. <br>Åldersgräns: T<br>Fritt deltagande men obligatorisk platsbokning för grupper via Kultus.fi<br>Arr. Nordhuset</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.", "sv": "Tecknad film som baserar sig på Mauri Kunnas bok med samma namn." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60641/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60763", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2023-3465005/" }, "price": { "fi": "47 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4663, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:35.156926Z", "last_modified_time": "2024-02-06T13:22:50.391238Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736330.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4663/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:34.998026Z", "last_modified_time": "2024-02-06T13:22:50.431959Z", "date_published": null, "start_time": "2023-12-19T17: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": "Club For Five - Jouluna 2023" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5D6BEFC4208BE84D0B80792AF20B5B5D/Club_For_Five_-_Jouluna_2023" }, "location_extra_info": null, "description": { "fi": "<p>Club For Five tuo tänäkin vuonna joulun suomalaisten sydämiin.</p><p>Yhtyeen viime jouluna loppuunmyyty JOULUNA -konsertti liikkuu sulavasti tunnelmasta toiseen luoden kuulijalleen vuoroin hartaita hengähdyksiä, vuoroin iloa ja kuplivaa joulun odotuksen riemua.</p><p>Tule kokemaan joulun rakastetuin konsertti.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "provider_contact_info": null, "provider": { "fi": "Helmi Promotion Oy" }, "short_description": { "fi": "Club For Five tuo tänäkin vuonna joulun suomalaisten sydämiin." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60763/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61395", "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:33/?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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6141, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-22T14:13:48.463526Z", "last_modified_time": "2024-02-06T13:22:50.292693Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740309.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6141/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-22T14:13:48.425655Z", "last_modified_time": "2024-02-06T13:22:50.332760Z", "date_published": null, "start_time": "2023-12-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maria Baric Company: Joulupallo – Malmitalon joulu" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF76EC88B3944AC58DF6F08778025F9B/Maria_Baric_Company_Joulupallo_" }, "location_extra_info": null, "description": { "fi": "<p>Joulupallo on lumoava joulutarina lapsen omien vahvuuksien etsimisestä ja löytämisestä.</p><p>“Jokaisella meistä on jokin lahja, joka tekee meistä erityisen. Se pitää vain löytää.”</p><p>Esityksessä esiintyjä on läpinäkyvän, kuin lumisadepallon muotoisen esiintymislavan sisällä. Yleisö kerääntyy pallon ympärille kokemaan taianomaisen hetken tonttujen kanssa, tähtiin kirjoitettujen tarinoiden äärellä.</p><p><i>Neljä pientä tonttua.<br>Neljä erityistä lahjaa.<br>Neljä kaunista kohtaamista,<br>jotka johdattavat joulun tunnelmaan.</i></p><p>Esityksen aikana se lukuisin jouluvaloin koristeltu pallo syttyy tuikkimaan valoaan, ja muuttuu kaunista musiikkia soittavaksi joulupalloksi, tuoden mukanaan yleisöilleen pienen pieniä jouluyllätyksiä.</p><p>Lämminhenkinen koko perheen joulusatu joulunodotukseen.</p><p>Kesto: 30 minuuttia<br>Ikäsuositus: sopii kaikenikäisille</p><p>Joulupallo - Maria Baric Company:<br>Esiintyjä: Heidi Tiainen<br>Käsikirjoitus & ohjaus Maria Baric<br>Dramaturgia Nemanja Stojanovic<br>Musiikki Maria Baric, Saana Trygg-Nevanlinna<br>Nuket: Anu Pensola ja Aapo Repo<br>Kertoja äänitteellä Veikko Honkanen<br>Tuotanto Maria Baric Company/Kulttuurimylly</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Joulupallo on lumoava joulutarina lapsen omien vahvuuksien etsimisestä ja löytämisestä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61322", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5967, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T10:13:35.724485Z", "last_modified_time": "2024-02-06T13:22:50.200018Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739959.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5967/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T10:13:35.706657Z", "last_modified_time": "2024-02-06T13:22:50.239749Z", "date_published": null, "start_time": "2023-12-19T15: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": "Malmitalon yhteislaulut – Malmitalon joulu", "sv": "Allsång på Malms kulturhus", "en": "Sing-alongs at Malmitalo" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/25DFD60D59B6F98D217AC432B8104C52/Malmitalon_yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/25DFD60D59B6F98D217AC432B8104C52/Allsang_pa_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/25DFD60D59B6F98D217AC432B8104C52/Sing-alongs_at_Malmitalo" }, "location_extra_info": null, "description": { "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai! Joulukuussa kahdesti!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11., 13.12. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>", "sv": "<p>Allsång på Malms kulturhus – den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11, 13.12 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>", "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November, and13 and 19 December at 17.00.</p><p>We look forward to seeing you!</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Malmitalon yhteislaulut – kuukauden paras tiistai! Joulukuussa kahdesti!", "sv": "Allsång på Malms kulturhus – den bästa tisdagen i månaden!", "en": "Sing-alongs at Malmitalo – best Tuesday of the month!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60762", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2023-3465005/" }, "price": { "fi": "47 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4662, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:34.779045Z", "last_modified_time": "2024-02-06T13:22:50.106166Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736329.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4662/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:34.463003Z", "last_modified_time": "2024-02-06T13:22:50.143999Z", "date_published": null, "start_time": "2023-12-18T17: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": "Club For Five - Jouluna 2023" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C10BEB977CB0411C37D78B009AC0DF4B/Club_For_Five_-_Jouluna_2023" }, "location_extra_info": null, "description": { "fi": "<p>Club For Five tuo tänäkin vuonna joulun suomalaisten sydämiin.</p><p>Yhtyeen viime jouluna loppuunmyyty JOULUNA -konsertti liikkuu sulavasti tunnelmasta toiseen luoden kuulijalleen vuoroin hartaita hengähdyksiä, vuoroin iloa ja kuplivaa joulun odotuksen riemua.</p><p>Tule kokemaan joulun rakastetuin konsertti.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "provider_contact_info": null, "provider": { "fi": "Helmi Promotion Oy" }, "short_description": { "fi": "Club For Five tuo tänäkin vuonna joulun suomalaisten sydämiin." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60762/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60436", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4661, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:33.233577Z", "last_modified_time": "2024-02-06T13:22:50.008340Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730319.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4661/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:32.170927Z", "last_modified_time": "2024-02-06T13:22:50.045952Z", "date_published": null, "start_time": "2023-12-18T16: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": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A418840B2692B748F317B4C1ACA60AB7/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A418840B2692B748F317B4C1ACA60AB7/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/A418840B2692B748F317B4C1ACA60AB7/Let_us_sing_" }, "location_extra_info": null, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p>Kesto: 1 t</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60666", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/name-17444635" }, "price": { "fi": "53,90 /45,40 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4660, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:31.428007Z", "last_modified_time": "2024-02-06T13:22:49.910057Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735092.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4660/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:31.118031Z", "last_modified_time": "2024-02-06T13:22:49.948770Z", "date_published": null, "start_time": "2023-12-17T17: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": "Erja Lyytinen & Friends: Blue Christmas 2023 – Erja Lyytinen - Sami Yaffa – Mira Luoti" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/626504B059F3509351B7B63707F1349D/_Erja_Lyytinen_Friends_Blue_Christmas_2023" }, "location_extra_info": null, "description": { "fi": "<p>Erja Lyytinen - Sami Yaffa – Mira Luoti IKIMUISTOINEN KONSERTTIELÄMYS SINISEN BLUESIN JA PUNAISEN JOULUN YSTÄVILLE!</p><p>Rokkaavan riemukas Blue Christmas 2023 -kiertue on laulaja-kitaristi Erja Lyytisen emännöimä kiertue, joka on vakiinnuttanut paikkansa blues-rockista nauttivien kuulijoiden jokavuotisena jouluperinteenä! Tänä vuonna kiertueella nähdään Lyytisen rinnalla basisti Sami Yaffa sekä laulaja Mira Luoti.<br> <br>Konsertissa kuullaan Erja Lyytisen ja hänen solistivieraidensa suosikkikappaleita vuosien varrelta. Lisäksi ohjelmistossa on rokkaavia sovituksia ja tunnelmallisia tulkintoja tutuista – ja vähän tuntemattomammistakin – joululauluista. Solistikolmikko esittää kappaleita kaksi tuntia kestävässä konserttikokonaisuudessa yhdessä ja erikseen, taustallaan Erja Lyytisen luotettu bändi. Konsertti on siis monipuolinen kattaus bluesia, rock’n’rollia ja ikivihreitä sävelmiä!</p><p>Erja Lyytinen kuuluu nykyään maailman tunnetuimpien ja arvostetuimpien valkoihoisten<br>blues-artistien harvalukuiseen joukkoon. Lyytisen viimeisin albumi ”Waiting for the Daylight” on saanut erittäin laajaa huomiota maailmanlaajuisesti musiikkialan medioissa ja lisäksi albumin ”Bad Seed” -kappaleen kitarasoolo valittiin vuoden 2022 parhaaseen kymmenikköön Guitar World -lehden äänestyksessä.</p><p>Sami Yaffa on basistilegenda, rockmaailman ikoni ja tinkimätön oman tiensä kulkija, joka nousi rockin huipulle myyttisen Hanoi Rocksin basistina. Tämä New Yorkin kujakolli, valojen ja varjojen mies sekä katu-uskottavuuden ruumiillistuma on levyttänyt Bruce Springsteenin ja Slashin kanssa, soittanut New York Dollsissa ja Joan Jett & The Blackheartsissa ja esiintynyt Carnegie Hallissa.</p><p>Legendaarisesta PMMP-yhtyeestä aloittanut Mira Luoti tunnetaan nykyisin myös pitkästä soolourastaan. Lisäksi Luoti on näytellyt useissa teatteriproduktioissa, joista viimeisimpänä Mä maalaispoika oon -musikaali Sappeen kesäteatterissa. Luoti on hurmannut suomalaisia myös television välityksellä, muun muassa Vain Elämää sekä Suomi Soi -ohjelmissa.</p><p>Konsertin kesto 2 h 25 min, sis. väliaika 30 min</p>" }, "provider_contact_info": null, "provider": { "fi": "Bluesland Productions Oy" }, "short_description": { "fi": "Erja Lyytinen - Sami Yaffa – Mira Luoti IKIMUISTOINEN KONSERTTIELÄMYS SINISEN BLUESIN JA PUNAISEN JOULUN YSTÄVILLE!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60666/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60040", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/" }, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4659, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:30.869296Z", "last_modified_time": "2024-02-06T13:22:49.809477Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732305.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4659/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:30.681830Z", "last_modified_time": "2024-02-06T13:22:49.848102Z", "date_published": null, "start_time": "2023-12-16T17: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": "Global Club Nights: Faso Kan | The Shameless Shongololo Band", "sv": "Global Club Nights: Faso Kan | The Shameless Shongololo Band", "en": "Global Club Nights: Faso Kan | The Shameless Shongololo Band" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/B59F183CADA3352D404F7367AAAF8F61/Global_Club_Nights_Faso_Kan_The_Shameless_Shongololo_Band", "sv": "http://www.caisa.fi/sv/evenemang/event/B59F183CADA3352D404F7367AAAF8F61/Global_Club_Nights_Faso_Kan_The_Shameless_Shongololo_Band", "en": "http://www.caisa.fi/en/events/event/B59F183CADA3352D404F7367AAAF8F61/Global_Club_Nights_Faso_Kan_The_Shameless_Shongololo_Band" }, "location_extra_info": null, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p><b>Faso Kan</b> <br>Faso Kan esittää Länsi-Afrikan rikkaasta musiikkiperinteestä ponnistavaa melodista ja vauhdikasta musiikkia, joka ei jätä yhtäkään yleisöä kylmäksi. Lavalla yhtye antaa soiton, tanssin ja laulun ilon näkyä.</p><p>Kokoonpano: <br>Issa Dembele, balafon, laulu, djembe, congat <br>Adama Koné, kora, balafon, laulu, djembe <br>Ossi Raippalinna, rummut, perkussiot</p><p><b>The Shameless Shongololo Band</b><br>The Shameless Shongololo Band esittää orgaanisia rytmejä, häpeämättömiä diskobiittejä, mahtavia torvisointuja ja koskettavaa laulua! Suomalais-eteläafrikkalaisen laulaja-huilisti Ayla Brinkmannin johtama yhdeksänhenkinen orkesteri herättää henkiin ainutlaatuisen soundin, josta skandinaavinen yleisö pääsee harvoin nauttimaan. Shongololo (isXhosa, isiZulu: tuhatjalkainen) on pysäyttämätön kiiltävä kaveri, joka liikuttaa lukuisia jalkoja.</p><p>Kesto: 3,5 h (sis. 15 min väliaika)<br>Ikäsuositus: sopii kaikille<br>Kieli: englanti, suomi, portugali ja espanja<br>Liput: 10/6 €, lippu.fi</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p>Global Club Nights (GCN) anordnas i samarbete med Globala musikinstitutionen vid Sibeliusakademin och Kulturcentret Caisa.</p><p><b>Faso Kan</b><br>Faso Kan framför melodisk och fartfylld musik som tar sats från Västafrikas rika musikaliska arv och som inte lämnar publiken oberörd. Bandet låter spelandet, dansen och glädjen synas på scenen.</p><p><b>The Shameless Shongololo Band</b><br>The Shameless Shongololo Band presenterar organisk groove och fräcka discotakter, mäktiga horn och suggestiv sång! Denna orkester bestående av nio medlemmar, ledd av den finsk-sydafrikanska sångaren-flöjtisten Ayla Brinkmann ger liv åt ett unikt sound som man sällan får höra live i Skandinavien. Shongololo (isXhosa, isiZulu: tusenfoting) är en ostoppbar glänsande varelse som vandrar på jorden med många, många ben.</p><p>Längd: 3,5 t (med 15 min paus)<br>Åldersrekommendation: för alla åldrar<br>Språk: engelska, finska, portugal, spanska <br>Biljetter: 10/6 €, lippu.fi</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment.</p><p>With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) is produced in collaboration with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p><b>Faso Kan</b><br>Faso Kan’s new album Tungaladen (Adventurer) highlights elements from West African music and storytelling tradition. In griot families the wisdom of the ancestors has been passed from generation to generation during centuries in the form of stories, music and dances. Each member of the band brings their musical adventures and expertice into the mix. The shared love for music results in a musical meeting of diverse cultures, the past, and the future.</p><p><b>The Shameless Shongololo Band</b><br>The shameless band Shongololo organic grooves and shameless disco beats, mighty horns and haunting vocals! This nine-piece orchestra led by Finnish–South Africa singer-flutist Ayla Brinkmann brings to life a unique sound seldom heard live in Scandinavia. The Shongololo (isXhosa, isiZulu: millipede) is an unstoppable shiny fellow who walks the earth with many many legs.</p><p>Duration: 3,5 h (inc. 15 min intermission)<br>Age recommendation: for all ages<br>Language: English, Finnis, Portuguese, Spanish <br>Tickets: 10/6 €, lippu.fi</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.", "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60040/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61378", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "8 € / 11 € / 16 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6089, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-17T10:13:42.858445Z", "last_modified_time": "2024-02-06T13:22:49.717911Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740150.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6089/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-17T10:13:42.836944Z", "last_modified_time": "2024-02-06T13:22:49.758952Z", "date_published": null, "start_time": "2023-12-16T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pukinmäen taidekoulut: AIKA-sirkusmusikaali" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BCE0A3067EEB857C626CB2CE9AD2AC89/Pukinmaen_taidekoulut_AIKA-sirkusmusikaali" }, "location_extra_info": null, "description": { "fi": "<p>Mihin Aika katosi? Ainan ja Einon aikamatkalla palataan menneisyydestä tulevaisuuteen ja etsitään tämän hetken tärkeyttä.</p><p>Kuka uskaltaa ottaa pisimmän aikahypyn?</p><p>Aika-sirkusmusikaali kokoaa yhteen koko Pukinmäen taidekoulujen yhteisön. Eri-ikäiset oppilaat, opettajat ja alumnit tuovat Malmitalon näyttämölle 14.–16.12. monitaideproduktion, joka toteutetaan yhdessä luomisen periaatteilla.<br> <br>Alkuperäisidea, käsikirjoitus ja ohjaus: Kaija-Leena Alatalo<br>Sirkusohjaus: Jilka Repo<br>Sävellykset, sanoitukset, sovitukset: Kaija-Leena Alatalo <br>Musiikin harjoituttaminen: Hanna Paatelma, Inka Liitiäinen, Sakurako Ishiyama<br>Puvustus: Johanna Salonen, Mari Rissanen, Maria Metsojoki<br>Esiintyjät: Pukinmäen taidekoulujen sirkus-, musiikki-, tanssi- ja teatterioppilaita<br>Visuaalinen ilme: kuvataidekoulun opettajat ja oppilaat<br> <br>Tekijätiedot täydentyvät luomisprosessin aikana.</p><p>Liput Lippupisteestä, tulevat myyntiin lähempänä tapahtumaa</p>" }, "provider_contact_info": null, "provider": null, "short_description": { "fi": "Mihin Aika katosi? Ainan ja Einon aikamatkalla palataan menneisyydestä tulevaisuuteen ja etsitään tämän hetken tärkeyttä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61378/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58659", "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: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/name-16144841", "sv": "https://www.lippu.fi/event/name-16144841", "en": "https://www.lippu.fi/event/name-16144841" }, "price": { "fi": "65/48,50 €", "sv": "65/48,50 €", "en": "65/48,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4658, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:30.452460Z", "last_modified_time": "2024-02-06T13:22:49.623507Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722937.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4658/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:30.285904Z", "last_modified_time": "2024-02-06T13:22:49.662564Z", "date_published": null, "start_time": "2023-12-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": "Anna Eriksson - Gloria Joulukonsertti – Rakastetuimmat Joululaulut", "sv": "Anna Eriksson – julkonserten Gloria – De mest älskade julsångerna", "en": "Anna Eriksson – Gloria Christmas concert – Most beloved Christmas songs" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D94AFB5F41401B554D0E528B4A94FB8D/_Anna_Eriksson_-_Gloria_Joulukonsertti", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D94AFB5F41401B554D0E528B4A94FB8D/Anna_Eriksson_julkonserten_Gloria", "en": "http://www.savoyteatteri.fi/en/events/event/D94AFB5F41401B554D0E528B4A94FB8D/Anna_Eriksson_Gloria_Christmas_concert" }, "location_extra_info": null, "description": { "fi": "<p>”Kauneinta joulussa ovat muistot; ne jotka on kätketty sydämeen ja ne, joita luodaan tässä ja nyt. Rakastetuimmissa joululauluissa on läsnä sekä haikeus, että ilo. Niissä on voimaa ja valoa. Ne soivat vielä kauan meidän jälkeemme. Siinä on jotain kovin lohdullista. Juuri niitä lauluja haluan laulaa tällä kiertueella”, Anna Eriksson</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Kesto n. 1 h 20 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>”Det vackraste med julen är minnena, de som finns dolda i våra hjärtan och de som skapas här och nu. I de mest älskade julsångerna är både vemodet och glädjen närvarande. De har kraft och ljus. De klingar ännu långt efter att vi själva tystnat. Det är en tröstefull tanke. Just de sångerna vill jag sjunga på den här turnén”, säger Anna Eriksson.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Längd ca 1 h 20 min, ingen paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>“What I find most beautiful about Christmas are the memories hidden in our hearts and the ones we create here and now. The most beloved Christmas songs are wistful and joyous at the same time. They provide us with strength and light. They will be around long after we are gone. There is something very comforting about that. These are the songs I want to sing on this tour,” Anna Eriksson says.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Duration approx. 1 h 20 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "provider_contact_info": null, "provider": { "fi": "Ihode Management Oy", "sv": "Ihode Management Oy", "en": "Ihode Management Oy" }, "short_description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:58659/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 28163, "next": "