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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=206&weekday=6%2C7
{ "meta": { "count": 7149, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=207&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=205&weekday=6%2C7" }, "data": [ { "id": "kulke:64684", "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-3749652" }, "description": null, "price": { "fi": "48,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153040, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-15T15:14:46.878666Z", "last_modified_time": "2024-11-15T15:14:46.878694Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758042.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153040/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-15T10:15:12.915397Z", "last_modified_time": "2024-12-20T01:14:34.838507Z", "date_published": null, "start_time": "2025-01-31T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pepe Willberg & Jukka Eskola Statement: Niin vähän on aikaa – En soisi sen päättyvän – Levynjulkaisukonsertti" }, "location_extra_info": null, "provider": { "fi": "Viihde & Vuorovaikutus Oy" }, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D8868F0DF5265C76E72E0578A8A8CB17/Pepe_Willberg_Jukka_Eskola_Statement_Niin_vahan_on_aikaa_En_soisi_sen_paattyvan" }, "description": { "fi": "<p>Pepe Willberg & Jukka Eskola Statement: Niin vähän on aikaa\" tarjoaa ainutlaatuisen uuden tulkinnan kahdesta suomalaisen musiikin klassikosta. Uudelleen versioitu albumi on kunnianosoitus Henrik Otto Donnerin säveltämälle ja tuottamalle musiikille, joka on ollut merkittävä osa suomalaisen musiikin historiaa.</p><p><b>Henrik Otto Donnerin mestariteokset uuteen valoon</b></p><p>Albumi perustuu kahteen Otto Donnerin säveltämään klassikkoalbumiin: <br><i>The Otto Donner Treatment – En soisi sen päättyvän</i> (1970) ja <br><i>Pepe & Paradise – Niin vähän on aikaa</i> (1972). <br>Nämä Love Records -levy-yhtiön julkaisut ovat aikansa rohkeita ja kunnianhimoisia teoksia, jotka heijastavat 1970-luvun yhteiskunnallista ilmapiiriä ja musiikillista avantgardea. Molemmat albumit pohjautuvat aikansa merkittävien runoilijoiden teksteihin, kuten Pentti Holapan, Aulikki Oksasen, Pentti Saarikosken ja Aira Sinervon runoihin, ja niistä on ajan myötä tullut suomalaisen musiikin ikonisimpia teoksia.<br> <br><b>Yhteistyössä Pepe Willberg ja Jukka Eskola Statement</b></p><p>Koko kansan rakastama laulaja Pepe Willberg tuo yhdessä trumpetisti Jukka Eskolan johtaman huippukokoonpanon kanssa nämä klassikot jälleen eläväksi. <br><i>\"Pepe Willberg & Jukka Eskola Statement: Niin vähän on aikaa\"</i> -albumi kunnioittaa Otto Donnerin alkuperäisiä sovituksia, mutta tuo samalla oman sävynsä musiikkiin.<br>Jukka Eskola kertoo, että suuri osa näistä kappaleista on jäänyt Pepe Willbergiltä esittämättä julkisesti. \"Kerroin ideastani Pepelle, ja kävi ilmi, että hän ei ollut esittänyt suurinta osaa näiden albumien lauluista koskaan, eikä missään,\" Eskola sanoo. Tämä antoi inspiroivan lähtökohdan projektille.</p><p><b>Albumin kokoonpano</b><br>•\tPepe Willberg – laulu<br>•\tJukka Eskola – trumpetti, taustalaulu<br>•\tPope Puolitaival – saksofonit, huilut, taustalaulu<br>•\tAleksi Ahoniemi – saksofonit, huilut, taustalaulu, kitara<br>•\tMikael Myrskog – piano ja koskettimet<br>•\tEero Seppä – basso<br>•\tJaska Lukkarinen – rummut<br> <br>Kesto n. 2 h 15 min, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64684/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64549", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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: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://www.lippu.fi/artist/maagikot/maagikot-4-shaping-the-reality-3712614/" }, "description": null, "price": { "fi": "44,90/49.90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152339, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-09T07:14:17.194730Z", "last_modified_time": "2024-09-09T07:14:17.194744Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755775.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152339/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-09T07:14:17.181658Z", "last_modified_time": "2024-12-20T01:14:33.574044Z", "date_published": null, "start_time": "2025-01-26T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maagikot 4 – Shaping the Reality" }, "location_extra_info": null, "provider": { "fi": "Nelonen Media Live" }, "short_description": { "fi": "Tämä esitys on yhteistyössä Radio Aito Iskelmän kanssa. Tule Savoy-teatterin katsomoon Aito Iskelmän juontajien kanssa ihmettelemään aitoa taikuutta. Esityksen jälkeen Aito Iskelmän juontajan vetämä maagikoiden meet & greet." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/971DB20110687FF1BD4073C62900DFC6/Maagikot_4_Shaping_the_Reality" }, "description": { "fi": "<p>Tämä esitys on yhteistyössä Radio Aito Iskelmän kanssa. Tule Savoy-teatterin katsomoon Aito Iskelmän juontajien kanssa ihmettelemään aitoa taikuutta. Esityksen jälkeen Aito Iskelmän juontajan vetämä maagikoiden meet & greet.</p><p>”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan.</p><p><i>Suomen suurimmaksi magian ja illuusion showksi vakiintunut Maagikot lähtee kiertueelle alkuvuodesta 2025. Täysin uuden shown nimi on Shaping the Reality. Liput kansainvälisesti palkittujen magian ja illuusion mestareiden esitykseen ovat nyt myynnissä.</i></p><p>Maagikot 4 – Shaping the Reality on noin kahden tunnin mittainen, ennennäkemätön kokonaisuus, jonka kokemisen jälkeen jokainen katsoja katselee todellisuutta uusin silmin. Tästä tulee kiertueen englanninkielinen nimi, Shaping the Reality.</p><p><i>Tänä vuonna taikuus ja showelementit tuodaan vieläkin lähemmäs katsojia. Lavalla nähdään aiempaa suurempia illuusioita ja tarkempia yksityiskohtia, jotka yhdessä luovat jälleen täysin uuden kokonaisuuden</i>, paljastaa Joni Pakanen, Maagikot -esityksen ohjaaja ja yksi esiintyjistä.</p><p>Maagikot 4 – Shaping the Reality -kiertueen esiintyjät ovat</p><p><b>Illusionistit Jay & Jade –</b> Maailmanluokan illusionistit, jotka luovat parhaillaan uraa Keski-Euroopassa loppuunmyydyille katsomoille<br><b>Mentalisti Pete Poskiparta –</b> Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Vanne- ja nuorataitelija Miss Vera –</b> Cirque du Soleilissakin esiintynyt nykysirkuksen maailmantähti<br><b>Mestaritaikuri Joni Pakanen –</b> Vuoden esiintyjänä palkittu taikuuden, komedian ja teatterin taituri</p><p><i>Maagikot tulee tällä kertaa olemaan suurempi ja hämmästyttävämpi kuin kertaakaan aiemmin. Showssa kättelevät taikuus, sirkus ja komedia tavalla, joka saa katsojat nauramaan ja hämmästymään. Tulemme osoittamaan miksi taikuus on koettava nimenomaan livenä!</i>, hehkuttaa mentalisti Pete Poskiparta.</p><p>Nyt neljättä kertaa toteuttava Maagikot on Suomen suosituin magian ja illuusion kiertue. Kahtena edellisenä vuonna Maagikot-kiertue on ilahduttanut yhteensä yli 10 000 hengen yleisöä loppuunmyydyissä konserttisaleissa ympäri Suomen.</p><p>Maagikot-kiertueiden suosio pohjautuu kansainvälisesti palkittujen magian ja illuusion mestareiden maailmanluokan hämmästyttäviin ja taiturillisiin esityksiin. Koko perheelle sopiva show saa haukkomaan henkeä ja aivonystyrät raksuttamaan ihmetyksestä.</p><p>Asiakastyytyväisyyskyselyn perusteella peräti 91% yleisöstä oli viime vuoden Maagikot-kiertueen esityksiin erittäin tyytyväinen tai tyytyväinen. Katsojapalautteita viime kiertueesta:</p><p><i>\"Täydellinen kattaus ensikertalaiselle nähdä taikuutta livenä.\"<br>”Lähdettiin kotiin 9-v kanssa ja olo oli tyhjä, hämmentynyt, ällistynyt ja täynnä kysymyksiä.”<br>\"Täysin unohtumaton kokemus! Ostan liput myös ensi vuonna!\"</p><p>Maagikot 4 – Shaping the Reality</i> -kiertue kiertää Suomea 13 eri paikkakunnalla 17. tammikuuta 2025 alkaen. Kiertue starttaa Järvenpäästä ja kattaa Suomen suurimpia esiintymispaikkoja Turusta Ouluun.</p><p>Lipunmyynti esityksiin on nyt käynnissä osoitteessa www.maagikot.fi. Suosittelemme ostamaan liput mahdollisimman nopeasti. Suurin osa viime vuoden näytöksistä oli loppuunmyytyjä. Parhaat paikat katsomoiden eturiveistä myydään nopeimmille.</p><p>Show kesto n. 2 tuntia sis. väliaika<br>Suositusikäraja 10+</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64548", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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: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://www.lippu.fi/artist/maagikot/maagikot-4-shaping-the-reality-3712614/" }, "description": null, "price": { "fi": "44,90/49.90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152338, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-09T07:14:17.118158Z", "last_modified_time": "2024-09-09T07:14:17.118172Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755759.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152338/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-09T07:14:17.104128Z", "last_modified_time": "2024-12-20T01:14:33.390024Z", "date_published": null, "start_time": "2025-01-25T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maagikot 4 – Shaping the Reality" }, "location_extra_info": null, "provider": { "fi": "Nelonen Media Live" }, "short_description": { "fi": "”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2F9E2C9EC437B10C03A8A42B2D5D8CCE/Maagikot_4_Shaping_the_Reality" }, "description": { "fi": "<p>”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan</p><p><i>Suomen suurimmaksi magian ja illuusion showksi vakiintunut Maagikot lähtee kiertueelle alkuvuodesta 2025. Täysin uuden shown nimi on Shaping the Reality. Liput kansainvälisesti palkittujen magian ja illuusion mestareiden esitykseen ovat nyt myynnissä.</i></p><p>Maagikot 4 – Shaping the Reality on noin kahden tunnin mittainen, ennennäkemätön kokonaisuus, jonka kokemisen jälkeen jokainen katsoja katselee todellisuutta uusin silmin. Tästä tulee kiertueen englanninkielinen nimi, Shaping the Reality.</p><p><i>Tänä vuonna taikuus ja showelementit tuodaan vieläkin lähemmäs katsojia. Lavalla nähdään aiempaa suurempia illuusioita ja tarkempia yksityiskohtia, jotka yhdessä luovat jälleen täysin uuden kokonaisuuden</i>, paljastaa Joni Pakanen, Maagikot -esityksen ohjaaja ja yksi esiintyjistä.</p><p>Maagikot 4 – Shaping the Reality -kiertueen esiintyjät ovat</p><p><b>Illusionistit Jay & Jade –</b> Maailmanluokan illusionistit, jotka luovat parhaillaan uraa Keski-Euroopassa loppuunmyydyille katsomoille<br><b>Mentalisti Pete Poskiparta –</b> Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Vanne- ja nuorataitelija Miss Vera –</b> Cirque du Soleilissakin esiintynyt nykysirkuksen maailmantähti<br><b>Mestaritaikuri Joni Pakanen –</b> Vuoden esiintyjänä palkittu taikuuden, komedian ja teatterin taituri</p><p><i>Maagikot tulee tällä kertaa olemaan suurempi ja hämmästyttävämpi kuin kertaakaan aiemmin. Showssa kättelevät taikuus, sirkus ja komedia tavalla, joka saa katsojat nauramaan ja hämmästymään. Tulemme osoittamaan miksi taikuus on koettava nimenomaan livenä!</i>, hehkuttaa mentalisti Pete Poskiparta.</p><p>Nyt neljättä kertaa toteuttava Maagikot on Suomen suosituin magian ja illuusion kiertue. Kahtena edellisenä vuonna Maagikot-kiertue on ilahduttanut yhteensä yli 10 000 hengen yleisöä loppuunmyydyissä konserttisaleissa ympäri Suomen.</p><p>Maagikot-kiertueiden suosio pohjautuu kansainvälisesti palkittujen magian ja illuusion mestareiden maailmanluokan hämmästyttäviin ja taiturillisiin esityksiin. Koko perheelle sopiva show saa haukkomaan henkeä ja aivonystyrät raksuttamaan ihmetyksestä.</p><p>Asiakastyytyväisyyskyselyn perusteella peräti 91% yleisöstä oli viime vuoden Maagikot-kiertueen esityksiin erittäin tyytyväinen tai tyytyväinen. Katsojapalautteita viime kiertueesta:</p><p><i>\"Täydellinen kattaus ensikertalaiselle nähdä taikuutta livenä.\"<br>”Lähdettiin kotiin 9-v kanssa ja olo oli tyhjä, hämmentynyt, ällistynyt ja täynnä kysymyksiä.”<br>\"Täysin unohtumaton kokemus! Ostan liput myös ensi vuonna!\"</p><p>Maagikot 4 – Shaping the Reality</i> -kiertue kiertää Suomea 13 eri paikkakunnalla 17. tammikuuta 2025 alkaen. Kiertue starttaa Järvenpäästä ja kattaa Suomen suurimpia esiintymispaikkoja Turusta Ouluun.</p><p>Lipunmyynti esityksiin on nyt käynnissä osoitteessa www.maagikot.fi. Suosittelemme ostamaan liput mahdollisimman nopeasti. Suurin osa viime vuoden näytöksistä oli loppuunmyytyjä. Parhaat paikat katsomoiden eturiveistä myydään nopeimmille.</p><p>Show kesto n. 2 tuntia sis. väliaika<br>Suositusikäraja 10+</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64548/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64547", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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: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://www.lippu.fi/artist/maagikot/maagikot-4-shaping-the-reality-3712614/" }, "description": null, "price": { "fi": "44,90/49.90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-09T07:14:17.036740Z", "last_modified_time": "2024-09-09T07:14:17.036758Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755758.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-09T07:14:17.023308Z", "last_modified_time": "2024-12-20T01:14:33.029374Z", "date_published": null, "start_time": "2025-01-25T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maagikot 4 – Shaping the Reality" }, "location_extra_info": null, "provider": { "fi": "Nelonen Media Live" }, "short_description": { "fi": "”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AA3BE8ECF458F1AFBB48F55F60596082/Maagikot_4_Shaping_the_Reality" }, "description": { "fi": "<p>”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan</p><p><i>Suomen suurimmaksi magian ja illuusion showksi vakiintunut Maagikot lähtee kiertueelle alkuvuodesta 2025. Täysin uuden shown nimi on Shaping the Reality. Liput kansainvälisesti palkittujen magian ja illuusion mestareiden esitykseen ovat nyt myynnissä.</i></p><p>Maagikot 4 – Shaping the Reality on noin kahden tunnin mittainen, ennennäkemätön kokonaisuus, jonka kokemisen jälkeen jokainen katsoja katselee todellisuutta uusin silmin. Tästä tulee kiertueen englanninkielinen nimi, Shaping the Reality.</p><p><i>Tänä vuonna taikuus ja showelementit tuodaan vieläkin lähemmäs katsojia. Lavalla nähdään aiempaa suurempia illuusioita ja tarkempia yksityiskohtia, jotka yhdessä luovat jälleen täysin uuden kokonaisuuden</i>, paljastaa Joni Pakanen, Maagikot -esityksen ohjaaja ja yksi esiintyjistä.</p><p>Maagikot 4 – Shaping the Reality -kiertueen esiintyjät ovat</p><p><b>Illusionistit Jay & Jade –</b> Maailmanluokan illusionistit, jotka luovat parhaillaan uraa Keski-Euroopassa loppuunmyydyille katsomoille<br><b>Mentalisti Pete Poskiparta –</b> Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Vanne- ja nuorataitelija Miss Vera –</b> Cirque du Soleilissakin esiintynyt nykysirkuksen maailmantähti<br><b>Mestaritaikuri Joni Pakanen –</b> Vuoden esiintyjänä palkittu taikuuden, komedian ja teatterin taituri</p><p><i>Maagikot tulee tällä kertaa olemaan suurempi ja hämmästyttävämpi kuin kertaakaan aiemmin. Showssa kättelevät taikuus, sirkus ja komedia tavalla, joka saa katsojat nauramaan ja hämmästymään. Tulemme osoittamaan miksi taikuus on koettava nimenomaan livenä!</i>, hehkuttaa mentalisti Pete Poskiparta.</p><p>Nyt neljättä kertaa toteuttava Maagikot on Suomen suosituin magian ja illuusion kiertue. Kahtena edellisenä vuonna Maagikot-kiertue on ilahduttanut yhteensä yli 10 000 hengen yleisöä loppuunmyydyissä konserttisaleissa ympäri Suomen.</p><p>Maagikot-kiertueiden suosio pohjautuu kansainvälisesti palkittujen magian ja illuusion mestareiden maailmanluokan hämmästyttäviin ja taiturillisiin esityksiin. Koko perheelle sopiva show saa haukkomaan henkeä ja aivonystyrät raksuttamaan ihmetyksestä.</p><p>Asiakastyytyväisyyskyselyn perusteella peräti 91% yleisöstä oli viime vuoden Maagikot-kiertueen esityksiin erittäin tyytyväinen tai tyytyväinen. Katsojapalautteita viime kiertueesta:</p><p><i>\"Täydellinen kattaus ensikertalaiselle nähdä taikuutta livenä.\"<br>”Lähdettiin kotiin 9-v kanssa ja olo oli tyhjä, hämmentynyt, ällistynyt ja täynnä kysymyksiä.”<br>\"Täysin unohtumaton kokemus! Ostan liput myös ensi vuonna!\"</p><p>Maagikot 4 – Shaping the Reality</i> -kiertue kiertää Suomea 13 eri paikkakunnalla 17. tammikuuta 2025 alkaen. Kiertue starttaa Järvenpäästä ja kattaa Suomen suurimpia esiintymispaikkoja Turusta Ouluun.</p><p>Lipunmyynti esityksiin on nyt käynnissä osoitteessa www.maagikot.fi. Suosittelemme ostamaan liput mahdollisimman nopeasti. Suurin osa viime vuoden näytöksistä oli loppuunmyytyjä. Parhaat paikat katsomoiden eturiveistä myydään nopeimmille.</p><p>Show kesto n. 2 tuntia sis. väliaika<br>Suositusikäraja 10+</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64547/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64490", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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: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://www.lippu.fi/artist/maagikot/maagikot-4-shaping-the-reality-3712614/" }, "description": null, "price": { "fi": "44,90/49.90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152336, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-09T07:14:16.903360Z", "last_modified_time": "2024-09-09T07:14:16.903376Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755752.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-09T07:14:16.871483Z", "last_modified_time": "2024-12-20T01:14:32.595731Z", "date_published": null, "start_time": "2025-01-24T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maagikot 4 – Shaping the Reality" }, "location_extra_info": null, "provider": { "fi": "Nelonen Media Live" }, "short_description": { "fi": "”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/59CAB10900B9D2CE5419C252023A38CD/Maagikot_4_Shaping_the_Reality" }, "description": { "fi": "<p>”Tämä on koettava livenä!” Maagikot lähtevät kiertueelle uudella showlla, joka on hämmästyttävämpi kuin koskaan</p><p><i>Suomen suurimmaksi magian ja illuusion showksi vakiintunut Maagikot lähtee kiertueelle alkuvuodesta 2025. Täysin uuden shown nimi on Shaping the Reality. Liput kansainvälisesti palkittujen magian ja illuusion mestareiden esitykseen ovat nyt myynnissä.</i></p><p>Maagikot 4 – Shaping the Reality on noin kahden tunnin mittainen, ennennäkemätön kokonaisuus, jonka kokemisen jälkeen jokainen katsoja katselee todellisuutta uusin silmin. Tästä tulee kiertueen englanninkielinen nimi, Shaping the Reality.</p><p><i>Tänä vuonna taikuus ja showelementit tuodaan vieläkin lähemmäs katsojia. Lavalla nähdään aiempaa suurempia illuusioita ja tarkempia yksityiskohtia, jotka yhdessä luovat jälleen täysin uuden kokonaisuuden</i>, paljastaa Joni Pakanen, Maagikot -esityksen ohjaaja ja yksi esiintyjistä.</p><p>Maagikot 4 – Shaping the Reality -kiertueen esiintyjät ovat</p><p><b>Illusionistit Jay & Jade –</b> Maailmanluokan illusionistit, jotka luovat parhaillaan uraa Keski-Euroopassa loppuunmyydyille katsomoille<br><b>Mentalisti Pete Poskiparta –</b> Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Vanne- ja nuorataitelija Miss Vera –</b> Cirque du Soleilissakin esiintynyt nykysirkuksen maailmantähti<br><b>Mestaritaikuri Joni Pakanen –</b> Vuoden esiintyjänä palkittu taikuuden, komedian ja teatterin taituri</p><p><i>Maagikot tulee tällä kertaa olemaan suurempi ja hämmästyttävämpi kuin kertaakaan aiemmin. Showssa kättelevät taikuus, sirkus ja komedia tavalla, joka saa katsojat nauramaan ja hämmästymään. Tulemme osoittamaan miksi taikuus on koettava nimenomaan livenä!</i>, hehkuttaa mentalisti Pete Poskiparta.</p><p>Nyt neljättä kertaa toteuttava Maagikot on Suomen suosituin magian ja illuusion kiertue. Kahtena edellisenä vuonna Maagikot-kiertue on ilahduttanut yhteensä yli 10 000 hengen yleisöä loppuunmyydyissä konserttisaleissa ympäri Suomen.</p><p>Maagikot-kiertueiden suosio pohjautuu kansainvälisesti palkittujen magian ja illuusion mestareiden maailmanluokan hämmästyttäviin ja taiturillisiin esityksiin. Koko perheelle sopiva show saa haukkomaan henkeä ja aivonystyrät raksuttamaan ihmetyksestä.</p><p>Asiakastyytyväisyyskyselyn perusteella peräti 91% yleisöstä oli viime vuoden Maagikot-kiertueen esityksiin erittäin tyytyväinen tai tyytyväinen. Katsojapalautteita viime kiertueesta:</p><p><i>\"Täydellinen kattaus ensikertalaiselle nähdä taikuutta livenä.\"<br>”Lähdettiin kotiin 9-v kanssa ja olo oli tyhjä, hämmentynyt, ällistynyt ja täynnä kysymyksiä.”<br>\"Täysin unohtumaton kokemus! Ostan liput myös ensi vuonna!\"</p><p>Maagikot 4 – Shaping the Reality</i> -kiertue kiertää Suomea 13 eri paikkakunnalla 17. tammikuuta 2025 alkaen. Kiertue starttaa Järvenpäästä ja kattaa Suomen suurimpia esiintymispaikkoja Turusta Ouluun.</p><p>Lipunmyynti esityksiin on nyt käynnissä osoitteessa www.maagikot.fi. Suosittelemme ostamaan liput mahdollisimman nopeasti. Suurin osa viime vuoden näytöksistä oli loppuunmyytyjä. Parhaat paikat katsomoiden eturiveistä myydään nopeimmille.</p><p>Show kesto n. 2 tuntia sis. väliaika<br>Suositusikäraja 10+</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64490/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65084", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153485, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T12:14:44.034684Z", "last_modified_time": "2024-12-18T12:14:44.034700Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763835.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153485/?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-18T12:14:44.008718Z", "last_modified_time": "2024-12-20T01:14:32.415157Z", "date_published": null, "start_time": "2025-01-24T08:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skidikino: Professori Balthazar – pienten lyhytelokuvahetki", "sv": "Skidikino: Professor Balthazar", "en": "Skidikino: Professor Balthazar" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.", "en": "Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3DE08D5BE525162BAB2A1A7EA30544E3/Skidikino_Professori_Balthazar", "sv": "http://www.stoa.fi/sv/evenemang/event/3DE08D5BE525162BAB2A1A7EA30544E3/Skidikino_Professor_Balthazar", "en": "http://www.stoa.fi/en/events/event/3DE08D5BE525162BAB2A1A7EA30544E3/Skidikino_Professor_Balthazar" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä seurataan Professori Balthazarin seikkailuja. Klassikkoanimaatio kertoo lempeästä ja nokkelasta professori Balthazarista, joka keksii ihmekoneensa avulla ratkaisun kaikkiin pulmiin. Balthazar opettaa esimerkillään kuinka mielikuvituksella ja luovuudella ratkaistaan hankalatkin tilanteet. Kroatiassa vuosina 1967-1974 tuotettu animaatiosarja on uudistettu vuonna 2007.<br> <br>Ikäsuositus: 3–6-vuotiaille <br>Paikka: musiikkisali <br>Kesto n. 35–40 min <br>Kieli: sanaton tai suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 9.1. klo 10 alkaen.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan taidekasvatussivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p>", "sv": "<p>Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.</p><p>I den klassiska kroatiska animerade serien får vi följa den charmerande professor Balthazars äventyr, där han löser problem med hjälp av sin fantasi.</p><p>Åldersgräns: 3–6 år<br>Längd: 35–45 min<br>Språk: ordlös eller finska</p><p>Fri entré, anmälan obligatorisk för grupper: www.kultus.fi 9.1. från kl. 10.</p>", "en": "<p>Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult.</p><p>This delightful Croatian classic animation features Professor Balthazar who solves problems using his imagination.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p><p>Age limit: 3-6 years old<br>Duration: 35-45 min<br>Language: nonverbal or Finnish</p><p>Free admission, registration mandatory for groups at www.kultus.fi January 9th, starting at 10 a.m.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65084/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65083", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153484, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T12:14:43.844294Z", "last_modified_time": "2024-12-18T12:14:43.844321Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763834.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153484/?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-18T12:14:43.789726Z", "last_modified_time": "2024-12-20T01:14:32.324627Z", "date_published": null, "start_time": "2025-01-24T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skidikino: Professori Balthazar – pienten lyhytelokuvahetki", "sv": "Skidikino: Professor Balthazar", "en": "Skidikino: Professor Balthazar" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.", "en": "Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E62D4DC35F1BEB67343F98390F54C20E/Skidikino_Professori_Balthazar", "sv": "http://www.stoa.fi/sv/evenemang/event/E62D4DC35F1BEB67343F98390F54C20E/Skidikino_Professor_Balthazar", "en": "http://www.stoa.fi/en/events/event/E62D4DC35F1BEB67343F98390F54C20E/Skidikino_Professor_Balthazar" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä seurataan Professori Balthazarin seikkailuja. Klassikkoanimaatio kertoo lempeästä ja nokkelasta professori Balthazarista, joka keksii ihmekoneensa avulla ratkaisun kaikkiin pulmiin. Balthazar opettaa esimerkillään kuinka mielikuvituksella ja luovuudella ratkaistaan hankalatkin tilanteet. Kroatiassa vuosina 1967-1974 tuotettu animaatiosarja on uudistettu vuonna 2007.<br> <br>Ikäsuositus: 3–6-vuotiaille <br>Paikka: musiikkisali <br>Kesto n. 35–40 min <br>Kieli: sanaton tai suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 9.1. klo 10 alkaen.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan taidekasvatussivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p>", "sv": "<p>Skidikino är en halv timmes långa kortfilmstunder för över 3-åringar. Passar för daghemsgrupper och barn i hemvård under skolåldern tillsammans med en vuxen.</p><p>I den klassiska kroatiska animerade serien får vi följa den charmerande professor Balthazars äventyr, där han löser problem med hjälp av sin fantasi.</p><p>Åldersgräns: 3–6 år<br>Längd: 35–45 min<br>Språk: ordlös eller finska</p><p>Fri entré, anmälan obligatorisk för grupper: www.kultus.fi 9.1. från kl. 10.</p>", "en": "<p>Skidikino events are 30-minute short film events for children over the age of three. Suitable for daycare groups and preschool-aged children in home care together with an adult.</p><p>This delightful Croatian classic animation features Professor Balthazar who solves problems using his imagination.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p><p>Age limit: 3-6 years old<br>Duration: 35-45 min<br>Language: nonverbal or Finnish</p><p>Free admission, registration mandatory for groups at www.kultus.fi January 9th, starting at 10 a.m.</p><p>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s arts education website.The theme of the illustrated material is going to the cinema.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63720", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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://www.lippu.fi/eventseries/3662606", "en": "https://www.lippu.fi/eventseries/3662606" }, "description": null, "price": { "fi": "13/26 €", "en": "13/26 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151322, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-30T12:13:08.604263Z", "last_modified_time": "2024-05-30T12:13:08.604287Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744317.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151322/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-30T12:13:08.573055Z", "last_modified_time": "2024-12-20T01:14:30.377368Z", "date_published": null, "start_time": "2025-01-17T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "A Midsummer Night’s Dream – by William Shakespeare", "en": "A Midsummer Night’s Dream – by William Shakespeare" }, "location_extra_info": null, "provider": { "fi": "The American drama group Europe", "en": "The American drama group Europe" }, "short_description": { "fi": "William Shakespeare’s greatest comedy", "en": "William Shakespeare’s greatest comedy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FFC3FC403E69C04D0FBA6A053C67EBB0/A_Midsummer_Night_s_Dream", "en": "http://www.savoyteatteri.fi/en/events/event/FFC3FC403E69C04D0FBA6A053C67EBB0/A_Midsummer_Night_s_Dream" }, "description": { "fi": "<p>William Shakespeare’s greatest comedy</p><p>This is Shakespeare’s most popular comedy. The story follows the fortunes of a quartet of lover’s who are lured into the forest by fairies who trick them with a magic potion that forces them to fall in love with the first person they see. Sadly the Queen of Fairies herself takes the potion and when a donkey crosses her path she falls in love with th beast. This hilarious comedy explores the madness of love and laughs at human folly. It contains some of the finest poetry that Shakespeare wrote, slapstick comedy, touching love scenes, mystery and theatrical magic. TNT’s production has been an extraordinary global success, performing hundreds of times across three continents and even being re- staged in Mandarin. This is Shakespeare that is easy to understand and enjoy, even for an audience whose first language is not English. Specially composed music is woven into the production as is choreography, poetry and above all comedy, led by one of the Bard’s greatest clowns: Bottom the hopeless amateur actor.</p><p>In a MIDSUMMER NIGHT’S DREAM Shakespeare explores the idea that love is random, that we are in love with ourselves rather than the person we supposedly adore, that the eyes deceive us as to a person’s true worth and the consequences are sometimes tragic but often comic. The production is directed by Paul Stebbings and presented by TNT theatre Britain. Their cycle of Shakespearian classics include HAMLET, MACBETH, ROMEO & JULIET and the TAMING OF THE SHREW – productions that have received popular and critical acclaim in over thirty countries worldwide performing in theatres and palaces from Tokyo to Berlin and Windsor Castle to Prague Castle. This is Shakespeare as might have graced the original Globe: funny, direct, visual, musical and appealing to any and every audience.</p><p>“I never knew Shakespeare could be so entertaining”. CNN TV</p><p>“The cast had the audience in stitches of laughter with their wonderful comic timing….this production’s twin achievement is to make Shakespeare’s comedy both hilarious and clear….This classic production is both a real achievement and a comic hoot.” STRAITS TIMES Singapore</p><p>“TNT are one of the most interesting developments on the current theatrical scene”. THE GUARDIAN, London</p><p>Director Paul Stebbings<br>Producer Grantly Marshall<br>Original music composed by Paul Flush</p><p>Duration: 90 min.</p><p>Guest performances in English</p>", "en": "<p>William Shakespeare’s greatest comedy</p><p>This is Shakespeare’s most popular comedy. The story follows the fortunes of a quartet of lover’s who are lured into the forest by fairies who trick them with a magic potion that forces them to fall in love with the first person they see. Sadly the Queen of Fairies herself takes the potion and when a donkey crosses her path she falls in love with th beast. This hilarious comedy explores the madness of love and laughs at human folly. It contains some of the finest poetry that Shakespeare wrote, slapstick comedy, touching love scenes, mystery and theatrical magic. TNT’s production has been an extraordinary global success, performing hundreds of times across three continents and even being re- staged in Mandarin. This is Shakespeare that is easy to understand and enjoy, even for an audience whose first language is not English. Specially composed music is woven into the production as is choreography, poetry and above all comedy, led by one of the Bard’s greatest clowns: Bottom the hopeless amateur actor.</p><p>In a MIDSUMMER NIGHT’S DREAM Shakespeare explores the idea that love is random, that we are in love with ourselves rather than the person we supposedly adore, that the eyes deceive us as to a person’s true worth and the consequences are sometimes tragic but often comic. The production is directed by Paul Stebbings and presented by TNT theatre Britain. Their cycle of Shakespearian classics include HAMLET, MACBETH, ROMEO & JULIET and the TAMING OF THE SHREW – productions that have received popular and critical acclaim in over thirty countries worldwide performing in theatres and palaces from Tokyo to Berlin and Windsor Castle to Prague Castle. This is Shakespeare as might have graced the original Globe: funny, direct, visual, musical and appealing to any and every audience.</p><p>“I never knew Shakespeare could be so entertaining”. CNN TV</p><p>“The cast had the audience in stitches of laughter with their wonderful comic timing….this production’s twin achievement is to make Shakespeare’s comedy both hilarious and clear….This classic production is both a real achievement and a comic hoot.” STRAITS TIMES Singapore</p><p>“TNT are one of the most interesting developments on the current theatrical scene”. THE GUARDIAN, London</p><p>Director Paul Stebbings<br>Producer Grantly Marshall<br>Original music composed by Paul Flush</p><p>Duration: 90 min.</p><p>Guest performances in English</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63720/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65185", "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/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/", "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/", "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/" }, "description": null, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153298, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-05T17:13:54.825632Z", "last_modified_time": "2024-12-05T17:13:54.825646Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760627.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153298/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-05T17:13:54.778944Z", "last_modified_time": "2024-12-20T01:14:30.287440Z", "date_published": null, "start_time": "2025-01-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Itäkuskus stand-up -klubi (K18)", "sv": "Itäkuskus stand up-klubb (18)", "en": "The Itäkuskus stand-up Club (18+)" }, "location_extra_info": null, "provider": 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/1B30EC47031172A513DC7E64ACFFA0B1/Itakuskus_stand-up_-klubi_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/1B30EC47031172A513DC7E64ACFFA0B1/Itakuskus_stand_up-klubb_18_", "en": "http://www.stoa.fi/en/events/event/1B30EC47031172A513DC7E64ACFFA0B1/The_Itakuskus_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 Teatterisalin ovet ja baari aukeaa<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.</p><p>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.</p><p>Restaurant Box Stoa is responsible for service during the club evening.</p><p>Language: Mainly Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65185/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63719", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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://www.lippu.fi/eventseries/3662606", "en": "https://www.lippu.fi/eventseries/3662606" }, "description": null, "price": { "fi": "13/22 €", "en": "13/22 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151321, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-30T12:13:08.477560Z", "last_modified_time": "2024-05-30T12:13:08.477578Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744316.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151321/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-30T12:13:08.456423Z", "last_modified_time": "2024-12-20T01:14:30.026121Z", "date_published": null, "start_time": "2025-01-17T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "A Midsummer Night’s Dream – by William Shakespeare", "en": "A Midsummer Night’s Dream – by William Shakespeare" }, "location_extra_info": null, "provider": { "fi": "The American drama group Europe", "en": "The American drama group Europe" }, "short_description": { "fi": "William Shakespeare’s greatest comedy", "en": "William Shakespeare’s greatest comedy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A5299550197440595465DACBF6F26198/A_Midsummer_Night_s_Dream", "en": "http://www.savoyteatteri.fi/en/events/event/A5299550197440595465DACBF6F26198/A_Midsummer_Night_s_Dream" }, "description": { "fi": "<p>William Shakespeare’s greatest comedy</p><p>This is Shakespeare’s most popular comedy. The story follows the fortunes of a quartet of lover’s who are lured into the forest by fairies who trick them with a magic potion that forces them to fall in love with the first person they see. Sadly the Queen of Fairies herself takes the potion and when a donkey crosses her path she falls in love with th beast. This hilarious comedy explores the madness of love and laughs at human folly. It contains some of the finest poetry that Shakespeare wrote, slapstick comedy, touching love scenes, mystery and theatrical magic. TNT’s production has been an extraordinary global success, performing hundreds of times across three continents and even being re- staged in Mandarin. This is Shakespeare that is easy to understand and enjoy, even for an audience whose first language is not English. Specially composed music is woven into the production as is choreography, poetry and above all comedy, led by one of the Bard’s greatest clowns: Bottom the hopeless amateur actor.</p><p>In a MIDSUMMER NIGHT’S DREAM Shakespeare explores the idea that love is random, that we are in love with ourselves rather than the person we supposedly adore, that the eyes deceive us as to a person’s true worth and the consequences are sometimes tragic but often comic. The production is directed by Paul Stebbings and presented by TNT theatre Britain. Their cycle of Shakespearian classics include HAMLET, MACBETH, ROMEO & JULIET and the TAMING OF THE SHREW – productions that have received popular and critical acclaim in over thirty countries worldwide performing in theatres and palaces from Tokyo to Berlin and Windsor Castle to Prague Castle. This is Shakespeare as might have graced the original Globe: funny, direct, visual, musical and appealing to any and every audience.</p><p>“I never knew Shakespeare could be so entertaining”. CNN TV</p><p>“The cast had the audience in stitches of laughter with their wonderful comic timing….this production’s twin achievement is to make Shakespeare’s comedy both hilarious and clear….This classic production is both a real achievement and a comic hoot.” STRAITS TIMES Singapore</p><p>“TNT are one of the most interesting developments on the current theatrical scene”. THE GUARDIAN, London</p><p>Director Paul Stebbings<br>Producer Grantly Marshall<br>Original music composed by Paul Flush</p><p>Duration: 90 min.</p><p>Guest performances in English</p>", "en": "<p>William Shakespeare’s greatest comedy</p><p>This is Shakespeare’s most popular comedy. The story follows the fortunes of a quartet of lover’s who are lured into the forest by fairies who trick them with a magic potion that forces them to fall in love with the first person they see. Sadly the Queen of Fairies herself takes the potion and when a donkey crosses her path she falls in love with th beast. This hilarious comedy explores the madness of love and laughs at human folly. It contains some of the finest poetry that Shakespeare wrote, slapstick comedy, touching love scenes, mystery and theatrical magic. TNT’s production has been an extraordinary global success, performing hundreds of times across three continents and even being re- staged in Mandarin. This is Shakespeare that is easy to understand and enjoy, even for an audience whose first language is not English. Specially composed music is woven into the production as is choreography, poetry and above all comedy, led by one of the Bard’s greatest clowns: Bottom the hopeless amateur actor.</p><p>In a MIDSUMMER NIGHT’S DREAM Shakespeare explores the idea that love is random, that we are in love with ourselves rather than the person we supposedly adore, that the eyes deceive us as to a person’s true worth and the consequences are sometimes tragic but often comic. The production is directed by Paul Stebbings and presented by TNT theatre Britain. Their cycle of Shakespearian classics include HAMLET, MACBETH, ROMEO & JULIET and the TAMING OF THE SHREW – productions that have received popular and critical acclaim in over thirty countries worldwide performing in theatres and palaces from Tokyo to Berlin and Windsor Castle to Prague Castle. This is Shakespeare as might have graced the original Globe: funny, direct, visual, musical and appealing to any and every audience.</p><p>“I never knew Shakespeare could be so entertaining”. CNN TV</p><p>“The cast had the audience in stitches of laughter with their wonderful comic timing….this production’s twin achievement is to make Shakespeare’s comedy both hilarious and clear….This classic production is both a real achievement and a comic hoot.” STRAITS TIMES Singapore</p><p>“TNT are one of the most interesting developments on the current theatrical scene”. THE GUARDIAN, London</p><p>Director Paul Stebbings<br>Producer Grantly Marshall<br>Original music composed by Paul Flush</p><p>Duration: 90 min.</p><p>Guest performances in English</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63719/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65183", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/" }, "description": null, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153295, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-05T16:14:18.888973Z", "last_modified_time": "2024-12-05T16:14:18.888992Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758908.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153295/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-05T16:14:18.863853Z", "last_modified_time": "2024-12-20T01:14:27.642028Z", "date_published": null, "start_time": "2025-01-04T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vaiana 2 (7) – Kino Helios", "sv": "Vaiana 2 (7) – Kino Helios", "en": "Vaiana 2 (7) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D0DD625E8B8398849E4E23670A2F8D6/Vaiana_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D0DD625E8B8398849E4E23670A2F8D6/Vaiana_2_7_", "en": "http://www.malmitalo.fi/en/events/event/3D0DD625E8B8398849E4E23670A2F8D6/Vaiana_2_7_" }, "description": { "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65183/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65182", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/" }, "description": null, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153294, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-05T16:14:18.581815Z", "last_modified_time": "2024-12-05T16:14:18.581830Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758902.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-05T16:14:18.558895Z", "last_modified_time": "2024-12-20T01:14:27.016771Z", "date_published": null, "start_time": "2024-12-28T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vaiana 2 (7) – Kino Helios", "sv": "Vaiana 2 (7) – Kino Helios", "en": "Vaiana 2 (7) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/61D925694F174A5EB572C816C08C6B7B/Vaiana_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/61D925694F174A5EB572C816C08C6B7B/Vaiana_2_7_", "en": "http://www.malmitalo.fi/en/events/event/61D925694F174A5EB572C816C08C6B7B/Vaiana_2_7_" }, "description": { "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7 <br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65182/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65181", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/" }, "description": null, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153293, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-05T16:14:18.352250Z", "last_modified_time": "2024-12-05T16:14:18.352273Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758899.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153293/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-05T16:14:18.306363Z", "last_modified_time": "2024-12-20T01:14:26.735516Z", "date_published": null, "start_time": "2024-12-27T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vaiana 2 (7) – Kino Helios", "sv": "Vaiana 2 (7) – Kino Helios", "en": "Vaiana 2 (7) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/673F47E7706078254054809F2EB3ADCC/Vaiana_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/673F47E7706078254054809F2EB3ADCC/Vaiana_2_7_", "en": "http://www.malmitalo.fi/en/events/event/673F47E7706078254054809F2EB3ADCC/Vaiana_2_7_" }, "description": { "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65181/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64107", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-stoa-19151704/", "sv": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-stoa-19151704/", "en": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-stoa-19151704/" }, "description": null, "price": { "fi": "6,10 €", "sv": "6,10 €", "en": "6,10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T12:15:30.416549Z", "last_modified_time": "2024-09-23T12:15:30.416575Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755853.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152567/?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-09-23T12:15:30.384481Z", "last_modified_time": "2024-12-20T01:14:26.458361Z", "date_published": null, "start_time": "2024-12-21T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LOPPUUNMYYTY Mimmit: Puhuri – Koko perheen joulukonsertti", "sv": "SLUTSÅLD Mimmit: Puhuri – Julkonsert för hela familjen", "en": "SOLD OUT Mimmit: Puhuri – Family Christmas Concert" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Mimmit- yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.", "sv": "Mimmit-bandets Puhuri-konsert tar lyssnarna med på en resa i julstämning bland vita snödrivor", "en": "The Mimmit group’s Puhuri concert leads listeners to the Christmas mood and to the falling, white snowflakes." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/604C2810EF4FA9118398039968157893/LOPPUUNMYYTY_Mimmit_Puhuri", "sv": "http://www.stoa.fi/sv/evenemang/event/604C2810EF4FA9118398039968157893/SLUTSALD_Mimmit_Puhuri", "en": "http://www.stoa.fi/en/events/event/604C2810EF4FA9118398039968157893/SOLD_OUT_Mimmit_Puhuri" }, "description": { "fi": "<p>Mimmit- yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.</p><p>Konsertissa kuullaan ihan uusia talvi- ja jouluaiheisia sekä kaikille tuttuja lauluja. Tutut joululaulut ovat saaneet jännittävät sovitukset, mukana ovat mm. Kulkuset, Porsaita äidin oomme kaikki ja Soihdut sammuu.</p><p>Puhuri-konsertit saivat marras-joulukuussa 2023 hurjan suosion ja kuulijoita oli ympäri Suomea yli 10 000. Tunnelma konserteissa oli ikimuistoinen, niin lapset kuin aikuiset lauloivat innokkaasti mukana. Puhurista tulee taatusti perheiden jouluperinne!</p><p>Puhuri-konsertissa yhdistyvät mukaansatempaava musiikki, vauhdikkaat tanssit, värikkäät tausta-animaatiot, pöytäteatteri ja hauska tarina. Laulujen avulla lavalle rakentuu kaunis talvinen ja jouluinen maisema. Mimmipussista löytyy yllätyksiä. Pussi avautuu laulun ja leikin avulla, jos avautuu, riippuu millä tuulella Mimmipussi on…</p><p>Konsertti on vuorovaikutteinen: lapset ja aikuiset pääsevät mukaan leikkimään, tanssimaan ja laulamaan!</p><p>Puhurin tarina ilmestyy myös kuunnelmana Ylen Areenassa marraskuussa 2024.</p><p>Mimmit on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet yli 1000 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja kaksi ruotsiksi. Ystävyys-levy valittiin vuoden lastenlevyksi 2017 ja Mimmien Pauski vuoden lastenmusiikin tekijäksi 2022. Mimmit-musiikkivideoita on katsottu Youtubessa jo yli 15 miljoonaa kertaa!</p><p>Mimmit:<br>Pauliina Lerche – laulu, harmonikka, kantele<br>Hannamari Vallila – laulu, viulu, melodika<br>Anssi Salminen/Mikko Malmivaara – kitara, taustalaulu<br>Juha Kujanpää – piano<br>Luis Herrero – basso, taustalaulu</p><p>Kesto: 45 min <br>Kieli: suomi <br>Liput: 6,10 €. Huom! Jokainen konserttiin tulija tarvitsee oman lipun.</p>", "sv": "<p>Mimmit-bandets Puhuri-konsert tar lyssnarna med på en resa i julstämning bland vita snödrivor</p><p>På konserten får vi höra helt nya låtar med vinter- och jultema, såväl som välkända låtar. Välkända julsånger har fått spännande arrangemang, bland annat Bjällerklang, Morsgrisar är vi allihopa och Tomtarnas julnatt.</p><p>I november–december 2023 var Puhuri-konserterna mycket populära, och över 10 000 åhörare besökte dem på olika håll i Finland. Stämningen på konserterna var oförglömlig, och både barn och vuxna sjöng entusiastiskt med. Puhuri kommer garanterat att bli en jultradition för familjer!</p><p>Konserten kombinerar medryckande musik, fartfyllda danser, färgstarka bakgrundsanimationer, bordsteater och en rolig historia. Sångerna skapar ett vackert vinter- och jullandskap på scenen. I Mimmipåsen finns överraskningar. Påsen öppnas med sång och lek, om om den har lust...</p><p>Konserten är interaktiv: barn och vuxna får vara med och leka, dansa och sjunga med!</p><p>Puhuris berättelse kommer också ges ut som en radiopjäs på Yle Arena i november 2024.</p><p>Mimmit är ett av Finlands mest kända barnmusikband. Mimmit har gett över 1 000 konserter i Finland och utomlands, och släppt åtta album på finska och två på svenska. Albumet Ystävyys utsågs till årets barnalbum 2017 och Mimmits medlem Pauski till årets barnmusiker 2022. Mimmits musikvideor har visats över 15 miljoner gånger på YouTube!</p><p>Mimmit:<br>Pauliina Lerche – sång, dragspel, kantele<br>Hannamari Vallila – sång, violin, melodica<br>Anssi Salminen/Mikko Malmivaara – gitarr, bakgrundssång<br>Juha Kujanpää – piano<br>Luis Herrero – bas, bakgrundssång</p><p>Längd: 45 min. <br>Språk: finska <br>Biljetter: 6,10€ Obs! Alla besökare till konserten behöver en egen biljett.</p>", "en": "<p>The Mimmit group’s Puhuri concert leads listeners to the Christmas mood and to the falling, white snowflakes.</p><p>The concert features brand new songs about winter and Christmas, as well as crowd-favourite classics. New arrangements have been written of familiar Christmas songs, such as Jingle Bells, Porsaita äidin oomme kaikki, and Soihdut sammuu.</p><p>Puhuri concerts were hugely popular in November-December 2023, with more than 10,000 listeners all over Finland. The atmosphere at the concerts was one to remember, with both children and adults singing along enthusiastically. Puhuri concerts will definitely become a family Christmas tradition!</p><p>The Puhuri concert combines exciting music, action-packed dances, colourful background animations, table theatre and a fun story. The songs help paint a beautiful wintery Christmas landscape on the stage. There are surprises in the Mimmit gift bag. The bag opens through a song and play, if it does, depends on what mood the bag is in…</p><p>The concert is interactive: children and adults get to play, dance and sing along!</p><p>The story of Puhuri will also be made available as a radio play Yle Areena in November 2024.</p><p>Mimmit is one of the most famous children's music groups in Finland. Mimmit have performed more than 1,000 concerts in Finland and abroad and have released eight albums in Finnish and two in Swedish. Their album, Ystävyys, was chosen as Children's Album of the Year in 2017 and Mimmit’s Pauski as the children's musician of the year in 2022. Mimmit music videos have already been viewed over 15 million times on YouTube!</p><p>Mimmit:<br>Pauliina Lerche – vocals, accordion, kantele<br>Hannamari Vallila – vocals, violin, melodica<br>Anssi Salminen/Mikko Malmivaara – guitar, backing vocals<br>Juha Kujanpää – piano<br>Luis Herrero – bass, backing vocals</p><p>Duration: 45 mins. <br>Language: Finnish <br>Tickets: €6,10 Please note: Each person attending the concert needs their own ticket.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64107/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65047", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/" }, "description": null, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153073, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-22T13:14:29.045614Z", "last_modified_time": "2024-11-22T13:14:29.045638Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745829.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-22T13:14:29.020827Z", "last_modified_time": "2024-12-20T01:14:26.365686Z", "date_published": null, "start_time": "2024-12-21T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vaiana 2 (7) – Kino Helios", "sv": "Vaiana 2 (7) – Kino Helios", "en": "Vaiana 2 (7) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4885C1E296221AE38F6E25BC07EF16AA/Vaiana_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4885C1E296221AE38F6E25BC07EF16AA/Vaiana_2_7_", "en": "http://www.malmitalo.fi/en/events/event/4885C1E296221AE38F6E25BC07EF16AA/Vaiana_2_7_" }, "description": { "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65135", "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:105/?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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-29T13:14:23.384937Z", "last_modified_time": "2024-11-29T13:14:23.384956Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764105.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153126/?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-11-29T13:14:23.355907Z", "last_modified_time": "2024-12-20T01:14:26.277764Z", "date_published": null, "start_time": "2024-12-21T11:00:00Z", "end_time": "2024-12-21T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ursan planetaario: Yötaivaan ihmeet" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa tutustumaan tähtitaivaaseen Ursan planetaariossa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/313C08C7858C7521B501EECFC2D0F1C3/Ursan_planetaario_Yotaivaan_ihmeet_" }, "description": { "fi": "<p>Tervetuloa tutustumaan tähtitaivaaseen Ursan planetaariossa!</p><p>Ursan liikkuva planetaario on puhallettava kangaskupu, jonka sisällä voi kokea tähtitaivaan ja avaruuden ihmeet. Planetaarion esityksissä tutustutaan muun muassa yötaivaan ilmiöihin, Kuun vaiheisiin ja tähtien liikkeisiin. Saat myös vinkkejä siihen, mitä taivaalta voit löytää itse, ilman kaukoputkea.</p><p>Yhteen esitykseen mahtuu noin 25 henkilöä, ja planetaarioon pääsee myös pyörätuolilla.<br><b>Esitykset</b><br>Esitys 1 klo 13–13.30<br>Esitys 2 klo 14–14.30<br>Esitys 3 klo 15–15.30</p><p>Vapaa pääsy. Ilmoittaudu mukaan ennen esityksiä musiikkisalin ovella oleviin nimilistoihin.</p><p>Kesto: 30 minuuttia<br>Kieli: suomi<br>Ikäsuositus: ei suositella alle 5-vuotiaille<br>Paikka: musiikkisali</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64785", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-stoa-19422622/", "sv": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-stoa-19422622/", "en": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-stoa-19422622/" }, "description": null, "price": { "fi": "6,10 €", "sv": "6,10 €", "en": "6,10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-13T13:14:40.665022Z", "last_modified_time": "2024-11-13T13:14:40.665041Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760173.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153013/?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-11-13T13:14:40.619836Z", "last_modified_time": "2024-12-20T01:14:26.181473Z", "date_published": null, "start_time": "2024-12-21T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Mimmit: Puhuri – Koko perheen joulukonsertti", "sv": "Mimmit: Puhuri – Julkonsert för hela familjen", "en": "Mimmit: Puhuri – Family Christmas Concert" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Mimmit-yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.", "sv": "Mimmit-bandets Puhuri-konsert tar lyssnarna med på en resa i julstämning bland vita snödrivor.", "en": "The Mimmit group’s Puhuri concert leads listeners to the Christmas mood and to the falling, white snowflakes." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/205DEDF625FA467245AAA87B45F39011/Mimmit_Puhuri", "sv": "http://www.stoa.fi/sv/evenemang/event/205DEDF625FA467245AAA87B45F39011/Mimmit_Puhuri", "en": "http://www.stoa.fi/en/events/event/205DEDF625FA467245AAA87B45F39011/Mimmit_Puhuri" }, "description": { "fi": "<p>Mimmit-yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.</p><p>Konsertissa kuullaan ihan uusia talvi- ja jouluaiheisia sekä kaikille tuttuja lauluja. Tutut joululaulut ovat saaneet jännittävät sovitukset, mukana ovat mm. Kulkuset, Porsaita äidin oomme kaikki ja Soihdut sammuu.</p><p>Puhuri-konsertit saivat marras-joulukuussa 2023 hurjan suosion ja kuulijoita oli ympäri Suomea yli 10 000. Tunnelma konserteissa oli ikimuistoinen, niin lapset kuin aikuiset lauloivat innokkaasti mukana. Puhurista tulee taatusti perheiden jouluperinne!</p><p>Puhuri-konsertissa yhdistyvät mukaansatempaava musiikki, vauhdikkaat tanssit, värikkäät tausta-animaatiot, pöytäteatteri ja hauska tarina. Laulujen avulla lavalle rakentuu kaunis talvinen ja jouluinen maisema. Mimmipussista löytyy yllätyksiä. Pussi avautuu laulun ja leikin avulla, jos avautuu, riippuu millä tuulella Mimmipussi on…</p><p>Konsertti on vuorovaikutteinen: lapset ja aikuiset pääsevät mukaan leikkimään, tanssimaan ja laulamaan!</p><p>Puhurin tarina ilmestyy myös kuunnelmana Ylen Areenassa marraskuussa 2024.</p><p>Mimmit on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet yli 1000 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja kaksi ruotsiksi. Ystävyys-levy valittiin vuoden lastenlevyksi 2017 ja Mimmien Pauski vuoden lastenmusiikin tekijäksi 2022. Mimmit-musiikkivideoita on katsottu Youtubessa jo yli 15 miljoonaa kertaa!</p><p>Mimmit:<br>Pauliina Lerche – laulu, harmonikka, kantele<br>Hannamari Vallila – laulu, viulu, melodika<br>Anssi Salminen/Mikko Malmivaara – kitara, taustalaulu<br>Juha Kujanpää – piano<br>Luis Herrero – basso, taustalaulu</p><p>Kesto: 45 min<br>Kieli: suomi<br>Liput: 6,10 €. Huom! Jokainen konserttiin tulija tarvitsee oman lipun.</p>", "sv": "<p>Mimmit-bandets Puhuri-konsert tar lyssnarna med på en resa i julstämning bland vita snödrivor.</p><p>På konserten får vi höra helt nya låtar med vinter- och jultema, såväl som välkända låtar. Välkända julsånger har fått spännande arrangemang, bland annat Bjällerklang, Morsgrisar är vi allihopa och Tomtarnas julnatt.</p><p>I november–december 2023 var Puhuri-konserterna mycket populära, och över 10 000 åhörare besökte dem på olika håll i Finland. Stämningen på konserterna var oförglömlig, och både barn och vuxna sjöng entusiastiskt med. Puhuri kommer garanterat att bli en jultradition för familjer!</p><p>Konserten kombinerar medryckande musik, fartfyllda danser, färgstarka bakgrundsanimationer, bordsteater och en rolig historia. Sångerna skapar ett vackert vinter- och jullandskap på scenen. I Mimmipåsen finns överraskningar. Påsen öppnas med sång och lek, om om den har lust...</p><p>Konserten är interaktiv: barn och vuxna får vara med och leka, dansa och sjunga med!</p><p>Puhuris berättelse kommer också ges ut som en radiopjäs på Yle Arena i november 2024.</p><p>Mimmit är ett av Finlands mest kända barnmusikband. Mimmit har gett över 1 000 konserter i Finland och utomlands, och släppt åtta album på finska och två på svenska. Albumet Ystävyys utsågs till årets barnalbum 2017 och Mimmits medlem Pauski till årets barnmusiker 2022. Mimmits musikvideor har visats över 15 miljoner gånger på YouTube!</p><p>Mimmit:<br>Pauliina Lerche – sång, dragspel, kantele<br>Hannamari Vallila – sång, violin, melodica<br>Anssi Salminen/Mikko Malmivaara – gitarr, bakgrundssång<br>Juha Kujanpää – piano<br>Luis Herrero – bas, bakgrundssång</p><p>Längd: 45 min.<br>Språk: finska<br>Biljetter: 6,10€ Obs! Alla besökare till konserten behöver en egen biljett.</p>", "en": "<p>The Mimmit group’s Puhuri concert leads listeners to the Christmas mood and to the falling, white snowflakes.</p><p>The concert features brand new songs about winter and Christmas, as well as crowd-favourite classics. New arrangements have been written of familiar Christmas songs, such as Jingle Bells, Porsaita äidin oomme kaikki, and Soihdut sammuu.</p><p>Puhuri concerts were hugely popular in November-December 2023, with more than 10,000 listeners all over Finland. The atmosphere at the concerts was one to remember, with both children and adults singing along enthusiastically. Puhuri concerts will definitely become a family Christmas tradition!</p><p>The Puhuri concert combines exciting music, action-packed dances, colourful background animations, table theatre and a fun story. The songs help paint a beautiful wintery Christmas landscape on the stage. There are surprises in the Mimmit gift bag. The bag opens through a song and play, if it does, depends on what mood the bag is in…</p><p>The concert is interactive: children and adults get to play, dance and sing along!</p><p>The story of Puhuri will also be made available as a radio play Yle Areena in November 2024.</p><p>Mimmit is one of the most famous children's music groups in Finland. Mimmit have performed more than 1,000 concerts in Finland and abroad and have released eight albums in Finnish and two in Swedish. Their album, Ystävyys, was chosen as Children's Album of the Year in 2017 and Mimmit’s Pauski as the children's musician of the year in 2022. Mimmit music videos have already been viewed over 15 million times on YouTube!</p><p>Mimmit:<br>Pauliina Lerche – vocals, accordion, kantele<br>Hannamari Vallila – vocals, violin, melodica<br>Anssi Salminen/Mikko Malmivaara – guitar, backing vocals<br>Juha Kujanpää – piano<br>Luis Herrero – bass, backing vocals</p><p>Duration: 45 mins.<br>Language: Finnish<br>Tickets: €6,10 Please note: Each person attending the concert needs their own ticket.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64785/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64561", "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/event/name-19033087" }, "description": null, "price": { "fi": "48,80/46,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-10T12:13:37.237845Z", "last_modified_time": "2024-09-10T12:13:37.237859Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756268.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-10T12:13:37.218639Z", "last_modified_time": "2024-12-20T01:14:26.083923Z", "date_published": null, "start_time": "2024-12-20T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Erja Lyytinen & Friends: Blue Christmas – Erja Lyytinen – Noora Louhimo – Pekko Käppi" }, "location_extra_info": null, "provider": { "fi": "Bluesland Productions Oy" }, "short_description": { "fi": "Lumoava blue christmas 2024 -kiertue tuo ripauksen glamouria joulun aikaan!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9685A11A902A201057AC800FE33C17C4/Erja_Lyytinen_Friends_Blue_Christmas_" }, "description": { "fi": "<p>Lumoava blue christmas 2024 -kiertue tuo ripauksen glamouria joulun aikaan!</p><p>Rokkaavan riemukas Blue Christmas 2024 -kiertue on laulaja-kitaristi Erja Lyytisen emännöimä kiertue, joka on vakiinnuttanut paikkansa bluesrockista nauttivien kuulijoiden jokavuotisena jouluperinteenä! Tänä vuonna kiertueella nähdään Lyytisen rinnalla laulaja Noora Louhimo ja jouhikkotaiteilija Pekko Käppi.</p><p>Kolmen suomalaisen tähtimuusikon yhdistäessä voimansa luvassa on voimakasta tulkintaa, maagisia säveliä ja sähäköitä kitarasooloja. Konsertissa kuullaan Erja Lyytisen ja solistivieraiden suosikkikappaleita vuosien varrelta. Lisäksi ohjelmistossa on rokkaavia sovituksia ja tunnelmallisia tulkintoja tutuista – ja harvemmin kuulluistakin – joululauluista.</p><p>Solistikolmikko esittää kappaleita kaksi tuntia kestävässä konserttikokonaisuudessa yhdessä ja erikseen, taustallaan Erja Lyytisen luotettu bändi.</p><p>Kansainvälisesti palkitun kitaristi <b>Erja Lyytisen</b> lokakuussa 2023 julkaisema livelevy ”Diamonds On The Road – Live 2023” on saanut maailmalla loistoarvioita, joka ei yllätä yli sadan keikan vuosivauhdilla esiintyvän kitaravirtuoosin kyseessä ollessa. Energisistä live-esiintymisistään tunnettu Lyytinen on ehtinyt kuluvan vuoden aikana keikkailla kotimaan lisäksi mm. Australiassa, Iso-Britanniassa ja Ranskassa.</p><p>Heavymetal-jätti Battle Beastin laulaja <b>Noora Louhimon</b> musiikilliset juuret yltävät aina New Orleansin savuisiin blues-baareihin, Nashvillen country-saluunoihin kuin soul-musiikinkin pariin. Monipuolisella osaamisellaan myös SuomiLOVE -ohjelmassa hurmannut Louhimo lupaa viihdyttää Blue Christmas -yleisöä elämän iloisella, huumoria rakastavalla luonteellaan.</p><p><b>Pekko Käppi</b> on jouhikkotaiteilija, jonka käsittelyssä kansanmusiikki, mystiikka ja populaarikulttuuri kohtaavat erikoislaatuisen persoonallisella tavalla. Käpin musiikissa vallitsee hypnoottinen äänimaailma, jota on kuvailtu mm. kalevalaiseksi bluesiksi. Käppi keikkailee ja julkaisee musiikkia niin soolona kuin K:H:H:L-yhtyeensä kanssa, ja on tuttu näky myös teatteriproduktioissa, mm. Tampereen Työväen Teatterin ja Kansallisteatterin lavoilta.</p><p>Lämpimästi tervetuloa nauttimaan musiikillisesta ilotulituksesta joulun tunnelmissa!</p><p>Kesto n. 2 h 15 min, sisältää väliajan.</p><p>Ikäraja: S</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64570", "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/klubb-ankdamm/klubb-ankdamm-den-mysiga-julkonserten-3722695/", "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-den-mysiga-julkonserten-3722695/", "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-den-mysiga-julkonserten-3722695/" }, "description": null, "price": { "fi": "25 € / 20 €", "sv": "25 € / 20 €", "en": "25 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152413, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-12T13:15:15.374204Z", "last_modified_time": "2024-09-12T13:15:15.374221Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757867.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152413/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-12T13:15:15.343260Z", "last_modified_time": "2024-12-20T01:14:25.892508Z", "date_published": null, "start_time": "2024-12-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LOPPUUNMYYTY Jannike Sandström med gäster: Den mysiga julkonserten – Klubb Ankdamm", "sv": "SLUTSÅLD Jannike Sandström med gäster: Den mysiga julkonserten – Klubb Ankdamm", "en": "SOLD OUT Jannike Sandström med gäster: Den mysiga julkonserten – Klubb Ankdamm" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Den mysiga julkonserten on kiertänyt Suomea jo vuodesta 2017 lähtien. Tänäkin vuonna luvassa on ihana sekoitus uusia ja vanhoja joululauluja, mukavia tarinoita, vähän yhteislaulua ja paljon naurua.", "sv": "Den mysiga julkonserten har turnerat runtom i Finland sedan 2017. Också i år utlovas en härlig blandning av nya och gamla julsånger, trevliga historier, lite allsång och mycket skratt.", "en": "Den mysiga julkonserten has been touring in Finland since 2017. This year too, there will be a wonderful mix of new and old Christmas songs, nice stories, some sing-alongs and lots of laughter." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D9166B0AF0A1F623BCDE2D769169E289/LOPPUUNMYYTY_Jannike_Sandstrom_med_gaster_Den_mysiga_julkonserten", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D9166B0AF0A1F623BCDE2D769169E289/SLUTSALD_Jannike_Sandstrom_med_gaster_Den_mysiga_julkonserten", "en": "http://www.vuotalo.fi/en/events/event/D9166B0AF0A1F623BCDE2D769169E289/SOLD_OUT_Jannike_Sandstrom_med_gaster_Den_mysiga_julkonserten" }, "description": { "fi": "<p>Den mysiga julkonserten on kiertänyt Suomea jo vuodesta 2017 lähtien. Tänäkin vuonna luvassa on ihana sekoitus uusia ja vanhoja joululauluja, mukavia tarinoita, vähän yhteislaulua ja paljon naurua.</p><p>Lavalla:<br>Jannike<br>Patrik Isaksson (Ruotsi)<br>Madeleine Amoroso (Suomen Lucia 2023)<br>Barnkör<br>Henrik Wikström<br>Niklas Rosström</p><p>Klubi-ilta, tarjoiluista vastaa Café Pokkari. Kesto: n. 120 min. sis. väliaika. Kieli: ruotsi. Liput à 25/20 € @ Lippu.fi sekä myös lippuautomaatilta ovella.</p>", "sv": "<p>Den mysiga julkonserten har turnerat runtom i Finland sedan 2017. Också i år utlovas en härlig blandning av nya och gamla julsånger, trevliga historier, lite allsång och mycket skratt.</p><p>På scen:<br>Jannike<br>Patrik Isaksson (Sverige)<br>Madeleine Amoroso (Finlands Lucia 2023)<br>Barnkör<br>Henrik Wikström<br>Niklas Rosström</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari. Längd: ca 120 min. inkl. paus. Språk: svenska. Biljetter à 25/20 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>Den mysiga julkonserten has been touring in Finland since 2017. This year too, there will be a wonderful mix of new and old Christmas songs, nice stories, some sing-alongs and lots of laughter.</p><p>On stage:<br>Jannike<br>Patrik Isaksson (Sweden)<br>Madeleine Amoroso (Finland´s Lucia 2023)<br>Barnkör<br>Henrik Wikström<br>Niklas Rosström</p><p>Club night, refreshments provided by Café Pokkari. Duration: apx. 120 min. with intermission. Language: Swedish. Tickets à 25/20 € @ Lippu.fi and also from the ticket machine at the door.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64570/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65107", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153098, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-27T11:14:31.792598Z", "last_modified_time": "2024-11-27T11:14:31.792619Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745826.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153098/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-27T11:14:31.773963Z", "last_modified_time": "2024-12-20T01:14:25.719043Z", "date_published": null, "start_time": "2024-12-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pieni pala kakkua (7) – Kino Helios", "sv": "Pieni pala kakkua (7) – Kino Helios", "en": "Pieni pala kakkua (7) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49600A25F59E5F0D18B7676A8344B846/Pieni_pala_kakkua_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/49600A25F59E5F0D18B7676A8344B846/Pieni_pala_kakkua_7_", "en": "http://www.malmitalo.fi/en/events/event/49600A25F59E5F0D18B7676A8344B846/Pieni_pala_kakkua_7_" }, "description": { "fi": "<p>Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina.</p><p>Pitkään leskenä omin päin elänyt Mahin viettää puheliasta iltaa tyttökaveriensa kanssa, ja päättää että elämässä voisi vielä kerran olla tilaa romanssille. Mahin kohtaa sympaattisen taksikuskin eläkeläisten lounaspaikassa. Faramarz saa ajaa Mahinin kotiin. Mahin kaivaa esiin pitkään piilotellun viinipullon ja leipoo herkullisen kakun. On aika jakaa yhteinen, onnellinen illallinen.</p><p>Naisia alistava mikroskooppisen tarkka sääntöjen ja kieltojen verkko tekee sympaattisista hetkistä Teheranissa harvinaista herkkua.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 97 min.<br>Ensi-ilta: 06.12.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65107/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }