Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=246
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=247", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=245" }, "data": [ { "id": "kulke:61884", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7106, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T14:13:09.248794Z", "last_modified_time": "2024-02-06T13:23:09.435189Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738412.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7106/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T14:13:09.224519Z", "last_modified_time": "2024-04-05T17:13:45.724446Z", "date_published": null, "start_time": "2024-02-19T08:00:00Z", "end_time": "2024-02-19T12: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8B65BC2189ACD59D5D7BE11C8296110B/TAYNNA_Animoin_", "sv": "http://www.caisa.fi/sv/evenemang/event/8B65BC2189ACD59D5D7BE11C8296110B/FULLBOKAT_Jag_animerar_", "en": "http://www.caisa.fi/en/events/event/8B65BC2189ACD59D5D7BE11C8296110B/FULL_BOOKED_I_animate_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>KURSSI ON TÄYNNÄ.</p><p>Kaksipäiväisessä työpajassa tutustutaan stopmotion- animaation tekemiseen. Käytössä ovat tabletit ja ohjelmina ovat Stopmotion ja Procreate.</p><p>Työpajassa on lyhyt lounastauko (klo 11.30–12), joten lapsille kannattaa pakata eväitä ja juomapullo mukaan.</p><p>Työpajan ohjaajana toimii taidekasvattaja Kristina Laine.</p><p><b>Ilmoittautuminen</b></p><p>Työpaja on maksuton, mutta vaatii sitovan ilmoittautumisen. Paikkoja on rajatusti.</p><p>Ilmoittaudu tästä linkistä:<br>https://forms.office.com/e/ZVvPdgfLxP</p><p>Kieli: suomi, tarvittaessa englanti</p>", "sv": "<p>KURS ÄR FULLBOKAT.</p><p>I den två dagar långa verkstaden får du lära dig hur man gör en stopmotion-animation. Verkstaden innehåller en kort lunchrast (kl. 11.30–12), så packa gärna mat och dryck för barnen.</p><p>Klicka på denna länk för att registrera dig: https://forms.office.com/e/ZVvPdgfLxP</p><p>Språk: finska</p>", "en": "<p>THE COURSE IS FULL BOOKED.</p><p>In the two-day workshop, you will learn about making stop motion animation. The workshop has a short lunch break (11:30 a.m. to 12 noon), so we recommend packing snacks and a drink for the children.</p><p>Click on this link to register: https://forms.office.com/e/ZVvPdgfLxP</p><p>Language: Finnish + English (if necessary)</p>" }, "name": { "fi": "TÄYNNÄ Animoin! – Animaatiotyöpaja 7–12-vuotiaille lapsille", "sv": "FULLBOKAT Jag animerar! – Animationsverkstad för barn mellan 7 och 12 år", "en": "FULL BOOKED I animate! – Animation workshop for children aged 7–12" }, "short_description": { "fi": "KURSSI ON TÄYNNÄ.", "sv": "KURS ÄR FULLBOKAT.", "en": "THE COURSE IS FULL BOOKED." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61595", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T13:15:25.560617Z", "last_modified_time": "2024-02-06T13:23:09.339696Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739483.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6467/?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-07T13:15:25.544594Z", "last_modified_time": "2024-04-05T17:13:45.682116Z", "date_published": null, "start_time": "2024-02-19", "end_time": "2024-02-22", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/88EAC60190AA990B4637B6B55B272DE5/VARATTU_TAYTEEN_Talvilomakurssi_Satumetsan_salaisuus", "sv": "http://www.vuotalo.fi/sv/evenemang/event/88EAC60190AA990B4637B6B55B272DE5/VARATTU_TAYTEEN_Talvilomakurssi_Satumetsan_salaisuus", "en": "http://www.vuotalo.fi/en/events/event/88EAC60190AA990B4637B6B55B272DE5/VARATTU_TAYTEEN_Talvilomakurssi_Satumetsan_salaisuus" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tällä elämysleirillä selvitetään satumetsän salaisuutta ja luodaan itse satumetsä ympärillemme!</p><p>Maanantaista torstaihin klo 10–14.</p><p>Leirillä askarrellaan satumaisia taideteoksia, runoillaan ja leikitään seuraten koko ajan samalla tarinaa, joka paljastaa pikkuhiljaa satumetsän salaisuutta. Leirin lopussa pelataan teemaan sopiva satumainen pakopeli.</p><p>Kohderyhmä: 1–3-luokkalaiset<br>Ohjaaja: Maaria Klemetti</p><p>Maksuton osallistuminen. Ilmoittautumiset 1.12.2023 alkaen: salla.fornaro@hel.fi tai puh. 040 537 1520.</p><p>Huom! Ilmoittautuminen on sitova ja paikka pitää perua hyvissä ajoin ennen leirin alkua, jos lapsi ei pääsekään osallistumaan.</p>", "sv": "<p>I upplevelselägret tar vi reda på hemligheten med sagoskogen och skapar själva sagoskogen runt omkring oss!</p><p>Måndag till torsdag kl. 10–14.</p><p>På lägret skapar man sagolika konstverk, skriver dikter och leker, och samtidigt hela tiden följer en berättelse som långsamt avslöjar sagoskogens hemlighet. I slutet av lägret spelas ett sagolikt flyktspel som passar temat.</p><p>Fråga mer och registrera: salla.fornaro@hel.fi</p>", "en": "<p>At this experience camp, we will explore the Secret of the Fairy Tale Forest and create our own fairy tale forest around us!</p><p>Monday through Thursday from 10 a.m. to 2 p.m.</p><p>At the camp, we will craft fairy-tale artworks, write poems and play while following a story that slowly reveals the secret of the fairy-tale forest. At the end of the camp, we will play a fairy-tale escape game.</p><p>Enquiries and registration:salla.fornaro@hel.fi</p>" }, "name": { "fi": "VARATTU TÄYTEEN Talvilomakurssi: Satumetsän salaisuus", "sv": "VARATTU TÄYTEEN Talvilomakurssi: Satumetsän salaisuus", "en": "VARATTU TÄYTEEN Talvilomakurssi: Satumetsän salaisuus" }, "short_description": { "fi": "Tällä elämysleirillä selvitetään satumetsän salaisuutta ja luodaan itse satumetsä ympärillemme!", "sv": "I upplevelselägret tar vi reda på hemligheten med sagoskogen och skapar själva sagoskogen runt omkring oss!", "en": "At this experience camp, we will explore the Secret of the Fairy Tale Forest and create our own fairy tale forest around us!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61631", "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" }, { "@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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6514, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-08T13:14:15.793622Z", "last_modified_time": "2024-02-06T13:23:09.250226Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738215.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6514/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-08T13:14:15.765328Z", "last_modified_time": "2024-04-05T17:13:45.628003Z", "date_published": null, "start_time": "2024-02-19", "end_time": "2024-03-09", "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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F0B7313E74AAE5001DF8262BE25C9103/Minun_elamani_Ukraina_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F0B7313E74AAE5001DF8262BE25C9103/Minun_elamani_Ukraina_", "en": "http://www.kanneltalo.fi/en/events/event/F0B7313E74AAE5001DF8262BE25C9103/Minun_elamani_Ukraina_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kuvataidenäyttely sodan aiheuttamasta tuhosta, pelon voittamisesta ja unelmista.</p><p>Minun elämäni, Ukraina! on OSIRIS teatterin yhteistyöhanke ukrainalaisten maahanmuuttajien, kausityöntekijöiden, pakolaisten, eri alojen taiteilijoiden sekä teatterialan ammattilaisten kanssa.</p><p>Näyttely koostuu OSIRIS teatterin Ukraina-hankkeen aikana <b>Ahmed Alalousin</b> ottamista valokuvista Suomessa sekä samaan aikaan <b>Oleksandra Abdurashytovan</b> ottamista Ukrainan sodan aikaisista valokuvista Ukrainassa. Valokuvat kertovat sodan aiheuttamasta tuhosta, pelon voittamisesta ja unelmista. Ne kertovat myös Suomeen paenneiden naisten tarinoista, heidän surustaan ja sitkeydestään, rohkeudesta ja jälleenrakentamisen voimasta.</p><p>Näyttelyn toisen osion muodostaa Ukrainan Tšernihivin kaupungin jälleenrakennusprojektin suunnitelmat. Arkkitehtitoimisto Kanttia 2 ja arkkitehti <b>Anastasiia Pihlman</b> loivat ohjeiston sodan aikana mittavia tuhoja kärsineen Tšernihivin jälleenrakentamiselle. Kanttia 2:n ja Pihlmanin luomassa dokumentaatiossa analysoidaan rakennukset, julkisivut, kadut, torit ja puistoalueet ja annetaan esimerkkejä siitä, miten ne voitaisiin suunnitella. Lisäksi kiinnitetään huomiota esteettömyyteen, energiaratkaisuihin sekä esimerkiksi väestönsuojiin. Näyttelyssä esitellään ohjeisto visualisointikuvineen sekä hankkeen seuraavat vaiheet.</p><p>Näyttelyn oheisohjelma:<br> <br>Ke 14.2. klo 12.00–15.00<br>Ystävänpäivän askartelutyöpaja: Taitellaan paperista pieniä kukkia, jotka halutessaan voi jättää osaksi näyttelyä<br> <br>La 2.3. klo 13.00<br>OSIRIS teatteri: Sotaa paenneiden naisten tarinoita ja lauluja<br> <br>La 9.3. klo 13.00<br>Arkkitehti Anastasiia Pihlman esittelee Tšernihivin kaupungin suomalais-ukrainalaista jälleenrakennusprojektia.</p><p>Kuvataidenäyttelyn lisäksi hankkeessa toteutetaan Minun elämäni, Ukraina! -näyttämöteos, jonka ensi-ilta on 21.2.2024 klo 19 Malmitalossa.</p><p>Tuotanto OSIRIS teatteri<br>Opetus- ja kulttuuriministeriö on tukenut hanketta.</p>", "sv": "<p>Bildkonstutställning om krigets förstörelse, om att övervinna rädslan och om drömmarna.</p><p>Mitt liv, Ukraina! är ett samarbetsprojekt mellan OSIRIS teater och ukrainska och finländska invandrare, säsongsarbetare, flyktingar, konstnärer inom olika branscher samt teaterproffs.</p>", "en": "<p>A visual art exhibition about the destruction caused by war, overcoming fear, and dreams.</p><p>My Life, Ukraine! is OSIRIS theatre’s cooperation project with Ukrainian and Finnish immigrants, seasonal workers, refugees, artists from various fields and theatre professionals.</p>" }, "name": { "fi": "Minun elämäni, Ukraina!", "sv": "Minun elämäni, Ukraina!", "en": "Minun elämäni, Ukraina!" }, "short_description": { "fi": "Kuvataidenäyttely sodan aiheuttamasta tuhosta, pelon voittamisesta ja unelmista.", "sv": "Bildkonstutställning om krigets förstörelse, om att övervinna rädslan och om drömmarna.", "en": "A visual art exhibition about the destruction caused by war, overcoming fear, and dreams." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61631/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61238", "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: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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6168, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T11:13:41.001604Z", "last_modified_time": "2024-02-06T13:23:09.154506Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739462.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6168/?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-23T11:13:40.972623Z", "last_modified_time": "2024-04-05T17:13:45.577872Z", "date_published": null, "start_time": "2024-02-19", "end_time": "2024-02-25", "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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6FF075C5DB1C9DC14B04500AD5791926/Tanssiva_talviloma", "sv": "http://www.annantalo.fi/sv/evenemang/event/6FF075C5DB1C9DC14B04500AD5791926/Tanssiva_talviloma", "en": "http://www.annantalo.fi/en/events/event/6FF075C5DB1C9DC14B04500AD5791926/Tanssiva_talviloma" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Viileitä tanssiliikkeitä ja jäätävän siistejä askelkuvioita! Talvilomaviikolla tanssin riemu valtaa Annantalon ja luvassa on monipuolista tanssiteemaista ohjelmaa.</p><p>Arkipäivinä koululaiset pääsevät nauttimaan tanssiteemaisista leffoista elokuvateatteri <b>TanssiKinossa</b>.</p><p>Maanantaina katsotaan norjalainen uutuuselokuva <b>Dancing Queen</b>, jonka tunnelmiin virittäydytään tanssietkoilla –ja jatkoilla. <br> <br>Tiistaina Ihanat-tanssiryhmän sooloesitysprojekti <b>Muotokuvia</b> ja tanssielokuvatrilogia <b>Z-sukupolvi</b> nostavat esiin tanssijoita, joista jokaisella on oma erityisyytensä. Heti Ihanien esitysten jälkeen siirrymme ihmettelemään Kaarisillan <b>Miltä tuntuu olla eläin?</b> -näyttelyn avajaisia. Näyttely tuo esille eri tekniikoilla työskentelevien erityistä tukea tarvitsevien Kaarisillan taitelijoiden eläinaiheisia töitä. <br> <br>Keskiviikon TanssiKinossa katsotaan Walt Disneyn <b>Encanto</b>, joka on musiikkia ja tanssia pursuava Oscar-palkittu animaatioelokuva. Pienemmille katsojille järjestetään <b>NaperoKino</b>, jossa näytetään lyhytanimaatioita teemalla luovuus ja taiteet. <br> <br>Torstaina Ko-kollektiivi tuo Annantalolle <b>Tanssikorttipakan</b>, osallistavan tanssiesityksen, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa. Iltapäivän TanssiKinossa katsotaan klassikkoelokuva <b>Billy Elliot</b> (2000), joka on suunnattu nuorille katsojille. <br> <br>Perjantaina Annantalolla nähdään eläimellisiä tanssiliikkeitä, kun <b>AnnanHouse – koko perheen disko</b> villitsee, tällä kertaa eläinteemalla. Päivän tunnelmiin virittäydytään TanssiKinossa <b>Sing 2</b> -eläinmusikaalia katsomalla. <br> <br>Sunnuntaina eli talvilomaviikon päätöspäivässä nautitaan Tanssiteatteri Raatikon esityksestä <b>Hip Hop Hurraa! Hyrrän pyörteissä</b> -työpajassa tutustutaan puolestaan optiseen taiteeseen valmistamalla omat tanssivat taikahyrrät. Lisäksi Janne Stormin <b>Birth of a Bird</b> -teoksessa päästään vr-lasien avulla testaamaan, miltä tuntuu koskettaa ääntä ja ohjata sitä liikkeellä. <br> <br>Tervetuloa mukaan viettämään viileää ja tanssin täyteistä talvilomaa!</p><p>Talvilomaviikon aikataulu päivittyy talven aikana <u><a href=\"https://annantalo.fi/fi/tapahtumat/?q=Tanssiva%20talviloma\">Annantalon tapahtumakalenterissa</u></a>.</p>", "sv": "<p>Dansande vinterlov! Coola danssteg och rysande snygga stegmönster! Under vinterlovsveckan kommer dansens glädje att råda över Annegården och det temat ska vara ett mångsidigt danstema.</p><p>Skolbarn får njuta av filmer med danstema i biografen DansKino, dansverkstäder, hela familjens disco, Hur känns det att vara ett djur? -utställningen och hip-hop-dansteater.</p>", "en": "<p>Dancing Winter Holiday – Cool dance moves and ice-cold steps! During the winter holiday week, the joy of dancing will take over Annantalo with versatile dance-themed programme.</p><p>Schoolchildren can enjoy dance-themed movies at the TanssiKino cinema, dance workshops, a disco for the whole family, the What does it feel like to be an animal? exhibition and hip hop dance theatre.</p>" }, "name": { "fi": "Tanssiva talviloma", "sv": "Tanssiva talviloma – Dansande vinterlov", "en": "Tanssiva talviloma – Dancing Winter Holiday" }, "short_description": { "fi": "Viileitä tanssiliikkeitä ja jäätävän siistejä askelkuvioita! Talvilomaviikolla tanssin riemu valtaa Annantalon ja luvassa on monipuolista tanssiteemaista ohjelmaa.", "sv": "Dansande vinterlov! Coola danssteg och rysande snygga stegmönster! Under vinterlovsveckan kommer dansens glädje att råda över Annegården och det temat ska vara ett mångsidigt danstema.", "en": "Dancing Winter Holiday – Cool dance moves and ice-cold steps! During the winter holiday week, the joy of dancing will take over Annantalo with versatile dance-themed programme." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61570", "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: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:44/?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": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/mais-harb-the-middle-eastern-ensemble-3428498/", "sv": "https://www.lippu.fi/artist/stoa/mais-harb-the-middle-eastern-ensemble-3428498/", "en": "https://www.lippu.fi/artist/stoa/mais-harb-the-middle-eastern-ensemble-3428498/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6458, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T12:14:56.378940Z", "last_modified_time": "2024-02-06T13:23:09.066268Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741476.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6458/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-07T12:14:56.345626Z", "last_modified_time": "2024-04-05T17:13:45.516574Z", "date_published": null, "start_time": "2024-02-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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/54A25894E528CFBD4AE9920912E4334F/Mais_Harb_The_Middle_Eastern_Ensemble", "sv": "http://www.stoa.fi/sv/evenemang/event/54A25894E528CFBD4AE9920912E4334F/Mais_Harb_The_Middle_Eastern_Ensemble", "en": "http://www.stoa.fi/en/events/event/54A25894E528CFBD4AE9920912E4334F/Mais_Harb_The_Middle_Eastern_Ensemble" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Fatima Zahra Bennacer on joutunut perumaan esiintymisensä, illan uudeksi solistiksi saadaan upea syyrialainen laulaja, lauluntekijä ja säveltäjä Mais Harb.</p><p>The Middle Eastern Ensemble tuo vaikuttavan melodioiden ja rytmien täyteisen musiikillisen ilotulituksen 15 muusikon kokoonpanolla.</p><p>Ohjelma sisältää energisiä ja tanssittavia, mutta samalla koskettavia ja melankolisia sävelmiä, Lähi-Idän klassista ja kansanmusiikkia kuten arabialaista, persialaista, turkkilaista ja kurdilaista musiikkia. Kokoonpanon äänimaailmaa värittävät arabialaiset soittimet yhdessä länsimaisten soittimien kanssa.</p><p>Yhtyeen taiteellinen johtaja ja perustaja on oud-soittaja Ali Haithem Irakista.</p><p>Kesto: 2 t, ei väliaikaa</p>", "sv": "<p>Mais Harb och The Middle Eastern Ensemble bjuder in dig att uppleva den djupsinniga och fängslande arabiska musiken vid Stoa kulturcentrum.</p><p>Den här gången presenterar The Middle Eastern Ensemble ett imponerande musikaliskt fyrverkeri av melodier och rytmer tillsammans med tio andra musiker. Programmet består av energifyllda och dansvänliga men samtidigt rörande och melankoliska låtar, som hämtar inspiration från klassisk musik och folkmusik från olika delar av Mellanöstern, till exempel arabisk, persisk, turkisk och kurdisk musik från länder som Egypten, Syrien, Turkiet och Isak.</p><p>Ensemblens ljudlandskap färgas av en unik blandning av arabiska och västerländska instrument, inklusive oud, tabla, riq, ney, qanoun, saz, violin, altfiol, cello, dragspel, trumpet, klarinett och piano. Den konstnärliga ledaren och grundaren av ensemblen Ali Haithem, som är en känd oudspelare från Irak, leder gruppen och skapar en förtrollande musikalisk upplevelse.</p><p>Längd: 2 t.</p>", "en": "<p>Fatima Zahra Bennacer has had to cancel her performance, the new soloist of the evening will be the wonderful Syrian singer, songwriter and composer Mais Harb.</p><p>This time, The Middle Eastern Ensemble presents an impressive musical firework of melodies and rhythms together with 10 musicians. The program consists of energetic and danceable yet touching and melancholic tunes, drawing on Middle Eastern classical and folk music from various regions such as Arabic, Persian, Turkish, and Kurdish music from countries like Egypt, Syria, Turkey, and Iraq.</p><p>The soundscape of the ensemble is colored by a unique blend of Arabic and Western instruments, including oud, tabla, riq, ney, qanoun, saz, violin, viola, cello, accordion, trumpet, clarinet, and piano. Artistic director and founder of the ensemble, Ali Haithem, a renowned oud player from Iraq, leads the group to create a mesmerizing musical experience that will leave you spellbound.</p><p>Duration: 2 hours</p>" }, "name": { "fi": "Mais Harb & The Middle Eastern Ensemble", "sv": "Mais Harb & The Middle Eastern Ensemble", "en": "Mais Harb & The Middle Eastern Ensemble" }, "short_description": { "fi": "Fatima Zahra Bennacer on joutunut perumaan esiintymisensä, illan uudeksi solistiksi saadaan upea syyrialainen laulaja, lauluntekijä ja säveltäjä Mais Harb.", "sv": "Mais Harb och The Middle Eastern Ensemble bjuder in dig att uppleva den djupsinniga och fängslande arabiska musiken vid Stoa kulturcentrum.", "en": "Fatima Zahra Bennacer has had to cancel her performance, the new soloist of the evening will be the wonderful Syrian singer, songwriter and composer Mais Harb." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61570/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61629", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "18 €", "sv": "18 €", "en": "18 €" }, "info_url": { "fi": "https://www.lippu.fi/event/naettinassut-kanneltalossa-kanneltalo-18053904/", "sv": "https://www.lippu.fi/event/naettinassut-kanneltalossa-kanneltalo-18053904/", "en": "https://www.lippu.fi/event/naettinassut-kanneltalossa-kanneltalo-18053904/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6511, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-08T09:13:57.604032Z", "last_modified_time": "2024-02-06T13:23:08.885289Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739571.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6511/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-08T09:13:57.581006Z", "last_modified_time": "2024-04-05T17:13:45.425446Z", "date_published": null, "start_time": "2024-02-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3BB1F9943129D947299AAED23E9A54F7/Nattinassut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3BB1F9943129D947299AAED23E9A54F7/Nattinassut", "en": "http://www.kanneltalo.fi/en/events/event/3BB1F9943129D947299AAED23E9A54F7/Nattinassut" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tunnelmallisessa illassa kuullaan yhtyeen julkaisematonta materiaalia sekä tietysti jo julkaistut kappaleet. Keskiössä ovat rouhean hempeät elämänmakuiset lyriikat.</p><p>Nättinassut on viiden muusikon yhtye, jonka tyylilaji on konemausteinen rock-pop. Kesäyössä 2018 kahden naisen oli tarkoitus synnyttää näytelmä, syntyikin Nättinassut-niminen duo. Myöhemmin Nättinassut laajeni bändiksi. ”Emme halua lukkiutua mihinkään genreen, vaan tehdä hyvinkin erilaisia kappaleita erilaisista elämän asioista ja tunnelmista.”</p><p>Lämpimästi tervetuloa viihtymään!</p><p>Noora Nyyssönen, laulu<br>Kaisla Flood, laulu<br>Jere Pehkonen, rummut<br>Esa Lindroos, basso<br>Kari Hiltunen, kitara<br>Vesa Hiidenmaa, koskettimet</p><p>Kesto: 90 min, ei väliaikaa</p>", "sv": "<p>Under den stämningsfulla kvällen hörs bandets opublicerade material samt naturligtvis redan publicerade låtar. Fokus ligger på ljuva lyriker med smaker från livet.</p><p>Nättinassut är ett band av fem musiker vars genre är maskinkryddad rock-pop.</p><p>Noora Nyyssönen, sång<br>Kaisla Flood, sång<br>Jere Pehkonen, trummor<br>Esa Lindroos, bas<br>Kari Hiltunen, gitarr<br>Vesa Hiidenmaa, tangentbord</p><p>Längd: 90 min, ingen paus</p>", "en": "<p>The atmospheric evening will feature plenty of unpublished material from the band and, of course, already published songs. The focus is on the ruggedly sentimental, yet real lyrics.</p><p>Nättinassut is a band of five musicians who play electronic rock-pop.</p><p>Noora Nyyssönen, vocals<br>Kaisla Flood, vocals<br>Jere Pehkonen, drums<br>Esa Lindroos, bass<br>Kari Hiltunen, guitar<br>Vesa Hiidenmaa, keyboards</p><p>Duration: 90 min, no intermission.</p>" }, "name": { "fi": "Nättinassut", "sv": "Nättinassut", "en": "Nättinassut" }, "short_description": { "fi": "Tunnelmallisessa illassa kuullaan yhtyeen julkaisematonta materiaalia sekä tietysti jo julkaistut kappaleet. Keskiössä ovat rouhean hempeät elämänmakuiset lyriikat.", "sv": "Under den stämningsfulla kvällen hörs bandets opublicerade material samt naturligtvis redan publicerade låtar. Fokus ligger på ljuva lyriker med smaker från livet.", "en": "The atmospheric evening will feature plenty of unpublished material from the band and, of course, already published songs. The focus is on the ruggedly sentimental, yet real lyrics." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61629/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61602", "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: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: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3459574/", "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3459574/", "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3459574/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6476, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T14:14:08.400507Z", "last_modified_time": "2024-02-06T13:23:08.792505Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739496.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6476/?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-07T14:14:08.383179Z", "last_modified_time": "2024-04-05T17:13:45.369030Z", "date_published": null, "start_time": "2024-02-17T13: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B6E32BD797302602E6BB9796A21B202C/Red_Nose_Company_Punahilkan_paluu_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B6E32BD797302602E6BB9796A21B202C/Red_Nose_Company_Rodluvans_aterkomst", "en": "http://www.malmitalo.fi/en/events/event/B6E32BD797302602E6BB9796A21B202C/Red_Nose_Company_The_Return_of_Little_Red_Riding_Hood" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.</p><p>Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan. Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa? Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä. Esitys on suunnattu erityisesti alakoululaisille ja heidän perheilleen.</p><p>Näyttämöllä: Hanna Seppä ja Minna Puolanto<br>Ohjaus: Niina Sillanpää<br>Valo ja äänisuunnittelu: Jere Kolehmainen<br>Puvustus: Noora Salmi</p><p>Kesto 60 min<br>Ikäsuositus 6 +<br>Kieli: suomi</p><p>Ensi-ilta Kanneltalossa 7.9.2023.</p>", "sv": "<p>I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.</p><p>Sagan om Rödluvan har berättats från generation till generation i hundratals år. Nu får vi se den älskade sagan på scen i en glädjerik tolkning av clownerna Babylon och Ré.</p><p>Manteln som Rödluvan får av sin mormor ger henne superkrafter och hjälper henne att klara sig i kniviga situationer. Trots superkrafterna behövs även publikens hjälp. Hur kommer mötet mellan vargen och Rödluvan att gå till i den här moderna, uppdaterade versionen?</p><p>Utan att spara på humorn leder clownerna publiken till att fundera över teman kring tillit och trygghet.</p><p>Längd: 60 min.<br>Åldersrekommendation: 6+<br>Språk: finska</p>", "en": "<p>In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic.</p><p>The story of Little Red Riding Hood has been told from generation to generation for hundreds of years. Now the beloved tale is brought to the stage in a hilarious interpretation by two clowns, Babylon and Ré.</p><p>The cape, a gift from her grandmother, gives Little Red Riding Hood superpowers and helps her survive tricky situations. Despite the superpowers, the audience’s help is also needed. How will the encounter between the wolf and Little Red Riding Hood play out in this modernised version?</p><p>The clowns will lead the audience to consider the themes of trust and safety, not forgetting humour.</p><p>Performance duration: 60 min<br>Age recommendation: 6+<br>Language: Finnish</p>" }, "name": { "fi": "Red Nose Company: Punahilkan paluu", "sv": "Red Nose Company: Rödluvans återkomst", "en": "Red Nose Company: The Return of Little Red Riding Hood" }, "short_description": { "fi": "Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.", "sv": "I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.", "en": "In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61602/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61594", "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: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: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "28,5 € + tilausmaksut", "sv": "28,5 € + tilausmaksut", "en": "28,5 € + tilausmaksut" }, "info_url": { "fi": "https://www.lippu.fi/en/event/hevisaurus-vuotalo-18050747/", "sv": "https://www.lippu.fi/en/event/hevisaurus-vuotalo-18050747/", "en": "https://www.lippu.fi/en/event/hevisaurus-vuotalo-18050747/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6466, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T13:15:25.334277Z", "last_modified_time": "2024-02-06T13:23:08.694480Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737156.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6466/?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-07T13:15:25.311687Z", "last_modified_time": "2024-04-05T17:13:45.313909Z", "date_published": null, "start_time": "2024-02-17T12: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/932E8AC558564E54A2DFFA97719C430C/LOPPUUNMYYTY_Hevisaurus_vuoden_rayhaisin_keikka_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/932E8AC558564E54A2DFFA97719C430C/SLUTSALD_Hevisaurus_arets_morrigaste_spelning_", "en": "http://www.vuotalo.fi/en/events/event/932E8AC558564E54A2DFFA97719C430C/SOLD_OUT_Hevisaurus_the_rowdiest_gig_of_the_year_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Neljän dinosauruksen ja lohikäärmeen muodostama koko perheen suosikkiyhtye Hevisaurus räyhää Vuotalossa!</p><p>Hevisaurus syntyi vuonna 2009 ajatuksesta tehdä laadukasta hevimusiikkia lapsille ja lapsenmielisille. Räyhäkäs juraheviyhtye on julkaissut kahdeksan studioalbumia ja palkittu kaksi kertaa parhaan lastenmusiikkilevyn Emmalla. Kolme kahdeksasta Hevisauruksen albumeista on yltänyt kultarajoille, kaksi myynyt platinaa ja vuoden 2009 Jurahevin kuninkaat –esikoisalbumi myi jo ensimmäisenä vuotenaan tuplaplatinaa.<br> <br>Uusin studioalbumi Mikä minusta tulee isona? julkaistiin syyskuussa 2017 ja uuden albumin nimeä kantava jurahevimusikaali sai ensi-iltansa Linnanmäen Peacock-teatterissa. Musikaali on saanut osaltaan hyvin positiivista palautetta tarinastaan. Mikä minusta tulee isona? kannustaa kaikenlaisen tekemisen arvostamiseen ja omien unelmien kuuntelemiseen ja tavoittelemiseen. Yhtye on tehnyt aikaisemmin neljä samanmoista musikaalia vuosina 2010, 2011, 2012 ja 2013.<br> <br>Hevisaurukset ovat herättäneet mielenkiintoa myös Yhdysvalloissa ja muualla maailmalla. Muun muassa Argentiinassa soittava yhtye Hevisaurios sai palkinnon parhaasta lasten levystä Gardel Music Awardissa vuonna 2013. Hevisauruksesta onkin hyvää vauhtia kasvamassa kansainvälinen ilmiö, eikä saurusten hevihuuto jää pian keneltäkään kuulematta RÄYH!</p><p>Kesto: 1 t</p>", "sv": "<p>Hela familjens favoritband av fyra dinosaurier och en drake, Hevisaurus, morrar i Nordhuset!</p><p>Hevisaurus uppstod 2009 ur idén att göra högklassig heavymusik för barn och dem med ett barnasinne. Hevisaurus håller på att bli ett internationellt fenomen, och snart kan ingen släppa höra sauriernas heavyskrik. GRRR!</p>", "en": "<p>The entire family’s favourite band Hevisaurus, consisting of four dinosaurs and a dragon, will roar in Vuotalo!</p><p>Hevisaurus was born in 2009 from an idea of making high-quality heavy metal for children and child-minded people. Hevisaurus is rapidly becoming an international phenomenon, and the heavy racket of the dinos will not go unheard by anyone. ROARR!</p>" }, "name": { "fi": "LOPPUUNMYYTY Hevisaurus – vuoden räyhäisin keikka!", "sv": "SLUTSÅLD Hevisaurus – årets morrigaste spelning!", "en": "SOLD OUT Hevisaurus – the rowdiest gig of the year!" }, "short_description": { "fi": "Neljän dinosauruksen ja lohikäärmeen muodostama koko perheen suosikkiyhtye Hevisaurus räyhää Vuotalossa!", "sv": "Hela familjens favoritband av fyra dinosaurier och en drake, Hevisaurus, morrar i Nordhuset!", "en": "The entire family’s favourite band Hevisaurus, consisting of four dinosaurs and a dragon, will roar in Vuotalo!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61594/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61731", "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:350/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6719, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T12:12:59.819496Z", "last_modified_time": "2024-02-06T13:23:08.601070Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741046.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6719/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T12:12:59.801535Z", "last_modified_time": "2024-04-05T17:13:45.255346Z", "date_published": null, "start_time": "2024-02-17T12:00:00Z", "end_time": "2024-02-17T13: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F89F4E21DA1E1B8E102C783B0F38FA6E/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/F89F4E21DA1E1B8E102C783B0F38FA6E/Barnens_DanceAbility_dansworkshops", "en": "http://www.annantalo.fi/en/events/event/F89F4E21DA1E1B8E102C783B0F38FA6E/Children_s_DanceAbility_workshops" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Muut inklusiiviset tanssitunnit: 3.2., 17.2., 2.3.,16.3., 30.3., 20.4., 11.5., 25.5. klo 14–15.</p><p>Ilmoittautuminen: daf@danceabilityfinland.com <br>max.18 osallistujaa</p>", "sv": "<p>DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.</p><p>Klasserna är öppna för alla barn och deras närstående vuxna oavsett funktionsnedsättning eller inte.</p><p>Lokalerna är tillgängliga.</p><p>bokningar: daf@danceabilityfinland.com<br>max. 18 dansare</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com<br>max. 18 dancers</p>" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Barnens DanceAbility dansworkshops", "en": "Children's DanceAbility workshops" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61647", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "42,50/70 €", "sv": "42,50/70 €", "en": "42,50/70 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3551368", "sv": "https://www.lippu.fi/eventseries/name-3551368", "en": "https://www.lippu.fi/eventseries/name-3551368" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6611, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-12T14:14:03.580253Z", "last_modified_time": "2024-02-06T13:23:08.362281Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740131.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6611/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-12T14:14:03.542369Z", "last_modified_time": "2024-04-05T17:13:45.170543Z", "date_published": null, "start_time": "2024-02-16T18: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3311CC9740CD6606F322109CD90BCB64/StandUp_Ruslan_Belyj_Oma_aani_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/3311CC9740CD6606F322109CD90BCB64/StandUp_Ruslan_Belyj_", "en": "http://www.savoyteatteri.fi/en/events/event/3311CC9740CD6606F322109CD90BCB64/StandUp_Ruslan_Belyj_" }, "provider_contact_info": null, "provider": { "fi": "Tochka.fi rf", "sv": "Tochka.fi rf", "en": "Tochka.fi rf" }, "description": { "fi": "<p>Kuuluisa stand up -koomikko, juontaja, tuottaja ja StandUp-ohjelman osallistuja, joka on aiemmin ollut vakiokasvo venäläisen TNT-kanavan Comedy Club -ohjelmassa, lähtee Eurooppaan uudella ohjelmistolla. Esityksissä on rento ilmapiiri, ja salin täyttää jatkuva aplodien ja naurunpyrskähdysten virta. Niin myös tässä tulevassa tapahtumassa, joka on osa laajempaa Euroopan-kiertuetta.</p><p>Esityksen kieli on Venäjä.</p><p>Ikäraja: 18 vuotta</p><p>Kesto noin 2 h, ei väliaikaa</p><p>Permanto muodostaa K18-anniskelualueen. Parveke on ikärajaton eikä siellä tarjoilla alkoholia.</p>", "sv": "<p>Ruslan Bely, den världsberömde ståuppkomikern, presentatören, producenten, deltagaren i StandUp Show och tidigare återkommande gästkomikern hos Comedy Club på TNT kommer till Europa med sin nya turné. Föreställningarna har en avslappnad stämning och rummet fylls med ständiga applåder och skrattsalvor. Den här kvällen ingår i den nya Europaturnén och bjuder på många nya roliga inslag.</p><p>Föreställningen hålls på ryska.</p><p>Åldersgräns: 18+</p><p>Längd cirka 2 timmar, ingen paus</p><p>Parketten är avsedd för servering av alkohol för vuxna, 18 år eller äldre. Balkongen är för personer i alla åldrar; ingen alkohol serveras.</p>", "en": "<p>The famous stand-up comedian, presenter, producer and participant in the StandUp show, former resident of the Comedy Club on TNT, is going to Europe with a new program. During performances, there is constant applause and bursts of laughter in the hall, and a relaxed atmosphere reigns. The upcoming event, which will take place as part of a tour of Europe, will not be an exception.</p><p>Performance language is Russian.</p><p>Age limit: 18+</p><p>Duration approx. 2 h, 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 serving.</p>" }, "name": { "fi": "StandUp Ruslan Belyj “Oma ääni”", "sv": "StandUp Ruslan Belyj “Свой голос”", "en": "StandUp Ruslan Belyj “Свой голос”" }, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61647/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61767", "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:31/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 11 €", "sv": "15 € / 11 €", "en": "15 € / 11 €" }, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-songs-from-venezuela-and-south-america-vuotalo-18212939/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-songs-from-venezuela-and-south-america-vuotalo-18212939/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-songs-from-venezuela-and-south-america-vuotalo-18212939/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6837, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-27T12:12:32.837811Z", "last_modified_time": "2024-02-06T13:23:08.175083Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737135.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6837/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-27T12:12:32.800019Z", "last_modified_time": "2024-04-05T17:13:45.080426Z", "date_published": null, "start_time": "2024-02-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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EEF2B569071496670D5F961DCAB7CCB2/Alejandro_Zavala_Duo_Cantares_Songs_from_Venezuela_and_South_America", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EEF2B569071496670D5F961DCAB7CCB2/Alejandro_Zavala_Duo_Cantares_Songs_from_Venezuela_and_South_America", "en": "http://www.vuotalo.fi/en/events/event/EEF2B569071496670D5F961DCAB7CCB2/Alejandro_Zavala_Duo_Cantares_Songs_from_Venezuela_and_South_America" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Alejandro Zavala ja Duo Cantares esittävät venezuelalaisia ja muita eteläamerikkalaisia lauluja.</p><p><b>Alejandro Zavala</b> on laulaja, säveltäjä ja musiikin tuottaja, jonka ura on kestänyt yli 30 vuotta. Hän on julkaissut viisi albumia, jotka heijastavat hänen tärkeimpiä musiikillisia intohimojaan: venezuelalaista perinnettä, laulumusiikkia ja kirjailijalauluja.</p><p>Zavala voitti vuoden 2023 Pepsi Awards -kilpailun parhaana laulaja-lauluntekijänä tuotannostaan \"Cantautor\". Vuonna 2021 hän oli ehdolla Latin Grammy -palkinnon saajaksi albumillaan \"Vocal\" kategoriassa Paras folk-albumi.</p><p>Duo Cantaresin muodostavat venezuelalainen laulaja <b>Nathaly Gomez</b> ja perulainen multi- instrumentisti ja musiikkitieteilijä <b>Camilo Pajuelo</b>. Idea duosta syntyi yhteisestä intohimosta oman kulttuuritaustan musiikkiin ja halusta sitä tunnetuksi Pohjoismaissa. Cantares myötävaikuttaa espanjankielisen maailman ja suomalaisen yleisön välisten kulttuurisidosten vahvistamiseen.</p><p>Cantaresin repertuaari sisältää omia versioita tunnettujen säveltäjien suosituista kappaleista, jotka kattavat laajan valikoiman Latinalaisen Amerikan genrejä ja tyylejä. Cantaresin ensimmäinen virallinen konsertti oli Espoossa Leppävaaran kirkossa marraskuussa 2017. Siitä lähtien, Cantares on esiintynyt paljon Suomessa, mutta myös Parisissa, Perussa ja Espanjassa.</p><p>Cantares tekee myös yhteistyötä paikallisten taiteilijoiden ja muiden musikoiden kanssa. Tällä hetkellä duo työskentelee ensimmäisen levynsä parissa. Joitakin tämän albumin kappaleita on jo kuultu Venezuelassa ja Yhdysvalloissa, ja duoa on haastateltu maiden radio- ja televisioverkoissa.</p><p>Kesto 90 min, sis. väliajan<br>Liput à 15 € / 11 € osoitteesta Lippu.fi tai ovelta 1,5 tuntia ennen esitystä.</p>", "sv": "<p>Alejandro Zavala och Duo Cantares framför venezuelanska sånger.</p><p>Alejandro Zavala är en sångare, kompositör och musikproducent vars karriär har varat i över 30 år. Han har gett ut fem album som speglar hans viktigaste musikaliska passioner: venezuelansk tradition, sångmusik och författarsånger.</p><p>Duo Cantares består av den venezuelanske sångaren Nathaly Gomez och den peruanska multi-instrumentisten och musikvetaren Camilo Pajuelo. Idén om en duo uppstod ur en gemensam passion för musiken från den egna kulturbakgrunden och av en önskan att den skulle bli känd i Norden. Cantares bidrar till att stärka de kulturella banden mellan den spanska världen och den finska publiken.</p>", "en": "<p>Aeljandro Zavala and Duo Cantares performs Songs from Venezuela.</p><p>Alejandro Zavala is a singer, composer, music producer and popular musician with a career spanning more than 30 years. Alejandro has made five albums of high artistic commitment that reflect his most important musical passions: Venezuelan tradition, vocal music and author songs.</p><p>He is the 2023 Winner of Pepsi Awards contest as the best Singer-songwriter with his recent production \"Cantautor\". In 2021 he was nominated for the Latin Grammy Award with his album \"Vocal\", in the Best Folk Album category.</p><p>Duo Cantares are Venezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo. Cantares was established in 2017 in Helsinki, inspired by a common passion for traditional music and the desire to promote it in the Nordic countries. Cantares contributes to strengthening the cultural bonds between the Spanish-speaking world and the Finnish audience.</p><p>Their repertoire includes their own versions of popular songs created by prominent composers, embracing a wide variety of Latin American genres and styles. Cantares had its first official concert in November 2017 at Leppävaara Church, Espoo. Since then, Cantares has been performing regularly not only in Finland but also in France, Spain and Peru, also cooperating with artists from other countries.</p><p>Currently, the duo is working on its first recording. Some songs that make up this album have been already promoted through major broadcast media from Venezuela and the United States for whose radio and TV networks the duo has also offered various interviews.</p>" }, "name": { "fi": "Alejandro Zavala & Duo Cantares: Songs from Venezuela and South America", "sv": "Alejandro Zavala & Duo Cantares: Songs from Venezuela and South America", "en": "Alejandro Zavala & Duo Cantares: Songs from Venezuela and South America" }, "short_description": { "fi": "Alejandro Zavala ja Duo Cantares esittävät venezuelalaisia ja muita eteläamerikkalaisia lauluja.", "sv": "Alejandro Zavala och Duo Cantares framför venezuelanska sånger.", "en": "Aeljandro Zavala and Duo Cantares performs Songs from Venezuela." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61767/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61673", "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": [], "price": { "fi": "22,50/17.50 €", "sv": "22,50/17.50 €", "en": "22,50/17.50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3551202", "sv": "https://www.lippu.fi/eventseries/3551202", "en": "https://www.lippu.fi/eventseries/3551202" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7162, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-12T16:13:44.946978Z", "last_modified_time": "2024-02-06T13:23:08.079269Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742117.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7162/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-12T11:13:49.015293Z", "last_modified_time": "2024-04-05T17:13:45.023692Z", "date_published": null, "start_time": "2024-02-15T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/67FC17C88D82F5E7AFE424F35C604E79/Helsingin_poliisisoittokunta_Elvis_Friends_Las_Vegas_Show", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/67FC17C88D82F5E7AFE424F35C604E79/Helsingfors_polismusikkar_Elvis_Friends_Las_Vegas_show_", "en": "http://www.savoyteatteri.fi/en/events/event/67FC17C88D82F5E7AFE424F35C604E79/Helsinki_Police_Symphonic_Band_Elvis_Friends_Las_Vegas_show_" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Poliisilaitos", "sv": "Helsingin Poliisilaitos", "en": "Helsingin Poliisilaitos" }, "description": { "fi": "<p>Elvis oli seisemän vuoden ajan Las Vegasin suurin nähtävyys. Hänen moderni shownsa muutti koko pelin ja tasoitti tien Celine Dionille, Elton Johnille, Brittany Spearsille ja Cherille, jotka ovatkin kutsuneet Vegasin näyttämöä kodikseen.</p><p>Suomen ylivoimaisin Elvis-tulkki, säihkyvä silmäinen ja rentolanteinen suurten näyttämöiden akrobaatti Mikko Leppilampi rakentaa Elvis & Friends in Las Vegas Shown Helsingin poliisisoittokunnan kanssa tunnelmalliseen Savoy-teatteriin.</p><p>Rinnalleen ”Elvis” saa yhden arvostetuimmista Voice of Finland -finalisteistamme, musikaali- ja jazztähden Jennie Storbackan. Jennie versioi meille suvereeniin tapaansa Vegasin suurimpien naistähtien, kuten Aretha Franklinin, Whitney Houstonin ja Adelen musiikkia.</p><p>Poliisin suuren sinfonisen puhallinorkesterin värikylläiset orkestraatiot eivät jätä ketään kylmäksi, luvassa muun muassa John Williamsin Cowboys ja Richard Straussin Also sprach Zarahustra.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 20 min, sisältää väliajan</p>", "sv": "<p>Under sju år var Elvis den största attraktionen i Las Vegas. Hans moderna show förändrade spelet och banade väg för Celine Dion, Elton John, Britney Spears och Cher som har kallat scenen i Vegas för sitt hem.</p><p>Finlands mest överlägsna Elvis-tolkare, scenakrobaten Mikko Leppilampi med sina glittrande ögon och rörliga höfter bygger upp Elvis & Friends in Las Vegas Show med Helsingfors polismusikkår i stämningsfulla Savoyteatern.</p><p>Vid ”Elvis” sida uppträder en av våra mest uppskattade Voice of Finland-finalister, musikal- och jazzstjärnan Jennie Storbacka. Jennie framför på sitt suveräna sätt sina egna versioner av de största kvinnliga Vegas-stjärnornas, såsom Aretha Franklin, Whitney Houston och Adeles, musik.<br>De färgmättade orkestreringarna för polisens stora symfoniska blåsorkester lämnar ingen kall och på repertoaren står bland annat John Williams Cowboys och Richard Strauss Also spach Zarahustra.</p><p>Åldersgräns: T</p><p>Längd cirka 2 h 20 min. med paus</p>", "en": "<p>For seven years, Elvis was the biggest attraction in Las Vegas. His modern show changed the whole game and paved the way for Celine Dion, Elton John, Britney Spears and Cher, who all have called the Vegas stage home.</p><p>Finland’s supreme Elvis interpreter, the sparkly-eyed and loose-hipped acrobat of the big stage, Mikko Leppilampi, will build the Elvis & Friends in Las Vegas show with the Helsinki Police Symphonic Band in the atmospheric Savoy Theatre.</p><p>“Elvis” will be joined by one of the most esteemed Voice of Finland finalists, musical and jazz star Jennie Storbacka. Jennie will perform her sovereign renditions of the music of some of Vegas’ biggest female stars, including Aretha Franklin, Whitney Houston and Adele.</p><p>The colourful orchestrations of the police’s large symphonic brass band will leave no one cold, with songs such as John Williams’ Cowboys and Richard Strauss’ Also spach Zarahustra.</p><p>Age limit: all ages</p><p>Duration approx. 2 h 20 min with intermission.</p>" }, "name": { "fi": "Helsingin poliisisoittokunta: Elvis & Friends Las Vegas Show – Isäntänä Mikko \"ELVIS\" Leppilampi", "sv": "Helsingfors polismusikkår: Elvis & Friends Las Vegas show", "en": "Helsinki Police Symphonic Band: Elvis & Friends Las Vegas show" }, "short_description": { "fi": "Elvis oli seisemän vuoden ajan Las Vegasin suurin nähtävyys. Hänen moderni shownsa muutti koko pelin ja tasoitti tien Celine Dionille, Elton Johnille, Brittany Spearsille ja Cherille, jotka ovatkin kutsuneet Vegasin näyttämöä kodikseen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63021", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p39492/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7589, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-06T12:13:01.462584Z", "last_modified_time": "2024-02-06T13:23:07.979844Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744327.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7589/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-06T12:13:01.422426Z", "last_modified_time": "2024-04-05T17:13:44.967784Z", "date_published": null, "start_time": "2024-02-15T15: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B60674483CA2109429DF456B69623B8D/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B60674483CA2109429DF456B69623B8D/Kaffe_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/B60674483CA2109429DF456B69623B8D/Kantsu_Coffee_with_neighbours" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Hei Kanneltalon naapuri! Me kanneltalolaiset kutsumme sinut iltapalalle kahvilaamme to 15.2.2024 klo 17.30–19.30.</p><p>Illan aikana kierrämme Kanneltalon salaisetkin sopukat ja keskustelemme talon tulevaisuudesta. Mitä sellaista Kanneltalo voisi tulevaisuudessa tarjota, mikä tekisi sinut, läheisesi tai muut helsinkiläiset onnellisiksi? Mitä haluaisit oppia, nähdä, kokea, kohdata tai tehdä? Toivomme siis kuulevamme, kuinka me voisimme olla sinulle entistä parempi naapuri.</p><p>Ilmoittaudu mukaan Kantsun kahveille ma 12.2. mennessä tämän linkin kautta: https://urly.fi/3qIB</p><p>Tervetuloa!</p><p>Toivoo<br>Kanneltalon väki</p>", "sv": "<p>Hej granne till Gamlasgården! Vi på Gamlasgården bjuder dig på kvällsmål till vårt kafé tor 15.2.2024 kl. 17.30–19.30.</p><p>Under kvällen går vi runt i de hemligaste vrårna i Gamlasgården och diskuterar om gårdens framtid. Vad som gör dig, dina närmaste eller andra helsingforsare lyckliga kunde Gamlasgården i framtiden erbjuda? Vad skulle du vilja lära dig, se, uppleva, träffa eller göra? Vi önskar alltså att få höra hur vi kunde vara en ännu bättre granne till dig.</p><p>Anmäl dig senast må 12.2 via den här länken: https://urly.fi/3qIB</p><p>Välkommen!</p><p>Hälsar<br>folket på Gamlasgården</p>", "en": "<p>Hello Kanneltalo neighbour! We'd like to invite you to an evening meal in our café on Thu 15.2.2024 at 17.30-19.30.</p><p>During the evening, we will tour the secret corners of Kanneltalo and discuss the venue’s future. What could Kanneltalo offer in the future that would make you, your loved ones or other Helsinki residents happy? What would you like to learn, see, experience, encounter or do? We hope to hear how we could be a better neighbour for you.</p><p>Sign up by Monday, 12 February via this link: https://urly.fi/3qIB</p><p>Welcome!</p><p>Best regards,<br>The people of Kanneltalo</p>" }, "name": { "fi": "Kantsun kahvit", "sv": "Kaffe på Gamlasgården", "en": "Kantsu Coffee with neighbours" }, "short_description": { "fi": "Hei Kanneltalon naapuri! Me kanneltalolaiset kutsumme sinut iltapalalle kahvilaamme to 15.2.2024 klo 17.30–19.30.", "sv": "Hej granne till Gamlasgården! Vi på Gamlasgården bjuder dig på kvällsmål till vårt kafé tor 15.2.2024 kl. 17.30–19.30.", "en": "Hello Kanneltalo neighbour! We'd like to invite you to an evening meal in our café on Thu 15.2.2024 at 17.30-19.30." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63021/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61688", "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:31/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6924, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T12:13:05.909391Z", "last_modified_time": "2024-02-06T13:23:07.889835Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742556.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6924/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T12:13:05.890560Z", "last_modified_time": "2024-04-05T17:13:44.916617Z", "date_published": null, "start_time": "2024-02-15T09:45:00Z", "end_time": "2024-02-15T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1FA096304AF4BC6DDB3762D0ECD80438/Opi_suomea_laulaen_", "sv": "http://www.stoa.fi/sv/evenemang/event/1FA096304AF4BC6DDB3762D0ECD80438/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/1FA096304AF4BC6DDB3762D0ECD80438/Learn_Finnish_by_Singing_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea! <br>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään muut laulupajakerrat: <br>to 14.3. klo 10 ja 11.45 <br>to 23.5. klo 10 & 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p><p>Registrering: sanna.nuutinen@hel.fi</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p><p>Registration via email at sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61688/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61687", "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:31/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6923, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T12:13:05.796405Z", "last_modified_time": "2024-02-06T13:23:07.703806Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742555.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6923/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T12:13:05.780559Z", "last_modified_time": "2024-04-05T17:13:44.805865Z", "date_published": null, "start_time": "2024-02-15T08:00:00Z", "end_time": "2024-02-15T09:30: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2144D28A1DF53A6B0500632DA69E3A0E/Opi_suomea_laulaen_", "sv": "http://www.stoa.fi/sv/evenemang/event/2144D28A1DF53A6B0500632DA69E3A0E/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/2144D28A1DF53A6B0500632DA69E3A0E/Learn_Finnish_by_Singing_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea! <br>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään muut laulupajakerrat: <br>to 14.3. klo 10 ja 11.45 <br>to 23.5. klo 10 & 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p><p>Registrering: sanna.nuutinen@hel.fi</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p><p>Registration via email at sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61687/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61646", "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": [], "price": { "fi": "22,50/17.50 €", "sv": "22,50/17.50 €", "en": "22,50/17.50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3551202", "sv": "https://www.lippu.fi/eventseries/3551202", "en": "https://www.lippu.fi/eventseries/3551202" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7161, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-12T16:13:44.622448Z", "last_modified_time": "2024-02-06T13:23:07.517404Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742116.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7161/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-12T11:13:48.809285Z", "last_modified_time": "2024-04-05T17:13:44.749923Z", "date_published": null, "start_time": "2024-02-14T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/11B22A37325A7AEEAA9811D3FEA5B2EF/Helsingin_poliisisoittokunta_Elvis_Friends_Las_Vegas_Show", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/11B22A37325A7AEEAA9811D3FEA5B2EF/Helsingfors_polismusikkar_Elvis_Friends_Las_Vegas_show_", "en": "http://www.savoyteatteri.fi/en/events/event/11B22A37325A7AEEAA9811D3FEA5B2EF/Helsinki_Police_Symphonic_Band_Elvis_Friends_Las_Vegas_show_" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Poliisilaitos", "sv": "Helsingin Poliisilaitos", "en": "Helsingin Poliisilaitos" }, "description": { "fi": "<p>Elvis oli seisemän vuoden ajan Las Vegasin suurin nähtävyys. Hänen moderni shownsa muutti koko pelin ja tasoitti tien Celine Dionille, Elton Johnille, Brittany Spearsille ja Cherille, jotka ovatkin kutsuneet Vegasin näyttämöä kodikseen.</p><p>Suomen ylivoimaisin Elvis-tulkki, säihkyvä silmäinen ja rentolanteinen suurten näyttämöiden akrobaatti Mikko Leppilampi rakentaa Elvis & Friends in Las Vegas Shown Helsingin poliisisoittokunnan kanssa tunnelmalliseen Savoy-teatteriin.</p><p>Rinnalleen ”Elvis” saa yhden arvostetuimmista Voice of Finland -finalisteistamme, musikaali- ja jazztähden Jennie Storbackan. Jennie versioi meille suvereeniin tapaansa Vegasin suurimpien naistähtien, kuten Aretha Franklinin, Whitney Houstonin ja Adelen musiikkia.</p><p>Poliisin suuren sinfonisen puhallinorkesterin värikylläiset orkestraatiot eivät jätä ketään kylmäksi, luvassa muun muassa John Williamsin Cowboys ja Richard Straussin Also sprach Zarahustra.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 20 min, sisältää väliajan</p>", "sv": "<p>Under sju år var Elvis den största attraktionen i Las Vegas. Hans moderna show förändrade spelet och banade väg för Celine Dion, Elton John, Britney Spears och Cher som har kallat scenen i Vegas för sitt hem.</p><p>Finlands mest överlägsna Elvis-tolkare, scenakrobaten Mikko Leppilampi med sina glittrande ögon och rörliga höfter bygger upp Elvis & Friends in Las Vegas Show med Helsingfors polismusikkår i stämningsfulla Savoyteatern.</p><p>Vid ”Elvis” sida uppträder en av våra mest uppskattade Voice of Finland-finalister, musikal- och jazzstjärnan Jennie Storbacka. Jennie framför på sitt suveräna sätt sina egna versioner av de största kvinnliga Vegas-stjärnornas, såsom Aretha Franklin, Whitney Houston och Adeles, musik.<br>De färgmättade orkestreringarna för polisens stora symfoniska blåsorkester lämnar ingen kall och på repertoaren står bland annat John Williams Cowboys och Richard Strauss Also spach Zarahustra.</p><p>Åldersgräns: T</p><p>Längd cirka 2 h 20 min. med paus</p>", "en": "<p>For seven years, Elvis was the biggest attraction in Las Vegas. His modern show changed the whole game and paved the way for Celine Dion, Elton John, Britney Spears and Cher, who all have called the Vegas stage home.</p><p>Finland’s supreme Elvis interpreter, the sparkly-eyed and loose-hipped acrobat of the big stage, Mikko Leppilampi, will build the Elvis & Friends in Las Vegas show with the Helsinki Police Symphonic Band in the atmospheric Savoy Theatre.</p><p>“Elvis” will be joined by one of the most esteemed Voice of Finland finalists, musical and jazz star Jennie Storbacka. Jennie will perform her sovereign renditions of the music of some of Vegas’ biggest female stars, including Aretha Franklin, Whitney Houston and Adele.</p><p>The colourful orchestrations of the police’s large symphonic brass band will leave no one cold, with songs such as John Williams’ Cowboys and Richard Strauss’ Also spach Zarahustra.</p><p>Age limit: all ages</p><p>Duration approx. 2 h 20 min with intermission.</p>" }, "name": { "fi": "Helsingin poliisisoittokunta: Elvis & Friends Las Vegas Show – Isäntänä Mikko \"ELVIS\" Leppilampi", "sv": "Helsingfors polismusikkår: Elvis & Friends Las Vegas show", "en": "Helsinki Police Symphonic Band: Elvis & Friends Las Vegas show" }, "short_description": { "fi": "Elvis oli seisemän vuoden ajan Las Vegasin suurin nähtävyys. Hänen moderni shownsa muutti koko pelin ja tasoitti tien Celine Dionille, Elton Johnille, Brittany Spearsille ja Cherille, jotka ovatkin kutsuneet Vegasin näyttämöä kodikseen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61646/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63000", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7386, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-26T10:14:22.756561Z", "last_modified_time": "2024-02-06T13:23:07.240060Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744315.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7386/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-26T10:14:22.726301Z", "last_modified_time": "2024-04-05T17:13:44.644537Z", "date_published": null, "start_time": "2024-02-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B1C878F295CB22D971C9B4A43F875AB7/Haivahdys_purppuraa_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B1C878F295CB22D971C9B4A43F875AB7/Haivahdys_purppuraa_12_", "en": "http://www.malmitalo.fi/en/events/event/B1C878F295CB22D971C9B4A43F875AB7/The_Color_Purple_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Warner Bros. Pictures kutsuu sinut kokemaan poikkeuksellisen sisarussuhteen kolmen naisen välillä, joita yhdistää särkymätön side Häivähdys purppuraa -elokuvassa.</p><p>Tämän rohkean, uuden kuvauksen on ohjannut Blitz Bazawule ja tuottaneet Oprah Winfrey, Steven Spielberg, Scott Sanders ja Quincy Jones.</p><p>Elokuvaa ”Häivähdys purppuraa” tähdittävät Taraji P. Henson, Danielle Brooks, Colman Domingo, Corey Hawkins, H.E.R., Halle Bailey, Aunjanue Ellis-Taylor ja Fantasia Barrino.</p><p>Käsikirjoitus Marcus Gardley, perustuen Alice Walkerin romaaniin ja musiikkinäytelmään, Marsha Normanin kirjaan (musiikkinäytelmästä), musiikki ja lyriikat Brenda Russell, Allee Willis ja Stephen Bray.</p><p>Kesto 141 min<br>Ikäraja 12</p><p>Ensi-ilta 19.1.</p>", "en": "<p>Warner Bros. Pictures invites you to experience the extraordinary sisterhood of three women who share one unbreakable bond in “The Color Purple.”</p><p>This bold new take on the beloved classic is directed by Blitz Bazawule and produced by Oprah Winfrey, Steven Spielberg, Scott Sanders and Quincy Jones.</p><p>“The Color Purple” stars Taraji P. Henson, Danielle Brooks, Colman Domingo, Corey Hawkins, H.E.R., Halle Bailey, Aunjanue Ellis-Taylor and Fantasia Barrino.</p><p>The screenplay is by Marcus Gardley, based on the novel by Alice Walker and based on the musical stage play, book (of the musical stage play) by Marsha Norman, music and lyrics by Brenda Russell, Allee Willis and Stephen Bray.</p>" }, "name": { "fi": "Häivähdys purppuraa (12) – Kino Helios", "sv": "Häivähdys purppuraa (12) – Kino Helios", "en": "The Color Purple (12) – Kino Helios" }, "short_description": { "fi": "Warner Bros. Pictures kutsuu sinut kokemaan poikkeuksellisen sisarussuhteen kolmen naisen välillä, joita yhdistää särkymätön side Häivähdys purppuraa -elokuvassa.", "en": "Warner Bros. Pictures invites you to experience the extraordinary sisterhood of three women who share one unbreakable bond in “The Color Purple.”" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63000/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61682", "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:31/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6934, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T13:13:03.538836Z", "last_modified_time": "2024-02-06T13:23:07.331296Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742545.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6934/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T13:13:03.522352Z", "last_modified_time": "2024-04-05T17:13:44.591129Z", "date_published": null, "start_time": "2024-02-14T16:00:00Z", "end_time": "2024-02-14T17:30: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/92A041B98F9F6565EFD0FA739A3D080A/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/92A041B98F9F6565EFD0FA739A3D080A/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/92A041B98F9F6565EFD0FA739A3D080A/Stoa_Choir_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30. <br>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>17.1.<br>31.1.<br>14.2.<br>28.2.<br>6.3.<br>13.3.<br>27.3.</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.</p><p>Datum: <br>17.1.<br>31.1.<br>14.2.<br>28.2.<br>6.3.<br>13.3.<br>27.3.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Spring season: <br>17 Jan<br>31 Jan<br>14 Feb<br>28 Feb<br>6 Mar<br>13 Mar<br>27 Mar</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61628", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,50 € / 22 €", "sv": "24,50 € / 22 €", "en": "24,50 € / 22 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kanneltalo/sydaen-verellae-ystaevaenpaeivaen-stand-up-ilta-3552384/", "sv": "https://www.lippu.fi/artist/kanneltalo/sydaen-verellae-ystaevaenpaeivaen-stand-up-ilta-3552384/", "en": "https://www.lippu.fi/artist/kanneltalo/sydaen-verellae-ystaevaenpaeivaen-stand-up-ilta-3552384/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6510, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-08T09:13:57.359045Z", "last_modified_time": "2024-02-06T13:23:07.424895Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739548.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6510/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-08T09:13:57.337927Z", "last_modified_time": "2024-04-05T17:13:44.541428Z", "date_published": null, "start_time": "2024-02-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/50BF339B2ADA3881187D661C5DAEA63D/Tuoretta_verta_Sydan_verella_ystavanpaivan_stand_up_-ilta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/50BF339B2ADA3881187D661C5DAEA63D/Tuoretta_verta_Sydan_verella_ystavanpaivan_stand_up_-ilta", "en": "http://www.kanneltalo.fi/en/events/event/50BF339B2ADA3881187D661C5DAEA63D/Tuoretta_verta_Sydan_verella_ystavanpaivan_stand_up_-ilta" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tuoretta verta -stand-up-kollektiivi tuo lavoille monipuolisen kattauksen tuoreita koomikoita, joiden esitys sykkii havainnoivaa, älykästä, sympaattista ja humaania huumoria. Esityksen ikäraja on 18 vuotta.</p><p>Tuoretta verta on stand up -koomikoista muodostuva kollektiivi. Ryhmää yhdistää innokas ote komedian tekemiseen sekä komedian korkea taso. Ryhmä on myös moninainen ja monisukupolvinen, ikähaitari 25–70 vuotta.</p><p>Peräti neljä kollektiivin jäsentä on legendaarisen Vuoden stand up -tulokas 2023 -kisan finalistia. Heitä on aiemmin nähty suurimmilla kotimaisilla stand up -näyttämöillä, mm. Helsingin Apollossa, Studio Pasilan Club Act!onessa sekä Kuopion Komediafestivaaleilla.</p><p><b>Tiina Henkola</b> saattaa aluksi vaikuttaa hoivakodista karanneelta henkilöltä, mutta mikin varteen tartuttuaan häntä ei enää haluaisi päästää takaisin senioritalon uumeniin.</p><p><b>Jussi Lankoski</b> on porukan kiintiöespoolainen. Hänen vastuunsa on ottaa palaute yleisöiltä – ja myös antaa sitä. Joskus aika suoraankin. Jussi toimii Tuoretta verta -esitysten isäntänä.</p><p><b>Atte Liikanen</b> on porukan kuopus. Koomikko, joka on melkein voittanut monta stand up -kilpailua urallaan. Näihin läheltä piti -tilanteisiin laskeutuu mm. hopeamitali vuoden 2022 Gong Showssa.</p><p><b>Marjut Ollitervon</b> esitykseen kannattaa varata runsaasti virvoitusjuomaa. Tästä ei stand up -komiikka enää kuivemmaksi muutu.</p><p><b>Joonas Ranta</b> on Nopee naurattaja 2022 -kilpailun mestari ja Suomen ryppyotsaisin optimisti. Joonas pohtii esityksissään, miten uskoa hyvään maailmassa, joka yrittää selvästi tahallaan ärsyttää.</p><p>Tervetuloa nauttimaan tuore, tuhti pala suomalaisen stand up -komedian häkellyttävän kovaa nykytasoa!</p><p>Kesto: Noin 2 t, sis. väliajan<br>Ikäraja: 18</p>", "sv": "<p>Stand-up-kollektivet Tuoretta verta för till scenerna en mångsidig palett av färska komiker vars presentation pulserar med observant, intelligent, sympatisk och human humor. Åldersgränsen för föreställningen är 18 år.</p><p>On stage:</p><p>Tiina Henkola<br>Jussi Lankoski <br>Atte Liikanen<br>Marjut Ollitervon<br>Joonas Ranta</p><p>Ålder: 18+<br>Språk: finska</p>", "en": "<p>The Tuoretta verta stand-up collective brings to the stage a diverse selection of fresh comedians, whose performance pulses with insightful, intelligent, sympathetic and humane humour. The age limit for the show is 18.</p><p>On stage:</p><p>Tiina Henkola<br>Jussi Lankoski <br>Atte Liikanen<br>Marjut Ollitervon<br>Joonas Ranta</p><p>Age: 18+<br>Language: Finnish</p>" }, "name": { "fi": "Tuoretta verta: Sydän verellä – ystävänpäivän stand up -ilta", "sv": "Tuoretta verta: Sydän verellä – ystävänpäivän stand up -ilta – Det blodiga hjärtat – stand up-kvället för alla hjärtans dag", "en": "Tuoretta verta: Sydän verellä – ystävänpäivän stand up -ilta – A Bleeding Heart – Valentine’s Day stand up evening" }, "short_description": { "fi": "Tuoretta verta -stand-up-kollektiivi tuo lavoille monipuolisen kattauksen tuoreita koomikoita, joiden esitys sykkii havainnoivaa, älykästä, sympaattista ja humaania huumoria. Esityksen ikäraja on 18 vuotta.", "sv": "Stand-up-kollektivet Tuoretta verta för till scenerna en mångsidig palett av färska komiker vars presentation pulserar med observant, intelligent, sympatisk och human humor. Åldersgränsen för föreställningen är 18 år.", "en": "The Tuoretta verta stand-up collective brings to the stage a diverse selection of fresh comedians, whose performance pulses with insightful, intelligent, sympathetic and humane humour. The age limit for the show is 18." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61628/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61413", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-24T11:13:46.191930Z", "last_modified_time": "2024-02-06T13:23:06.872137Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740217.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-24T11:13:46.175305Z", "last_modified_time": "2024-04-05T17:13:44.486870Z", "date_published": null, "start_time": "2024-02-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DA2F883B9AEE24456319BE87C8F78F52/PERUTTU_HOW_radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/DA2F883B9AEE24456319BE87C8F78F52/INSTALLT_HOW_radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/DA2F883B9AEE24456319BE87C8F78F52/CANCELLED_HOW_radio_Global_Club_Nights" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tässä jaksossa tutustumme muusikoita välittävien toimistojen kanssa tehtävän yhteistyön mahdollisuuksiin.</p><p>Monet artistit tietävät muusikoita välittävistä toimistoista mutta eivät uskalla ottaa niihin yhteyttä. Yritämme kartoittaa <b>Johanna Sauramäen</b> osaamisen sekä Sauramäen omien ja <b>Melisa Yildirimin</b> kokemusten kautta, mitä hyviä puolia ja haasteita liittyy niin itsenäisenä muusikkona toimimiseen kuin yhteistyöhön välitystoimiston kanssa.</p><p><b>Johanna Sauramäki</b> on Saura Booking Agencyn perustaja ja toimitusjohtaja. Yrityksen johtamisen lisäksi hän toimii managerina, edustajana ja tuottajana sekä vastaa yrityksen graafisesta ilmeestä.</p><p><b>Saura Booking Agency</b> on elävää musiikkia välittävä toimisto Helsingissä. Yrityksen tehtävänä on ylläpitää ja kehittää kulttuurialan moninaisuutta ja parantaa suomalais-ugrilaisen musiikin näkyvyyttä ottamalla listoilleen artisteja niin Suomesta kuin muistakin Pohjoismaista ympäri maailman.</p><p><b>Melisa Yildirim</b> on turkkilainen muusikko, joka on erikoistunut kemanen soittoon. Hän työskentelee useiden ammattiartistien kanssa ympäri maailmaa ja säveltää musiikkia, joka on lähellä perinteisiä anatolialaisia musiikkimuotoja. <br>Hänen tyylinsä ja vaikuttimensa kattavat niin Sufi-musiikin kuin anatolialaisen kansanmusiikin, iranilaiset musiikkityylit ja nykyaikaisen maailmanmusiikin.</p><p>--</p><p>Helsinki Open Waves -radion, Caisan ja Sibelius-Akatemian Global Music -osaston yhteistuottamissa keskusteluissa tarkastellaan musiikkia niin muusikon kuin musiikkiteollisuuden näkökulmasta, monimuotoisuuteen keskittyvässä, neutraalissa ja turvallisessa tilassa. Kuuntele ohjelmaa HOW-radion aalloilla osoitteessa <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>Keskustelun kieli on englanti.</p><p>--</p><p>Global Club Nights -live-klubi-iltoja järjestetään Caisassa kuukausittain! Lue lisää Caisan <u><a href=\"https://www.caisa.fi/fi/tapahtumat/?q=Global%20Club%20Nights\">tapahtumakalenterista</u></a>.</p><p>Helsinki Open Waves on voittoa tavoittelematon ja yhteisölähtöinen alusta, jonka osallistujat voivat toteuttaa omia sisältöjään juuri niin kuin haluavat ja ilmaista itseään omalla kielellään ja kulttuurinsa kautta. Lue lisää <u><a href=\"https://www.caisa.fi/fi/tapahtumat/event/bfdfdd7f694211e35cf77b582ce20924/helsinki_open_waves\">täältä</u></a>.</p>", "sv": "<p>I det här avsnittet utforskar vi möjligheter med och information om bokningsagenturer för musiker och deras arbete.</p><p>Många artister känner till bokningsagenturernas existens, men vågar inte kontakta någon. Med hjälp av <b>Johanna Sauramäkis</b> expertis och erfarenheter från både Johanna själv och artisten <b>Melisa Yildirim</b>, försöker vi bena ut fördelarna och utmaningarna med att arbeta som oberoende musiker jämfört med att samarbeta med en bokningsagentur.</p><p><b>Johanna Sauramäki</b> är grundare och vd för Saura Booking Agency. Förutom att leda företaget arbetar hon som manager, agent och producent och ansvarar för företagets grafiska design.</p><p>Saura Booking Agency är en agentur för bokning av livemusik med säte i Helsingfors. Dess uppgift är att bevara och utveckla mångfalden i kulturen och att främja den finsk-ugriska musikens synlighet genom att skicka ut artister från Finland och resten av Norden till länder världen runt.</p><p><b>Melisa Yildirim</b> är en turkisk musiker som specialiserar sig på kemane. Hon arbetar med olika professionella artister runtom i världen och komponerar musik som är nära besläktad med traditionella anatoliska musikstilar. Hennes stilar varierar från sufisk musik till anatolisk folkmusik, och har även influenser från iranska genrer och samtida världsmusik.</p><p>Diskussionsspråket är engelska.</p>", "en": "<p>In HOW radio’s second Global Club Nights episode of the year, we examine the possibilities and knowledge around the topic of working with booking agencies for musicians.</p><p>Many artists are aware of the existence of booking agencies but never dare to contact them. Through the expertise of Johanna Sauramäki and the personal experiences of both Sauramäki and Melisa Yildirim, we try to map and navigate the upsides and challenges of working as an independent musician or collaborating with a booking agency.</p><p><b>Johanna Sauramäki</b> is the founder and CEO of Saura Booking Agency. In addition to managing the company, he acts as a manager, agent and producer and is responsible for the company's graphic design.<br> <br>Saura Booking Agency is a live music agency in Helsinki. The task is to maintain and develop the diversity of the cultural field and to promote the visibility of Finno-Ugric music by taking artists from Finland and other Nordic countries worldwide.</p><p><b>Melisa Yildirim</b> is a Turkish musician specialising in the kemane. She is working with various professional artists around the world and she composes music close to traditional Anatolian music forms.</p><p>Her styles and influences range from Sufi music to Anatolian folk, as well as Iranian genres and contemporary world music.</p><p>--</p><p>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s <u><a href=\"https://www.caisa.fi/en/events/?q=Global%20Club%20Nights\">event calendar</u>.</a></p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more <u><a href=\"https://www.caisa.fi/en/events/event/BFDFDD7F694211E35CF77B582CE20924/Helsinki_Open_Waves_\">here</u></a>.</p>" }, "name": { "fi": "PERUTTU HOW radio: Global Club Nights – Booking agencies with Johanna Sauramäki & Melisa Yildirim", "sv": "INSTÄLLT HOW radio: Global Club Nights – Booking agencies with Johanna Sauramäki & Melisa Yildirim", "en": "CANCELLED HOW radio: Global Club Nights – Booking agencies with Johanna Sauramäki & Melisa Yildirim" }, "short_description": { "fi": "Tässä jaksossa tutustumme muusikoita välittävien toimistojen kanssa tehtävän yhteistyön mahdollisuuksiin.", "sv": "I det här avsnittet utforskar vi möjligheter med och information om bokningsagenturer för musiker och deras arbete.", "en": "In HOW radio’s second Global Club Nights episode of the year, we examine the possibilities and knowledge around the topic of working with booking agencies for musicians." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61413/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19256, "next": "