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&is_free=true&page=716
{ "meta": { "count": 31552, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=717", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=715" }, "data": [ { "id": "kulke:64324", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151989, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T15:13:57.254434Z", "last_modified_time": "2024-07-30T15:13:57.254449Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751749.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151989/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-30T15:13:57.236919Z", "last_modified_time": "2024-08-29T05:13:33.323008Z", "date_published": null, "start_time": "2024-10-14T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5606E24C61B0ADC12C1B3347FAC349E4/Satukino_Dumbo_Live_Action_7_", "sv": "http://www.annantalo.fi/sv/evenemang/event/5606E24C61B0ADC12C1B3347FAC349E4/Satukino_Dumbo_Live_Action_7_", "en": "http://www.annantalo.fi/en/events/event/5606E24C61B0ADC12C1B3347FAC349E4/Satukino_Dumbo_Live_Action_7_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko käynnistetään Disneyn live-action seikkailulla DUMBO (2019)!</p><p>Mielikuvituksen mestari Tim Burton tuo valkokankaille uuden Dumbon. Elokuva laajentaa rakastetun klassikkoelokuvan tarinaa juhlistaen erilaisuutta, vaalien perhettä ja antaen unelmille siivet. <br>Sirkuksen omistaja Max Medici antaa entiselle tähdelle Holt Ferrierille ja hänen lapsilleen, Millylle ja Joelle, tehtäväksi hoitaa vastasyntynyttä elefanttia, jonka valtavat korvat saavat sen kuitenkin pilkan kohteeksi. Sirkus kärsii taloushuolista, mutta kun selviää, että Dumbo osaa lentää, tekee sirkus häikäisevän paluun.</p><p>Juhlasalin aamupäivän elokuvanäytöksissä hahmot puhuvat suomea. Tekstitys englanniksi.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 112min<br>Ikäsuositus 7+</p>", "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan inleds med Disneys live-action-äventyr DUMBO (2019).</p><p>Fantasins mästare Tim Burton hämtar en ny version av Dumbo till den vita duken. Filmen bygger på den älskade filmklassikerns berättelse, som hyllar mångfald, värnar om familjen och ger drömmarna vingar. <br>Cirkusägaren Max Medici ger den tidigare stjärnan Holt Ferrier och hans barn Milly och Joe i uppdrag att ta hand om en nyfödd elefant, vars enorma öron gör den till föremål för åtlöje. Cirkusen kämpar med ekonomin, men när man upptäcker att Dumbo kan flyga gör cirkusen en fantastisk comeback.</p><p>På förmiddagens filmvisningar i festsalen talar rollfigurerna finska. Textning på engelska.</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 112 min.<br>Åldersrekommendation: 7+<br>Språk: Finska, engelska</p>", "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. The week begins with Disney's live-action adventure DUMBO (2019).</p><p>The master of imagination, Tim Burton, has re-imagined Dumbo for the big screen. The film expands on the story of the beloved classic film, celebrating diversity, nurturing family and giving dreams wings. <br>Circus ringleader Max Medici entrusts former star Holt Ferrier and his children, Milly and Joe, with the task of caring for a newborn elephant whose huge ears, however, make it a laughing stock. The circus suffers financially, but when it turns out that Dumbo can fly, the circus makes a dazzling return.</p><p>In the ballroom’s morning screenings, the characters will speak Finnish. English subtitles.</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 112min<br>Age recommendation: +7<br>Language: Finnish, English</p>" }, "name": { "fi": "Satukino | Dumbo (Live Action) (7) – Satumainen syysloma", "sv": "Satukino | Dumbo (Live Action) (7) – Ett sagolikt höstlov", "en": "Satukino | Dumbo (Live Action) (7) – Fabulous autumn holiday" }, "short_description": { "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko käynnistetään Disneyn live-action seikkailulla DUMBO (2019)!", "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan inleds med Disneys live-action-äventyr DUMBO (2019).", "en": "During the autumn holiday, Satukino will feature fairytale-themed films. The week begins with Disney's live-action adventure DUMBO (2019)." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64324/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63425", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:41.134978Z", "last_modified_time": "2024-06-27T14:13:41.134990Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749881.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:41.102446Z", "last_modified_time": "2024-08-29T05:13:33.117653Z", "date_published": null, "start_time": "2024-10-14T06:00:00Z", "end_time": "2024-10-14T06:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5A46A6313D52DDD3AA20AE864A4144E/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/B5A46A6313D52DDD3AA20AE864A4144E/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/B5A46A6313D52DDD3AA20AE864A4144E/Musical_Art_Adventure" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63425/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63556", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152084, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T15:13:28.559094Z", "last_modified_time": "2024-08-12T15:13:28.559106Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751312.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152084/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-08-12T15:13:28.548161Z", "last_modified_time": "2024-08-29T05:13:32.927148Z", "date_published": null, "start_time": "2024-10-13T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/011B687685E200A5DFF8F4735C428DBD/Paistikka-duo", "sv": "http://www.annantalo.fi/sv/evenemang/event/011B687685E200A5DFF8F4735C428DBD/Paistikka_duo", "en": "http://www.annantalo.fi/en/events/event/011B687685E200A5DFF8F4735C428DBD/Paistikka_duo" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.</p><p>On aika tanssia robottidiskossa tai ryhtyä vaikka hirviöhippaan! Musiikin ja tarinoiden täyttämässä show’ssa tarvitaan välillä myös yleisön apua.</p><p>Tuukka Martiskainen – laulu, ukulele, samplet<br>Elina Vehkaoja – laulu, koskettimet</p><p>Kesto: 30 min<br>Ikäsuositus: 1+ ja koko perhe<br>Kieli: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.</p><p>Det är dags att dansa på robotdisco eller leka monstertafatt! I showen som är fylld av musik och berättelser behövs ibland även publikens hjälp.</p><p>Tuukka Martiskainen – sång, ukulele, samplingar<br>Elina Vehkaoja – sång, keyboard</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+ och hela familjen<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination.</p><p>Dance in the robot disco or play tag with monsters! In a show filled with music and stories, you sometimes need the help of the audience.</p><p>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards</p><p>Duration: 30 mins.<br>Age recommendation: 1+ and the whole family<br>Language: Finnish</p><p>Free of charge</p>" }, "name": { "fi": "Päistikka-duo – Satumainen syysloma", "sv": "Päistikka duo – Ett sagolikt höstlov", "en": "Päistikka duo – Fabulous autumn holiday" }, "short_description": { "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.", "sv": "I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.", "en": "The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63556/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63555", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152083, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T15:13:28.483061Z", "last_modified_time": "2024-08-12T15:13:28.483075Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751311.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152083/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-08-12T15:13:28.470262Z", "last_modified_time": "2024-08-29T05:13:32.871340Z", "date_published": null, "start_time": "2024-10-13T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka-duo", "sv": "http://www.annantalo.fi/sv/evenemang/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka_duo", "en": "http://www.annantalo.fi/en/events/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka_duo" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.</p><p>On aika tanssia robottidiskossa tai ryhtyä vaikka hirviöhippaan! Musiikin ja tarinoiden täyttämässä show’ssa tarvitaan välillä myös yleisön apua.</p><p>Tuukka Martiskainen – laulu, ukulele, samplet<br>Elina Vehkaoja – laulu, koskettimet</p><p>Kesto: 30 min<br>Ikäsuositus: 1+ ja koko perhe<br>Kieli: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.</p><p>Det är dags att dansa på robotdisco eller leka monstertafatt! I showen som är fylld av musik och berättelser behövs ibland även publikens hjälp.</p><p>Tuukka Martiskainen – sång, ukulele, samplingar<br>Elina Vehkaoja – sång, keyboard</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+ och hela familjen<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination.</p><p>Dance in the robot disco or play tag with monsters! In a show filled with music and stories, you sometimes need the help of the audience.</p><p>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards</p><p>Duration: 30 mins.<br>Age recommendation: 1+ and the whole family<br>Language: Finnish</p><p>Free of charge</p>" }, "name": { "fi": "Päistikka-duo – Satumainen syysloma", "sv": "Päistikka duo – Ett sagolikt höstlov", "en": "Päistikka duo – Fabulous autumn holiday" }, "short_description": { "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.", "sv": "I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.", "en": "The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64378", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152081, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-12T15:13:28.119573Z", "last_modified_time": "2024-08-12T15:13:28.119587Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751392.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152081/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-08-12T15:13:28.090833Z", "last_modified_time": "2024-08-29T05:13:32.531457Z", "date_published": null, "start_time": "2024-10-12T08:00:00Z", "end_time": "2024-10-12T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/200EB00B7417EBAD3BC472492447307C/Annantalon_taidelauantai_Lasten_kirja", "sv": "http://www.annantalo.fi/sv/evenemang/event/200EB00B7417EBAD3BC472492447307C/Annegardens_konstlordag_Barnets_bok", "en": "http://www.annantalo.fi/en/events/event/200EB00B7417EBAD3BC472492447307C/Annantalo_Art_Saturday_Children_s_Books" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Satumainen syysloma alkaa taidelauantaina 12.10. yhteisellä Lasten kirja -perhepajalla.</p><p>Tule tekemään Lasten kirjaa ja tutustumaan tulevan viikon työpajoihin <b>Minttu-Maaria Makkosen</b> ja <b>Milena Rinteen</b> johdolla. Vapaa pääsy!</p><p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.<br>Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen rauhallinen tila.</p><p>Tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Det sagolika höstlovet inleds 12.10. med den gemensamma familjeworkshoppen Barnets bok.</p><p>Kom och gör en barnbok och ta del av den kommande veckans workshoppar som leds av <b>Minttu-Maaria Makkonen</b> och <b>Milena Rinne</b>. Fritt inträde!</p><p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri.<br>Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>The fabulous autumn holiday begins on Art Saturday, 12 October, with a shared children's book family workshop.</p><p>Come and help create a Children's Book and explore the workshops of the coming week with Minttu-Maaria Makkonen and Milena Rinne. Admission is free!</p><p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer. The content of the workshops varies and will be announced on the Annantalo website.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.<br>The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children. In addition, there is a separate calm space.</p><p>A warm welcome to Annantalo on Saturday!</p>" }, "name": { "fi": "Annantalon taidelauantai: Lasten kirja – Satumainen syysloma", "sv": "Annegårdens konstlördag: Barnets bok – Ett sagolikt höstlov", "en": "Annantalo Art Saturday: Children's Books – Fabulous autumn holiday" }, "short_description": { "fi": "Satumainen syysloma alkaa taidelauantaina 12.10. yhteisellä Lasten kirja -perhepajalla.", "sv": "Det sagolika höstlovet inleds 12.10. med den gemensamma familjeworkshoppen Barnets bok.", "en": "The fabulous autumn holiday begins on Art Saturday, 12 October, with a shared children's book family workshop." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64378/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64195", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151703, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:33.592337Z", "last_modified_time": "2024-07-12T13:13:33.592352Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751726.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151703/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:33.574831Z", "last_modified_time": "2024-08-29T05:13:31.912068Z", "date_published": null, "start_time": "2024-10-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9E8D2FE933E47D34A2078AEAE30CDA77/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/9E8D2FE933E47D34A2078AEAE30CDA77/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/9E8D2FE933E47D34A2078AEAE30CDA77/Stoa_Choir_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64195/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64306", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151940, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T12:15:22.713500Z", "last_modified_time": "2024-07-29T12:15:22.713519Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753049.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151940/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T12:15:22.677829Z", "last_modified_time": "2024-08-29T05:13:31.829475Z", "date_published": null, "start_time": "2024-10-09T12:00:00Z", "end_time": "2024-10-09T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/2AFE83A2A42021B6E4D11AAD1E9D2E8A/HOW_radio_Global_Club_Nights_", "sv": "http://www.caisa.fi/sv/evenemang/event/2AFE83A2A42021B6E4D11AAD1E9D2E8A/HOW_radio_Global_Club_Nights_", "en": "http://www.caisa.fi/en/events/event/2AFE83A2A42021B6E4D11AAD1E9D2E8A/HOW_radio_Global_Club_Nights_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Laura Pyrrö on suomalaisen kulttuurikentän monitoiminainen: ooppera- ja konserttilaulaja, kulttuurituottaja, opettaja, luennoitsija, oopperan kääntäjä ja kulttuuritoimittaja. Hän on vastannut Espan lavan tuotannosta jo kahden kauden ajan.</p><p>Nyt saamme kuulla, mikä tekee hankkeesta houkuttelevan tuottajan näkökulmasta. Kuulemme myös siitä, miten musiikin ammattilaiset luovivat tehtävästä toiseen nyky-yhteiskunnassa, jossa heidän on osattava omaksua erilaisia rooleja.</p><p>Laura Pyrrö suoritti maisterintutkintonsa Sibelius-Akatemian oopperaluokalla erinomaisin arvosanoin. Vuonna 2002 Laura voitti tunnustetun Timo Mustakallio -laulukilpailun ja on laulanut solistina muun muassa Suomen kansallisoopperassa ja Savonlinnan Oopperajuhlilla.</p><p>Suomen lisäksi Pyrrö on esiintynyt laajalti Euroopassa sekä Yhdysvalloissa, Intiassa ja Thaimaassa. Hän on työskennellyt useissa taiteilijaresidensseissä, kuten Villa Lantessa Roomassa ja Villa Karossa Beninissä Länsi-Afrikassa. Työskenneltyään freelance-taiteilijana ja -tuottajana yli 20 vuoden ajan Laura otti vastaan paikan Helsingin ydinkeskustassa sijaitsevan maineikkaan Espan lavan kulttuurituottajana. Hän aloitti Espan lavan kulttuurituottajana vuonna 2023, ja työ on jatkunut koko kauden 2024 ajan. Espan lavalla hänen työhönsä kuuluu noin 300 tapahtuman suunnittelu, valinta ja aikataulutus kauden aikana. Tapahtumiin kuuluu kaikkea eri musiikkilajeista tanssiin, sirkukseen, paneelikeskusteluihin ja lastenohjelmaan.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "sv": "<p>Laura Pyrrö är en finsk mångsysslare inom kultur: opera- och konsertsångare, kulturproducent, lärare, föreläsare, operaöversättare och kulturjournalist. Laura har arbetat med produktionen av Esplanadestraden redan i två säsonger.</p><p>Vi får höra om vad som gör ett projekt attraktivt för en producent, men också om hur professionella musiker navigerar alla olika egenskaper de som professionella musiker behöver ha i dagens samhälle.</p><p>Laura Pyrrö avlade sin masterexamen vid Sibelius-Akademins operautbildning med betyget utmärkt i alla sångprov. 2002 vann Laura den prestigefyllda sångtävlingen Timo Mustikallio. Hon har varit solist på Finlands nationalopera och Savonlinna Opera Festival samt på många andra evenemang.</p><p>Förutom i Finland har Pyrrö uppträtt över hela Europa och i USA, Indien och Thailand. Hon har arbetat på många konstnärsresidenser som Villa Lante i Rom och Villa Karo i Benin, Västafrika. Efter att ha arbetat som frilansartist och producent i över 20 år blev Laura anställd som kulturproducent för den berömda scenen Esplanadestraden i hjärtat av Helsingfors. Hon inledde sitt arbete med Esplanadestraden 2023 och fortsatte under säsongen 2024. Hennes arbete på Esplanadestraden omfattar att planera, välja ut och boka cirka 300 evenemang per säsong: allt från olika musikgenrer till dans, cirkus, paneldiskussioner och barnprogram.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "en": "<p>Laura Pyrrö, is a Finnish cultural field multi-tasker: opera and concert singer, cultural producer, teacher, lecturer, opera translator and cultural journalist.</p><p>Hailing from the production of Espan lava for already two seasons, we get to hear what makes a project attractive to a producer but also how music professionals navigate through the different characters that they need to have in today’s society as music professionals.</p><p>Laura Pyrrö finished her Master's degree at the Sibelius Academy opera class with all of her singing examinations rated excellent. Year 2002 Laura won the acknowledged Timo Mustakallio Singing Competition and has sung as a soloist at the Finnish National Opera and Savonlinna Opera Festival, among numerous other venues.</p><p>Besides Finland, Pyrrö has performed widely accross Europe plus the United States, India and Thailand. She has worked in many artist residencies, like Villa Lante in Rome and Villa Karo in Benin, West Africa. After working as a freelance artist and producer for more than 20 years Laura accepted a hiring as the cultural producer of the renowned Espa Stage in the heart of Helsinki. Her first commitment at Espa took place in 2023, and she continued her work throughout the season 2024. At the Espa Stage her work includes planning, selecting and scheduling approximately 300 events per season: everything from various music genres to dance, circus, panel discussions and children’s program.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>" }, "name": { "fi": "HOW radio: Global Club Nights – Laura Pyrrö", "sv": "HOW radio: Global Club Nights – Laura Pyrrö", "en": "HOW radio: Global Club Nights – Laura Pyrrö" }, "short_description": { "fi": "Laura Pyrrö on suomalaisen kulttuurikentän monitoiminainen: ooppera- ja konserttilaulaja, kulttuurituottaja, opettaja, luennoitsija, oopperan kääntäjä ja kulttuuritoimittaja. Hän on vastannut Espan lavan tuotannosta jo kahden kauden ajan.", "sv": "Laura Pyrrö är en finsk mångsysslare inom kultur: opera- och konsertsångare, kulturproducent, lärare, föreläsare, operaöversättare och kulturjournalist. Laura har arbetat med produktionen av Esplanadestraden redan i två säsonger.", "en": "Laura Pyrrö, is a Finnish cultural field multi-tasker: opera and concert singer, cultural producer, teacher, lecturer, opera translator and cultural journalist." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64306/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63768", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-13T10:13:04.191875Z", "last_modified_time": "2024-06-13T10:13:04.191896Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752506.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-13T10:13:04.175245Z", "last_modified_time": "2024-08-29T05:13:31.504146Z", "date_published": null, "start_time": "2024-10-08T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/50C2D1D6EE7B58E1FA27513D53BAAA92/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/50C2D1D6EE7B58E1FA27513D53BAAA92/Yhteislaulut", "en": "http://www.malmitalo.fi/en/events/event/50C2D1D6EE7B58E1FA27513D53BAAA92/Yhteislaulut" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>", "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>", "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>" }, "name": { "fi": "Yhteislaulut", "sv": "Yhteislaulut", "en": "Yhteislaulut" }, "short_description": { "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!", "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!", "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63768/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64217", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151780, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T13:13:09.612160Z", "last_modified_time": "2024-07-22T13:13:09.612174Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755958.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151780/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T13:13:09.590784Z", "last_modified_time": "2024-08-29T05:13:31.453966Z", "date_published": null, "start_time": "2024-10-08T11:00:00Z", "end_time": "2024-10-08T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/33A26B43E31B6E9868F84379FBDA8808/Paivatanssit_", "sv": "http://www.stoa.fi/sv/evenemang/event/33A26B43E31B6E9868F84379FBDA8808/Paivatanssit_", "en": "http://www.stoa.fi/en/events/event/33A26B43E31B6E9868F84379FBDA8808/Paivatanssit" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!<br>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.<br>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde.</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.<br>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "name": { "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Päivätanssit – med Jussi Väänänen och Katja Koukkula", "en": "Päivätanssit – with Jussi Väänänen and Katja Koukkula" }, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64217/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63528", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151988, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T15:13:56.337580Z", "last_modified_time": "2024-07-30T15:13:56.337592Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751215.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151988/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-30T15:13:56.323771Z", "last_modified_time": "2024-08-29T05:13:31.220191Z", "date_published": null, "start_time": "2024-10-07T07:45:00Z", "end_time": "2024-10-07T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D0C05DC835B29DA22EAE67DE6B74E29E/Fillariteatteri_Keralla_Ilmoittautuminen_kultus_fi", "sv": "http://www.annantalo.fi/sv/evenemang/event/D0C05DC835B29DA22EAE67DE6B74E29E/Fillariteatteri_Keralla_I_ett_nystan_Forestallningarna_pa_kultus_fi_", "en": "http://www.annantalo.fi/en/events/event/D0C05DC835B29DA22EAE67DE6B74E29E/Fillariteatteri_Keralla_On_a_roll_Reservations_at_kultus_fi" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan ja seuraa punaista, keltaista, sinistä lankaa…</p><p>Kerällä on rytmillinen, värikäs sukellus ystävyyteen leikin ja käsityön parantavaan voimaan. Erityisesti perheen pienimmille sopiva, sanaton esitys käärii katsojat väreihin ja villalankaan.</p><p>Kerällä yhdistelee klovneriaa ja nukketeatteria. Esitys tarkastele elämää pienten arkiaskareiden näkökulmasta ja innostaa pohtimaan onnea, rakkautta ja ihmisyyttä.</p><p>Fillariteatteri on ekologinen teatteri, joka kulkee polkupyörällä yleisönsä luokse. Kerällä-esitykselle myönnettiin Pikku-ITU palkinto syyskuussa 2023.</p><p>Kesto: 30 min<br>Ikäsuositus: 1+, sopii kaiken ikäisille<br>Kieli: sanaton<br>Maksuton</p><p>7.10. esityksiin paikkavaraukset päiväkotiryhmille: kultus.fi maanantaista 2.9. alkaen.<br>11.10. esityksiin paikkavaraukset kultus.fi sekä yksittäisille katsojille annantalo.fi.</p><p>Ohjaus: Perrine Ferrafiat<br>Konsepti: Mila Nirhamo<br>Näyttämöllä: Maria-Elina Koivula ja Mila Nirhamo<br>Nuket ja visuaalit: Laura Hallantie, Mila Nirhamo, Johanna Niiranen<br>Äänisuunnittelu: Markus Tapio<br>Tuotanto: Fillariteatteri, TeatteriQ</p>", "sv": "<p>Kom med och följ det röda, gula, blå garnet...</p><p>Kerällä är en rytmisk, färggrann djupdykning i vänskapens och handarbetets helande kraft. Denna ordlösa föreställning lämpar sig särskilt väl för de yngsta familjemedlemmarna och sveper in åskådarna i färg och garn.</p><p>Kerällä kombinerar clowneri och dockteater. Föreställningen betraktar livet ur de små vardagliga sysslornas perspektiv och inspirerar till reflektion kring lycka, kärlek och mänsklighet.</p><p>Fillariteatteri är en ekologisk teater som tar sig till sin publik på cykel. Kerällä-föreställningen tilldelades Pikku ITU-priset i september 2023.</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+, lämplig för alla åldrar<br>Inget språk<br>Fritt inträde</p><p>Reservera platser för daghemsgrupper till föreställningarna 7.10. på kultus.fi från och med måndag 2.9.<br>Reservera platser till föreställningarna 11.10. på kultus.fi och för enskilda åskådare på annantalo.fi.</p><p>Regi: Perrine Ferrafiat<br>Koncept: Mila Nirhamo<br>På scenen: Maria-Elina Koivula och Mila Nirhamo<br>Dockor och visuella element: Laura Hallantie, Mila Nirhamo, Johanna Niiranen<br>Ljuddesign: Markus Tapio<br>Produktion: Fillariteatteri, TeatteriQ</p>", "en": "<p>Come along and follow the red, yellow, blue thread…</p><p>On a roll is a rhythmic, colourful dive into the healing power of friendship through play and craftsmanship. A non-verbal performance especially suitable for the little ones will wrap the viewers in colours and wool yarn.</p><p>On a roll combines clownery and puppet theatre. The performance looks at life from the perspective of small everyday tasks and inspires reflection on happiness, love and humanity.</p><p>Fillariteatteri is an ecological theatre that travels to its audiences by bicycle. On the roll was awarded the Little ITU prize in September 2023.</p><p>Duration: 30 mins.<br>Age recommendation: 1+, suitable for all ages<br>Language: non-verbal<br>Free of charge</p><p>Reservations for the 7 October performances for kindergarten groups: kultus.fi from Monday, 2 September onwards.<br>Reservations for the 11 October performances at kultus.fi and for private viewers annantalo.fi.</p><p>Director: Perrine Ferrafiat<br>Concept: Mila Nirhamo<br>On stage: Maria-Elina Koivula and Mila Nirhamo<br>Dolls and visuals: Laura Hallantie, Mila Nirhamo, Johanna Niiranen<br>Sound design: Markus Tapio<br>Production: Fillariteatteri, TeatteriQ</p>" }, "name": { "fi": "Fillariteatteri: Kerällä | Ilmoittautuminen kultus.fi", "sv": "Fillariteatteri: Kerällä, I ett nystan | Föreställningarna på kultus.fi", "en": "Fillariteatteri: Kerällä, On a roll | Reservations at kultus.fi" }, "short_description": { "fi": "Tule mukaan ja seuraa punaista, keltaista, sinistä lankaa…", "sv": "Kom med och följ det röda, gula, blå garnet...", "en": "Come along and follow the red, yellow, blue thread…" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63528/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64323", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151987, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T15:13:56.240149Z", "last_modified_time": "2024-07-30T15:13:56.240163Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751214.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151987/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-30T15:13:56.223443Z", "last_modified_time": "2024-08-29T05:13:31.161748Z", "date_published": null, "start_time": "2024-10-07T06:30:00Z", "end_time": "2024-10-07T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B76964A1E7A804FA45E2F9DBD3DD89EC/Fillariteatteri_Keralla_Ilmoittautuminen_kultus_fi", "sv": "http://www.annantalo.fi/sv/evenemang/event/B76964A1E7A804FA45E2F9DBD3DD89EC/Fillariteatteri_Keralla_I_ett_nystan_Forestallningarna_pa_kultus_fi_", "en": "http://www.annantalo.fi/en/events/event/B76964A1E7A804FA45E2F9DBD3DD89EC/Fillariteatteri_Keralla_On_a_roll_Reservations_at_kultus_fi" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan ja seuraa punaista, keltaista, sinistä lankaa…</p><p>Kerällä on rytmillinen, värikäs sukellus ystävyyteen leikin ja käsityön parantavaan voimaan. Erityisesti perheen pienimmille sopiva, sanaton esitys käärii katsojat väreihin ja villalankaan.</p><p>Kerällä yhdistelee klovneriaa ja nukketeatteria. Esitys tarkastele elämää pienten arkiaskareiden näkökulmasta ja innostaa pohtimaan onnea, rakkautta ja ihmisyyttä.</p><p>Fillariteatteri on ekologinen teatteri, joka kulkee polkupyörällä yleisönsä luokse. Kerällä-esitykselle myönnettiin Pikku-ITU palkinto syyskuussa 2023.</p><p>Kesto: 30 min<br>Ikäsuositus: 1+, sopii kaiken ikäisille<br>Kieli: sanaton<br>Maksuton</p><p>7.10. esityksiin paikkavaraukset päiväkotiryhmille: kultus.fi maanantaista 2.9. alkaen.<br>11.10. esityksiin paikkavaraukset kultus.fi sekä yksittäisille katsojille annantalo.fi.</p><p>Ohjaus: Perrine Ferrafiat<br>Konsepti: Mila Nirhamo<br>Näyttämöllä: Maria-Elina Koivula ja Mila Nirhamo<br>Nuket ja visuaalit: Laura Hallantie, Mila Nirhamo, Johanna Niiranen<br>Äänisuunnittelu: Markus Tapio<br>Tuotanto: Fillariteatteri, TeatteriQ</p>", "sv": "<p>Kom med och följ det röda, gula, blå garnet...</p><p>Kerällä är en rytmisk, färggrann djupdykning i vänskapens och handarbetets helande kraft. Denna ordlösa föreställning lämpar sig särskilt väl för de yngsta familjemedlemmarna och sveper in åskådarna i färg och garn.</p><p>Kerällä kombinerar clowneri och dockteater. Föreställningen betraktar livet ur de små vardagliga sysslornas perspektiv och inspirerar till reflektion kring lycka, kärlek och mänsklighet.</p><p>Fillariteatteri är en ekologisk teater som tar sig till sin publik på cykel. Kerällä-föreställningen tilldelades Pikku ITU-priset i september 2023.</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+, lämplig för alla åldrar<br>Inget språk<br>Fritt inträde</p><p>Reservera platser för daghemsgrupper till föreställningarna 7.10. på kultus.fi från och med måndag 2.9.<br>Reservera platser till föreställningarna 11.10. på kultus.fi och för enskilda åskådare på annantalo.fi.</p><p>Regi: Perrine Ferrafiat<br>Koncept: Mila Nirhamo<br>På scenen: Maria-Elina Koivula och Mila Nirhamo<br>Dockor och visuella element: Laura Hallantie, Mila Nirhamo, Johanna Niiranen<br>Ljuddesign: Markus Tapio<br>Produktion: Fillariteatteri, TeatteriQ</p>", "en": "<p>Come along and follow the red, yellow, blue thread…</p><p>On a roll is a rhythmic, colourful dive into the healing power of friendship through play and craftsmanship. A non-verbal performance especially suitable for the little ones will wrap the viewers in colours and wool yarn.</p><p>On a roll combines clownery and puppet theatre. The performance looks at life from the perspective of small everyday tasks and inspires reflection on happiness, love and humanity.</p><p>Fillariteatteri is an ecological theatre that travels to its audiences by bicycle. On the roll was awarded the Little ITU prize in September 2023.</p><p>Duration: 30 mins.<br>Age recommendation: 1+, suitable for all ages<br>Language: non-verbal<br>Free of charge</p><p>Reservations for the 7 October performances for kindergarten groups: kultus.fi from Monday, 2 September onwards.<br>Reservations for the 11 October performances at kultus.fi and for private viewers annantalo.fi.</p><p>Director: Perrine Ferrafiat<br>Concept: Mila Nirhamo<br>On stage: Maria-Elina Koivula and Mila Nirhamo<br>Dolls and visuals: Laura Hallantie, Mila Nirhamo, Johanna Niiranen<br>Sound design: Markus Tapio<br>Production: Fillariteatteri, TeatteriQ</p>" }, "name": { "fi": "Fillariteatteri: Kerällä | Ilmoittautuminen kultus.fi", "sv": "Fillariteatteri: Kerällä, I ett nystan | Föreställningarna på kultus.fi", "en": "Fillariteatteri: Kerällä, On a roll | Reservations at kultus.fi" }, "short_description": { "fi": "Tule mukaan ja seuraa punaista, keltaista, sinistä lankaa…", "sv": "Kom med och följ det röda, gula, blå garnet...", "en": "Come along and follow the red, yellow, blue thread…" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64323/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64232", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151784, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T14:13:34.114710Z", "last_modified_time": "2024-07-22T14:13:34.114724Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750146.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151784/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T14:13:34.100784Z", "last_modified_time": "2024-08-29T05:13:30.229997Z", "date_published": null, "start_time": "2024-10-03T08:45:00Z", "end_time": "2024-10-03T10:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B8C6C821B5D64DFC7751B3984D18D105/Opi_suomea_laulaen", "sv": "http://www.stoa.fi/sv/evenemang/event/B8C6C821B5D64DFC7751B3984D18D105/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/B8C6C821B5D64DFC7751B3984D18D105/Learn_Finnish_by_Singing_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</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.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64228", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151783, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T14:13:34.032379Z", "last_modified_time": "2024-07-22T14:13:34.032390Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750145.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T14:13:34.019272Z", "last_modified_time": "2024-08-29T05:13:30.178652Z", "date_published": null, "start_time": "2024-10-03T07:00:00Z", "end_time": "2024-10-03T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2772029C3B75253A588E7DB4EFCB859B/Opi_suomea_laulaen", "sv": "http://www.stoa.fi/sv/evenemang/event/2772029C3B75253A588E7DB4EFCB859B/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/2772029C3B75253A588E7DB4EFCB859B/Learn_Finnish_by_Singing_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</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.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64228/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64194", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151702, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:33.356005Z", "last_modified_time": "2024-07-12T13:13:33.356021Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751724.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151702/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:33.340609Z", "last_modified_time": "2024-08-29T05:13:30.127139Z", "date_published": null, "start_time": "2024-10-02T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A2B1C610B7996929E058871F133B999E/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/A2B1C610B7996929E058871F133B999E/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/A2B1C610B7996929E058871F133B999E/Stoa_Choir_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64194/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64305", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151939, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T12:15:21.415425Z", "last_modified_time": "2024-07-29T12:15:21.415442Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151939/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T12:15:21.381137Z", "last_modified_time": "2024-08-29T05:13:29.968487Z", "date_published": null, "start_time": "2024-10-02T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/7CFA26C3B80122252477035074CE8D81/HOW_radio_Global_Club_Nights_", "sv": "http://www.caisa.fi/sv/evenemang/event/7CFA26C3B80122252477035074CE8D81/HOW_radio_Global_Club_Nights_", "en": "http://www.caisa.fi/en/events/event/7CFA26C3B80122252477035074CE8D81/HOW_radio_Global_Club_Nights_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Joose on musiikin ammattilainen, jolla on vuosien kokemus suomalaisesta musiikkielämästä. Hän on käynnistänyt useita menestyksekkäitä hankkeita ja tuottanut musiikkitapahtumien sarjoja.</p><p>Sukellamme syvälle oman hankkeen kehittämiseen tarkastellen sitä, mitä pitää tehdä ja mitä ei, ja nautimme samalla BSB:n sielukkaasta soundista.</p><p>Bronze Silver & Brass on uusi kahdeksanhenkinen puhallinorkesteri, joka on imenyt vaikutteita muun muassa Kashmere Stage Bandin, Young Blood Brass Bandin ja Hypnotic Brass Ensemblen kaltaisilta yhtyeiltä. Lämpimän soulin, jazzin, hiphopin ja afrobeatin rytmejä yhdistelevät kappaleet ovat keulakuva Joose Kyyrön säveltämiä. Joose tunnetaan useista soul- ja funk-yhtyeistä, joita ovat muun muassa The Funky Sound Foundation, Emilia Sisco ja Frankosun & The Family. Timmion Records julkaisee bändin ensimmäisen 7-tuumaisen singlen kesällä 2024.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "sv": "<p>Joose är en professionell musiker med många års erfarenhet av den finska musikscenen. Han har startat många framgångsrika projekt och producerat en rad musikevenemang.</p><p>Vi djupdyker i processen med att skapa ett eget projekt och lyfter fram vad man bör och inte bör göra medan vi njuter av BSB:s innerliga melodier.</p><p>Bronze Silver & Brass är ett brass-band med åtta medlemmar som influerats av grupper som Kashmere Stage Band, Young Blood Brass Band och Hypnotic Brass Ensemble. Sångerna väver samman varm soul, jazz, hip-hop och afrobeat-rytmer komponerade av frontmannen Joose Kyrrö. Joose är känd från flera soul- och funk-band som The Funky Sound Foundation, Emilia Sisco och Frankosun & The Family. Bandets första singel 7\" släpps på Timmion Records sommaren 2024.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "en": "<p>Joose is a music professional with years of experience in the Finnish music scene. He has initiated several successful projects as well as produced music event series.</p><p>We deep dive into the process of creating ones own project, being aware of the do’s and don’t’s while enjoying the soulful sound of BSB.</p><p>Bronze Silver & Brass is a new eight-piece brass band, which has absorbed influences from groups such as Kashmere Stage Band, Young Blood Brass Band and Hypnotic Brass Ensemble. The songs that weave together warm soul, jazz, hip-hop and afrobeat rhythms are written by frontman Joose Kyyrö. Joose is known for several soul and funk bands such as The Funky Sound Foundation, Emilia Sisco and Frankosun & The Family. Timmion Records will release the band's first 7\" single in the summer of 2024.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>" }, "name": { "fi": "HOW radio: Global Club Nights – Joose Kyrrö – Bronze Silver & Brass", "sv": "HOW radio: Global Club Nights – Joose Kyrrö – Bronze Silver & Brass", "en": "HOW radio: Global Club Nights – Joose Kyrrö – Bronze Silver & Brass" }, "short_description": { "fi": "Joose on musiikin ammattilainen, jolla on vuosien kokemus suomalaisesta musiikkielämästä. Hän on käynnistänyt useita menestyksekkäitä hankkeita ja tuottanut musiikkitapahtumien sarjoja.", "sv": "Joose är en professionell musiker med många års erfarenhet av den finska musikscenen. Han har startat många framgångsrika projekt och producerat en rad musikevenemang.", "en": "Joose is a music professional with years of experience in the Finnish music scene. He has initiated several successful projects as well as produced music event series." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64305/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64215", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151778, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T12:13:02.337217Z", "last_modified_time": "2024-07-22T12:13:02.337232Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751333.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151778/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T12:13:02.320333Z", "last_modified_time": "2024-08-29T05:13:29.015579Z", "date_published": null, "start_time": "2024-09-28T08:00:00Z", "end_time": "2024-09-28T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ACC70827A71F4DBE07016DDFAA9F7C21/Kolibri-festivaali", "sv": "http://www.vuotalo.fi/sv/evenemang/event/ACC70827A71F4DBE07016DDFAA9F7C21/Kolibri_Festivalen", "en": "http://www.vuotalo.fi/en/events/event/ACC70827A71F4DBE07016DDFAA9F7C21/Kolibri_Festival" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Taiteellinen, monikulttuurinen, ilmainen ja ainutlaatuinen festivaali lapsille ja perheille.</p><p>Kolibri-festivaali on palannut Vuotaloon! Perinteinen monikulttuurinen, monikielinen, ilmainen ja avoin taidefestivaali on täynnä toimintaa lapsille ja heidän perheilleen.</p><p>Älä missaa hauskaa päivää, jonka ohjelmassa on teatteria, tanssia, musiikkia, esityksiä, kirjallisuutta ja työpajoja, joista nauttii koko perhe.</p><p>Vapaa pääsy!<br>Järj. Ninho ry yhteistyössä Vuotalon kanssa.</p><p>Koko ohjelma 14.8. alkaen: <u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p>", "sv": "<p>Kolibrí Festivalen är en konstnärlig, mångkulturell, avgiftsfri och unik barnfestival för hela familjen.</p><p>Kolibrí Festival är tillbaka på Vuotalo! Den traditionella mångkulturella, flerspråkiga, fria och öppna konstfestivalen är fullspäckad med aktiviteter för barn och deras familjer.</p><p>Missa inte denna roliga dag med teater, dans, musik, föreställningar, litteratur och alla typer av workshops att njuta av med dina små.</p><p>Fri entré<br>Arr. Ninho rf i samarbete med Nordhuset.</p><p>Program: <u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p>", "en": "<p>A unique multicultural, multilingual, free and open art festival for children and their families.</p><p>Kolibrí Festival is back at Vuotalo to celebrate Kaleidoscope, its 13th edition. The traditional multicultural, multilingual, free and open art festival is hosting this year’s last Family Day, packed with activities for children and their families.</p><p>Don’t miss this fun day featuring theater, dance, music, performances, literature and all kinds of workshops to enjoy with your little ones.</p><p>Free entrance!</p><p>Full program available from 14.8.2024 at <u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p>" }, "name": { "fi": "Kolibri-festivaali", "sv": "Kolibri Festivalen", "en": "Kolibri Festival" }, "short_description": { "fi": "Taiteellinen, monikulttuurinen, ilmainen ja ainutlaatuinen festivaali lapsille ja perheille.", "sv": "Kolibrí Festivalen är en konstnärlig, mångkulturell, avgiftsfri och unik barnfestival för hela familjen.", "en": "A unique multicultural, multilingual, free and open art festival for children and their families." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64215/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64212", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-28T13:15:01.978519Z", "last_modified_time": "2024-08-28T13:15:01.978535Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-28T13:15:01.926252Z", "last_modified_time": "2024-08-29T05:13:28.253111Z", "date_published": null, "start_time": "2024-09-26T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4B4262BBDD13AB646D255E80FF5D2DB7/Flyygelikuu_Mirka_Viitala_ja_Maija_Vaisanen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4B4262BBDD13AB646D255E80FF5D2DB7/Flyygelikuu_Mirka_Viitala_och_Maija_Vaisanen", "en": "http://www.vuotalo.fi/en/events/event/4B4262BBDD13AB646D255E80FF5D2DB7/Flyygelikuu_Mirka_Viitala_and_Maija_Vaisanen" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Syyskuun Flyygelikuu-konsertissa unelmoidaan vielä kesäöistä, kun pianistit Mirka Viitala ja Maija Väisänen soittavat nelikätisesti Schubertin iki-ihanan f-mollifantasian sekä osia Felix Mendelssohnin Kesäyön unelmasta.</p><p><b>Mirka Viitala</b><br>Syvällisenä ja intensiivisenä tulkitsijana tunnettu pianisti Mirka Viitala on monipuolinen muusikko, joka viihtyy mitä erilaisimmilla estradeilla aina klassisista sooloresitaaleista orkesterilavoihin ja kokeellisiin ensemble-esityksiin. Viitalan laaja ohjelmisto ulottuu barokkimusiikista uusimpaan aikamme musiikkiin.</p><p><b>Maija Väisänen</b><br>Maija Väisänen on monipuolinen pianisti, joka esiintyy solistina ja kamarimuusikkona, toimii Villa Salmenrannan kesäkonserttien taiteellisena johtajana sekä Vuotalon Flyygelikuu -sarjan taiteellisena suunnittelijana.</p><p>Kesto: noin 45 min</p>", "sv": "<p>På konserten Flyygelikuu i september får vi ännu drömma om sommarnätter, då pianisterna Mirka Viitala och Maija Väisänen fyrhändigt spelar Schuberts underbara fantasi i f-moll samt delar ur Felix Mendelssohns Midsommarnattsdröm.</p><p>Längd: 45 min</p>", "en": "<p>At September’s Flyygelikuu concert, we reminisce about summer nights, with pianists Mirka Viitala and Maija Väisänen playing Schubert's ever-popular F minor fantasy and parts of Felix Mendelssohn's Midsummer Night's Dream with four hands on the keyboard.</p><p>Duration: 45 min</p>" }, "name": { "fi": "Flyygelikuu: Mirka Viitala ja Maija Väisänen", "sv": "Flyygelikuu: Mirka Viitala och Maija Väisänen", "en": "Flyygelikuu: Mirka Viitala and Maija Väisänen" }, "short_description": { "fi": "Syyskuun Flyygelikuu-konsertissa unelmoidaan vielä kesäöistä, kun pianistit Mirka Viitala ja Maija Väisänen soittavat nelikätisesti Schubertin iki-ihanan f-mollifantasian sekä osia Felix Mendelssohnin Kesäyön unelmasta.", "sv": "På konserten Flyygelikuu i september får vi ännu drömma om sommarnätter, då pianisterna Mirka Viitala och Maija Väisänen fyrhändigt spelar Schuberts underbara fantasi i f-moll samt delar ur Felix Mendelssohns Midsommarnattsdröm.", "en": "At September’s Flyygelikuu concert, we reminisce about summer nights, with pianists Mirka Viitala and Maija Väisänen playing Schubert's ever-popular F minor fantasy and parts of Felix Mendelssohn's Midsummer Night's Dream with four hands on the keyboard." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64193", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151701, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:33.030214Z", "last_modified_time": "2024-07-12T13:13:33.030239Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751722.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151701/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:32.999555Z", "last_modified_time": "2024-08-29T05:13:27.976244Z", "date_published": null, "start_time": "2024-09-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/03B32C82EFE486982FFBA3FE6FB6D5C1/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/03B32C82EFE486982FFBA3FE6FB6D5C1/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/03B32C82EFE486982FFBA3FE6FB6D5C1/Stoa_Choir_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64193/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64211", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151772, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T11:13:06.721797Z", "last_modified_time": "2024-07-22T11:13:06.721815Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750045.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151772/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T11:13:06.703657Z", "last_modified_time": "2024-08-29T05:13:27.918916Z", "date_published": null, "start_time": "2024-09-25T15:00:00Z", "end_time": "2024-09-25T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DB73420BC323683258A797E66C38489B/Michael_Monroe_-dokumenttielokuva_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DB73420BC323683258A797E66C38489B/Dokumentarfilm_Michael_Monroe_S_", "en": "http://www.vuotalo.fi/en/events/event/DB73420BC323683258A797E66C38489B/Michael_Monroe_documentary_S_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Michael Monroe -dokumenttielokuva on tarina unelmista ja unelmien särkymisestä.</p><p>Se kertoo Matti Fagerholmin matkan Kekkosen ajan Suomesta Michael Monroeksi, rockmaailman huipulle kansainvälisiin parrasvaloihin. Maailma ja mahdollisuudet olivat auki, kunnes kerta toisensa jälkeen jättimenestys jäi hiuskarvan päähän. Michael Monroe on siitä huolimatta kaikkien aikojen menestynein suomalainen rocktähti. Michaelin menestystä ei voi mitata ainoastaan myyntiluvuilla. Hän on puheenaihe, joka on jättänyt lähtemättömän jäljen rockmaailmaan. Yhä edelleen useat rockin raskaansarjan supertähdet mieltävät hänet esikuvakseen. Michael ei vain tullut ja mennyt vaan hän on jäänyt pysyäkseen. Ilman Michaelin kaltaisia hahmoja rock ’n’ rollia ei olisi enää olemassa.</p><p>Ikäraja: Sallittu<br>Kesto: 96 min.<br>Vapaa sisäänpääsy<br>Kieli: suomi, tekstitys ruotsiksi<br>Ohjaus: Pete Eklund sekä Jussi Lehtomäki ja Patrik Sigmundt<br>Ensi-ilta: 29.9.2023</p>", "sv": "<p>Dokumentären om Michael Monroe är en berättelse om drömmar och krossade drömmar.</p><p>Den berättar historien om Matti Fagerholms resa från Kekkonen-tidens Finland till Michael Monroe på toppen av rockvärlden och det internationella rampljuset. Världen och möjligheterna var vidöppna fram till att den stora framgången gång på gång förblev precis utom räckhåll. Trots det är Michael Monroe den mest framgångsrika finländska rockstjärnan genom tiderna. Michaels framgång kan inte mätas enbart i försäljningssiffror. Han är ett samtalsämne som gjort ett outplånligt intryck i rockvärlden. Många superstjärnor inom rockens tungvikt betraktar honom fortfarande som en förebild. Michael har inte bara kommit och gått, utan stannat för gott. Utan personer såsom Michael skulle rock 'n' rollen inte längre existera.</p><p>Åldersgräns: Tillåten<br>Längd: 96 min.<br>Fri entré<br>Språk: finska, undertexter på svenska<br>Regi: Pete Eklund samt Jussi Lehtomäki och Patrik Sigmundt<br>Premiär: 29.9.2023</p>", "en": "<p>The Michael Monroe documentary is a story about dreams and how they shatter.</p><p>It tells the story of Matti Fagerholm's journey from Kekkonen-era Finland to become Michael Monroe, the top star of the rock world in international limelight. The world was his oyster, but time and time again, the big break was just a hair’s breadth short. Michael Monroe remains the most successful Finnish rock star of all time. Michael's success cannot be measured by sales figures alone. He is a talking point that has left an indelible mark on the world of rock. Several rock heavyweight superstars still see him as a role model. Michael didn't just come and go, he's here to stay. Without characters like Michael, rock ’n’ roll would no longer exist.</p><p>Age limit: All ages<br>Duration: 96 mins.<br>Free entry<br>Language: Finnish with subtitles in Swedish<br>Director: Pete Eklund with Jussi Lehtomäki and Patrik Sigmundt<br>Premiere: 29 September 2023</p>" }, "name": { "fi": "Michael Monroe -dokumenttielokuva (S) – Keskiviikkokino", "sv": "Dokumentärfilm: Michael Monroe (S) – Onsdagskino", "en": "Michael Monroe documentary (S) – Wednesday movie" }, "short_description": { "fi": "Michael Monroe -dokumenttielokuva on tarina unelmista ja unelmien särkymisestä.", "sv": "Dokumentären om Michael Monroe är en berättelse om drömmar och krossade drömmar.", "en": "The Michael Monroe documentary is a story about dreams and how they shatter." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64211/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64304", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151938, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T12:15:20.025591Z", "last_modified_time": "2024-07-29T12:15:20.025610Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753047.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151938/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T12:15:19.976819Z", "last_modified_time": "2024-08-29T05:13:27.843201Z", "date_published": null, "start_time": "2024-09-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/80083C6FA48BE1AD908957722DFFD8C3/HOW_radio_Global_Club_Nights_", "sv": "http://www.caisa.fi/sv/evenemang/event/80083C6FA48BE1AD908957722DFFD8C3/HOW_radio_Global_Club_Nights_", "en": "http://www.caisa.fi/en/events/event/80083C6FA48BE1AD908957722DFFD8C3/HOW_radio_Global_Club_Nights_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tässä jaksossa meillä on mukana kaksi monipuolista taiteilijaa. Millaisia vaikeuksia uuteen maahan muuttaminen aiheuttaa? Onko olemassa luovia tapoja vakiinnuttaa asemansa uudessa ympäristössä?</p><p>Toimivatko musiikki ja taide passina, jolla voi matkustaa ympäri maailmaa? Koïro Duo on argentiinalaisen Manu Rosalesin ja brasilialais-saksalaisen Stephanie Koborin yhteistyö. He luovat akustisen dialogin, joka kutoo yhteen kitaran, klarinetin ja laulusovitukset henkilökohtaiseksi ja intiimiksi musiikkielämykseksi.</p><p>Koïro Duo esittää ohjelmistossaan sekä omia että nousevien eteläamerikkalaisten taiteilijoiden sävellyksiä. Siihen kuuluu monipuolinen valikoima rytmejä ja nykykappaleita. Kaksikko esittelee Brasilian, Argentiinan ja Andien alueen erilaisia musiikillisia maisemia ja ottaa vaikutteita sellaisilta tunnetuilta henkilöiltä kuin brasialaisilta Baden Powellilta, Caetano Velosolta ja Elis Reginalta sekä argentiinalaisilta Cuchi Leguizamónilta, Atahualpa Yupanquilta ja Mercedes Sosalta.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa.</p><p><u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "sv": "<p>Idag gästas vi av två mångsidiga artister. Vilka svårigheter upplever man när man flyttar till ett nytt land? Finns det kreativa sätt att etablera sig i en ny miljö? Är musik och konst biljetten du behöver för att resa runt världen?</p><p>Koïro Duo är ett samarbete mellan Manu Rosales från Argentina och Stephanie Kobori från Brasilien-Tyskland. De skapar en akustisk dialog som knyter samman gitarr, klarinett och sångarrangemang för att skapa en personlig och intim musikupplevelse.</p><p>Koïro Duo framför en repertoar med egna originalkompositioner och verk av nya artister från Sydamerika. Deras uppträdande består av ett varierat urval av rytmer och samtida sånger. Duon presenterar de unika musikaliska landskapen i Brasilien, Argentina och Anderna med inspiration av kända personer som Baden-Powell, Caetano Veloso och Elis Regina från Brasilien och Cuchi Leguizamón, Atahualpa Yupanqui och Mercedes Sosa från Argentina.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "en": "<p>Today we are in the presence of two multisided artists. What are the struggles or moving to a new country? Are there creative ways to establish one’s self in a new environment?</p><p>Are music and art the passport for travelling around the world? Koïro Duo is a collaboration between Manu Rosales from Argentina and Stephanie Kobori from Brazil-Germany. They shape an acoustic dialogue that weaves together the guitar, clarinet, and vocal arrangements to create a personal and intimate musical experience.</p><p>Koïro Duo presents a repertoire featuring original compositions of their own and by emerging artists from South America. Their repertoire shows a diverse selection of rhythms and contemporary songs. The duo showcases the distinct musical landscapes of Brazil, Argentina and the Andean region, drawing inspiration from renowned figures such as Baden-Powell, Caetano Veloso, Elis Regina from Brazil and Cuchi Leguizamón, Atahualpa Yupanqui, Mercedes Sosa from Argentina.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>" }, "name": { "fi": "HOW radio: Global Club Nights – Koïro Duo – Stephanie Kobori & Manuel Rosales", "sv": "HOW radio: Global Club Nights – Koïro Duo – Stephanie Kobori & Manuel Rosales", "en": "HOW radio: Global Club Nights – Koïro Duo – Stephanie Kobori & Manuel Rosales" }, "short_description": { "fi": "Tässä jaksossa meillä on mukana kaksi monipuolista taiteilijaa. Millaisia vaikeuksia uuteen maahan muuttaminen aiheuttaa? Onko olemassa luovia tapoja vakiinnuttaa asemansa uudessa ympäristössä?", "sv": "Idag gästas vi av två mångsidiga artister. Vilka svårigheter upplever man när man flyttar till ett nytt land? Finns det kreativa sätt att etablera sig i en ny miljö? Är musik och konst biljetten du behöver för att resa runt världen?", "en": "Today we are in the presence of two multisided artists. What are the struggles or moving to a new country? Are there creative ways to establish one’s self in a new environment?" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64304/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }