Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default 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=244
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=245", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=243" }, "data": [ { "id": "kulke:63434", "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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151572, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T15:13:44.732724Z", "last_modified_time": "2024-06-27T15:13:44.732743Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749899.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T15:13:44.708389Z", "last_modified_time": "2024-12-20T01:14:03.932394Z", "date_published": null, "start_time": "2024-11-11T08:15:00Z", "end_time": "2024-11-11T08: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, "location_extra_info": null, "name": { "fi": "Musiikillinen taideseikkailu – vauvoille", "sv": "Musikaliskt konstäventyr – för bebisar", "en": "Musical Art Adventure – for babies" }, "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. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">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. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</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. 30 min <br>Age group: 3–12 months<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>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</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>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B212A3E7B2E9E68906ED613AB07C92DF/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/B212A3E7B2E9E68906ED613AB07C92DF/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/B212A3E7B2E9E68906ED613AB07C92DF/Musical_Art_Adventure" }, "provider": null, "provider_contact_info": null, "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:63434/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63427", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:42.244575Z", "last_modified_time": "2024-06-27T14:13:42.244590Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749885.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:42.219471Z", "last_modified_time": "2024-12-20T01:14:03.841673Z", "date_published": null, "start_time": "2024-11-11T07:00:00Z", "end_time": "2024-11-11T07: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, "location_extra_info": null, "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" }, "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>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/255B6A54203361540BD9BD26691C6F68/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/255B6A54203361540BD9BD26691C6F68/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/255B6A54203361540BD9BD26691C6F68/Musical_Art_Adventure" }, "provider": null, "provider_contact_info": null, "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:63427/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64294", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151890, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T18:15:09.618182Z", "last_modified_time": "2024-07-25T18:15:09.618202Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751036.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151890/?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-25T18:15:09.578529Z", "last_modified_time": "2024-12-20T01:14:03.465911Z", "date_published": null, "start_time": "2024-11-10T12:00:00Z", "end_time": "2024-11-10T15: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, "location_extra_info": null, "name": { "fi": "Isänpäivä Lasten Etnosoi!ssa – Lasten Etnosoi!", "sv": "Farsdag på Barnens Etnosoi! – Barnens Etnosoi!", "en": "Father’s Day at Children’s Etnosoi! – Children’s Etnosoi!" }, "description": { "fi": "<p>Pääseekö kala naimisiin ja mitä se jatsi nyt olikaan? Näitä ja monia muita isoja ja pieniä kysymyksiä selvitellään konserteissa ja työpajoissa – tai vaikkapa askarrellen.</p><p>Isänpäivän ohjelmassa:</p><p>Jatsin riemua lapsille ja perheille:<br>Brasilialaisen Adriano Adewalen ja Sibelius-Akatemian Global Music -osaston muusikoiden konserteissa suunnataan mielikuvitusmatkoille maailman ääriin. Sami Kontolan ja Mikko Innasen lempeässä työpajassa saattaa selvitä jatsin syvin olemus.<br>Pieni sali klo 14.15 ja 15.45</p><p>Musiikki- ja tarinankerronta -työpaja:<br>Taiwanilaisessa tarinassa seikkailevat kala, karppi ja tulikärpänen. Musiikki- ja tarinankerrontatyöpajaan johdattavat Ni Jui Hsin ja Ayla Brinkmann.<br>Tanssisali klo 14.30 ja 16</p><p>Kulttuurienväliset Muumit - Näkymätön lapsi:<br>Etnosoi!-festivaali ja Taideyliopiston Sibelius-Akatemian Global Music -ohjelma ovat yhdistäneet voimansa luodakseen jännittävän ja innovatiivisen projektin, joka herättää eloon klassisen Muumi-tarinan elävän tarinankerronnan, visuaalisuuden ja musiikin avulla. Lopputuloksena on kokonaisvaltainen elämys yleisölle. Tämä ainutlaatuinen esitys keskittyy Muumi-tarinaan \"Näkymätön lapsi\", yhdistäen sen syvällisen sanoman taiteelliseen ilmaisuun tavalla, joka herättää mielikuvituksen ja luovuuden.<br>Malmisali klo 14 ja 15.30</p><p>Tarkista, mitä kaikkea muuta päivän aikana on tiedossa: https://www.etnosoi.fi/fi/etnosoi/lasten-etnosoi</p><p>Vapaa pääsy</p><p>Tapahtuman tuottavat yhdessä Maailman musiikin keskus ja Malmitalo<br>Yhteistyössä mukana Taideyliopiston Sibelius-Akatemian Global Music -osasto sekä Helsinki Jazz ry.</p>", "sv": "<p>Kan fiskar gifta sig och vad var jazz nu igen för något? Vi utforskar dessa och många andra stora och små frågor i konserter och workshoppar – eller exempelvis genom pyssel.</p><p>Farsdagsprogram:</p><p>Konserter av brasilianaren Adriano Adewale och musiker från Sibelius-Akademins avdelning för global musik tar dig med på fantasifulla resor till världens ände. I Sami Kontolas och Mikko Innanens varsamma workshop kan jazzens djupaste väsen möjligen avslöjas.</p><p>En fisk, en karp och en eldfluga är ute på äventyr i en taiwanesisk berättelse. Musik- och berättarworkshopen leds av Ni Jui Hsin och Ayla Brinkmann.</p><p>Kolla in dagens övriga program på etnosoi.fi.</p><p>Fritt inträde</p><p>Evenemanget produceras gemensamt av Maailman musiikin keskus och Malms kulturhus<br>I samarbetet deltar avdelningen för global musik vid Sibelius-Akademin och Helsinki Jazz ry.</p>", "en": "<p>Can a fish get married, and what is “jazz” again? These and many other questions, both big and small, are handled in concerts and workshops – or even through crafting.</p><p>Father’s Day programme:</p><p>Concerts by Brazilian Adriano Adewale and the Global Music Department of the Sibelius Academy are aimed at taking imaginary trips to the ends of the world. Sami Kontola and Mikko Innanen's gentle workshop may reveal the deepest essence of jazz.</p><p>In a Taiwanese story, a fish, a carp, and a firefly go on an adventure. The music and storytelling workshop will be led by Ni Jui Hsin and Ayla Brinkmann.</p><p>Check what else you can do during the day: etnosoi.fi.</p><p>Free admission</p><p>The event is jointly produced by the World Music Centre and Malmitalo Cultural Centre<br>In cooperation with the Global Music Department of the Sibelius Academy of the University of the Arts Helsinki and the Helsinki Jazz Association.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1DE2FE6EBE3434B2B66D6904312898FF/Isanpaiva_Lasten_Etnosoi_ssa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1DE2FE6EBE3434B2B66D6904312898FF/Farsdag_pa_Barnens_Etnosoi_", "en": "http://www.malmitalo.fi/en/events/event/1DE2FE6EBE3434B2B66D6904312898FF/Father_s_Day_at_Children_s_Etnosoi_" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Pääseekö kala naimisiin ja mitä se jatsi nyt olikaan? Näitä ja monia muita isoja ja pieniä kysymyksiä selvitellään konserteissa ja työpajoissa – tai vaikkapa askarrellen.", "sv": "Kan fiskar gifta sig och vad var jazz nu igen för något? Vi utforskar dessa och många andra stora och små frågor i konserter och workshoppar – eller exempelvis genom pyssel.", "en": "Can a fish get married, and what is “jazz” again? These and many other questions, both big and small, are handled in concerts and workshops – or even through crafting." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64294/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64893", "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:288/?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: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:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152948, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-05T12:13:58.383619Z", "last_modified_time": "2024-11-05T12:13:58.383636Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761435.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-05T12:13:58.337730Z", "last_modified_time": "2024-12-20T01:14:03.379527Z", "date_published": null, "start_time": "2024-11-10T10:00:00Z", "end_time": "2024-11-10T13: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, "location_extra_info": null, "name": { "fi": "Venäjänkielinen korutyöpaja", "en": "Russian-language jewelry workshop" }, "description": { "fi": "<p>Tervetuloa luovaan koruvalmistusworkshopiin Stoan kulttuurikeskukseen!<br> <br>Kutsumme sinut oppimaan tekemään yksinkertaisen mutta ainutlaatuisen choker-kaulakorun käyttäen luonnonkiviä, erilaisia helmiä ja korunosia. Yhdessä luomme korun, joka heijastaa persoonallisuuttasi ja tyyliäsi. Tämä on upea tilaisuus kehittää luovuutta, rentoutua ja tavata uusia ihmisiä! Työpaja on venäjänkielinen.<br> <br>Työpajaa järjestetään kolmena eri päivänä. Voit ilmoittautua yhdelle seuraavista päivistä:<br>Su 10.11, klo 12:00–15:00<br>Ti 12.11, klo 12:00–15:00<br>La 23.11, klo 14:00–17:00<br>Työpaja on maksuton, ja osallistujamäärä on rajoitettu 10 henkilöön per työpaja.<br> <br>Ilmoittautuminen sähköpostitse – ilmoitathan samalla, mihin päivään haluat osallistua: maria.bolshedonova@gmail.com.<br> <br>Työpajan vetäjästä:<br>Maria Bolshedonova on helsinkiläinen suunnittelija, jolla on laaja kokemus tekstiili- ja korusuunnittelusta. Hän järjestää luovia työpajoja ja kehittää omaa brändiään, Wild Fern Design.</p>", "ru": "<p>Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!</p><p>Приглашаем вас на трехчасовой мастер-класс, где вы научитесь создавать простой, но уникальный чокер, используя натуральные камни, различные бусины и фурнитуру. Вместе мы создадим украшение, которое отразит вашу индивидуальность и стиль. Это прекрасная возможность проявить творческий потенциал, расслабиться и найти новые знакомства!<br> <br>Мастер-класс проводится в три разных дня. Вы можете записаться на один из следующих дней:<br>Вс, 10.11, с 12:00 до 15:00<br>Вт, 12.11, с 12:00 до 15:00<br>Сб, 23.11, с 14:00 до 17:00<br> <br>Участие в мастер-классе бесплатно, количество мест ограничено — максимум 10 участников на каждую сессию.<br> <br>Для регистрации, пожалуйста, отправьте письмо на электронную почту и укажите дату, на которую хотите записаться: maria.bolshedonova@gmail.com<br> <br>О ведущей:<br>Мария Большедонова — дизайнер из Хельсинки с большим опытом в области текстильного и ювелирного дизайна. Она проводит творческие мастер-классы и развивает свой бренд Wild Fern Design.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/491B91C615EB71E4BDD9F5CFD7A4A19B/Venajankielinen_korutyopaja", "en": "http://www.stoa.fi/en/events/event/491B91C615EB71E4BDD9F5CFD7A4A19B/Russian-language_jewelry_workshop" }, "provider": null, "provider_contact_info": null, "short_description": { "ru": "Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64481", "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:32/?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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T09:13:32.134081Z", "last_modified_time": "2024-09-19T09:13:32.134094Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757537.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T09:13:32.121667Z", "last_modified_time": "2024-12-20T01:14:03.297164Z", "date_published": null, "start_time": "2024-11-10T10:00:00Z", "end_time": "2024-11-10T11: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, "location_extra_info": null, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Ola Maciejewska & team", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Ola Maciejewska & team", "en": "Moving in November: Soup Talks – Talk with Ola Maciejewska & team" }, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/112FAD6F1D0A6A2F87E382745D975A09/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/112FAD6F1D0A6A2F87E382745D975A09/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/112FAD6F1D0A6A2F87E382745D975A09/Moving_in_November_Soup_Talks" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64481/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64480", "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:32/?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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152476, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T09:13:31.962799Z", "last_modified_time": "2024-09-19T09:13:31.962811Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757535.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152476/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T09:13:31.950484Z", "last_modified_time": "2024-12-20T01:14:02.700582Z", "date_published": null, "start_time": "2024-11-09T10:00:00Z", "end_time": "2024-11-09T11: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, "location_extra_info": null, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Mette Edvardsen", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Mette Edvardsen", "en": "Moving in November: Soup Talks – Talk with Mette Edvardsen" }, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet på: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3987684592533747475BE963023DDBCD/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/3987684592533747475BE963023DDBCD/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/3987684592533747475BE963023DDBCD/Moving_in_November_Soup_Talks" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64948", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152987, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-07T14:14:50.716141Z", "last_modified_time": "2024-11-07T14:14:50.716162Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761443.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152987/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-11-07T14:14:50.664673Z", "last_modified_time": "2024-12-20T01:14:02.611885Z", "date_published": null, "start_time": "2024-11-09T09:00:00Z", "end_time": "2024-11-09T12: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, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Haamujen jäljillä", "sv": "Annegårdens konstlördag: Spökjakt", "en": "Annantalo Art Saturday: Ghost-hunting" }, "description": { "fi": "<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><b>Haamujen jäljillä</b></p><p>Tiedätkö, että Annantalo on hyvin vanha? Se on rakennettu kansakouluksi vuonna 1886 ja on ajan saatossa toiminut myös sotilassairaalana ennen kun siitä tuli lasten ja nuorten taidekeskus Annantalo. Onkohan 138-vuoden aikana taloon unohtunut tai jäänyt elämään jotakin kummaa? Tervetuloa avoimeen non-stop pajaan jossa pääset etsimään, haistelemaan ja koskettelemaan talon haamuja. Luomme myös uusia aaveita Annantalon seinille lentelemään.</p><p>Työpajassa puhutaan suomena ja englantia. Osallistua voi myös ilman ko. kieliä. Työpajaa ohjaavat Annantalon taidekasvattajat.</p><p>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<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><b>Spökjakt</b></p><p>Visste du att Annegården är ett mycket gammalt hus? Det byggdes 1886 som folkskola och har efter det också använts som militärsjukhus innan det blev Annegårdens konstcentrum för barn och unga. Månne det finns någonting som spökar kvar efter alla dessa 138 år?</p><p>Välkommen till en öppen nonstop-workshop där du kan leta efter, snusa på och röra vid husets spöken. Vi skapar också nya spöken som får sväva på Annegårdens väggar.</p><p>Workshoppens språk är finska och engelska. Det går också att delta även om du inte talar dessa språk.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri. 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 med särskilda behov. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<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.</p><p><b>Ghost-hunting</b></p><p>Did you know that Annantalo is very old? It was built as a public school in 1886 and over the years, it has also served as a military hospital before it became the Annantalo Art Centre for Children and Young People. Do you ever wonder if something strange has been forgotten or left alive in the building over the last 138 years?</p><p>Join this open non-stop workshop where you can find, smell and touch the ghosts of the building. We also create new ghosts to haunt the walls of Annantalo.</p><p>This workshop is held in Finnish and English. You can also participate without knowing the languages in question.</p><p>The workshop is led by art educators from Annantalo.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C0DDAE898C623B02281D198B108AF613/Annantalon_taidelauantai_Haamujen_jaljilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/C0DDAE898C623B02281D198B108AF613/Annegardens_konstlordag_Spokjakt", "en": "http://www.annantalo.fi/en/events/event/C0DDAE898C623B02281D198B108AF613/Annantalo_Art_Saturday_Ghost-hunting" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "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.", "sv": "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.", "en": "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64948/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64742", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152842, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-21T12:15:14.539301Z", "last_modified_time": "2024-10-21T12:15:14.539320Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750178.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152842/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-21T12:15:14.473606Z", "last_modified_time": "2024-12-20T01:14:01.598334Z", "date_published": null, "start_time": "2024-11-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Tomi Pulkkinen: Unelmien Helsinki-konsertti Vuosaaren kirjastossa – Svenska veckan", "sv": "Drömmarnas Helsingfors-konsert med Tomi Pulkkinen i Nordsjö bibliotek – Svenska veckan" }, "description": { "fi": "<p>Tule nauttimaan helsinkiläisten luomista uusista lauluista taiteilija Tomi Pulkkisen vetämissä laulupajoissa!</p><p>Tomi Pulkkinen on pitänyt laulupajoja Itä-Helsingissä tänä keväänä. Laulujen lähtökohtana ovat olleet osallistujien lempipaikat, mutta mielikuvitus on virrannut vapaasti, ilman rajoja. Työpajojen osallistujat ovat olleet eri-ikäisiä; luovuus yhdistää meitä kaikkia, kieli- ja kulttuuritaustasta riippumatta!</p><p>Nyt Tomi esittää työpajoissa syntyneitä lauluja, tule mukaan, kuuntele ja laula mukana!</p><p>Tomi Pulkkinen tunnetaan muun muassa Suomen ensimmäisenä kuukausipalkkaisena kirjastotrubaduurina, mutta nykyään hän toimii freelance-lauluntekijänä, esiintyjänä ja kirjailijana. Hän on voittanut Vuoden sillanrakentaja -palkinnon kielirajat ylittävästä kulttuurityöstään.</p><p>Huom: esitys on ruotsiksi.</p><p>Kesto n. 60 min.</p><p>Vapaa pääsy.</p>", "sv": "<p>Kom och njut av nya sånger som har skapats av helsingforsbor i sångverkstäder under ledning av artist Tomi Pulkkinen!</p><p>Tomi Pulkkinen har under den gångna våren hållit sångverkstäder i östra Helsingfors. Utgångspunkten för sångerna har varit i deltagarnas favoritställen, men fantasin har flödat fritt, utan gränser. Verkstädernas deltagare har varit av olika åldrar; kreativiteten förenar oss alla, också oavsett språklig eller kulturell bakgrund!</p><p>Nu uppträder Tomi med de sånger som skapats under verkstäderna, kom med, lyssna och sjung med!</p><p>Tomi Pulkkinen är bl.a. känd som Finlands första månadsavlönade bibliotekstrubadur, men nuförtiden arbetar han som fri låtskrivare, uppträdare och författare. Han har blivit prisbelönt som Årets brobyggare för sitt kulturarbete över språkgränsen. Tomi Pulkkinen är FM från Helsingfors universitet med inhemsk litteratur som huvudämne.</p><p>Evenemanget är på svenska.</p><p>Längd ca 60 min. <br>Fri entré.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/14D77E2DFF90C9F0C44866553C235FDE/Tomi_Pulkkinen_Unelmien_Helsinki-konsertti_Vuosaaren_kirjastossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/14D77E2DFF90C9F0C44866553C235FDE/Drommarnas_Helsingfors-konsert_med_Tomi_Pulkkinen_i_Nordsjo_bibliotek" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Tule nauttimaan helsinkiläisten luomista uusista lauluista taiteilija Tomi Pulkkisen vetämissä laulupajoissa!", "sv": "Kom och njut av nya sånger som har skapats av helsingforsbor i sångverkstäder under ledning av artist Tomi Pulkkinen!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64742/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64479", "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:32/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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: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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152475, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T09:13:31.637204Z", "last_modified_time": "2024-09-19T09:13:31.637217Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757533.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152475/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T09:13:31.604131Z", "last_modified_time": "2024-12-20T01:14:01.508668Z", "date_published": null, "start_time": "2024-11-07T10:00:00Z", "end_time": "2024-11-07T11: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, "location_extra_info": null, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Pontus Pettersson", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Pontus Pettersson", "en": "Moving in November: Soup Talks – Talk with Pontus Pettersson" }, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet på: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance. Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/68C572E98477A6D9B7B7047F08969701/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/68C572E98477A6D9B7B7047F08969701/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/68C572E98477A6D9B7B7047F08969701/Moving_in_November_Soup_Talks" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64744", "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:732/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152855, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-22T13:15:00.226122Z", "last_modified_time": "2024-10-22T13:15:00.226138Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759270.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152855/?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-10-22T13:15:00.201663Z", "last_modified_time": "2024-12-20T01:14:01.422880Z", "date_published": null, "start_time": "2024-11-07T08: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, "location_extra_info": null, "name": { "fi": "Sara Myrberg:Leka vara låta djur – en verkstad med Sara Myrberg (Sverige)", "sv": "Sara Myrberg:Leka vara låta djur – en verkstad med Sara Myrberg (Sverige)" }, "description": { "fi": "<p>Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad</p><p>En hund kan vifta på svansen och dansa fram i vilda hopp med glada skall.<br>Hur känns det att vakna och sträcka på sig som en katt?<br>En liten fågel flyger högt, högt och sjunger en vacker melodi.<br>Farliga lejon smyger om natten.<br> <br>Vi leker fram olika djur i ett undersökande där barnens idéer och rörelser får stort utrymme. Med Sara Myrberg skådespelare, regissör och forskare i residens på Annegården.</p><p>Svenska veckans program.</p><p>Plats: kuva 1 klassrum<br>Längd 40 minuter<br>För dagisgrupper, 2-4 åringar.<br>Gratis, anmälning: Kultus.fi från 24 Oktober</p>", "sv": "<p>Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad</p><p>En hund kan vifta på svansen och dansa fram i vilda hopp med glada skall.<br>Hur känns det att vakna och sträcka på sig som en katt?<br>En liten fågel flyger högt, högt och sjunger en vacker melodi.<br>Farliga lejon smyger om natten.<br> <br>Vi leker fram olika djur i ett undersökande där barnens idéer och rörelser får stort utrymme. Med Sara Myrberg skådespelare, regissör och forskare i residens på Annegården.</p><p>Svenska veckans program.</p><p>Plats: kuva 1 klassrum<br>Längd 40 minuter<br>För dagisgrupper, 2-4 åringar.<br>Gratis, anmälning: Kultus.fi från 24 Oktober</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/36B06C3A79E8FD99578F3560512C6DCF/Sara_Myrberg_Leka_vara_lata_djur", "sv": "http://www.annantalo.fi/sv/evenemang/event/36B06C3A79E8FD99578F3560512C6DCF/Sara_Myrberg_Leka_vara_lata_djur" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad", "sv": "Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64744/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64272", "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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151832, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T16:15:01.308148Z", "last_modified_time": "2024-07-24T16:15:01.308170Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748955.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151832/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T16:15:01.255925Z", "last_modified_time": "2024-12-20T01:14:01.332702Z", "date_published": null, "start_time": "2024-11-07", "end_time": "2024-11-30", "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, "location_extra_info": null, "name": { "fi": "Ajattomuus – kuvataiteilijaseniorit", "sv": "Ajattomuus, Tidlöshet – Kuvataiteilijaseniorit", "en": "Ajattomuus, Timelessness – Senior Artists" }, "description": { "fi": "<p>Kuvataiteilijaseniorit tuovat Vuotalon galleriaan mittavan, korkeatasoisen ja tuoreen näyttelyn, jonka teokset tähtäävät ajattomuuteen.</p><p>Arkkitehti Eero Saarisen mukaan taiteessa ”tärkeintä on löytää muoto ja tyyli, joka on ’muodissa’ vielä vuosikymmenien kuluttua, tyyli, joka kestää”. Tämä onkin aina ollut Kuvataiteilijaseniorien taiteilijoiden päämäärä: tehdä ajatonta, korkeatasoista taidetta, joka ei ole sidottu vain tiettyyn hetkeen, vaan joka säilyy elävänä tulevaisuudessakin. Tämän päämäärän takaa jäsenistön rakenne. Kaikki jäsenet ovat kypsiä, pitemmän aikaa taidealalla työskennelleitä, tunnustettuja ammattilaisia. Ilman ylä- tai alaikärajoja, yhdistyksen pääsyvaatimus on Suomen taiteilijaseuran jäsenyys ja pitkä ura omalla taiteen saralla.</p><p>Näyttelyyn osallistuu 21 taiteilijaa: Marja Hakala, Merja Heino, Bambu Hellstedt, Jari Järnström, Beata Joutsen, Hanne Juga, Ursula Kianto, Seppo Lagom, Sirkka-Liisa Lonka, Tuula Lukkarinen, Kaisu Lundelin, Antti Nordin, Michael Rahikainen, Kai Rentola, Jaakko Rönkkö, Elisa Rovamo, Seppo Salmela, Airi Salosmaa, Ella Tyrväinen, Tarja Unkari ja Juhani von Boehm. Teokset ovat maalauksia, grafiikkaa ja veistoksia. Ne ovat syntyneet pääosin muutaman vuoden sisällä, kuitenkin samanaikaisesti tähdäten otsikossa mainittuun ajattomuuteen.</p><p>Kuvassa yksityiskohtia seuraavista töistä vasemmalta oikealle: <br>Michael Rahikainen: Shine a light, öljy, 2024. <br>Jari Järnström: Heikin penkki, akryyli ja öljy, 2024. <br>Beata Joutsen: Veden voima, värigrafiikka, 2024.</p>", "sv": "<p>Kuvataiteilijaseniorit har för avsikt att till Nordhuset hämta en omfattande, högkvalitativ och fräsch utställning med verk som strävar efter att vara tidlösa.</p><p>Enligt arkitekten Eero Saarinen är “det viktigaste inom konsten att hitta en form och en stil som är på modet årtionden senare, en stil som består”. Detta har alltid varit målet för konstnärerna i Kuvataiteilijaseniorit: att skapa tidlös konst av hög kvalitet som inte är bunden till en viss tidpunkt, utan som lever vidare in i framtiden. Detta mål garanteras av medlemsstrukturen. Alla medlemmar är mogna och erkända yrkesutövare med lång erfarenhet inom konstfältet.</p><p>Kuvataiteilijaseniorit har för avsikt att till Nordhuset hämta en omfattande, högkvalitativ och fräsch utställning med verk (främst målningar, grafik och skulpturer) som skapats under de senaste åren, men som samtidigt strävar efter den tidlöshet som nämns i titeln.</p>", "en": "<p>The intention of the Senior Artists is to bring a large-scale, high-quality and fresh exhibition, whose works aim at timelessness to the Vuotalo gallery.</p><p>According to architect Eero Saarinen, in art, “the most important thing is to find a shape and style that will be ’in fashion’ even decades from now, a style that will last”. This has always been the goal of the Senior Artists: to make timeless, high-quality art that is not only tied to a specific moment, but that will remain alive in the future. Their membership structure guarantees this goal. All members are mature, recognized professionals in the arts.</p><p>The intention of the Senior Artists is to bring a large-scale, high-quality and fresh exhibition to the Vuotalo gallery, whose works (mainly paintings, graphics and sculptures) have been created within a few years and which, at the same time, aims at the timelessness mentioned in the title.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7DE02AEB32854B87391D40067EF3F553/Ajattomuus_kuvataiteilijaseniorit", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7DE02AEB32854B87391D40067EF3F553/Ajattomuus_Tidloshet_Kuvataiteilijaseniorit", "en": "http://www.vuotalo.fi/en/events/event/7DE02AEB32854B87391D40067EF3F553/Ajattomuus_Timelessness_Senior_Artists" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Kuvataiteilijaseniorit tuovat Vuotalon galleriaan mittavan, korkeatasoisen ja tuoreen näyttelyn, jonka teokset tähtäävät ajattomuuteen.", "sv": "Kuvataiteilijaseniorit har för avsikt att till Nordhuset hämta en omfattande, högkvalitativ och fräsch utställning med verk som strävar efter att vara tidlösa.", "en": "The intention of the Senior Artists is to bring a large-scale, high-quality and fresh exhibition, whose works aim at timelessness to the Vuotalo gallery." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64272/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63815", "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:348/?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": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18622053/", "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18622053/", "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18622053/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151886, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T17:13:35.621657Z", "last_modified_time": "2024-07-25T17:13:35.621673Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753136.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151886/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T17:13:35.596702Z", "last_modified_time": "2024-12-20T01:14:01.149915Z", "date_published": null, "start_time": "2024-11-06T17: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, "location_extra_info": null, "name": { "fi": "Room Full of Hendrix – Roots-musiikin evoluutio vol. 7", "sv": "Room Full of Hendrix – Rootsmusikens evolution vol. 7", "en": "Room Full of Hendrix – Evolution of Roots Music, Vol. 7" }, "description": { "fi": "<p>Room Full Of Hendrix -yhtye coveroi Jimi Hendrixin legendaarista materiaalia autenttisella ja oikeaoppisella otteella.</p><p>Yhtyeen nokkamies Juho ”Kihara” Pitkänen on tunnustettu Hendrix-taitaja. Hän esitti Jimi Hendrixin roolia Aleksanterin Teatterin ja Peacockin Club 27 -musikaalissa.</p><p>Tunnettujen hittien lisäksi yhtyeen keikoilla kuullaan vähemmän esitettyjä Hendrix-kappaleita, alkuperäisiä versioita kunnioittaen. Tämän orkesterin keikoilla on hurja meno!</p><p>Yhtyeessä soittavat:<br>Juho ”Kihara” Pitkänen – kitara ja laulu<br>Hannu Sormunen – basso<br>Jarkko Rantanen – rummut</p><p>Malmitalon Roots-musiikin evoluutio -sarja jatkuu syksyllä 2024! Kerran kuukaudessa lavalla nähdään ja kuullaan alansa terävin kärki Suomessa. Jokaisessa konsertissa käsitellään kyseisen aikakauden tyylilajia roots-musiikin kehityksessä. Keväällä esitettiin 1920–1950-lukujen rootsia ja syksyllä edetään 1960-luvulla syntyneeseen rautalankamusiikkiin, rock’n’rolliin ja beatmusiikkiin.</p>", "sv": "<p>Bandet Room Full Of Hendrix gör covers av Jimi Hendrix legendariska material med ett autentiskt och renlärigt grepp.</p><p>Bandets frontman Juho \"Kihara\" Pitkänen är en erkänd Hendrix-mästare. Han spelade rollen som Jimi Hendrix i Alexandersteaterns och Peacocks Club 27-musikal.</p><p>Förutom välkända hittar får vi på bandets konserter även höra mindre framförda Hendrix-låtar, med respekt för originalversionerna. Det går vilt till på den här orkesterns spelningar!</p><p>Ensemble:<br>Juho \"Kihara\" Pitkänen – gitarr och sång<br>Hannu Sormunen – bas<br>Jarkko Rantanen – trummor</p>", "en": "<p>Room Full Of Hendrix covers Jimi Hendrix's legendary material in an authentic and orthodox way.</p><p>The band's frontman, Juho \"Kihara\" Pitkänen, is a recognized Hendrix aficionado. He played Jimi Hendrix in the Alexander Theatre and Peacock’s Club 27 musical production.</p><p>In addition to well-known hits, the band's gigs feature rarer Hendrix songs, while respecting the original versions. The gigs of this orchestra are wild!</p><p>The band members are:<br>Juho \"Kihara\" Pitkänen – guitar and vocals<br>Hannu Sormunen – bass<br>Jarkko Rantanen – drums</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ED08D540821093C794F40F8DD1A5F988/Room_Full_of_Hendrix", "sv": "http://www.malmitalo.fi/sv/evenemang/event/ED08D540821093C794F40F8DD1A5F988/Room_Full_of_Hendrix", "en": "http://www.malmitalo.fi/en/events/event/ED08D540821093C794F40F8DD1A5F988/Room_Full_of_Hendrix" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Room Full Of Hendrix -yhtye coveroi Jimi Hendrixin legendaarista materiaalia autenttisella ja oikeaoppisella otteella.", "sv": "Bandet Room Full Of Hendrix gör covers av Jimi Hendrix legendariska material med ett autentiskt och renlärigt grepp.", "en": "Room Full Of Hendrix covers Jimi Hendrix's legendary material in an authentic and orthodox way." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63815/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64198", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151705, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:34.513560Z", "last_modified_time": "2024-07-12T13:13:34.513574Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751734.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151705/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:34.498559Z", "last_modified_time": "2024-12-20T01:14:01.047097Z", "date_published": null, "start_time": "2024-11-06T16: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, "location_extra_info": null, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "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>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7812D16FCE13B15689D3FAC117344659/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/7812D16FCE13B15689D3FAC117344659/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/7812D16FCE13B15689D3FAC117344659/Stoa_Choir_" }, "provider": null, "provider_contact_info": null, "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:64198/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64754", "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:29/?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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152860, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-23T12:15:30.139658Z", "last_modified_time": "2024-10-23T12:15:30.139676Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749537.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152860/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-23T12:15:30.088904Z", "last_modified_time": "2024-12-20T01:14:00.906488Z", "date_published": null, "start_time": "2024-11-06T16: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, "location_extra_info": null, "name": { "fi": "Sommartider (7) – Onsdagsbio / Svenska Veckan", "sv": "Sommartider (7F) – Onsdagsbio / Svenska Veckan", "en": "Sommartider (7+) – Onsdagsbio / Svenska Veckan" }, "description": { "fi": "<p>Sommartider-elokuva kertoo legendaarisen ruotsalaisen pop-ilmiön Gyllene Tider -yhtyeen uskomattoman tarinan</p><p>Per on kunnianhimoinen lukiolaispoika Halmstadin pikkukaupungista, missä hän on kuitenkin vähän ulkopuolinen. Musiikin kautta hän löytää yhteyden ja elinikäiset ystävät MP:n, Micken, Andersin ja Göranin. Vastoinkäymisistä huolimatta bändi taistelee päättäväisesti ja 80-luvun alussa he onnistuvat lyömään läpi tarttuvilla kertosäkeillään ja sanoituksillaan elämästä pikkukaupungissa.</p><p>Ohjaus: Per Simonsson. Pääosissa: Hampus Hallberg, Emil Almén, Henriette Steenstrup, Lance Hedman Graaf, Phoenix Parnevik.</p><p>Genre: Draama, musiikki. <br>Kesto: 1h 41 min<br>Kieli: ruotsi <br>Tekstitys: suomi<br>Ikäraja: K7.<br>Vapaa pääsy.</p>", "sv": "<p>Filmen berättar den sanslösa historien bakom det legendariska svenska bandet Gyllene Tider som kommit att bli en av vår tids största popsensationer.</p><p>Per är skolans ambitiösa outsider i gymnasiet i Halmstad som finner en gemenskap och vänner för livet genom musiken med MP, Micke, Anders och Göran. Trots motgångar och jantelag kämpar bandet målmedvetet och får i början av åttiotalet sitt stora genombrott med sina effektiva refränger och kärleksfulla texter om livet i en småstad. <br> <br>Regi: Per Simonsson. I huvudrollerna: Hampus Hallberg, Emil Almén, Henriette Steenstrup, Lance Hedman Graaf, Phoenix Parnevik.</p><p>Genre: drama, musik. <br>Längd: 1h 41 min<br>Svenskt tal, finsk text. <br>F7. <br>Fri entré.</p>", "en": "<p>A story about how the legendary Swedish band Gyllene Tider became one of Sweden’s biggest pop sensations.</p><p>Per is the ambitious outsider at school, who discovers friends for life through the power of music as he finds MP, Micke, Anders and Göran. Despite hardships, the band goes on to break through in the early 80s, where their hit songs about life in a small town made them a nationwide sensation.<br> <br>Director: Per Simonsson. Leading roles: Hampus Hallberg, Emil Almén, Henriette Steenstrup, Lance Hedman Graaf, Phoenix Parnevik.</p><p>Genre: Drama, music <br>Duration: 1h 41 min<br>Language: Swedish <br>Subtitles: Finnish</p><p>Age limit: 7<br>Free entry</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9892CBFEB69096901A9A4BB3B06CE593/Sommartider_7_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9892CBFEB69096901A9A4BB3B06CE593/Sommartider_7F_", "en": "http://www.vuotalo.fi/en/events/event/9892CBFEB69096901A9A4BB3B06CE593/Sommartider_7_" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Sommartider-elokuva kertoo legendaarisen ruotsalaisen pop-ilmiön Gyllene Tider -yhtyeen uskomattoman tarinan", "sv": "Filmen berättar den sanslösa historien bakom det legendariska svenska bandet Gyllene Tider som kommit att bli en av vår tids största popsensationer.", "en": "A story about how the legendary Swedish band Gyllene Tider became one of Sweden’s biggest pop sensations." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64754/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64583", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152440, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-17T10:14:05.443107Z", "last_modified_time": "2024-09-17T10:14:05.443121Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758080.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152440/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-17T10:14:05.430109Z", "last_modified_time": "2024-12-20T01:14:00.771123Z", "date_published": null, "start_time": "2024-11-06T09:00:00Z", "end_time": "2024-11-06T11: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, "location_extra_info": null, "name": { "fi": "Keskiviikon lounasjamit", "sv": "Jams till onsdagslunchen", "en": "Wednesday lunch jams" }, "description": { "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>", "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>", "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8C72E44816831D6DB0F33C87503A708F/Keskiviikon_lounasjamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8C72E44816831D6DB0F33C87503A708F/Jams_till_onsdagslunchen", "en": "http://www.kanneltalo.fi/en/events/event/8C72E44816831D6DB0F33C87503A708F/Wednesday_lunch_jams" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.", "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.", "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64745", "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:732/?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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152854, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-22T13:14:59.608806Z", "last_modified_time": "2024-10-22T13:14:59.608822Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759269.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152854/?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-10-22T13:14:59.553727Z", "last_modified_time": "2024-12-20T01:14:00.683342Z", "date_published": null, "start_time": "2024-11-06T08: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, "location_extra_info": null, "name": { "fi": "Sara Myrberg: Leka vara låta djur – en verkstad med Sara Myrberg (Sverige)", "sv": "Sara Myrberg: Leka vara låta djur – en verkstad med Sara Myrberg (Sverige)" }, "description": { "fi": "<p>Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad</p><p>En hund kan vifta på svansen och dansa fram i vilda hopp med glada skall.<br>Hur känns det att vakna och sträcka på sig som en katt?<br>En liten fågel flyger högt, högt och sjunger en vacker melodi.<br>Farliga lejon smyger om natten.<br> <br>Vi leker fram olika djur i ett undersökande där barnens idéer och rörelser får stort utrymme. Med Sara Myrberg skådespelare, regissör och forskare i residens på Annegården.</p><p>Svenska veckans program.</p><p>Plats: kuva 1 klassrum<br>Längd 40 minuter<br>För dagisgrupper, 2-4 åringar.<br>Gratis, anmälning: Kultus.fi från 24 Oktober</p>", "sv": "<p>Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad</p><p>En hund kan vifta på svansen och dansa fram i vilda hopp med glada skall.<br>Hur känns det att vakna och sträcka på sig som en katt?<br>En liten fågel flyger högt, högt och sjunger en vacker melodi.<br>Farliga lejon smyger om natten.<br> <br>Vi leker fram olika djur i ett undersökande där barnens idéer och rörelser får stort utrymme. Med Sara Myrberg skådespelare, regissör och forskare i residens på Annegården.</p><p>Svenska veckans program.</p><p>Plats: kuva 1 klassrum<br>Längd 40 minuter<br>För dagisgrupper, 2-4 åringar.<br>Gratis, anmälning: Kultus.fi från 24 Oktober</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/313946B2E4ADF6FE18BA9E10E63508D4/Sara_Myrberg_Leka_vara_lata_djur", "sv": "http://www.annantalo.fi/sv/evenemang/event/313946B2E4ADF6FE18BA9E10E63508D4/Sara_Myrberg_Leka_vara_lata_djur" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad", "sv": "Hur rör sig djur? Och hur låter de? Verkstaden är fullbokad" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64745/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64520", "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152303, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:13:58.617749Z", "last_modified_time": "2024-09-05T11:13:58.617763Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749839.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152303/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-09-05T11:13:58.602595Z", "last_modified_time": "2024-12-20T01:14:00.597670Z", "date_published": null, "start_time": "2024-11-06T08:00:00Z", "end_time": "2024-11-06T10: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, "location_extra_info": null, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2E3CECB1D43B8E0D57AC61CD6A6D962C/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/2E3CECB1D43B8E0D57AC61CD6A6D962C/Knattebion_", "en": "http://www.annantalo.fi/en/events/event/2E3CECB1D43B8E0D57AC61CD6A6D962C/Toddler_cinema" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63699", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151916, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T08:14:33.128663Z", "last_modified_time": "2024-07-26T08:14:33.128678Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752051.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151916/?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-26T08:14:33.100030Z", "last_modified_time": "2024-12-20T01:14:00.506705Z", "date_published": null, "start_time": "2024-11-06", "end_time": "2024-12-28", "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, "location_extra_info": null, "name": { "fi": "Sari Airola & Katri Kirkkopelto: Tarinasoppaa", "sv": "Sari Airola & Katri Kirkkopelto: Tarinasoppaa – Berättelsesoppa", "en": "Sari Airola & Katri Kirkkopelto: Tarinasoppaa – Story Soup" }, "description": { "fi": "<p>Mitä kaikkea tarvitaankaan tarinasoppaan? Ainakin purkkitolkulla kuivattuja herkkujuonia, säkeittäin jutun juurta ja mausteeksi satumaisten hahmojen siemeniä.</p><p>Ja tietenkin ihmeellinen ruokakomero, josta löytyy mielikuvitukselle runsaasti ravintoa. Näyttely houkuttelee kävijöitä sekoittelemaan omia mielikuvituskeitoksia ensimmäisestä idean siemenestä lopulliseen tarinaan asti ja ruokkimaan niillä näyttelyssä olevaa loputtoman nälkäistä Tarina-ahmattia.</p><p>Kuvittaja-kirjailijat <b>Sari Airola</b> ja <b>Katri Kirkkopelto</b> ovat tuttuja monista rakastetuista lastenkirjoistaan. Tähän toiminnalliseen näyttelyyn tekijät ovat tuoneet Tarina-ahmatin lisäksi omia hahmojaan ja tarinoitaan vuosien varrelta. Näyttelyssä tulet kohtamaan mm. Mollin, Viivin, Silivilin ja Sisun.</p><p>Sari Airola ja Katri Kirkkopelto ovat tavattavissa Lasten lauantaina 23.11. klo 12-14. Lämpimästi tervetuloa maksuttomiin työpajoihin.</p>", "sv": "<p>Vad behövs för en berättelsesoppa? Åtminstone flera burkar med torkade delikatessintriger, allt möjligt att tala om och sagofigursfrön för att krydda till det.</p><p>Och naturligtvis ett underbart skafferi, där det finns mycket näring för fantasin. Utställningen bjuder in besökarna att blanda till sina egna fantasifulla brygder från det första fröet till en idé till den slutliga berättelsen, och sedan mata utställningens oändligt hungriga Sagofrossare med dessa.</p><p>Illustratörerna och författarna <b>Sari Airola</b> och <b>Katri Kirkkopelto</b> är kända för sina många älskade barnböcker. Till denna funktionella utställning har konstnärerna utöver Sagofrossaren även tagit med sig sina egna sagofigurer och berättelser från de gångna åren. På utställningen möter du bland andra Molli, Viivi, Silivili och Sisu.</p><p>Under Barnrättsveckan ordnas workshoppar i anslutning till utställningen.</p>", "en": "<p>What do you need to make story soup? At the very least, jars of plot jerky, sacks of story roots and, as a spice, the seeds of fabulous characters.</p><p>And, of course, an amazing pantry with plenty of food for the imagination. This exhibition attracts visitors to mix their own imaginative soups from the first seed of an idea to the final story and feed them to the endlessly hungry Story Gobbler at the end of the exhibition.</p><p>Illustrator-authors<b> Sari Airola</b> and <b>Katri Kirkkopelto</b> are well known for their many beloved children's books. In addition to the Story Gobbler, the creators have included their own characters and stories from over the years to this functional exhibition. That is why you will be able to find Molli, Viivi, Silivili and Sisu in this showcase.</p><p>Workshops will be held in connection with the exhibition during Children's Rights Week.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8D4E0AA40EDD734F00F6A131675AA43B/Sari_Airola_Katri_Kirkkopelto_Tarinasoppaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8D4E0AA40EDD734F00F6A131675AA43B/Sari_Airola_Katri_Kirkkopelto_Tarinasoppaa_", "en": "http://www.kanneltalo.fi/en/events/event/8D4E0AA40EDD734F00F6A131675AA43B/Sari_Airola_Katri_Kirkkopelto_Tarinasoppaa" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Mitä kaikkea tarvitaankaan tarinasoppaan? Ainakin purkkitolkulla kuivattuja herkkujuonia, säkeittäin jutun juurta ja mausteeksi satumaisten hahmojen siemeniä.", "sv": "Vad behövs för en berättelsesoppa? Åtminstone flera burkar med torkade delikatessintriger, allt möjligt att tala om och sagofigursfrön för att krydda till det.", "en": "What do you need to make story soup? At the very least, jars of plot jerky, sacks of story roots and, as a spice, the seeds of fabulous characters." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63699/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64218", "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:350/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151785, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T14:13:35.097636Z", "last_modified_time": "2024-07-22T14:13:35.097657Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755959.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151785/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T14:13:35.078379Z", "last_modified_time": "2024-12-20T01:14:00.136954Z", "date_published": null, "start_time": "2024-11-05T12:00:00Z", "end_time": "2024-11-05T13: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, "location_extra_info": null, "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" }, "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>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde.</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D9C02D124188D9FC89517814782A0225/Paivatanssit_", "sv": "http://www.stoa.fi/sv/evenemang/event/D9C02D124188D9FC89517814782A0225/Paivatanssit_", "en": "http://www.stoa.fi/en/events/event/D9C02D124188D9FC89517814782A0225/Paivatanssit" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64301", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T08:14:32.913327Z", "last_modified_time": "2024-07-26T08:14:32.913342Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753202.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151915/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T08:14:32.876671Z", "last_modified_time": "2024-12-20T01:14:00.042026Z", "date_published": null, "start_time": "2024-11-04T16:00:00Z", "end_time": "2024-11-04T17: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, "location_extra_info": null, "name": { "fi": "Juurilla: Hanna Pakarinen – Maksuttomat maanantait", "sv": "Vid rötterna: Hanna Pakarinen – Kostnadsfria måndagar", "en": "At the Roots Club: Hanna Pakarinen – Free Mondays" }, "description": { "fi": "<p>Suuren yleisön tietoisuuteen Idols-voittajana noussut Pakarinen on tehnyt komean uran popmusiikin parissa.</p><p>Ahkerasti keikkaileva Pakarinen on julkaissut musiikkia englanniksi ja suomeksi. Ajankohtainen artisti nähdään Vain Elämää -ohjelman 15. kaudella syyskuussa, joten Juurilla-klubillakin luvassa on monipuolinen kattaus Pakarisen tuotantoa.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Pakarinen som blev känd för allmänheten som Idols-vinnare har haft en lysande karriär inom popmusiken.</p><p>Den flitigt turnerande Pakarinen har gett ut musik på engelska och finska. I september medverkar den aktuella artisten i den 15:e säsongen av TV-programmet Vain Elämää, och därmed erbjuder även Juurilla-klubben en mångsidig dukning av Pakarinens produktion.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas<br>Tommi Lievemaa – gitarr<br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon<br>Kepa Kettunen – trummor</p><p>Börja veckan i en slående stämning! <br>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Pakarinen, who rose to the attention of the general public as an Idols contest winner, has forged an impressive career in pop music.</p><p>Hard-working Pakarinen has released music in both English and Finnish. She will be featured in the 15th season of The Best Singers in September, which means that At the Roots Club will also feature a varied selection of Pakarinen's music.</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass<br>Tommi Lievemaa – guitar<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone<br>Kepa Kettunen – drums</p><p>Free Mondays<br>Start your week with some catchy tunes! <br>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/38919E166EC5A5F8D795C3C92B4360D6/Juurilla_Hanna_Pakarinen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/38919E166EC5A5F8D795C3C92B4360D6/Vid_rotterna_Hanna_Pakarinen", "en": "http://www.kanneltalo.fi/en/events/event/38919E166EC5A5F8D795C3C92B4360D6/At_the_Roots_Club_Hanna_Pakarinen" }, "provider": null, "provider_contact_info": null, "short_description": { "fi": "Suuren yleisön tietoisuuteen Idols-voittajana noussut Pakarinen on tehnyt komean uran popmusiikin parissa.", "sv": "Pakarinen som blev känd för allmänheten som Idols-vinnare har haft en lysande karriär inom popmusiken.", "en": "Pakarinen, who rose to the attention of the general public as an Idols contest winner, has forged an impressive career in pop music." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64301/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24655, "next": "