Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=314
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=315", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=313" }, "data": [ { "id": "espoo_le:agj5l3qs6i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerf4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/6rrSCSBJo", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-12-17T17:43:36.193174Z", "last_modified_time": "2024-12-23T10:49:32.028352Z", "date_published": null, "start_time": "2025-05-22T13:00:00Z", "end_time": "2025-05-22T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon! Maksuton, ei ennakkoilmoittautumista.", "sv": "Välkommen på en trevlig pysselstund på Hagalunds bibliotek. Evenemanget är gratis, ingen förhandsanmälan krävs.", "en": "Welcome to join in the cheerful crafting at Tapiola Library!\nFree of charge, no advance registration required." }, "info_url": null, "location_extra_info": null, "name": { "fi": "Askartelupaja", "sv": "Pysselverkstad", "en": "Craft Workshop" }, "description": { "fi": "<p>Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon!</p><p>Maksuton, ei ennakkoilmoittautumista.</p>", "sv": "<p>Välkommen på en trevlig pysselstund på Hagalunds bibliotek.</p><p>Evenemanget är gratis, ingen förhandsanmälan krävs.</p>", "en": "<p>Welcome to join in the cheerful crafting at Tapiola Library!</p><p>Free of charge, no advance registration required.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qs6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiojoerf4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/6rrSCSBJo", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoepuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqme/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqva/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeqzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoeq5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qs6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qts4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qtxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qt3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quem/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-07-24T11:31:00.501603Z", "last_modified_time": "2024-12-23T10:49:30.849987Z", "date_published": null, "start_time": "2024-08-29T13:00:00Z", "end_time": "2025-05-22T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon! Maksuton, ei ennakkoilmoittautumista.", "sv": "Välkommen på en trevlig pysselstund på Hagalunds bibliotek. Evenemanget är gratis, ingen förhandsanmälan krävs.", "en": "Welcome to join in the cheerful crafting at Tapiola Library!\nFree of charge, no advance registration required." }, "info_url": null, "location_extra_info": null, "name": { "fi": "Askartelupaja", "sv": "Pysselverkstad", "en": "Craft Workshop" }, "description": { "fi": "<p>Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon!</p><p>Maksuton, ei ennakkoilmoittautumista.</p>", "sv": "<p>Välkommen på en trevlig pysselstund på Hagalunds bibliotek.</p><p>Evenemanget är gratis, ingen förhandsanmälan krävs.</p>", "en": "<p>Welcome to join in the cheerful crafting at Tapiola Library!</p><p>Free of charge, no advance registration required.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiojoerf4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-2801", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "" }, "price": { "fi": "6.50 - 41.00 €", "sv": "6.50 - 41.00 €", "en": "6.50 - 41.00 €" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-21T00:06:47.379454Z", "last_modified_time": "2024-12-21T00:06:47.379474Z", "date_published": null, "start_time": "2025-03-18T17:00:00Z", "end_time": "2025-03-18T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Amazing concert coming up.\n\n...", "sv": "Amazing concert coming up.\n\n...", "en": "Amazing concert coming up.\n\n..." }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2801", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/2801", "en": "https://helsinginkaupunginorkesteri.fi/en/node/2801" }, "location_extra_info": { "fi": "Carnegie Hall" }, "name": { "fi": "HKO: Kuratoin ", "sv": "HKO: Kuratoin ", "en": "HKO: Kuratoin " }, "description": { "fi": "<p>Amazing concert coming up....</p>", "sv": "<p>Amazing concert coming up....</p>", "en": "<p>Amazing concert coming up....</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2801/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agj6jdplny", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41835/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-12-20T14:52:06.398031Z", "last_modified_time": "2024-12-20T14:52:06.398049Z", "date_published": "2024-12-20T14:52:06.033000Z", "start_time": "2024-12-21", "end_time": "2024-12-28", "custom_data": { "spots": "1", "org_name": "Bar", "website_url": "", "contact_email": "fsdf@sdffds.local", "contact_phone": "132123123", "contact_last_name": "adsffsad", "contact_first_name": "asdsfd" }, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "asdasdsaddsa" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Foo" }, "description": { "fi": "asdasdsaddsa" }, "provider": { "fi": "Vaisu haamusäätiö sr", "sv": "7772192-2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6jdplny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agj6jbk7re", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51489/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-12-20T14:42:46.330308Z", "last_modified_time": "2024-12-20T14:42:46.330329Z", "date_published": "2024-12-20T14:42:45.893000Z", "start_time": "2024-12-21", "end_time": "2024-12-22", "custom_data": { "spots": "1", "org_name": "afdsdsf", "website_url": "", "contact_email": "fdsafds@asfdafds.local", "contact_phone": "123213321321", "contact_last_name": "asfdsafd", "contact_first_name": "afdsafds" }, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "asdfadsf" }, "info_url": null, "location_extra_info": null, "name": { "fi": "asfdsafd" }, "description": { "fi": "asdfadsf" }, "provider": { "fi": "Vaisu haamusäätiö sr", "sv": "7772192-2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6jbk7re/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agj6i6qy74", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:72921/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-12-20T14:30:27.378972Z", "last_modified_time": "2024-12-20T14:30:27.378992Z", "date_published": "2024-12-20T14:30:26.862000Z", "start_time": "2024-12-22", "end_time": "2024-12-27", "custom_data": { "spots": "1", "org_name": "sad", "website_url": "", "contact_email": "safd@adfsasf.local", "contact_phone": "132213123", "contact_last_name": "asd", "contact_first_name": "asad" }, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "asdffds" }, "info_url": null, "location_extra_info": null, "name": { "fi": "ads" }, "description": { "fi": "asdffds" }, "provider": { "fi": "Vaisu haamusäätiö sr", "sv": "7772192-2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agj6i6qy74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65246", "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: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: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/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://stellapolaris.tapahtumiin.fi/fi/events/e/maaginen-matka-koko-perheen-improvisoitu-seikkailu/675ad9b63e835dcc248b4573", "sv": "https://stellapolaris.tapahtumiin.fi/fi/events/e/maaginen-matka-koko-perheen-improvisoitu-seikkailu/675ad9b63e835dcc248b4573", "en": "https://stellapolaris.tapahtumiin.fi/fi/events/e/maaginen-matka-koko-perheen-improvisoitu-seikkailu/675ad9b63e835dcc248b4573" }, "price": { "fi": "16,30 €/kpl, 4 henkilön perhelippu 50 €", "sv": "16,30 €/kpl, 4 henkilön perhelippu 50 €", "en": "16,30 €/kpl, 4 henkilön perhelippu 50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T13:14:07.685103Z", "last_modified_time": "2024-12-13T13:14:07.685120Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764275.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-13T13:14:07.646843Z", "last_modified_time": "2024-12-20T13:14:19.401581Z", "date_published": null, "start_time": "2025-01-18T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.", "sv": "I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.", "en": "In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E4054BCACE4EF19EACD3EC945FFD87C/Stella_Polaris_Maaginen_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/9E4054BCACE4EF19EACD3EC945FFD87C/Stella_Polaris_En_magisk_resa", "en": "http://www.annantalo.fi/en/events/event/9E4054BCACE4EF19EACD3EC945FFD87C/Stella_Polaris_A_magical_journey" }, "location_extra_info": null, "name": { "fi": "Stella Polaris: Maaginen matka – koko perheen improvisoitu seikkailu", "sv": "Stella Polaris: En magisk resa – improviserat äventyr för hela familjen", "en": "Stella Polaris: A magical journey – an improvised adventure for the whole family" }, "description": { "fi": "<p>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun – millainen tarina tehdään ja ketkä siinä seikkailevat.</p><p>Improvisoidussa näytelmässä ei ole käsikirjoitusta, vaan näyttelijät, muusikko ja valosuunnittelija improvisoivat kaiken lapsilta saatujen ehdotusten pohjalta.</p><p>Tulkaa viihtymään kanssamme ja ihmettelemään, kuinka lukuisat roolihahmot, laulut, tarinat ja lopulta kokonainen näytelmä syntyy yleisön silmien edessä.</p><p>Taitavat improvisoijat venyvät mitä yllätyksellisimpiin tilanteisiin ja varmaa on, ettei naurun pyrskähdyksiltä ja pähkähulluilta käänteiltä vältytä.</p><p>Ikäsuositus: 6-vuotiaasta ylöspäin.<br>Esityksen kesto: noin 45 minuuttia.<br>Esityksen kieli: suomi</p>", "sv": "<p>I Stella Polaris improviserade pjäs för hela familjen får barnen påverka föreställningens förlopp; den historia man gör och vem som är med om äventyr i den.</p><p>Det finns inget manus i föreställningen, utan skådespelarna, musikern och ljusdesignern improviserar allt utgående från förslag som de får av barnen.</p><p>Kom och trivs med oss och förundras över hur talrika rollfigurer, låtar, berättelser och till slut ett helt skådespel uppstår framför publikens ögon.</p><p>De skickliga improvisatörerna klarar av de mest överraskande situationerna, och det är säkert att vi får skratta högt och se vettlösa vändningar.</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 6+</p>", "en": "<p>In Stella Polaris’ improvised play for the whole family, children can influence the course of the performance; how the story unfolds and who the characters are.</p><p>The improvised performance has no script: the actors, musician and lighting designer improvise everything based on suggestions from the children.</p><p>Come have fun with us and witness how numerous roles, songs, stories and, ultimately, the entire play are created right in front of the audience.</p><p>The skilled improvisers can adapt to the most surprising situations, and what’s certain is there will be no shortage of laughs and crazy twists.</p><p>Duration: approx. 45 min<br>Age recommendation: 6+</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65246/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64760", "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:30/?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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153143, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T13:15:38.326950Z", "last_modified_time": "2024-12-03T13:15:38.326966Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760011.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-03T13:15:38.275509Z", "last_modified_time": "2024-12-20T13:14:19.306386Z", "date_published": null, "start_time": "2025-01-18T09:00:00Z", "end_time": "2025-01-18T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/070BFC3A33F593AE0A11C1C9D27CB889/Annantalon_taidelauantai_Kohti_kesaa", "sv": "http://www.annantalo.fi/sv/evenemang/event/070BFC3A33F593AE0A11C1C9D27CB889/Annegardens_konstlordag_Mot_sommaren_", "en": "http://www.annantalo.fi/en/events/event/070BFC3A33F593AE0A11C1C9D27CB889/Annantalo_Art_Saturday_Towards_summer_" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Kohti kesää", "sv": "Annegårdens konstlördag: Mot sommaren", "en": "Annantalo Art Saturday: Towards summer" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kohti kesää</b></p><p>Bzzzzzzzzz, surrrrrrrrrrr, pörrrrrrrrrr...... Muistatko minkälaisia ääniä kukkapenkeistä ja metsistä kuuluu? Nyt siirretään ajatukset jo kohti tulevaa kesää ja kuvitellaan kaikenlaisia rapistelevia, surisevia ja iniseviä otuksia. Tule ja tee oma hyönteisesi osaksi yhteistä taideteosta!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Mot sommaren</b><br>Bzzzzzzzzzzz, surrrrrrrrrrrrrrrrrrr, pörrrrrrrrrrrrrrrr...... Kommer du ihåg vilka ljud man kan höra i blomsterrabatter och skogar? Vi riktar tankarna mot den annalkande sommaren och föreställer oss alla möjliga skrapande, surrande och pipande varelser.</p><p>Kom och gör din egen insekt till en del av ett gemensamt konstverk!</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Konstlördagen på Annegården är avgiftsfri. <br>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Towards summer</b><br>Bzzzzzzzzz, hummmmmmm, whirrrrrrrrrrrrr...... Do you remember the sounds of flower beds and forests? We are already shifting our thoughts towards the coming summer and imagining all sorts of crunchy, buzzing and whirling creatures. Come and make your own insect as part of a common work of art!</p><p>No advance skills are required to participate. The language of instruction in the workshops is Finnish, but all languages and language skills are welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space.</p><p>The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64760/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65115", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153133, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-02T11:13:54.629235Z", "last_modified_time": "2024-12-02T11:13:54.629252Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764065.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153133/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-02T11:13:54.586664Z", "last_modified_time": "2024-12-20T13:14:18.666663Z", "date_published": null, "start_time": "2025-01-16T14:00:00Z", "end_time": "2025-01-16T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Mölymyrsky-kuvakirjan julkaisutilaisuuteen! Ohjelmassa lukuhetki, kasvomaalausta, värityskuvia sekä omien lempi- ja inhokkiäänien jakamista.", "sv": "Välkommen till lanseringen av bilderboken Mölymyrsky! I programmet ingår bland annat en lässtund, ansiktsmålning, färgläggning och att dela med sig av ljud som man gillar och ogillar.", "en": "Welcome to the release of the Mölymyrsky picture book! The programme includes reading, face painting, colouring pictures and sharing the sounds you love and hate." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Metelia_hiljaisuuden_puolesta_", "sv": "http://www.annantalo.fi/sv/evenemang/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Metelia_hiljaisuuden_puolesta_Ovasen_for_tystnaden_", "en": "http://www.annantalo.fi/en/events/event/D81F88D0EB34B3B7AF2C3AC3B656C1EC/Make_some_noise_for_silence_" }, "location_extra_info": null, "name": { "fi": "Meteliä hiljaisuuden puolesta! – Mölymyrsky-kirjan julkaisutilaisuus", "sv": "Meteliä hiljaisuuden puolesta! (Oväsen för tystnaden!) – Boklansering av Mölymyrsky-boken", "en": "Make some noise for silence! – Book release for Mölymyrsky" }, "description": { "fi": "<p>Tervetuloa Mölymyrsky-kuvakirjan julkaisutilaisuuteen! Ohjelmassa lukuhetki, kasvomaalausta, värityskuvia sekä omien lempi- ja inhokkiäänien jakamista.</p><p>Juhlan kunniaksi kuunnellaan myös juhlamaljojen kilistelyä ja herkutellaan.</p><p>Mölymyrsky on viisas ja lempeä kuvakirja herkästä Saulista, joka kaipaa hiljaisuutta meluisan arjen keskellä. Kaikkialla on kiljuntaa, mölinää, ölinää, räminää ja ryminää. Sauli taas rakastaa sadepäiviä ja pieniä ääniä, avaimen rapinaa lukossa ja sukkapuikkojen kilahtelua. Kun hän tutustuu äänekkääseen Remiin, hermot joutuvat koetukselle. Onneksi yhteinen sävel on mahdollista löytää – avuksi tarvitaan vain… Shhhmies!</p><p>Teos on suunnattu 3-vuotiaasta ylöspäin ja se on WSOY:n kustantama.</p><p>Tilaisuudessa on mahdollista ostaa kirjoja julkkarihintaan.</p><p>Kirjajulkkarit järjestävät kirjantekijät Heli Rantala ja Netta Lehtola yhdessä Annantalon kanssa.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>Välkommen till lanseringen av bilderboken Mölymyrsky! I programmet ingår bland annat en lässtund, ansiktsmålning, färgläggning och att dela med sig av ljud som man gillar och ogillar.</p><p>Festen till ära kommer vi också att klinga i glasen och njuta av läckerheter.</p><p>Mölymyrsky är en klok och mild bilderbok om den känslige Sauli, som längtar efter tystnad mitt i den bullriga vardagen. Överallt är det skrik, vrål, tjut, skräll och dunk. Men Sauli älskar regniga dagar och små ljud, skrapet av en nyckel i låset och klinket av strumpstickor. När han träffar den högljudda Remi sätts hans nerver på prov. Lyckligtvis går det att hitta en gemensam melodi – man behöver bara hjälp av... Shhhmannen!</p><p>Boken är riktad till barn från 3 år och uppåt och ges ut av WSOY.<br>På evenemanget finns böcker att köpa till lanseringspris.</p><p>Boklanseringen arrangeras av bokens upphovsmän Heli Rantala och Netta Lehtola tillsammans med Annegården.</p><p>Fritt inträde, ingen förhandsanmälan.</p>", "en": "<p>Welcome to the release of the Mölymyrsky picture book! The programme includes reading, face painting, colouring pictures and sharing the sounds you love and hate.</p><p>In honour of the celebration, we will also listen to the clinking of festive drinks and feast.</p><p>Mölymyrsky is a wise and gentle picture book of the sensitive Sauli, who needs some peace and quiet in the middle of a noisy everyday life. Wherever you go, there is so much screaming, rumbling, clamouring, rattling and clattering. Sauli, on the other hand, loves rainy days and small noises, like the rattling of a key in the lock and the clinking of knitting needles. When he gets to know the noisy Remi, his nerves are put to the test. Fortunately, it is possible to find a common tune. All it takes is… Shhhmies!</p><p>The book is meant for children aged 3 and up. The book is published by WSOY.</p><p>The book will be on sale at a special release price at the event.<br>The book launch is organised by authors Heli Rantala and Netta Lehtola together with Annantalo.</p><p>Free admission, no advance registration.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65115/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64489", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27260/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5759/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/savoy-world-2024-syksy-savoy-teatteri-18685001/", "sv": "https://www.lippu.fi/event/savoy-world-2024-syksy-savoy-teatteri-18685001/", "en": "https://www.lippu.fi/event/savoy-world-2024-syksy-savoy-teatteri-18685001/" }, "price": { "fi": "15-67 €", "sv": "15-67 €", "en": "15-67 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152469, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T13:13:56.363531Z", "last_modified_time": "2024-09-18T13:13:56.363546Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757597.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152469/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-30T18:15:56.553993Z", "last_modified_time": "2024-12-20T01:14:51.629390Z", "date_published": null, "start_time": "2025-10-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0F4B8B4D71FDA9A986F87D0EFB3EC744/Savoy_WORLD_Oumou_Sangar_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0F4B8B4D71FDA9A986F87D0EFB3EC744/Savoy_WORLD_Oumou_Sangar_", "en": "http://www.savoyteatteri.fi/en/events/event/0F4B8B4D71FDA9A986F87D0EFB3EC744/Savoy_WORLD_Oumou_Sangar_" }, "location_extra_info": null, "name": { "fi": "Savoy WORLD: Oumou Sangaré – Vuodelta 2024 siirtynyt konsertti", "sv": "Savoy WORLD: Oumou Sangaré", "en": "Savoy WORLD: Oumou Sangaré" }, "description": { "fi": "<p>Grammy-voittaja, afrikkalaisen musiikin supertähti, naisten oikeuksien esitaistelija – laulajaikoni Oumou Sangaré Suomeen 16 vuoden tauon jälkeen!</p><p>Pitkä odotus palkitaan, kun malilaisen laulajalegenda Oumou Sangarén kiertue ulottuu vihdoin Helsinkiin osana Savoy WORLD -konserttisarjaa.</p><p>Köyhissä oloissa kasvanut Sangare sai kipinän naisasiaan jo nuorena: Sangarén ollessa vain kaksivuotias, isä lähti jättäen hänen äitinsä kasvattamaan yksin neljää lasta. Pienen Oumoun poikkeuksellinen laulutaito huomattiin hänen ollessaan vain viisivuotias, ja esikoisalbumi Moussoloun ilmestymisen jälkeen Sangaren ura lähti kansainväliseen nousukiitoon. Grammy-palkittu laulaja on sittemmin tehnyt yhteistyötä mm. Alicia Keysin, Beyoncen ja Herbie Hancockin kanssa ja konsertoinut maailman arvostetuimmilla konserttilavoilla Sydneyn oopperatalosta Lontoon Queen Elisabet Halliin. Hänen syvä ja vivahteikas lauluäänensä sekä karismaattinen lavaesiintymisensä on valloittanut ihmiset ympäri maailmaa, Suomessa vuonna 2009.</p><p>Menestys ei ole saanut Sangaréa unohtamaan taustaansa, vaan sukupuolten välisen tasa-arvon teema kuuluu vahvasti hänen lauluissaan. Hänet on myös nimitetty YK:n Hyvän tahdon lähettilääksi, ja yhtenä maanosansa tunnetuimmista laulajista hän hyödyntää kuuluisuuttaan nostaakseen esiin afrikkalaisia arvoja sekä edistääkseen wassoulou-musiikin tunnettuutta.</p><p>Wassoulou-musiikki on länsiafrikkalainen kansanmusiikin genre, joka on peräisin Wassoulon alueelta Etelä-Malista ja sittemmin juurtunut syvälle malilaiseen kulttuuriin. Vahvan lauluperinteen lisäksi musiikissa kuuluvat kielisoittimet n'goni sekä kora. Musiikkityylille ovat ominaisia tarttuvat rytmit ja melodiat, jotka usein liittyvät arkipäivän elämään, kuten maatalouteen, perhe-elämään ja perinteisiin tapoihin. Wassouloun kuningattareksikin tituleerattu Oumou Sangaré on musiikkityylin tunnetuin edustaja, ja hän on vaikuttanut merkittävästi sen kehittymiseen yhdistämällä perinteeseen blues- ja rock-vivahteita.</p><p>Uusin levy Timbuktu ilmestyi 2022 keräten ylistäviä arvioita.</p><p>”Musiiikki on osa minua\", Sangaré kuvailee.</p><p>”Olen panostanut levyyn kaikkeni - koko elämäni, jossa olen kokenut nöyryyttävää nälkää, köyhyyttä ja pelkoa. Elämäni, josta tänään ammennan kunniaa.”</p><p>Tule kokemaan ikimuistoinen konsertti upean Oumou Sangarén seurassa!</p><p>Konsertin kesto n. 1,5 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>*****<br>Siirtyneen Savoy WORLD: Oumou Sangaré -konsertin (19.9.2024) liput käyvät sellaisenaan torstaina 9.10.2025 klo 19 alkavaan konserttiin. Lippuja ei tarvitse vaihtaa.</p><p>*****<br>Kuuntele Oumou Sangarén kappale Wassulu Don Youtubesta.</p>", "sv": "<p>Grammyvinnaren, den afrikanska musikstjärnan, förkämpen för kvinnornas rättigheter – efter ett uppehåll på 16 år anländer den ikoniska sångerskan Oumou Sangaré till Finland!</p><p>Den 16-åriga väntan kommer att belönas när den legendariska maliska sångerskan Oumou Sangarés turné äntligen når Helsingfors som en del av konsertserien Savoy WORLD.</p><p>Sangaré växte upp under fattiga förhållanden och gnistan för för kvinnosaken tändes redan i ung ålder: När Sangaré var bara två år gammal lämnade fadern hennes mor att uppfostra de fyra barnen ensam. Lilla Oumous exceptionella sångröst upptäcktes när hon var bara fem år gammal, och efter att debutalbumet Moussolou släpptes fick Sangarés karriär en internationell rivstart. Sedan dess har den Grammy-belönade sångerskan samarbetat med bland annat Alicia Keys, Beyoncé och Herbie Hancock, och uppträtt på världens mest prestigefyllda konsertscener från operahuset i Sydney till Queen Elizabeth Hall i London. Hennes djupa och nyanserade sångröst och karismatiska scenframträdanden har hänfört människor över hela världen, i Finland 2009.</p><p>Framgången har inte fått Sangaré att glömma sin bakgrund, utan temat jämställdhet mellan könen är starkt närvarande i hennes låtar. Hon har också utnämnts till FN:s goodwillambassadör, och i egenskap av en av sin kontinents mest kända sångare använder hon sin berömmelse för att lyfta fram afrikanska värderingar och främja wassoulou-musiken.</p><p>Wassoulou-musiken är en västafrikansk folkmusikgenre som har sitt ursprung i Wassoulo-regionen i södra Mali, och som sedermera blivit djupt rotad i den maliska kulturen. Förutom den starka sångtraditionen omfattar musiken stränginstrumenten n'goni och kora. Musikstilen kännetecknas av medryckande rytmer och melodier som ofta förknippas med det vardagliga livet, såsom jordbruk, familjeliv och traditionella seder. Oumou Sangaré, även känd som Wassoulous drottning, är musikstilens mest kända representant och har påverkat dess utveckling märkbart genom att kombinera traditionen med blues- och rocknyanser.</p><p>Det senaste albumet Timbuktu släpptes 2022 och fick strålande recensioner.</p><p>“Musiken är en del av mig”, beskriver Sangaré.</p><p>”Jag har satsat allt på albumet – hela mitt liv med förödmjukande hunger, fattigdom och rädsla. Mitt liv, ur vilket jag i dag inhämtar ära.”</p><p>Kom och upplev en minnesvärd konsert med den magnifika Oumou Sangaré!</p><p>Konserten varar i ca 1,5 timme, ingen paus.</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p><p>*****<br>Savoy WORLD: Oumou Sangaré föreställning 19.9.2024 har flyttats. Det nya datumet är on 9.10.2025 kl 19. Redan köpta biljetterna är giltiga till den nya konserten och behövs inte bytas.</p>", "en": "<p>Grammy winner, African music superstar, women’s rights champion and iconic singer Oumou Sangaré returns to Finland after a 16-year break!</p><p>The long wait will be rewarded when the legendary Malian singer Oumou Sangaré’s tour finally comes to Helsinki as part of the Savoy WORLD concert series.</p><p>Sangare, who grew up in poverty, was drawn to women’s issues at a young age: when Sangaré was only two years old, her father left, leaving her mother to raise four children alone. Little Oumou’s exceptional singing ability was noticed when she was only five years old, and after the release of her debut album Moussolou, Sangare’s career skyrocketed internationally. The Grammy Award-winning singer has since collaborated with Alicia Keys, Beyoncé and Herbie Hancock, among others, and performed on the world’s most prestigious concert stages, from the Sydney Opera House to the Queen Elizabeth Hall in London. Her deep and nuanced singing voice and charismatic stage presence have taken people by storm worldwide, including in Finland in 2009.</p><p>Success has not made Sangaré forget her background, and gender equality continues to be a theme that is strongly present in her songs. She has also been appointed a United Nations Goodwill Ambassador, and as one of the most famous singers on the African continent, she uses her fame to promote African values and raise awareness of Wassoulou music.</p><p>Wassoulou music is a genre of West African folk music that originated in the Wassoulo region of southern Mali and has since become deeply rooted in Malian culture. In addition to a strong vocal tradition, the music includes the string instruments n’goni and kora. The music style is characterized by catchy rhythms and melodies that are often associated with everyday life, such as agriculture, family life, and traditional customs. Oumou Sangaré, also called the queen of Wassoulou, is the most famous representative of the style and has contributed significantly to its development by combining blues and rock influences.</p><p>Her latest album, Timbuktu, was released in 2022 to rave reviews.</p><p>“Music is a part of me”, says Sangaré.</p><p>“I’ve invested everything in this album – my entire life, during which I’ve experienced humiliating hunger, poverty and fear. My life, from which I draw glory today.”</p><p>Come and experience an unforgettable concert with the magnificent Oumou Sangaré!</p><p>Concert duration: approx. 1.5 hours, no intermission.</p><p>*****<br>Savoy WORLD: Oumou Sangaré concert was rescheduled from September 19th 2024 to October 9th 2025 at 7 pm. The tickets that have already been purchased will be valid for the new event date as they are.</p>" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64489/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65198", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/itaekuskus-stand-up-klubi-k-18-stoa-19479730/", "sv": "https://www.lippu.fi/event/itaekuskus-stand-up-klubi-k-18-stoa-19479730/", "en": "https://www.lippu.fi/event/itaekuskus-stand-up-klubi-k-18-stoa-19479730/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153329, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T14:15:48.601854Z", "last_modified_time": "2024-12-09T14:15:48.601876Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764234.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153329/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T14:15:48.566108Z", "last_modified_time": "2024-12-20T01:14:51.374492Z", "date_published": null, "start_time": "2025-05-30T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"", "sv": "Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”", "en": "The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9340F64A9F28E05AE921BF619E7B2288/Itakuskus_stand-up_-klubi_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/9340F64A9F28E05AE921BF619E7B2288/Itakuskus_stand_up-klubb_18_", "en": "http://www.stoa.fi/en/events/event/9340F64A9F28E05AE921BF619E7B2288/The_Itakuskus_stand_up_Club_18_" }, "location_extra_info": null, "name": { "fi": "Itäkuskus stand-up -klubi (K18)", "sv": "Itäkuskus stand up-klubb (18)", "en": "The Itäkuskus stand up Club (18+)" }, "description": { "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p><b>Aikataulu</b><br>klo 18 ovet ja Teatterisalin baari avoinna<br>klo 19 show time</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi Suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on myös tuottaja ja MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"</p><p>Klubia ei suositella herkkähipiäisille! Toisinaan poliittinen korrektius tuntuu illoissa kaukaiselta aatteelta. Roustauksesta saavat osansa niin Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot kuin suomenkieliset fraasitkin, joita edes kantasuomalaiset eivät aina osaa lausua oikein.</p><p><b>Yleisön suusta:</b><br>”Täällä kuulen erinomaista läppää, mitä muualla en kuule.” <br>”Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.”</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin, illat myydään nopeasti loppuun.</p><p>Klubi-illan tarjoiluista vastaa ravintola Box Stoa ja Teatterisalin baari aukeaa klo 18.00. Tule ajoissa ja varaa parhaat paikat.</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus esiintyjä vetää englanniksi</p>", "sv": "<p>Itäkuskus-klubben är en dråplig stand-up-kväll som snabbt har blivit ett fenomen. “Vi bjuder publiken på skämt och grammatiska fel!”</p><p>På klubben glömmer du dina bekymmer och din stress. Denna unika show sveper med dig på en resa mot öst och bjuder på dråplig komik, unika inblickar i kulturella skillnader och det finska språket. Varje föreställning har flera varierande komiker med invandrarbakgrund – och naturligtvis framträder också en varierande känd kvotfinländsk komiker varje kväll.</p><p>Underhållningsstjärnan Fabe uppträder på alla klubbar. Det går inte att undvika Fabes videor, som visas över en miljon gånger och delas över 50 000 gånger i månaden i Finland. Varför har klubben blivit ett fenomen? Fabe svarar: “För att finländarna älskar mitt handhår och att skämta om det. Med hjälp av humor kan vi hantera alla ämnen och sammanföra kulturer. Det här är något helt unikt och otroligt. Det är värt att komma på plats!”</p><p>En av Finlands mest mångsidiga komiker fungerar som värd för klubbkvällarna: Komikern Mebe! Mebe är också producent och MC! Han är sympatisk, liknar en teddybjörn och charmar publiken med sina vassa repliker och skämt! “Detta får du inte se eller höra någon annanstans, den dråpliga Itäkuskus-showen är full av overraskningar och unika skämt och observationer. Detta är som Fazers mjölkchoklad, man blir beroende med en gång! Kom och upplev den unika Itäkuskus-showen, vi är många som aldrig missar en enda.”</p><p>Klubben rekommenderas inte för ömhudade! På kvällarna kan politisk korrekthet vara blott en avlägsen tanke. Både Skatteverket, Alko, Vanda, invandrarnas kulturella skillnader och finska fraser som inte ens infödda finländare alltid kan uttala på rätt sätt får sin del av roastningen.</p><p><b>Sagt bland publiken:</b><br>“Vi vill stödja invandrarartister.” <br>“Här slänger man käft som ingen annanstans.” <br>“Ett fantastiskt koncept och en kväll full av fantastiska artister, var och en så olika och bra på sitt eget sätt.”</p><p>Kom och upplev showen själv och ta med dig dina vänner!<br>Det är bra att köpa biljetter i god tid, eftersom kvällarna säljer slut snabbt. Restaurang Box Stoa svarar för serveringen under klubbkvällen.</p><p>Språk: finska</p>", "en": "<p>The Itäkuskus Club is a hilarious stand-up night that has become a phenomenon in a short time. “Jokes and grammar weirdness for everyone!”</p><p>At the club, you can forget about your worries and stress. This unique show takes you on a trip to the East with hilarious comedy and unique insights into cultural differences and the Finnish language. There are several rotating immigrant comedians at each gig – and, of course, there is also a rotating, well-known Finnish comedian every evening.</p><p>All clubs feature entertainer Fabe. Fabe’s videos will have been hard to avoid, as they accumulate more than a million views per month in Finland and have been shared more than 50,000 times. Why has the club become a such a phenomenon? Fabe replies: “Because Finns love my arm hair and making jokes about them. You can talk about anything and create connections between cultures through humour. This is something totally unique and unbelievable. Be there!”</p><p>Club evenings are hosted by one of the most versatile comedians in Finland: Mebe! Mebe is also a producer and an MC! He is a sympathetic teddy bear-like person who charms the audience with quick one-liners and jokes! “You can't see and hear this anywhere else, the hilarious Itäkuskus show is full of surprises, unique jokes and observations. This is like Fazer's milk chocolate, the first time is all it takes to get you hooked! Come and experience the unique Itäkuskus show, like many others that visit every time.”</p><p>The club is not recommended for people without a thick skin! Sometimes political correctness feels like a distant ideal in these evenings. The Tax Authority, Alko, the City of Vantaa, the cultural differences between immigrants, as well as phrases in Finnish that even native Finns can not always speak correctly all get roasted.</p><p><b>From the audience:</b><br>“We want to support immigrant performers.” <br>“The jokes here are excellent, the kind I don't hear anywhere else.” <br>\"The concept is great and the evening is full of good performers, everyone so different from one another and good in their own way.”</p><p>Come and experience it for yourself and bring your friends!<br>We recommend buying tickets in advance, as the events sell out quickly.<br>Restaurant Box Stoa is responsible for service during the club evening.</p><p>Language: Mainly Finnish</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65198/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65013", "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:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T13:14:17.593133Z", "last_modified_time": "2024-12-10T13:14:17.593148Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763499.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-12-10T13:14:17.557161Z", "last_modified_time": "2024-12-20T01:14:51.114369Z", "date_published": null, "start_time": "2025-05-19T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/66A42D118DE83DC8D2AFB68AD83554EB/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/66A42D118DE83DC8D2AFB68AD83554EB/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/66A42D118DE83DC8D2AFB68AD83554EB/Let_us_sing_" }, "location_extra_info": null, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 tunti<br>Vapaa pääsy</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65013/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65303", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153505, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T14:14:59.987277Z", "last_modified_time": "2024-12-18T14:14:59.987293Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760136.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153505/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-12-18T14:14:59.958797Z", "last_modified_time": "2024-12-20T01:14:50.591465Z", "date_published": null, "start_time": "2025-05-06T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit", "en": "http://www.stoa.fi/en/events/event/3C272CE22EB094FF2CBF703E0C3FBC81/Paivatanssit" }, "location_extra_info": null, "name": { "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "en": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa" }, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Kesto: 1 tunti<br>Ohjauskieli: suomi<br>Vapaa pääsy</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65303/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63369", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3631113" }, "price": { "fi": "43,10-79 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-15T13:13:50.205910Z", "last_modified_time": "2024-04-15T13:13:50.205923Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749374.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-15T13:13:50.181495Z", "last_modified_time": "2024-12-20T01:14:48.049034Z", "date_published": null, "start_time": "2025-04-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/393252F6A8177C9DD6674A082B4E2C46/The_Music_of_Hans_Zimmer_Others_A_Celebration_of_Filmmusic" }, "location_extra_info": null, "name": { "fi": "The Music of Hans Zimmer & Others – A Celebration of Filmmusic – Loppuunmyyty! / Sold out!" }, "description": { "fi": "<p>Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla</p><p>Koe elokuvamusiikin lumoava maailma teoksessa \"Hans Zimmerin ja muiden musiikkia\"! Nauti parhaimmista elokuvamusiikkikappaleista elokuvista kuten mm. \"Top Gun\", \"Dune\", \"James Bond\", \"Pirates of the Caribbean\", \"Leijonakuningas\", \"Gladiaattori\", \"Yön ritari\", \"Inception\", \"Interstellar\" vaikuttavassa konserttitapahtumassa. Mukana on elokuvamusiikkiorkesteri, kuoro, kuuluisia solisteja ja valoshow. Illan isäntänä toimii erityisvieras suoraan alkuperäisestä elokuvasta!</p><p>Ei ole toista säveltäjää, joka olisi vaikuttanut elokuvamaailmaan viimeisen kahden vuosikymmenen aikana yhtä paljon kuin Oscar-, Golden Globe- ja Emmy-palkittu Hans Zimmer. Hänen uskomattomia sävellyksiään ovat mm. \"James Bond\", \"Leijonakuningas\", \"Pirates of the Caribbean\", \"Gladiaattori\", \"Yön ritari\", \"Teräsmies\", \"Inception\" ja \"Interstellar\".</p><p>Saksassa syntynyt Hans Zimmer nousi kuuluisuuteen \"Sademies\" -elokuvan musiikilla ja on siitä lähtien siivittänyt lukuisia Hollywoodin megahittejä saavuttamaan menestystä, mukaan lukien \"Mission Impossible II\", \"Gladiaattori\", \"Pirates of the Caribbean\", \"Interstellar\" ja \"Batman\". Hans Zimmer sai yhdennentoista Oscar-ehdokkuutensa vuonna 2018 Christopher Nolanin elokuvan \"Dunkirk\" soundtrackista.</p><p>Yleisö pääsee kuulemaan mielenkiintoisia taustatarinoita, kuten sen, miten Hans Zimmer välitti anti-apartheid-viestin \"Leijonakuninkaan\" laulun sanoituksessa äidinkielellään, kertoen Disney-yhtiölle sen kertovan perhosista. Hans Zimmer ihailee Ennio Morriconen työtä ja nimeää hänet esikuvakseen. Konsertissa kuullankin otteita Morriconen elokuvista \"Hyvät, pahat ja rumat\" ja \"Once Upon a Time in the West\".</p><p>Konsertissa kuullaan myös Zimmerin säveltämä kappale Aurora-elokuvateatteriampumisen uhreille ja hänen säveltämäänsä musiikkia ilmastonmuutoksen vastustamiseksi.</p><p>\"Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla\" on unohtumaton audiovisuaalinen kokemus!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "provider": { "fi": "Star Entertainment Europe by Lancelot Productions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63369/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65305", "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: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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/robert-wells/#calendar-start=2025-04", "sv": "https://www.lippu.fi/artist/robert-wells/#calendar-start=2025-04", "en": "https://www.lippu.fi/artist/robert-wells/#calendar-start=2025-04" }, "price": { "fi": "35 €", "sv": "35 €", "en": "35 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153508, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T15:13:43.752938Z", "last_modified_time": "2024-12-18T15:13:43.752955Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761669.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153508/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-18T15:13:43.706476Z", "last_modified_time": "2024-12-20T01:14:47.961636Z", "date_published": null, "start_time": "2025-04-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Robert Wellsin konsertissa vietetään koko ilta flyygelin ääressä.", "sv": "En kväll vid flygeln med Robert Wells.", "en": "An evening at the grand piano with Robert Wells." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/93B3005E41D27BA3C19E479802DED0AA/Robert_Wells_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/93B3005E41D27BA3C19E479802DED0AA/Robert_Wells_", "en": "http://www.vuotalo.fi/en/events/event/93B3005E41D27BA3C19E479802DED0AA/Robert_Wells_" }, "location_extra_info": null, "name": { "fi": "Robert Wells", "sv": "Robert Wells", "en": "Robert Wells" }, "description": { "fi": "<p>Robert Wellsin konsertissa vietetään koko ilta flyygelin ääressä.</p><p>Yli kolmekymmentä vuotta musiikkiuraa tehnyt Wells on tunnettu mm. Rhapsody In Rock -esityksistä sekä useista levytyksistä ja yhteistöistä yli sadan artistin kanssa.</p><p>Nyt Vuotalon konsertissa ollaan flyygelin ääressä ja kuullaan musiikin mestareita, kuten Beethovenia, Lisztiä, Chopinia ja Griegiä sekä omia sävellyksiä uudelta levyltä ”Songs Without Words”.</p><p>Tämä kaikki yhdistyy boogieen, improvisaatioon, anekdootteihin ja huumoriin elämästä pianon kanssa.</p><p>Robert Wells, piano<br>Maria Wells, laulu<br>Kesto: n. 120 min. sis. väliaika.</p>", "sv": "<p>En kväll vid flygeln med Robert Wells.</p><p>Robert Wells, med över trettio år av musikkarriär bakom sig, är känd för sina Rhapsody In Rock-föreställningar, flertalet skivutgivningar och samarbeten med över hundra artister.</p><p>Nu bjuder han in till en kväll vid flygeln i Vuotalo där vi får höra musikens mästare som Beethoven, Liszt, Chopin och Grieg, samt egna kompositioner från den nya plattan \"Songs Without Words\".</p><p>Allt detta kombineras med boogie, improvisationer, anekdoter och humor om livet med pianot vid sin sida.</p><p>Robert Wells, piano<br>Maria Wells, sång</p><p>Längd: ca 120 min. inkl. paus.</p>", "en": "<p>An evening at the grand piano with Robert Wells.</p><p>With over thirty years of a music career, Robert Wells is known for his Rhapsody In Rock performances, numerous recordings, and collaborations with over a hundred artists.</p><p>Now, at Vuotalo's concert, he invites you to join him at the grand piano to enjoy the music of masters like Beethoven, Liszt, Chopin, and Grieg, as well as his own compositions from the new album \"Songs Without Words.\"</p><p>All this is combined with boogie, improvisations, anecdotes, and humor about life with the piano by his side.</p><p>Robert Wells, piano<br>Maria Wells, vocals</p><p>Duration: 120 min, including break</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65305/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64727", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3631113" }, "price": { "fi": "43,10-79 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152832, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-16T13:17:17.549557Z", "last_modified_time": "2024-10-16T13:17:17.549581Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759357.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152832/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-16T13:17:17.519515Z", "last_modified_time": "2024-12-20T01:14:47.791558Z", "date_published": null, "start_time": "2025-04-10T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EB6943D4B69ED7C42E0E293C5264D292/The_Music_of_Hans_Zimmer_Others_A_Celebration_of_Filmmusic" }, "location_extra_info": null, "name": { "fi": "The Music of Hans Zimmer & Others – A Celebration of Filmmusic – Loppuunmyyty! / Sold out!" }, "description": { "fi": "<p>Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla</p><p>Koe elokuvamusiikin lumoava maailma teoksessa \"Hans Zimmerin ja muiden musiikkia\"! Nauti parhaimmista elokuvamusiikkikappaleista elokuvista kuten mm. \"Top Gun\", \"Dune\", \"James Bond\", \"Pirates of the Caribbean\", \"Leijonakuningas\", \"Gladiaattori\", \"Yön ritari\", \"Inception\", \"Interstellar\" vaikuttavassa konserttitapahtumassa. Mukana on elokuvamusiikkiorkesteri, kuoro, kuuluisia solisteja ja valoshow. Illan isäntänä toimii erityisvieras suoraan alkuperäisestä elokuvasta!</p><p>Ei ole toista säveltäjää, joka olisi vaikuttanut elokuvamaailmaan viimeisen kahden vuosikymmenen aikana yhtä paljon kuin Oscar-, Golden Globe- ja Emmy-palkittu Hans Zimmer. Hänen uskomattomia sävellyksiään ovat mm. \"James Bond\", \"Leijonakuningas\", \"Pirates of the Caribbean\", \"Gladiaattori\", \"Yön ritari\", \"Teräsmies\", \"Inception\" ja \"Interstellar\".</p><p>Saksassa syntynyt Hans Zimmer nousi kuuluisuuteen \"Sademies\" -elokuvan musiikilla ja on siitä lähtien siivittänyt lukuisia Hollywoodin megahittejä saavuttamaan menestystä, mukaan lukien \"Mission Impossible II\", \"Gladiaattori\", \"Pirates of the Caribbean\", \"Interstellar\" ja \"Batman\". Hans Zimmer sai yhdennentoista Oscar-ehdokkuutensa vuonna 2018 Christopher Nolanin elokuvan \"Dunkirk\" soundtrackista.</p><p>Yleisö pääsee kuulemaan mielenkiintoisia taustatarinoita, kuten sen, miten Hans Zimmer välitti anti-apartheid-viestin \"Leijonakuninkaan\" laulun sanoituksessa äidinkielellään, kertoen Disney-yhtiölle sen kertovan perhosista. Hans Zimmer ihailee Ennio Morriconen työtä ja nimeää hänet esikuvakseen. Konsertissa kuullankin otteita Morriconen elokuvista \"Hyvät, pahat ja rumat\" ja \"Once Upon a Time in the West\".</p><p>Konsertissa kuullaan myös Zimmerin säveltämä kappale Aurora-elokuvateatteriampumisen uhreille ja hänen säveltämäänsä musiikkia ilmastonmuutoksen vastustamiseksi.</p><p>\"Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla\" on unohtumaton audiovisuaalinen kokemus!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "provider": { "fi": "Star Entertainment Europe by Lancelot Productions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64727/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64728", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/themusicofhanszimmerandothers/" }, "price": { "fi": "43,10-79 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-16T13:17:17.180800Z", "last_modified_time": "2024-10-16T13:17:17.180814Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759358.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152830/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-16T13:17:17.154971Z", "last_modified_time": "2024-12-20T01:14:47.461110Z", "date_published": null, "start_time": "2025-04-08T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BB96523FB275778ECC11D1627BD77372/The_Music_of_Hans_Zimmer_Others_A_Celebration_of_Filmmusic" }, "location_extra_info": null, "name": { "fi": "The Music of Hans Zimmer & Others – A Celebration of Filmmusic – Loppuunmyyty! / Sold out!" }, "description": { "fi": "<p>Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla</p><p>Koe elokuvamusiikin lumoava maailma teoksessa \"Hans Zimmerin ja muiden musiikkia\"! Nauti parhaimmista elokuvamusiikkikappaleista elokuvista kuten mm. \"Top Gun\", \"Dune\", \"James Bond\", \"Pirates of the Caribbean\", \"Leijonakuningas\", \"Gladiaattori\", \"Yön ritari\", \"Inception\", \"Interstellar\" vaikuttavassa konserttitapahtumassa. Mukana on elokuvamusiikkiorkesteri, kuoro, kuuluisia solisteja ja valoshow. Illan isäntänä toimii erityisvieras suoraan alkuperäisestä elokuvasta!</p><p>Ei ole toista säveltäjää, joka olisi vaikuttanut elokuvamaailmaan viimeisen kahden vuosikymmenen aikana yhtä paljon kuin Oscar-, Golden Globe- ja Emmy-palkittu Hans Zimmer. Hänen uskomattomia sävellyksiään ovat mm. \"James Bond\", \"Leijonakuningas\", \"Pirates of the Caribbean\", \"Gladiaattori\", \"Yön ritari\", \"Teräsmies\", \"Inception\" ja \"Interstellar\".</p><p>Saksassa syntynyt Hans Zimmer nousi kuuluisuuteen \"Sademies\" -elokuvan musiikilla ja on siitä lähtien siivittänyt lukuisia Hollywoodin megahittejä saavuttamaan menestystä, mukaan lukien \"Mission Impossible II\", \"Gladiaattori\", \"Pirates of the Caribbean\", \"Interstellar\" ja \"Batman\". Hans Zimmer sai yhdennentoista Oscar-ehdokkuutensa vuonna 2018 Christopher Nolanin elokuvan \"Dunkirk\" soundtrackista.</p><p>Yleisö pääsee kuulemaan mielenkiintoisia taustatarinoita, kuten sen, miten Hans Zimmer välitti anti-apartheid-viestin \"Leijonakuninkaan\" laulun sanoituksessa äidinkielellään, kertoen Disney-yhtiölle sen kertovan perhosista. Hans Zimmer ihailee Ennio Morriconen työtä ja nimeää hänet esikuvakseen. Konsertissa kuullankin otteita Morriconen elokuvista \"Hyvät, pahat ja rumat\" ja \"Once Upon a Time in the West\".</p><p>Konsertissa kuullaan myös Zimmerin säveltämä kappale Aurora-elokuvateatteriampumisen uhreille ja hänen säveltämäänsä musiikkia ilmastonmuutoksen vastustamiseksi.</p><p>\"Hans Zimmerin ja muiden musiikkia – Elokuvasävelmien juhla\" on unohtumaton audiovisuaalinen kokemus!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "provider": { "fi": "Star Entertainment Europe by Lancelot Productions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64728/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65302", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153504, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T14:14:57.772855Z", "last_modified_time": "2024-12-18T14:14:57.772869Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760135.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153504/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-12-18T14:14:57.746423Z", "last_modified_time": "2024-12-20T01:14:47.297541Z", "date_published": null, "start_time": "2025-04-08T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/60007D37346B063102E3783A1DFDA99D/Paivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/60007D37346B063102E3783A1DFDA99D/Paivatanssit", "en": "http://www.stoa.fi/en/events/event/60007D37346B063102E3783A1DFDA99D/Paivatanssit" }, "location_extra_info": null, "name": { "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "en": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa" }, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65302/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63357", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3631011" }, "price": { "fi": "43,10-79 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 132687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-12T16:13:04.475214Z", "last_modified_time": "2024-04-12T16:13:04.475237Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749209.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/132687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-12T16:13:04.430184Z", "last_modified_time": "2024-12-20T01:14:47.201367Z", "date_published": null, "start_time": "2025-04-07T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Harry Potterin Taianomainen Musiikki – Elävänä Konserttina" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/98C0042E18A3B384033FE8102EF0B0C9/The_Magical_Music_of_Harry_Potter_Live_in_Concert" }, "location_extra_info": null, "name": { "fi": "The Magical Music of Harry Potter – Live in Concert – Loppuunmyyty! / Sold out!" }, "description": { "fi": "<p>Harry Potterin Taianomainen Musiikki – Elävänä Konserttina</p><p>Sukella Harry Potter -elokuvien maagiseen musiikkiin ainutlaatuisessa konsertti-illassa. Konsertin kruunaa erityisvieraan läsnäolo, Taikaelokuvien orkesterin, upean kuoron ja maagisten illuusioiden esitys. Ohjelmassa kuullaan elokuvien soundtrackeja viisinkertaisen Oscar-voittajan John Williamsin, Patrick Doylen, Nicholas Hooperin ja Academy Award -voittajan Alexandre Desplatin sävellyksiä, sekä kauneimmat sävelmät \"Harry Potter ja kirottu lapsi\" -näytelmästä. Illan isäntänä toimii erityisvieras suoraan alkuperäisestä elokuvasta!</p><p>Tämä lumoava konsertti tempaisee mukaansa kaikki Harry Potter -fanit! <br>Harry Potterin lumoava musiikkikonsertti tarjoaa musiikkimatkan taianomaiseen maailmaan täynnä ystävyyttä, seikkailua, rakkautta ja velhoja. Lumoudu ja sukella mukaan fantasiaan musiikin mukana!</p><p>Illan erityisvieras tekee konsertista unohtumattoman huumorintäyteisillä ja syvällisillä tarinoillaan. Hän kertoo näyttelemisestään Harry Potterissa sekä ystävyyden, seikkailun ja rakkauden merkityksestä velhojen vaarallisessa maailmassa. Konserttivieraat pääsevät kokemaan valo- ja laserteknologiaa sekä ainutlaatuista äänimaailmaa, joka tempaisee mukaansa. Visuaaliset ja maagiset efektit saavat jokaisen Harry Potter -fanin sydämen sykkimään hieman nopeammin.</p><p>Harry Potter -elokuvat kuuluvat elokuvahistorian menestyneimpiin tuotantoihin. Nyt Oscar-ehdokkuuden saaneet elokuvasävelmät soivat lavalla ainutlaatuisessa konserttielämyksessä.</p><p>John Williams (\"Tähtien sota\", \"E.T.\", \"Indiana Jones\", \"Jurassic Park\") sävelsi musiikin ensimmäiseen kolmeen elokuvaan, mm. \"Hedwigin teeman\", joka on osa Harry Potter -elokuvien musiikillista perintöä, sekä kappaleet \"Double Trouble\", Hogwartsin klassinen lastenkuoro, \"Aunt Marge's Waltz\" sekä \"Witches, Wands and Wizards\".</p><p>Patrick Doylen \"Hogwarts Hymn\" neljännessä Harry Potter -elokuvassa tuo esiin Kolmivelhoturnauksen mystisen ja synkän maailman.</p><p>Nicholas Hooper sävelsi \"Dumbledore's Farewell\" viidenteen ja kuudenteen elokuvaan.</p><p>Alexandre Desplat loi \"Lily's Theme\" ja sävelsi musiikin elokuvasarjan viimeiseen kahteen osaan, luoden ikimuistoisen musiikillisen kokemuksen.</p><p>Tule ja koe Harry Potterin taianomainen konsertti-ilta!</p><p>(Huom: Erityisvieraat vaihtelevat ja ilmoitetaan ennen jokaista konserttia. Muutokset mahdollisia).</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "provider": { "fi": "Star Entertainment Europe by Lancelot Productions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63357/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64724", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3631011" }, "price": { "fi": "43,10-79 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152829, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-16T13:17:16.898567Z", "last_modified_time": "2024-10-16T13:17:16.898604Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759353.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152829/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-16T13:17:16.848054Z", "last_modified_time": "2024-12-20T01:14:47.117373Z", "date_published": null, "start_time": "2025-04-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Harry Potterin Taianomainen Musiikki – Elävänä Konserttina" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A36C5F679B099DF10A6052C047F5AADD/The_Magical_Music_of_Harry_Potter_Live_in_Concert" }, "location_extra_info": null, "name": { "fi": "The Magical Music of Harry Potter – Live in Concert – Loppuunmyyty! / Sold out!" }, "description": { "fi": "<p>Harry Potterin Taianomainen Musiikki – Elävänä Konserttina</p><p>Sukella Harry Potter -elokuvien maagiseen musiikkiin ainutlaatuisessa konsertti-illassa. Konsertin kruunaa erityisvieraan läsnäolo, Taikaelokuvien orkesterin, upean kuoron ja maagisten illuusioiden esitys. Ohjelmassa kuullaan elokuvien soundtrackeja viisinkertaisen Oscar-voittajan John Williamsin, Patrick Doylen, Nicholas Hooperin ja Academy Award -voittajan Alexandre Desplatin sävellyksiä, sekä kauneimmat sävelmät \"Harry Potter ja kirottu lapsi\" -näytelmästä. Illan isäntänä toimii erityisvieras suoraan alkuperäisestä elokuvasta!</p><p>Tämä lumoava konsertti tempaisee mukaansa kaikki Harry Potter -fanit! <br>Harry Potterin lumoava musiikkikonsertti tarjoaa musiikkimatkan taianomaiseen maailmaan täynnä ystävyyttä, seikkailua, rakkautta ja velhoja. Lumoudu ja sukella mukaan fantasiaan musiikin mukana!</p><p>Illan erityisvieras tekee konsertista unohtumattoman huumorintäyteisillä ja syvällisillä tarinoillaan. Hän kertoo näyttelemisestään Harry Potterissa sekä ystävyyden, seikkailun ja rakkauden merkityksestä velhojen vaarallisessa maailmassa. Konserttivieraat pääsevät kokemaan valo- ja laserteknologiaa sekä ainutlaatuista äänimaailmaa, joka tempaisee mukaansa. Visuaaliset ja maagiset efektit saavat jokaisen Harry Potter -fanin sydämen sykkimään hieman nopeammin.</p><p>Harry Potter -elokuvat kuuluvat elokuvahistorian menestyneimpiin tuotantoihin. Nyt Oscar-ehdokkuuden saaneet elokuvasävelmät soivat lavalla ainutlaatuisessa konserttielämyksessä.</p><p>John Williams (\"Tähtien sota\", \"E.T.\", \"Indiana Jones\", \"Jurassic Park\") sävelsi musiikin ensimmäiseen kolmeen elokuvaan, mm. \"Hedwigin teeman\", joka on osa Harry Potter -elokuvien musiikillista perintöä, sekä kappaleet \"Double Trouble\", Hogwartsin klassinen lastenkuoro, \"Aunt Marge's Waltz\" sekä \"Witches, Wands and Wizards\".</p><p>Patrick Doylen \"Hogwarts Hymn\" neljännessä Harry Potter -elokuvassa tuo esiin Kolmivelhoturnauksen mystisen ja synkän maailman.</p><p>Nicholas Hooper sävelsi \"Dumbledore's Farewell\" viidenteen ja kuudenteen elokuvaan.</p><p>Alexandre Desplat loi \"Lily's Theme\" ja sävelsi musiikin elokuvasarjan viimeiseen kahteen osaan, luoden ikimuistoisen musiikillisen kokemuksen.</p><p>Tule ja koe Harry Potterin taianomainen konsertti-ilta!</p><p>(Huom: Erityisvieraat vaihtelevat ja ilmoitetaan ennen jokaista konserttia. Muutokset mahdollisia).</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "provider": { "fi": "Star Entertainment Europe by Lancelot Productions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64724/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27581, "next": "