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=1434
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1435", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1433" }, "data": [ { "id": "kulke:61123", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "description": null, "price": { "fi": "8 €", "sv": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-10T13:31:49.847034Z", "last_modified_time": "2023-10-10T13:31:49.847054Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737942.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-10T13:31:49.699898Z", "last_modified_time": "2023-11-14T06:13:41.287805Z", "date_published": null, "start_time": "2023-11-18T13: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, "short_description": { "fi": "Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.", "sv": "När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/75C4DDDDA9D6EDD357F265934C19DE5B/Kuka_olet_Mimmi_Lehma_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/75C4DDDDA9D6EDD357F265934C19DE5B/Vem_ar_Mamma_Mu_T_" }, "description": { "fi": "<p>Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.</p><p>Pikkuveljen rakas nalle katoaa salaperäisissä olosuhteissa ja kaikki on Mimmi Lehmän syytä.</p><p>\"Etkö voi olla ihan tavallinen lehmä? Silloin mitään ei tapahdu!\" hänen ystävänsä Varis kysyy. Mutta juuri sitä Mimmi Lehmä haluaa välttää. Hän rakastaa sitä, kun kaikenlaisia asioita tapahtuu! Yhdessä Mimmi ja Varis alkavat seurata kadonneen nallen jälkiä.</p><p>Kesto 67 min<br>Ensi-ilta 10.11.2023<br>Ikäraja Sallittu</p>", "sv": "<p>När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält.</p><p>Lillebrors älskade nalle försvinner under mystiska omständigheter och det är Mamma Mus fel.</p><p>\"Kan du inte bara vara en vanlig ko?\" undrar hennes vän Kråkan. \"Då händer ingenting!\" Men det är ju precis det Mamma Mu vill undvika. Hon älskar när det händer saker! Inte bara så sorgliga saker. Tillsammans börjar Mamma Mu och Kråkan följa spåren efter den saknade nallen.</p>" }, "name": { "fi": "Kuka olet, Mimmi Lehmä? (S) – Kino Helios", "sv": "Vem är Mamma Mu? (T) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61123/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61129", "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:32/?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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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/helsingin-kulttuurikeskus-vuotalo-joulu-ukrainan-kanssa-konsertti-vuotalo-17773322/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-joulu-ukrainan-kanssa-konsertti-vuotalo-17773322/" }, "description": null, "price": { "fi": "20 € / 10 €", "en": "20 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5406, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-11T14:03:40.094239Z", "last_modified_time": "2023-10-11T14:03:40.094257Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738013.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5406/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-11T14:03:39.479185Z", "last_modified_time": "2023-11-14T06:13:41.210883Z", "date_published": null, "start_time": "2023-11-18T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ukrainalaisten lastenryhmien koreografinen tanssi- ja laulushow esittelee yleisölle ukrainalaista taidetta.", "en": "A performance of choreography and song by Ukrainian children's groups introduces its audiences to Ukrainian art." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/257BBB8BCD5121E66D5EDEC7B63DA0B5/Svitanok_-_Joulu_Ukrainan_kanssa", "en": "http://www.vuotalo.fi/en/events/event/257BBB8BCD5121E66D5EDEC7B63DA0B5/Svitanok_-_Christmas_with_Ukraine_" }, "description": { "fi": "<p>Ukrainalaisten lastenryhmien koreografinen tanssi- ja laulushow esittelee yleisölle ukrainalaista taidetta.</p><p>Kansantanssiyhtye Svitanok ja laulustudio Lira ovat arvostettuja kilpailuja ja projekteja voittaneita ukrainalaisia ryhmiä. Ne ovat edustaneet Ukrainan kulttuuria Puolan, Tšekin, Slovakian, Itävallan, Saksan, Ranskan, Kreikan, Liettuan, Georgian, Bulgarian ja Qatarin suurimmilla näyttämöillä, ja tulevat nyt yleisön eteen Suomeen! <br> <br>Joulu Ukrainassa on juhlava. Ukrainan laulu- ja tanssiryhmät esittävät joukon perinteisiä tansseja, lauluja ja kansanmusiikkia. Juhli joulua ukrainalaisten kanssa! <br> <br>Yleisö voi odottaa muinaisen ukrainalaisen kylän tunnelmaa jouluaattona: lapsia kulkemassa talosta taloon, joissa ystävälliset isännät ja lahjat odottavat heitä. Paha voima pyrkii häiritsemään juhlaa, mutta todelliset ukrainalaiset kasakkasoturit suojelevat sitä!</p><p>Ukrainan sodasta huolimatta ukrainalaisten kulttuuri elää edelleen ja ukrainalaiset lapset ovat valmiita jakamaan luovuutensa suomalaisten kanssa! <br> <br>Esityksen on valmistanut koreografinen koulu \"Svitanok\" ja laulustudio \"Lira\". Ohjelmassa esitetään ukrainalaista kansanmusiikkia mukaan lukien kansanlaulu \"Shchedryk\" – ei vain Ukrainan, vaan koko maailman tärkein joululaulu. <br> <br>Konsertin aikana yleisö voi tavata kasakoita ja ukrainalaisten legendojen sankareita. Tansseineen ja lauluineen lapset kutsuvat sinut taiteelliselle matkalle läpi Ukrainan, tuntemaan sen sielun ja tukemaan ukrainalaisia lahjakkaita lapsia!</p><p>Kesto: 1 t 20 min sis. väliajan<br> <br>Lipunmyynnin tuotot menevät esiintyville ryhmille.</p><p>Liput 20 € / 10 € <br> <br>Järjestäjät: Vuotalo, Helsingin kaupunki Ukraina-talo (Tampere), kansalaisjärjestö \"Yaksrava krayina\" (Ukraina)</p>", "en": "<p>A performance of choreography and song by Ukrainian children's groups introduces its audiences to Ukrainian art.</p><p>The folk dance group Svitanok and the vocal studio Lira are Ukrainian groups that have won some of the most prestigious competitions and projects in the field. They have represented Ukrainian culture on the biggest stages in Poland, Czech Republic, Slovakia, Austria, Germany, France, Greece, Lithuania, Georgia, Bulgaria and Qatar, and now they will have their premiere on Finnish stages!</p><p>Christmas in Ukraine is festive. Ukrainian song and dance groups perform traditional dances, songs and folk music. Let’s celebrate Christmas together with Ukrainians!</p><p>What can the audience expect: an atmosphere of an ancient Ukrainian village on Christmas Eve. Children with good wishes go from house to house, where friendly hosts and gifts await them. An evil force is ready to disrupt the celebration, but true Ukrainian Cossack warriors protect the celebration! How it all ends, the audience shall see!</p><p>Despite the war in Ukraine, Ukrainian culture still lives on and Ukrainian children are ready to share their creativity with Finnish people!</p><p>Concert duration: 1 h 20 min incl. intermission <br> <br>Tickets 20 € / 10 € <br> <br>Organizers: Vuotalo (Helsinki), Ukraina-talo (Tampere), \"Yaskrava kraina\" (Ukraine)</p>" }, "name": { "fi": "Svitanok - Joulu Ukrainan kanssa", "en": "Svitanok - Christmas with Ukraine" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61129/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60912", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:54.430408Z", "last_modified_time": "2023-09-07T14:26:54.430438Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736555.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4567/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:53.764576Z", "last_modified_time": "2023-11-14T06:13:41.134674Z", "date_published": null, "start_time": "2023-11-18T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/708D49A85C540750A49F7B3B99A0876F/DanceAbility_Lasten_inklusiivinen_tanssitunti_", "en": "http://www.annantalo.fi/en/events/event/708D49A85C540750A49F7B3B99A0876F/DanceAbility_Children_s_inclusive_dance_class" }, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>" }, "name": { "fi": "DanceAbility: Lasten inklusiivinen tanssitunti", "en": "DanceAbility: Children's inclusive dance class" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60912/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59953", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4566, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:53.361736Z", "last_modified_time": "2023-09-07T14:26:53.361759Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731867.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4566/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:53.202225Z", "last_modified_time": "2023-11-14T06:13:41.061400Z", "date_published": null, "start_time": "2023-11-18T11:00:00Z", "end_time": "2023-11-18T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aishe Vejdanin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.", "sv": "Aishe Vejdanis utställnings guidning tolkas på finskt teckenspråk.", "en": "A guided tour of Aishe Vejdani's exhibition interpreted into Finnish sign language." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/EDB4A0BE23709B1A781A6D51659CD8EE/Viittomakielinen_opastus_Lost_Future_Reimagined", "sv": "http://www.caisa.fi/sv/evenemang/event/EDB4A0BE23709B1A781A6D51659CD8EE/Guidning_pa_teckensprak_Lost_Future_Reimagined", "en": "http://www.caisa.fi/en/events/event/EDB4A0BE23709B1A781A6D51659CD8EE/Sign_language_tour_Lost_Future_Reimagined" }, "description": { "fi": "<p>Aishe Vejdanin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.</p><p>Opastus järjestetään yhteistyössä Ursa Minorin kanssa. Oppaana Aino Laiho.</p><p>Kadonnut tulevaisuus uudelleenkuviteltuna -hanke käsittelee kadonneen tulevaisuuden tunnetta menneisyydessä ja nykyisyydessä. Tunnetta, joka johtuu homogenisoituvista ideologioista, jotka muokkasivat taiteilijan perhehistoriaa ja etnistä historiaa.</p><p>Tämä hanke haastaa kuvittelemaan ja uudelleenkuvittelemaan, millainen tulevaisuus voi tai voisi olla, jos erilaisuutta ei tukahduteta tai tukahdutettaisi.</p><p>Aishe Vejdani seuraa tällaisten ideologioiden vaikutusta perhehistoriassaan ja turkmenistanilaisessa etnisyydessään, jota leimasi Turkmenistanin sovjetisointi vuosina 1920–30 ja Pahlavi-dynastian muodostuminen Iranissa vuodesta 1925 alkaen.</p>", "sv": "<p>Aishe Vejdanis utställnings guidning tolkas på finskt teckenspråk.</p><p>Projektet ”Lost future reimagined” (den förlorade framtiden återuppfunnen) handlar om en känsla av en förlorad framtid i det förflutna och nutiden, orsakad av likriktande ideologier som format artistens familje- och etniska historia.</p><p>Projektet är en utmaning till att börja föreställa sig och tänka om hur framtiden kan/kunde te sig om skillnader inte förtrycks/förtrycktes.</p><p>Aishe Vejdani följer effekten av sådana ideologier inom artistens släkthistoria och turkmeniska etnicitet, märkt av sovjetiseringen av Turkmenistan under åren 1920–30 och bildandet av Pahlavidynastin i Iran från 1925.</p>", "en": "<p>A guided tour of Aishe Vejdani's exhibition interpreted into Finnish sign language.</p><p>The project “lost future reimagined” deals with a sense of lost future within past and present caused by homogenizing ideologies that shaped artist’s familial and ethnic history.</p><p>This project challenges itself to begin to imagine and reimagine how future can/could be if differences are/were not suppressed.</p><p>Aishe Vejdani follows the effect of such ideologies within her familial history and Turkmen ethnicity marked by Sovietisation of Turkmenistan during 1920–30, and the formation of Pahlavi dynasty in Iran from 1925.</p>" }, "name": { "fi": "Viittomakielinen opastus: Lost Future Reimagined", "sv": "Guidning på teckenspråk: Lost Future Reimagined", "en": "Sign language tour: Lost Future Reimagined" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59953/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61182", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5638, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-25T10:15:08.514511Z", "last_modified_time": "2023-10-25T10:15:08.514542Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738368.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5638/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-25T10:15:08.493167Z", "last_modified_time": "2023-11-14T06:13:40.988815Z", "date_published": null, "start_time": "2023-11-18T08:00:00Z", "end_time": "2023-11-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule ostoksille tai varaa oma myyntipöytä!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/006AC3E67F063F94AE9BF5AF649A27C4/MLL_n_lastenvaate-_ja_tarvikekirppis" }, "description": { "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä!</p><p>Pöytävaraukset: mll.kannelmaki@gmail.com</p>" }, "name": { "fi": "MLL:n lastenvaate- ja tarvikekirppis" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61182/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60657", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/ondara-savoy-teatteri-17414643/" }, "description": null, "price": { "fi": "31 €, ovelta 32 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:50.930542Z", "last_modified_time": "2023-09-07T14:26:50.930564Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735101.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:49.754043Z", "last_modified_time": "2023-11-14T06:13:40.913376Z", "date_published": null, "start_time": "2023-11-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, "short_description": { "fi": "Yhdysvaltalais-kenialainen Grammy-ehdokas, sielukas laulaja-lauluntekijä Ondara saapuu ensimmäistä kertaa Suomeen." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5E725F7C42792CE8A1742371F671DBAC/ONDARA_US_" }, "description": { "fi": "<p>Yhdysvaltalais-kenialainen Grammy-ehdokas, sielukas laulaja-lauluntekijä Ondara saapuu ensimmäistä kertaa Suomeen.</p><p>J. S. Ondara on itseoppinut laulaja-lauluntekijä, joka muutti parikymppisenä Nairobista Minnesotaan noin kymmenen vuotta sitten. Nuoren taiteilijan tuotannossa kuuluvat kypsyys ja elämänkokemus, ja hän onkin luonut itsensä ja artistiutensa erityisesti tuon valtavan elämänmuutoksen kautta.</p><p>Ondara on kertonut kehittäneensä elämänsä hankalimmilla hetkillä itselleen hahmon, jonka läpikäymät kokemukset kuuluvat musiikissa, ja joka on visuaalisessa muodossa tullut eloon myös artistin luoman novellin ja sarjakuvan myötä. Albumin ja sarjakuvan nimikkohahmo the Spanish Villager on kuin supersankari, jonka artisti keksi itseään varten sitä tarvitsemallaan hetkellä.</p><p>Ondaran debyyttialbumi, amerikkalaisuutta eri näkökulmista käsittelevä “Tales of America” nousi julkaisunsa jälkeen vuonna 2019 kriitikoiden tietoisuuteen rehellisyydellään, tarinankerronnallaan ja musiikillisella vaikuttavuudellaan. Grammy-ehdokkuudellakin tuolloin noteerattu artisti on kertonut kirjoittaneensa parikymmentä kappaletta otsikolla “American Dream” ennen kuin osasi päättää, mikä niistä oli oikea päätymään albumille.</p><p>Viime vuonna kolmannen albuminsa “Spanish Villager no. 3” julkaissut Ondara on tunteita herättävä laulaja sekä vahvasti tulkintaan ja tanssillisuuteen nojaava esiintyjä, jonka hypnoottista liveä päästään todistamaan marraskuussa Helsingissä.</p><p>Konsertin avaa La Haka.</p><p>Illan aikataulu:<br>18:00 Ovet<br>19:00–19:30 La Haka<br>20:00–21:30 Ondara</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>LIPUT: Ennakkoon alk. 31 EUR + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Ovelta 32 EUR, mikäli esitys ei ole loppuunmyyty.</p>" }, "name": { "fi": "ONDARA (US) – + La Haka" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Fullsteam Agency Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60619", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268568/", "sv": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268568/", "en": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268568/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:52.554080Z", "last_modified_time": "2023-09-07T14:26:52.554111Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728300.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:52.273611Z", "last_modified_time": "2023-11-14T06:13:40.835583Z", "date_published": null, "start_time": "2023-11-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, "short_description": { "fi": "Cleaning Women on ainutlaatuinen itsetehdyillä soittimilla operoiva yhtye, joka muodostuu kolmesta siivoojarobotista: CW01, CW03 ja CW04.", "sv": "Cleaning Women är ett unikt band som opererar med egentillverkade instrument och som består av tre städrobotar: CW01, CW03 och CW04.", "en": "‘Cleaning Women’ is a unique ensemble of three robot cleaners using home-made instruments: CW01, CW03 and CW04." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9EF63A12AFF631FFD478FA67446F53AE/Cleaning_Women", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9EF63A12AFF631FFD478FA67446F53AE/Cleaning_Women", "en": "http://www.malmitalo.fi/en/events/event/9EF63A12AFF631FFD478FA67446F53AE/Cleaning_Women" }, "description": { "fi": "<p>Cleaning Women on ainutlaatuinen itsetehdyillä soittimilla operoiva yhtye, joka muodostuu kolmesta siivoojarobotista: CW01, CW03 ja CW04.</p><p>Yhtye on toiminut samalla kokoonpanolla jo yli kahdenkymmenen vuoden ajan, jonka aikana se on hämmästyttänyt yleisöä ympäri Tellusta yli 600:n keikan verran soittaen yli kahdessakymmenessä maassa.</p><p>Lisäksi yhtye on tehnyt neljä albumia, 3D-varjovisuaalikeikkoja ja muita erikoisprojekteja, elokuvamusiikkia ja lukuisia kehuttuja mykkäelokuvasäestyksiä, joita se on esittänyt livenä niin Moskovan elokuvamuseossa, Bolognan vanhan kaupungin keskustorilla 2000 hengen yleisölle kuin Mexico Cityn nykytaiteen museon pihallakin.</p><p>Viimeisin hyppy elokuvamusiikin puolelle oli yhtyeen tekemä alkuperäismusiikki <b>Alice Rohrwacherin</b> uuteen 38-minuuttiseen lyhytelokuvaan <i>The Pupils</i>, joka sai toukokuussa 2022 ensi-iltansa Cannesin elokuvajuhlilla ja joka valittiin lyhytelokuvasarjassa tämän vuoden Oscar-ehdokkaaksi.</p><p>Yhtyeen viimeisin levy <i>Intersubjectivity</i> julkaistiin Svartin kautta tammikuussa 2019.</p><p>Omaperäisen musiikin lisäksi Cleaning Women on tunnettu myös vaihtoehtoisista instrumenttivalinnoistaan. Yhtyeen soundin peruspalikkoina toimivat itserakennetut instrumentit ja kotitalouksista tutut esineet, joita on modifioitu musiikillisiin tarpeisiin. Materiaali on usein peräisin roskalavoilta tai pelastettu päätymästä sinne.</p><p>Vuosien saatossa yhtyeen instrumenttiperhe on laajentunut, sisältäen alkuperäisen mikitetyn pyykinkuivaustelineen lisäksi lukuisia erilaisia kieli- ja rytmisoittimia. Vaikka lähtökohta on avantgardistinen ja kokeellinen, lopputulos on yhdistelmä taidokasta soittimenhallintaa, uniikkeja äänimaisemia ja melodista sekä rytmillisesti rikasta musiikkia, jota voisi kuvailla vaikkapa yhdistelmänä elokuvallista sci-fi länkkäriä ja kipinöivää roskalavadiskoa.</p><p>Yhdessä yhtyeen yhtenäisen tummanpuhuvan ulkoasun ja muun visuaalisuuden kanssa kokonaisuus välittyy tehokkaimmin nimenomaan keikalla.</p>", "sv": "<p>Cleaning Women är ett unikt band som opererar med egentillverkade instrument och som består av tre städrobotar: CW01, CW03 och CW04.</p><p>Förutom för sin originella musik är Cleaning Women även känd för bandets alternativa instrumentval. De viktigaste pjäserna i bandets sound är de egentillverkade instrumenten och de bekanta hushållsartiklarna, som modifierats för de musikaliska behoven.</p><p>Materialet har ofta hämtats från sopcontainrar eller räddats från att hamna där.</p>", "en": "<p>‘Cleaning Women’ is a unique ensemble of three robot cleaners using home-made instruments: CW01, CW03 and CW04.</p><p>In addition to its original music, ‘Cleaning Women’ is also known for its alternative instrument choices. The ensemble’s sound is based on home-made instruments and household objects, modified to suit their musical needs.</p><p>The materials often come from or have been rescued from skips.</p>" }, "name": { "fi": "Cleaning Women – A la Malmi", "sv": "Cleaning Women – A la Malmi", "en": "Cleaning Women – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60619/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59876", "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: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: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:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "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": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:52.971022Z", "last_modified_time": "2023-09-07T14:26:52.971043Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730794.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:52.792339Z", "last_modified_time": "2023-11-14T06:13:40.757230Z", "date_published": null, "start_time": "2023-11-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, "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 fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”", "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4CAF3CE8977CA7279138317EE4BF0797/LOPPUUNMYYTY_Itakuskus_stand_up_-klubi", "sv": "http://www.stoa.fi/sv/evenemang/event/4CAF3CE8977CA7279138317EE4BF0797/SLUTSALT_Itakuskus_stand_up-klubb", "en": "http://www.stoa.fi/en/events/event/4CAF3CE8977CA7279138317EE4BF0797/SOLD_OUT_Itakuskus_Stand-up_Club" }, "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>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.<br> <br>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!”<br> <br>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on tuottaja, koomikko sekä 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.\"<br> <br>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.<br> <br>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <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ä.\" <br> <br>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>www.instagram.com/comedyfabe/ <br>www.instagram.com/mebekoomikko/, www.tiktok.com/@comedyfabe/ <br> <br>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi<br> <br>Klubi-illan tarjoiluista vastaa ravintola Skutta.<br> <br>Paikka: teatterisali <br>Liput: 20/15 €</p>", "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p>", "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p>" }, "name": { "fi": "LOPPUUNMYYTY Itäkuskus stand up -klubi", "sv": "SLUTSÅLT Itäkuskus stand up-klubb", "en": "SOLD OUT Itäkuskus Stand-up Club" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59876/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61157", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5518, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-18T09:27:18.984615Z", "last_modified_time": "2023-10-18T09:27:18.984636Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738094.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5518/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-18T09:27:18.562049Z", "last_modified_time": "2023-11-14T06:13:40.674253Z", "date_published": null, "start_time": "2023-11-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, "short_description": { "fi": "Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBDB8337F4EFCA2C36817B22F62CDFD8/Reality_12_" }, "description": { "fi": "<p>Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa.</p><p>Miksi ihmeessä FBI on kiinnostunut 25-vuotiaasta nuoresta naisesta? FBI:n tutkijat aloittavat heti paikalla intensiivisen kuulustelun, jonka myötä Realityn tarina alkaa pala palalta hahmottua. Hän on millenniaali, joogaohjaaja, tulkki – ja myös veteraani, jonka FBI aikoo nyt pidättää.</p><p>Intensiivinen jännitysnäytelmä nuoren naisen pakahduttavan jännittävästä ja paikoin absurdin humoristisiakin piirteitä saavasta pidätyksestä perustuu kappaleeseen Yhdysvaltain tosielämän lähihistoriaa ja elokuvan dialogi noudattelee sanasta sanaan FBI:n toteuttaman kuulustelun pöytäkirjaa. Elokuva luo tiukan silmäyksen Yhdysvaltain oikeusjärjestelmään, joka syytti tiedusteluasiantuntija Reality Winneriä hallituksen tietojen vuotamisesta medialle tapauksessa, joka koski Venäjän sekaantumista Yhdysvaltain vuoden 2016 presidentinvaaleihin.</p><p>Kiehtovan ja tiivistunnelmaisen draaman pääosassa vaikuttavan roolin tekee Sidney Sweeney (Euphoria, The White Lotus, Handmaid’s Tale).</p><p>Kesto 83 min<br>Ikäraja 12<br>Ensi-ilta 27.10.2023</p>" }, "name": { "fi": "Reality (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61157/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60144", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:49.129107Z", "last_modified_time": "2023-09-07T14:26:49.129129Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733184.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-09-07T14:26:48.862055Z", "last_modified_time": "2023-11-14T06:13:40.584340Z", "date_published": null, "start_time": "2023-11-17T11:00:00Z", "end_time": "2023-11-17T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mummodiskon tarkoituksena on tuoda iloa ja piristystä ikäihmisten arkeen, ihmisten omasta toimintakyvystä ja olosuhteista riippumatta.", "sv": "Syftet med Mummodisko är att skapa glädje och ge en injektion av energi i vardagen för äldre, oavsett vilken funktionsförmåga man har och under vilka förhållanden man lever.", "en": "The aim of the Granny Disco is to bring joy and cheer to the everyday lives of older people, regardless of their functional capacity and circumstances." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2F0B3778EAEDBCFA32F4BF6996D564B0/Mummodisko", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2F0B3778EAEDBCFA32F4BF6996D564B0/Mummodisko", "en": "http://www.vuotalo.fi/en/events/event/2F0B3778EAEDBCFA32F4BF6996D564B0/Granny_Disco" }, "description": { "fi": "<p>Mummodiskon tarkoituksena on tuoda iloa ja piristystä ikäihmisten arkeen, ihmisten omasta toimintakyvystä ja olosuhteista riippumatta.</p><p>Mummodisko mahdollistaa ikäihmisille uudenlaisia matalan kynnyksen osallistumismahdollisuuksia, luo ylisukupolvisia kohtaamisen paikkoja, edistää osallisuuden kokemuksia erilaiset kulttuurit ja yksilöt huomioiden sekä nykyaikaistaa tämän päivän vanhuskuvaa.</p><p>Mummodisko on menevän diskotapahtuma, jossa musiikki tulee oikeilta vinyylilevyiltä levysoittimien kautta Mummodiskon oman DJ:n <b>Mikko Haapalaisen</b> soittamana. Tapahtuman juontaa legendaarinen näyttelijä <b>Tuija Piepponen</b>. Tuija valjastaa omalla innostavalla energiallaan ja esimerkillään ihmiset tanssin pyörteisiin ja hengähdystauoilla tarjoilee hauskoja juttuja vuosien varrelta! Tapahtumassa soi vauhdikas disco, rock, funk ja twist -musiikki! Vierailevina artisteina <b>Jussi & The Boys</b>.</p><p>Kesto 2 t<br>Vapaa pääsy. Tervetuloa!</p><p>Tuotanto Mummodisko ry & Vuotalo</p>", "sv": "<p>Syftet med Mummodisko är att skapa glädje och ge en injektion av energi i vardagen för äldre, oavsett vilken funktionsförmåga man har och under vilka förhållanden man lever.</p><p>Mummodisko är en svängig discokväll där musiken kommer från riktiga vinylskivor som Mummodiskos egen DJ <b>Mikko Haapalainen</b> spelar på skivspelare. Programledare på evenemanget är den legendariska skådespelaren <b>Tuija Piepponen</b>.</p><p>Längd: 2 t<br>Fritt inträde</p>", "en": "<p>The aim of the Granny Disco is to bring joy and cheer to the everyday lives of older people, regardless of their functional capacity and circumstances.</p><p>The Granny Disco is an energetic disco event with music from real vinyl records played on turntables by Granny Disco’s own DJ, <b>Mikko Haapalainen</b>. The event is hosted by legendary actress <b>Tuija Piepponen</b>.</p><p>Duration: 2 hours<br>Free entry</p>" }, "name": { "fi": "Mummodisko", "sv": "Mummodisko", "en": "Granny Disco" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60144/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60222", "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: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: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:u4804001050", "sub_events": [], "images": [ { "id": 4561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:48.602830Z", "last_modified_time": "2023-09-07T14:26:48.602850Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734230.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:48.454211Z", "last_modified_time": "2023-11-14T06:13:40.498914Z", "date_published": null, "start_time": "2023-11-17T08: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, "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 högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/ED64F9C2F65563B2A09E04EA9612C57C/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/ED64F9C2F65563B2A09E04EA9612C57C/Skidikino", "en": "http://www.stoa.fi/en/events/event/ED64F9C2F65563B2A09E04EA9612C57C/Skidikino" }, "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>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60221", "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: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: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:u4804001050", "sub_events": [], "images": [ { "id": 4560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:48.210569Z", "last_modified_time": "2023-09-07T14:26:48.210597Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734229.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:48.062451Z", "last_modified_time": "2023-11-14T06:13:40.404724Z", "date_published": null, "start_time": "2023-11-17T07: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, "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 högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F837723F7CEC79CA6AD9437DBEF9970B/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/F837723F7CEC79CA6AD9437DBEF9970B/Skidikino", "en": "http://www.stoa.fi/en/events/event/F837723F7CEC79CA6AD9437DBEF9970B/Skidikino" }, "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>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60221/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59946", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4559, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:47.762403Z", "last_modified_time": "2023-09-07T14:26:47.762422Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731783.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4559/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:46.765601Z", "last_modified_time": "2023-11-14T06:13:40.315427Z", "date_published": null, "start_time": "2023-11-17", "end_time": "2024-01-06", "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, "short_description": { "fi": "Käpykolon väkeä on samannimisen lastenkirjasarjan kuvitukseen perustuva näyttely. Näyttelyssä Sydänkäpysen huovutettu oravaperhe on rakentanut pesän vanhaan televisioon.", "sv": "Käpykolon väkeä är en utställning baserad på illustrationerna i en barnboksserie med samma namn.", "en": "‘The Residents of Cone Hollow’ is an exhibition based on illustrations from the children’s book series of the same name." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0966F69907B3DEA3723CF57C43779650/Leena_Parkkinen_Zagros_Manuchar_Kapykolon_vakea", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0966F69907B3DEA3723CF57C43779650/Leena_Parkkinen_Zagros_Manuchar_Kapykolon_vakea", "en": "http://www.kanneltalo.fi/en/events/event/0966F69907B3DEA3723CF57C43779650/Leena_Parkkinen_Zagros_Manuchar_The_Residents_of_Cone_Hollow" }, "description": { "fi": "<p>Käpykolon väkeä on samannimisen lastenkirjasarjan kuvitukseen perustuva näyttely. Näyttelyssä Sydänkäpysen huovutettu oravaperhe on rakentanut pesän vanhaan televisioon.</p><p>Kirjailija <b>Leena Parkkinen</b> on rakentanut yksityiskohtia vilisevän miniatyyrimaailman kierrätysmateriaaleista. <b>Zagros Manuchar</b> on tehnyt lumoavat kuvat.</p><p><i>Käpykolon väkeä</i> -näyttelyssä pääsee kurkistamaan pienen Paju-oravan kotiin. Sydänkäpysen oravaperhe asuu vanhassa televisiossa Huotarisen autotallissa.</p><p>Kirjailija Leena Parkkinen on rakentanut yksityiskohtia vilisevän miniatyyrimaailman kierrätysmateriaaleista. Rakentamiseen on käytetty esimerkiksi fimomassaa, pullonkorkkeja, kananmunankennoja, karkkipurkkeja ja kaikkea satunnaista käteenosunutta. Zagros Manuchar on tehnyt lumoavat kuvat. Näyttely perustuu Käpykolonväkeä kirjasarjaan (Tammi) jonka ensimmäinen osa ilmestyy syksyllä 2023.</p><p>Näyttelystä voi löytää mm. salaperäisen hillokellarin täynnä pienen pieniä ruokia, satumaisen sienimetsän ja nukkekotimaailman samettisohvineen ja keittiöineen. Näyttelyyn kuuluu myös pieni elokuva ja työpajoja, joissa saa itse kokeilla minimaailman rakentamista.</p><p>Käpykolon väkeä lastenkirjasarjan tekoprosessia ja somekanavaa voi seurata täältä: https://www.instagram.com/kapykolonvakea/ <br>Lapsen oikeuksien päivänä ma 20.11. galleriassa järjestetään näyttelyn teemoihin liittyvää työpajaohjelmaa.<br> <br><b>Leena Parkkinen</b> (s. 1979) kuuluu sukupolvensa palkituimpiin ja menestyneimpiin kirjailijoihin. Hän on saanut arvostetun Arvid Lydecken -palkinnon, ja hänen kirjojaan on ilmestynyt 12 maassa. Parkkinen myös opettaa kirjoittamista Kriittisessä korkeakoulussa. Hän on harrastanut miniatyyreja, taidetta ja käsitöitä lapsesta asti sekä opiskellut Turun Taideakatemiassa.</p><p><b>Zagros Manuchar</b> (s. 1990) on irakilaissyntyinen elokuvantekijä ja taiteilija, joka on valmistunut maisteriksi Taideyliopiston Kuvataideakatemiasta. Hänen töitään on esitetty kansainvälisillä elokuvafestivaaleilla, näyttelyissä ja kulttuuri-instituuteissa. Teoksissaan Manuchar on käsitellyt lapsuuden tematiikkaa, ja hän myös opettaa lapsille ja nuorille taidetta. Käpykolon väkeä on hänen ensimmäinen lastenkirjansa. Hän rakasti lapsena erityisesti Pinokkiota.</p><p>Galleria<br>Vapaa pääsy</p>", "sv": "<p>Käpykolon väkeä är en utställning baserad på illustrationerna i en barnboksserie med samma namn.</p><p>På utställningen har den filtade ekorrfamiljen Sydänkäpyset byggt bo i en gammal tv-apparat.</p><p>Författaren Leena Parkkinen har byggt en miniatyrvärld som är fullspäckad av detaljer av återvinningsmaterial. Zagros Manuchar har skapat de förtrollande bilderna.</p>", "en": "<p>‘The Residents of Cone Hollow’ is an exhibition based on illustrations from the children’s book series of the same name.</p><p>In the exhibition, a felted squirrel family has built a nest in an old television set.</p><p>Author Leena Parkkinen has built a miniature world full of details out of recycled materials. Zagros Manuchar has created the enchanting pictures.</p>" }, "name": { "fi": "Leena Parkkinen & Zagros Manuchar: Käpykolon väkeä", "sv": "Leena Parkkinen & Zagros Manuchar: Käpykolon väkeä", "en": "Leena Parkkinen & Zagros Manuchar: The Residents of Cone Hollow" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59946/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59737", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3372946", "sv": "https://www.lippu.fi/eventseries/name-3372946", "en": "https://www.lippu.fi/eventseries/name-3372946" }, "description": null, "price": { "fi": "39/29/15 €", "sv": "39/29/15 €", "en": "39/29/15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4558, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:45.431731Z", "last_modified_time": "2023-09-07T14:26:45.431757Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729034.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4558/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:44.776644Z", "last_modified_time": "2023-11-14T06:13:40.220111Z", "date_published": null, "start_time": "2023-11-16T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Herkkua kitaristeille ja kitaramielisille! Bluesrock-taituri ja aikamme merkittävimpien sähkökitaristien joukkoon lukeutuva Robben Ford saapuu UMO Helsinki Jazz Orchestran solistiksi parhaaseen pikkujouluaikaan marraskuun puolivälissä. Säännöllisesti Suomessa vieraillut Ford nähdään nyt maassamme ensimmäistä kertaa big bandin keulassa." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5DC8C320D26B0540926D2ADA45D7D104/UMO_Helsinki_Jazz_Orchestra_Robben_Ford_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5DC8C320D26B0540926D2ADA45D7D104/UMO_Helsinki_Jazz_Orchestra_Robben_Ford_", "en": "http://www.savoyteatteri.fi/en/events/event/5DC8C320D26B0540926D2ADA45D7D104/UMO_Helsinki_Jazz_Orchestra_Robben_Ford_" }, "description": { "fi": "<p>Herkkua kitaristeille ja kitaramielisille! Bluesrock-taituri ja aikamme merkittävimpien sähkökitaristien joukkoon lukeutuva Robben Ford saapuu UMO Helsinki Jazz Orchestran solistiksi parhaaseen pikkujouluaikaan marraskuun puolivälissä. Säännöllisesti Suomessa vieraillut Ford nähdään nyt maassamme ensimmäistä kertaa big bandin keulassa.</p><p>UMOn taiteellinen johtaja Ed Partyka on sovittanut Fordin tuotantoa aiemmin frankfurtilaiselle hr-Big bandille ja Zurich Jazz Orchestralle. Tähän konserttiin Partyka sorvaa pari uutta sovitusta Fordin musiikista. Ilta lupaa bluesin ja jazzin maukkaita rajanylityksiä, kertoohan Ford rinnassaan olevan ”kaksi sielua; blues ja jazz”. Ohjelmisto on pääosin Fordin albumeilta A Day in Nashville ja Bringing It Back Home ja uudet sovitukset albumeilta Pure ja Purple House.</p><p>Kitaristi-laulaja Robben Ford (s. 1951, USA) on tunnettu monipuolisesta tyylistään, joka yhdistää bluesin, jazzin ja rockin. Ford on mittavalla urallaan työstänyt toistakymmentä sooloalbumia ja saanut useita Grammy-ehdokkuuksia. Lista hänen soittokavereistaan on näyttävä, sillä mies on vuosien varrella soittanut mm. Miles Davisin, George Harrisonin, Joni Mitchellin ja Kissin kanssa ja oli yksi Yellowjackets-yhtyeen alkuperäisjäsenistä. www.robbenford.com</p><p>Konsertin kesto 2 h sis. väliajan.</p><p>https://youtu.be/5udzfT4phkY<br>https://youtu.be/4tLJoYoeu1A</p>", "sv": "<p>Godbitar för gitarrister och gitarrälskare! Bluesrockvirtuosen, en av vår tids mest betydelsefulla elgitarrister Robben Ford gästar UMO Helsinki Jazz Orchestra som solist under den bästa julfestsäsongen i mitten av november. Ford som har besökt vårt land regelbundet ses denna gång för första gången som frontman för ett storband.</p><p>UMO:s konstnärliga ledare Ed Partyka har tidigare arrangerat Fords produktion för hr-Bigband från Frankfurt och för Zurich Jazz Orchestra. Till denna konsert svarvar Partyka ihop ett par nya arrangemang av Fords musik. Under kvällen utlovas läckra gränsöverskridanden mellan blues och jazz – enligt Fords egna ord har han ”två själar; blues och jazz”. Repertoaren kommer i huvudsak från Fords album A Day in Nashville och Bringing It Back Home och de nya arrangemangen kommer från albumen Pure och Purple House.</p><p>Gitarristen-sångaren Robben Ford (f. 1951, USA) är känd för sin mångsidiga stil som kombinerar blues, jazz och rock. Ford har under sin omfattande karriär bearbetat närmare tjugo soloalbum och fått flertalet Grammy-nomineringar. Listan över Fords bandpolare är imponerande – under åren har han spelat med bland annat Miles Davis, George Harrison, Joni Mitchell och Kiss. Han var också en av Yellowjackets ursprungliga medlemmar. www.robbenford.com</p><p>Konsertens längd 2 h med paus.</p>", "en": "<p>A treat for guitarists and guitar-minded alike! The blues and rock virtuoso Robben Ford – one of the most important electric guitarists of our time – joins the UMO Helsinki Jazz Orchestra as a soloist during the best pre-Christmas party season in the middle on November. Ford has regularly visited Finland, but this is his first appearance here together with a big band.</p><p>UMO’s artistic director Ed Partyka has arranged Ford’s works before for the hr-Big band in Frankfurt as well as for the Zurich Jazz Orchestra. For this concert, Partyka will make a couple of new arrangements of Ford’s music. The concert promises a tasty crossover serving of blues and jazz, as Ford describes himself as having “two souls; blues and jazz”. The concert programme is mainly from Ford’s albums A Day in Nashville and Bringing It Back Home, with the new arrangements coming from the albums Pure and Purple House.</p><p>The guitarist and singer Robben Ford (b. 1951, USA) is known for his versatile style, with influences from blues, jazz as well as rock. During his monumental career, Ford has produced more than ten solo albums and been nominated for Grammy Awards several times. He has played together with many famous musicians, among others Miles Davis, George Harrison, Joni Mitchell and Kiss. He was one of the founding members of the band Yellowjackets. www.robbenford.com</p><p>Duration 2 hours with intermission.</p><p>https://youtu.be/5udzfT4phkY<br>https://youtu.be/4tLJoYoeu1A</p>" }, "name": { "fi": "UMO Helsinki Jazz Orchestra & Robben Ford – Kapellimestarina Ed Partyka", "sv": "UMO Helsinki Jazz Orchestra & Robben Ford", "en": "UMO Helsinki Jazz Orchestra & Robben Ford" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "UMO Helsinki Jazz Orchestra", "sv": "UMO Helsinki Jazz Orchestra", "en": "UMO Helsinki Jazz Orchestra" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59737/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60618", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmijazz-malmitalo-17268570/", "sv": "https://www.lippu.fi/event/malmijazz-malmitalo-17268570/", "en": "https://www.lippu.fi/event/malmijazz-malmitalo-17268570/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4557, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:44.365996Z", "last_modified_time": "2023-09-07T14:26:44.366019Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732254.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4557/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:44.210035Z", "last_modified_time": "2023-11-14T06:13:40.122598Z", "date_published": null, "start_time": "2023-11-16T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Konsertissa kuullaan Mathias Sandbergin trion omaleimaisesti svengaavaa, groovaavaa ja sielukasta jazzia.", "sv": "Konserten består av trions kännspaka mix av ”hard swingin', groovy & soulful jazz” med starka melodier, rytmiskt lekfulla improvisationer och ett näst intill telepatiskt samspel musikerna emellan.", "en": "This concert showcases Mathias Strandberg’s unique blend of hard swingin', groovy and soulful jazz." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C22218D7AC2312F41D0495C6D524E5E1/MalmiJazz_Mathias_Sandberg_The_Captain", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C22218D7AC2312F41D0495C6D524E5E1/MalmiJazz_Mathias_Sandberg_The_Captain", "en": "http://www.malmitalo.fi/en/events/event/C22218D7AC2312F41D0495C6D524E5E1/MalmiJazz_Mathias_Sandberg_The_Captain" }, "description": { "fi": "<p>Konsertissa kuullaan Mathias Sandbergin trion omaleimaisesti svengaavaa, groovaavaa ja sielukasta jazzia.</p><p>Luvassa on vahvoja melodioita, rytmisesti leikkisää improvisaatiota ja lähes telepaattista yhteissoittoa.</p><p>Jazzkitaristi ja säveltäjä <b>Mathias Sandberg</b>, jota amerikkalaisessa musiikkilehdessä <i>Jazziz Magazine</i> on kutsuttu \"yhdeksi Suomen parhaiten varjelluista salaisuuksista\", kuuluu maamme aktiivisimpiin jazzmuusikoihin.</p><p>Hän on opiskellut New Yorkin Manhattan School of Musicissa ja Bostonin Berklee College of Musicissa, ja työskennellyt mm. Georg Riedelin, Pierre Swärdin, Peter Asplundin, Nick Mancinin, Jukka Eskolan, Teppo Mäkysen ja Manuel Dunkelin kanssa.</p><p>Sandberg tekee vuosittain satakunta jazzkonserttia ja on kiertänyt sekä Euroopassa että Yhdysvalloissa.</p><p>Sandbergin debyyttisoololevy <i>The Doctor</i> (2020) on saanut ylistäviä arvosteluja molemmilla puolilla Atlantia ja sitä on soitettu ahkerasti jazzradiokanavilla Euroopassa, Yhdysvalloissa, Etelä-Amerikassa, Aasiassa ja Australiassa.</p><p>Sandbergin pitkään odotettu uusi triolevy <i>The Captain</i> julkaistiin maaliskuussa 2023, ja yhtye lähtee nyt 40-konsertin levynjulkaisukiertueelle Helsingistä Rovaniemelle.</p><p>Mathias Sandberg, kitara<br>Zacharias Holmkvist, kontrabasso<br>Stefan Brokvist, rummut</p>", "sv": "<p>Konserten består av trions kännspaka mix av ”hard swingin', groovy & soulful jazz” med starka melodier, rytmiskt lekfulla improvisationer och ett näst intill telepatiskt samspel musikerna emellan.</p><p>Jazzgitarristen och kompositören <b>Mathias Sandberg</b>, som av den amerikanska musiktidningen <i>Jazziz Magazine</i> har kallats “en av Finlands bäst bevarade hemligheter”, är idag en av landets mest aktiva jazzmusiker.</p><p>Han har studerat på Manhattan School of Music i New York och Berklee College of Music i Boston, och jobbat med artister som Georg Riedel, Pierre Swärd, Peter Asplund, Nick Mancini, Jukka Eskola, Teppo Mäkynen och Manuel Dunkel. Sandberg ger årligen ett hundratal jazzkonserter och har turnérat i både Europa och USA.</p><p>Mathias Sandbergs solo-debutalbum <i>The Doctor</i> (2020) har hyllats av en enig kritikerkår på bägge sidor om Atlanten och spelats flitigt på jazzradiostationerna i Europa, USA, Sydamerika, Asien och Australien.</p><p>Sandbergs efterlängtade nya trioskiva <i>The Captain</i> släpptes i mars 2023, och bandet gör nu en 40-konserters skivreleaseturné från Rovaniemi i norr till Helsingfors i söder.</p><p>Mathias Sandberg, gitarr<br>Zacharias Holmkvist, kontrabas<br>Stefan Brokvist, trummor</p>", "en": "<p>This concert showcases Mathias Strandberg’s unique blend of hard swingin', groovy and soulful jazz.</p><p>Called \"one of Finland's best kept secrets\" by <i>Jazziz Magazine</i>, the highly acclaimed guitarist and composer <b>Mathias Sandberg</b> is one of the hardest working jazz musicians in the country.</p><p>He has studied at Manhattan School of Music in New York and Berklee College of Music in Boston and worked with artists such as Georg Riedel, Pierre Swärd, Peter Asplund, Nick Mancini, Jukka Eskola, Teppo Mäkynen and Manuel Dunkel. Sandberg plays a hundred or so concerts a year and has toured both Europe and the United States.</p><p>Mathias Sandberg's debut solo album <i>The Doctor</i> (2020) has received both huge critical review and airplay on jazz radio stations in Europe, United States, South America, Asia and Australia.</p><p>Sandberg's highly anticipated new trio album <i>The Captain</i> was released in March 2023, followed by a 40-date nationwide tour. The album showcases strong melodic writing, rhythmically playful improvisation and a delightful, almost telepathic interplay between the members of the three musicians.</p><p>Mathias Sandberg, guitar<br>Zacharias Holmkvist, bass<br>Stefan Brokvist, drums</p>" }, "name": { "fi": "MalmiJazz: Mathias Sandberg – The Captain", "sv": "MalmiJazz: Mathias Sandberg – The Captain", "en": "MalmiJazz: Mathias Sandberg – The Captain" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60618/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61054", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/jiri-nikkinen-the-beatles-tribute-band/jiri-nikkinen-the-beatles-tribute-band-3477797", "sv": "https://www.lippu.fi/artist/jiri-nikkinen-the-beatles-tribute-band/jiri-nikkinen-the-beatles-tribute-band-3477797", "en": "https://www.lippu.fi/artist/jiri-nikkinen-the-beatles-tribute-band/jiri-nikkinen-the-beatles-tribute-band-3477797" }, "description": null, "price": { "fi": "24 €", "sv": "24 €", "en": "24 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5224, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:08.695337Z", "last_modified_time": "2023-10-09T13:32:08.695355Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734797.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5224/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:32:08.557518Z", "last_modified_time": "2023-11-14T06:13:40.028123Z", "date_published": null, "start_time": "2023-11-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jiri bändeineen ottaa varaslähdön vuonna 1964 julkaistuille kahdelle Beatles-albumille, jotka täyttävät 2024 peräti 60 vuotta.", "sv": "Jiri och bandet tar en tjuvstart till två Beatlesalbum från 1964, som 2024 fyller redan 60 år.", "en": "Jiri and his ensemble will make an early start to celebrate the two Beatles albums released in 1964, which will be 60 years old in 2024." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B96FD02572D78FFF78980573312AC0BA/Jiri_Nikkinen_the_Beatles_Tribute_Band_-_A_Hard_Day_s_Night_Beatles_For_Sale_-_albumikonsertti", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B96FD02572D78FFF78980573312AC0BA/Jiri_Nikkinen_The_Beatles_Tribute_Band_Albumkonserten_A_Hard_Day_s_Night_Beatles_For_Sale", "en": "http://www.vuotalo.fi/en/events/event/B96FD02572D78FFF78980573312AC0BA/Jiri_Nikkinen_The_Beatles_Tribute_Band_A_Hard_Day_s_Night_Beatles_For_Sale_album_concert" }, "description": { "fi": "<p>Jiri bändeineen ottaa varaslähdön vuonna 1964 julkaistuille kahdelle Beatles-albumille, jotka täyttävät 2024 peräti 60 vuotta.</p><p>Levyt julkaistiin Beatlemanian kuumimpaan aikaan ja <i>A Hard Day’s Night</i> oli ensimmäinen albumi, joka sisälsi pelkästään yhtyeen omaa tuotantoa. Kaikki biisit <b>Lennon /McCartney</b>.</p><p>Tutuun tapaan <b>Jiri</b> ja kumppanit esittävät kappaleet niiden oikeassa albumijärjestyksessä, oikeista sävellajeista ja oikein sovituksin, pieteetillä ja rakkaudesta Beatlesiin.</p><p>The Beatlesia et enää voi kokea, mutta tämän voit. Lähde aikamatkalle vuoteen 1964 maailman merkittävimmän pop-yhtyeen musiikin saattelemana!</p>", "sv": "<p>Jiri och bandet tar en tjuvstart till två Beatlesalbum från 1964, som 2024 fyller redan 60 år.</p><p>På bekant vis framför Jiri och bandet låtarna i den rätta albumordningen, i rätt tonart och med rätt arrangemang, pietetsfullt och av kärlek till The Beatles.</p><p>The Beatles kan du inte längre uppleva, men detta kan du. Gör en tidsresa till år 1964 till tonerna av världens största popgrupp!</p>", "en": "<p>Jiri and his ensemble will make an early start to celebrate the two Beatles albums released in 1964, which will be 60 years old in 2024.</p><p>As usual, the musicians perform the songs in the proper album order, in the right key and with the right arrangements, with care and love for the Beatles.</p><p>You can no longer experience The Beatles, but you can experience this. Take a journey back in time to 1964, accompanied by the music of the world’s greatest pop group!</p>" }, "name": { "fi": "Jiri Nikkinen the Beatles Tribute Band - A Hard Day's Night / Beatles For Sale - albumikonsertti", "sv": "Jiri Nikkinen The Beatles Tribute Band: Albumkonserten A Hard Day’s Night & Beatles For Sale", "en": "Jiri Nikkinen The Beatles Tribute Band: A Hard Day’s Night & Beatles For Sale album concert" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61054/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60114", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4556, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:43.991009Z", "last_modified_time": "2023-09-07T14:26:43.991040Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733049.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4556/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:43.840828Z", "last_modified_time": "2023-11-14T06:13:39.953093Z", "date_published": null, "start_time": "2023-11-16T09:45: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, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C2DD295388BF340384D6EAE185B87CAE/Opi_suomea_laulaen_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60114/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60475", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "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:u4804001050", "sub_events": [], "images": [ { "id": 4555, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:43.601143Z", "last_modified_time": "2023-09-07T14:26:43.601165Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4555/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:43.361973Z", "last_modified_time": "2023-11-14T06:13:39.873805Z", "date_published": null, "start_time": "2023-11-16T08:00:00Z", "end_time": "2023-11-16T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/E930D58859986EDCD369BE65B175817D/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/E930D58859986EDCD369BE65B175817D/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/E930D58859986EDCD369BE65B175817D/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60113", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4554, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:42.030749Z", "last_modified_time": "2023-09-07T14:26:42.030782Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4554/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:40.963907Z", "last_modified_time": "2023-11-14T06:13:39.797022Z", "date_published": null, "start_time": "2023-11-16T08: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, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0759879CC0D2C4D2208B91FF86CC3B4/Opi_suomea_laulaen_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60113/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61158", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5517, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-18T09:27:12.824504Z", "last_modified_time": "2023-10-18T09:27:12.824527Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738096.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5517/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-18T09:27:12.659504Z", "last_modified_time": "2023-11-14T06:13:39.724480Z", "date_published": null, "start_time": "2023-11-15T16: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, "short_description": { "fi": "Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE23CBF87DB57537FF63F2AB8038249C/Mummola_7_" }, "description": { "fi": "<p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona.</p><p>Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista, lapset ovat kyllästyneitä ja sisarukset lankeavat vanhoihin riitoihinsa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen. Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Kesto 115 min<br>Ikäraja 7<br>Ensi-ilta 10.11.2023<br>Tekstitetty suomeksi</p>" }, "name": { "fi": "Mummola (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }