Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=160
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=161", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=159" }, "data": [ { "id": "espoo_le:agjcfqexnq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T12:36:28.849386Z", "last_modified_time": "2024-09-24T05:57:58.535612Z", "date_published": "2024-09-23T04:59:00Z", "start_time": "2024-09-23T05:00:00Z", "end_time": "2024-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tagged Tales: Exploring the language of street art on valokuvaaja Roosa Laamasen dokumentaarinen valokuvaprojekti, joka koostuu vuosien 2023-2024 aikana kuvatuista tägeistä Espoon alueelta.</p><p><br></p><p>Tägit asetetaan katsojan eteen uudessa valossa valokuvataiteen keinoin, tekemällä näkyväksi niiden kiistanalaista ja vakiintunutta jalansijaa suomalaisessa katukuvassa, sekä historiaa graffitin ja katutaiteen alkumetreiltä nykypäivään.</p><p><br></p><p>Teoskokonaisuus käsittelee alati muuttuvaa kaupunkimiljöötä ja tägien vaikutusta katukuvaan realistisessa ympäristössään ja herättää katsojan pohtimaan niiden taiteellista arvoa, hetkellisyyttä, sekä laittomuuden näkökulmaa tekijöitä unohtamatta.</p>", "sv": "<p>Välkommen att besöka Roosa Laamanens utställning \"Tagged tales: Exploring the language of street art\" i Entressebiblioteket under tiden 23.9.-13105.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Tagged tales: Exploring the language of street art\" by Roosa Laamanen in Entresse Library during 23.9.-13.10.2024. Welcome!</p>" }, "name": { "fi": "Roosa Laamanen: Tagged tales 23.9.-13.10.2024", "sv": "Roosa Laamanen: Tagged tales 23.9.-13.10.2024", "en": "Roosa Laamanen: Tagged tales 23.9.-13.10.2024" }, "short_description": { "fi": "Roosa Laamasen valokuvanäyttely \"Tagged tales: Exploring the language of street art\" Entressen kirjaston Valatori-seinällä 23.9.-13.10.2024.", "sv": "Roosa Laamanens utställning \"Tagged tales: Exploring the language of street art\" i Entressebiblioteket under tiden 23.9.-13.10.2024.", "en": "Art exhibition \"Tagged tales: Exploring the language of street art\" by Roosa Laamanen in Entresse Library during 23.9.-13.10.2024." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcfqexnq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64603", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152581, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:35.021244Z", "last_modified_time": "2024-09-23T14:15:35.021266Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745746.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152581/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:35.000044Z", "last_modified_time": "2024-09-23T14:15:35.070901Z", "date_published": null, "start_time": "2024-10-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0D48B6FDF0D8C5573A5C54E6EB4E7047/Mielensapahoittajan_rakkaustarina_S_" }, "description": { "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios" }, "short_description": { "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64602", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:32.559503Z", "last_modified_time": "2024-09-23T14:15:32.559524Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745740.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:32.542750Z", "last_modified_time": "2024-09-23T14:15:32.605584Z", "date_published": null, "start_time": "2024-10-12T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DB2CF5F1F305016CEDBA454F151A32E7/Mielensapahoittajan_rakkaustarina_S_" }, "description": { "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios" }, "short_description": { "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64602/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64601", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152575, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:32.018061Z", "last_modified_time": "2024-09-23T14:15:32.018080Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745736.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152575/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:31.996219Z", "last_modified_time": "2024-09-23T14:15:32.073964Z", "date_published": null, "start_time": "2024-10-11T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB1933E69A2010F6FF4ECF9D3619C18D/Mielensapahoittajan_rakkaustarina_S_" }, "description": { "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios" }, "short_description": { "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64601/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64578", "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:42/?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:55/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152569, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:28.991003Z", "last_modified_time": "2024-09-23T14:15:28.991024Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758152.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152569/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:28.932309Z", "last_modified_time": "2024-09-23T14:15:29.077361Z", "date_published": null, "start_time": "2024-10-02", "end_time": "2024-10-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E5D6A7E83A21CF4DD6476A2E1A9F328/Marika_Halonen_Ou_Topos_2", "en": "http://www.malmitalo.fi/en/events/event/7E5D6A7E83A21CF4DD6476A2E1A9F328/Marika_Halonen_Ou_Topos_2" }, "description": { "fi": "<p>Marika Halosen valokuvissa ruma ja rikkinäinen todellisuus kohtaa taiteilijan rakentamat pilvilinnat. Kuvissa näkyy romua ja roskia ja kaiken yllä leijailee ihana värisavu, joka on kuin liikkuva ajatus, jota ei voi ennakoida.</p><p>“Punainen värisavu purkautuu ulos pienestä metallisesta purkista muodostaen pilven kaltaisen alati muuttuvan muodon. Katson sitä kameran etsimen läpi ja yritän tallentaa näkemääni nopeasti ennen kuin se katoaa. Parin minuutin ajan se tanssii silmieni edessä, liikkuen yhä laajemmalle alueelle. Samalla tumma punainen liukuu kohti vaaleampia värisävyjä. Suurimman osan aikaa se on ihanan vaaleanpunainen. Tuuli näyttää sille suunnan, sitä ei voi kontrolloida. Voin vain laittaa alulle tämän tapahtumaketjun mutten määrätä sen lopullisesta koreografiasta.</p><p>Näistä katoavista hetkistä syntyy valokuvia, joihin tallentuu sekä savu että maisema. Kuvissani on käynnissä spektaakkeli, mutta yleisö ei ole paikalla. Ne ovat kameralle rakennettuja esityksiä, hetkellisiä utopioita, pilvilinnoja. Valokuvani paikantuvat asutuksien reuna-alueille, moderneille raunioille tai hylättyihin rakennuksiin. Näistä tyhjistä tiloista käsin työstän utopiaani. Esitykseni avulla performoin nykyhetkeen katkoksen ja sen avulla maisema muuttuu toiseksi, paikaksi, jota ei ole.</p><p>Olen käyttänyt savupommeja valokuvateoksissani vuodesta 2014 lähtien. Aluksi kuvasin niitä metsissä, kallioilla ja rannoilla, sittemmin joutomaa-alueet ja hylättyjen rakennusten rauniot löysivät tiensä savuperformanssieni näyttämöiksi. Ne tuntuivat kuuluvan yhteen ja tuntuvat siltä yhä. Valokuvissani ruma ja rikkinäinen todellisuus kohtaa rakentamani pilvilinnat. Kuvissa näkyy romua ja roskia ja kaiken yllä leijailee ihana värisavu, joka on kuin liikkuva ajatus, jota ei voi ennakoida\", Marika kertoo.</p><p><b>Marika Halonen</b> on Turun Taideakatemiasta valmistunut Helsinkiläinen kuvataiteilija. Halosen työskentelyssä intuitiolla ja sattumalla on suuri rooli. Prosessiin kuuluu olennaisesti myös seikkailu: etsiminen ja löytäminen. Se on jatkuvaa kokeilemista, improvisointia, sään armoilla olemista ja epävarmuuden sietämistä.</p><p>Marika Halosen \"Ou Topos #2\" -näyttelyn avajaiset Malmitalon galleriassa keskiviikkona 2.10. klo 17, tervetuloa!</p><p>Vapaa pääsy</p>", "en": "<p>\"In the pictures, you can see scrap and garbage, and above everything floats a wonderful colored smoke, which is like a moving thought that cannot be predicted\" artist Marika Halonen tells.</p><p>“The red colored smoke escapes out of a small metal jar, forming an ever-changing shape like a cloud. I follow it through the camera and try to record what I see quickly before it disappears. For a couple of minutes, it dances in front of my eyes, moving into an ever-widening area. At the same time, dark red slides toward lighter shades of color. Most of the time it is amazingly pink. With a smoke bomb, you can never know how it behaves. It flies with the wind, it cannot be controlled.<br> <br>I use my camera to capture these vanishing moments. When I shoot smoke bombs, I create an illusion in a real physical place. They are performances built for the camera, momentary utopias, cloud castles. Color smoke transforms landscape for a moment into another reality where something incomprehensible is going on. But it only takes a moment and is gone in a couple of minutes. My photos are located on forgotten places, in modern ruins or in an abandoned buildings. With my performance, I perform a break into the present moment and it transforms the landscape into another place, a place that does not exist.</p><p>I have been using smoke bombs in my photo works since 2014. At first I photographed them in forests, cliffs and beaches, then wasteland areas and the ruins of abandoned buildings found their way into the stages of my smoke performances. They seemed to belong together and still still feel that way. In my photos, ugly and broken reality meets the cloud castles I build. In the pictures, you can see scrap and garbage, and above everything floats a wonderful colored smoke, which is like a moving thought that cannot be predicted”, the artist tells.</p><p>Marika Halonen is a visual artist from Helsinki who graduated from the Turku Academy of Arts. Intuition play a big role in Halonen's work. The process also essentially includes adventure: searching and finding. It is constant experimentation, improvisation, being at the mercy of the weather, tolerating uncertainty.</p><p>Free entry. The exhibition opening will be held on October 2nd at 5 PM. Snacks available, and the artist will be present. Welcome!</p>" }, "name": { "fi": "Marika Halonen – Ou Topos #2", "en": "Marika Halonen – Ou Topos #2" }, "short_description": { "fi": "Marika Halosen valokuvissa ruma ja rikkinäinen todellisuus kohtaa taiteilijan rakentamat pilvilinnat. Kuvissa näkyy romua ja roskia ja kaiken yllä leijailee ihana värisavu, joka on kuin liikkuva ajatus, jota ei voi ennakoida.", "en": "\"In the pictures, you can see scrap and garbage, and above everything floats a wonderful colored smoke, which is like a moving thought that cannot be predicted\" artist Marika Halonen tells." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63431", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151569, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T15:13:42.958793Z", "last_modified_time": "2024-06-27T15:13:42.958808Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749893.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151569/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T15:13:42.932489Z", "last_modified_time": "2024-09-23T14:15:28.613743Z", "date_published": null, "start_time": "2024-09-30T07:15:00Z", "end_time": "2024-09-30T07: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/13E9E7537DCA484538A0AE1306DB31AD/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/13E9E7537DCA484538A0AE1306DB31AD/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/13E9E7537DCA484538A0AE1306DB31AD/Musical_Art_Adventure" }, "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>TÄYNNÄ<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>TÄYNNÄ<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>TÄYNNÄ<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>TÄYNNÄ<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>" }, "name": { "fi": "Musiikillinen taideseikkailu – vauvoille", "sv": "Musikaliskt konstäventyr – för bebisar", "en": "Musical Art Adventure – for babies" }, "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." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63431/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63424", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:40.605801Z", "last_modified_time": "2024-06-27T14:13:40.605814Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749879.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:40.565113Z", "last_modified_time": "2024-09-23T14:15:28.503212Z", "date_published": null, "start_time": "2024-09-30T06:00:00Z", "end_time": "2024-09-30T06: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BF41624C16C5C975180C90A5001F5F58/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/BF41624C16C5C975180C90A5001F5F58/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/BF41624C16C5C975180C90A5001F5F58/Musical_Art_Adventure" }, "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>TÄYNNÄ <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>TÄYNNÄ <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>TÄYNNÄ <b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63424/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64356", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-04T10:14:55.077993Z", "last_modified_time": "2024-09-04T10:14:55.078014Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756876.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152282/?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-04T10:14:55.051213Z", "last_modified_time": "2024-09-23T13:14:56.058199Z", "date_published": null, "start_time": "2024-10-05T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E566C274730C9851A9FB36DC620128B6/Teatteri_Rollo_Kuopankaivajat", "sv": "http://www.annantalo.fi/sv/evenemang/event/E566C274730C9851A9FB36DC620128B6/Teater_Rollo_Kuopankaivajat", "en": "http://www.annantalo.fi/en/events/event/E566C274730C9851A9FB36DC620128B6/Theatre_Company_Rollo_Kuopankaivajat_Diggers_" }, "description": { "fi": "<p>Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!</p><p>Oy Kuoppa Ab:n kuopankaivaja Hiekkanen, Kivinen ja Tasanen saapuvat työmaalle kaivamaan kuopan. Ennen kuin päästään lapiohommiin, on kaivajilla monenlaista puuhaa: pitää etsiä kuopalle paikka; pitää merkitä työmaa; pitää päättää tehdäänkö peruskuoppa, vai kuinka olisi juhlakuoppa? Vai sittenkin ilmakuoppa? Työmaan valmisteluun tarvitaan monenlaista merkkiä, tolppaa ja kylttiä, hanskoja, mittoja ja muutama työlaulukin!<br> <br>Tämä musiikkipitoinen työmaa innostaa niin päiväkoti-ikäisiä kuin alakoulun pienimpiä oppilaita puhumattakaan perheen työmiehistä ja -naisista!<br> <br>Ohjaus: Sanna Monto <br>Käsikirjoitus ja esiintyjät: Wisa Heinonen, Janne Immonen, Sanna Monto <br>Musiikki: Janne Immonen <br>Laulujen sanat: Wisa Heinonen <br>Lavastus: Kati Lamppu <br>Puvustus: Niina Huovinen <br>Tekniikka: Juha Skukin <br> <br>Ikäsuositus: 3-7 vuotiaat <br>Esityksen kesto: noin 40 minuuttia <br>Kieli: suomi</p><p>Liput: ryhmälippu 6 € (väh. 5 hlöä). Opettajat ja ohjaajat maksutta.<br>Muut liput: 10 € <br>Lippuvaraukset: rollo@rollo.fi</p>", "sv": "<p>En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!</p><p>Gropgrävarna Hiekkanen, Kivinen och Tasanen från Oy Kuoppa Ab kommer till en byggarbetsplats för att gräva en grop. Innan de kan sätta igång med spaden är det mycket som ska göras: de måste hitta en plats att gräva gropen på, markera platsen, bestämma om det ska vara en vanlig grop eller kanske en festlig grop? Eller hur skulle det vara med en luftgrop? För att förbereda arbetsplatsen krävs en mängd olika märken, stolpar och skyltar, handskar, mått och till och med några arbetsramsor!</p><p>Den här musikfyllda arbetsplatsen passar både förskolebarn och lågstadiets minsta, för att inte tala om de arbetsföra männen och kvinnorna i familjen!</p><p>Regi: Sanna Monto<br>Manus och skådespelare: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Musik: Janne Immonen<br>Sångtexter: Wisa Heinonen<br>Scenografi: Kati Lamppu<br>Kostymer: Niina Huovinen<br>Teknik: Juha Skukin</p><p>Åldersrekommendation: 3–7-åringar<br>Föreställningens längd: ca 40 minuter<br>Språk: finska</p><p>Biljetter: gruppbiljett 6 € (minst 5 personer). Lärare och handledare utan kostnad.<br>Övriga biljetter: 10 €<br>Biljettreservationer: rollo@rollo.fi</p>", "en": "<p>A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!</p><p>Oy Kuoppa Ab's hole diggers Hiekkanen, Kivinen and Tasanen arrive at a construction site to dig a hole. Before the shovelling can begin, the diggers have a lot do: find a place for the hole; mark the construction site; decide whether to create a basic hole or whole hole? Or should it be a holy hole? After the construction site is ready, you lots of signs, posts and placards, gloves, measurements and a few work songs!</p><p>This music-rich construction yard is an inspiration for both daycare-aged children and younger primary school pupils, not to mention the family’s working men and women!</p><p>Director: Sanna Monto<br>Script and cast: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Music: Janne Immonen<br>Song lyrics: Wisa Heinonen<br>Stage design: Kati Lamp<br>Costumes: Niina Huovinen<br>Technique: Juha Skukin</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 40 minutes<br>Language: Finnish</p><p>Tickets: group ticket €6 (min. 5 persons). Teachers and instructors free of charge.<br>Other tickets: €10<br>Ticket reservations: rollo@rollo.fi</p>" }, "name": { "fi": "Teatteri Rollo: Kuopankaivajat", "sv": "Teater Rollo: Kuopankaivajat", "en": "Theatre Company Rollo: Kuopankaivajat (Diggers)" }, "short_description": { "fi": "Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!", "sv": "En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!", "en": "A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64356/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64355", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152281, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-04T10:14:54.510254Z", "last_modified_time": "2024-09-04T10:14:54.510273Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756874.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152281/?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-04T10:14:54.463256Z", "last_modified_time": "2024-09-23T13:14:55.554652Z", "date_published": null, "start_time": "2024-10-04T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3207DBF80233E7867AC0900251C35F34/Teatteri_Rollo_Kuopankaivajat", "sv": "http://www.annantalo.fi/sv/evenemang/event/3207DBF80233E7867AC0900251C35F34/Teater_Rollo_Kuopankaivajat", "en": "http://www.annantalo.fi/en/events/event/3207DBF80233E7867AC0900251C35F34/Theatre_Company_Rollo_Kuopankaivajat_Diggers_" }, "description": { "fi": "<p>Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!</p><p>Oy Kuoppa Ab:n kuopankaivaja Hiekkanen, Kivinen ja Tasanen saapuvat työmaalle kaivamaan kuopan. Ennen kuin päästään lapiohommiin, on kaivajilla monenlaista puuhaa: pitää etsiä kuopalle paikka; pitää merkitä työmaa; pitää päättää tehdäänkö peruskuoppa, vai kuinka olisi juhlakuoppa? Vai sittenkin ilmakuoppa? Työmaan valmisteluun tarvitaan monenlaista merkkiä, tolppaa ja kylttiä, hanskoja, mittoja ja muutama työlaulukin!<br> <br>Tämä musiikkipitoinen työmaa innostaa niin päiväkoti-ikäisiä kuin alakoulun pienimpiä oppilaita puhumattakaan perheen työmiehistä ja -naisista!<br> <br>Ohjaus: Sanna Monto <br>Käsikirjoitus ja esiintyjät: Wisa Heinonen, Janne Immonen, Sanna Monto <br>Musiikki: Janne Immonen <br>Laulujen sanat: Wisa Heinonen <br>Lavastus: Kati Lamppu <br>Puvustus: Niina Huovinen <br>Tekniikka: Juha Skukin <br> <br>Ikäsuositus: 3-7 vuotiaat <br>Esityksen kesto: noin 40 minuuttia <br>Kieli: suomi</p><p>Liput: ryhmälippu 6 € (väh. 5 hlöä). Opettajat ja ohjaajat maksutta.<br>Muut liput: 10 €</p><p>Lippuvaraukset: rollo@rollo.fi</p>", "sv": "<p>En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!</p><p>Gropgrävarna Hiekkanen, Kivinen och Tasanen från Oy Kuoppa Ab kommer till en byggarbetsplats för att gräva en grop. Innan de kan sätta igång med spaden är det mycket som ska göras: de måste hitta en plats att gräva gropen på, markera platsen, bestämma om det ska vara en vanlig grop eller kanske en festlig grop? Eller hur skulle det vara med en luftgrop? För att förbereda arbetsplatsen krävs en mängd olika märken, stolpar och skyltar, handskar, mått och till och med några arbetsramsor!</p><p>Den här musikfyllda arbetsplatsen passar både förskolebarn och lågstadiets minsta, för att inte tala om de arbetsföra männen och kvinnorna i familjen!</p><p>Regi: Sanna Monto<br>Manus och skådespelare: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Musik: Janne Immonen<br>Sångtexter: Wisa Heinonen<br>Scenografi: Kati Lamppu<br>Kostymer: Niina Huovinen<br>Teknik: Juha Skukin</p><p>Åldersrekommendation: 3–7-åringar<br>Föreställningens längd: ca 40 minuter<br>Språk: finska</p><p>Biljetter: gruppbiljett 6 € (minst 5 personer). Lärare och handledare utan kostnad.<br>Övriga biljetter: 10 €<br>Biljettreservationer: rollo@rollo.fi</p>", "en": "<p>A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!</p><p>Oy Kuoppa Ab's hole diggers Hiekkanen, Kivinen and Tasanen arrive at a construction site to dig a hole. Before the shovelling can begin, the diggers have a lot do: find a place for the hole; mark the construction site; decide whether to create a basic hole or whole hole? Or should it be a holy hole? After the construction site is ready, you lots of signs, posts and placards, gloves, measurements and a few work songs!</p><p>This music-rich construction yard is an inspiration for both daycare-aged children and younger primary school pupils, not to mention the family’s working men and women!</p><p>Director: Sanna Monto<br>Script and cast: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Music: Janne Immonen<br>Song lyrics: Wisa Heinonen<br>Stage design: Kati Lamp<br>Costumes: Niina Huovinen<br>Technique: Juha Skukin</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 40 minutes<br>Language: Finnish</p><p>Tickets: group ticket €6 (min. 5 persons). Teachers and instructors free of charge.<br>Other tickets: €10<br>Ticket reservations: rollo@rollo.fi</p>" }, "name": { "fi": "Teatteri Rollo: Kuopankaivajat", "sv": "Teater Rollo: Kuopankaivajat", "en": "Theatre Company Rollo: Kuopankaivajat (Diggers)" }, "short_description": { "fi": "Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!", "sv": "En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!", "en": "A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64355/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64367", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-09T12:16:26.296220Z", "last_modified_time": "2024-08-09T12:16:26.296236Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756318.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-08-09T12:16:26.280919Z", "last_modified_time": "2024-09-23T13:14:52.998676Z", "date_published": null, "start_time": "2024-09-27T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/42AC00E709ABF313DF56A65BFC7E1C6A/Pontus_Linder_Erwin_Semler_Looped_Square_", "sv": "http://www.stoa.fi/sv/evenemang/event/42AC00E709ABF313DF56A65BFC7E1C6A/Pontus_Linder_Erwin_Semler_Looped_Square_", "en": "http://www.stoa.fi/en/events/event/42AC00E709ABF313DF56A65BFC7E1C6A/Pontus_Linder_Erwin_Semler_Looped_Square_" }, "description": { "fi": "<p>Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.</p><p>Esitys syntyy yhteistyössä yleisön kanssa. Yleisö on mukana vaikuttamassa sisältöön vapaaehtoisten interaktiivisten hetkien aikana. Esteettisesti esitys liikkuu katutaiteen, nykytanssin ja teatterin välimaastossa. Nopeita, voimakkaita ja herkkiä liikkeitä sekä ripaus kuivaa huumoria! Esityksen yhteydessä on tanssifilmien installaatio, joka koostuu ammattilaisten ja ei-ammattilaisten teoksista.</p><p>Kesto: 50 min<br>Ikäsuositus: yläkouluikäiset<br>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.</p><p>Föreställningen skapas i samråd med publiken, de är med och påverkar innehållet under frivilliga interaktiva moment. Estetiskt rör sig föreställningen mellan streetperformance, nutida dans och teater. Snabba, starka och ömma rörelser samt en gnutta torr humor. I anslutning till föreställningen finns en dansfilmsinstallation, den består av en mix och professionella och icke-professionella utövares verk.</p><p>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p>", "en": "<p>Looped square is a square where we open up, dig into and channel our own artistic callings.</p><p>The performance is created together with the audience, they participate and influence the content during voluntary interactive moments. Aesthetically, the show moves between street performance, contemporary dance and theater. Fast, strong and tender movements as well as a touch of dry humor. In connection with the performance there is a dance film installation, it consists of a mix and the works of professional and non-professional practitioners.</p><p>Ask for more information and register: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Pontus Linder & Erwin Semler: Looped Square – työpaja ja esitys osana Nomads-festivaalia", "sv": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festivalen", "en": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festival" }, "short_description": { "fi": "Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.", "sv": "Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.", "en": "Looped square is a square where we open up, dig into and channel our own artistic callings." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64366", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152068, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-09T12:16:26.186215Z", "last_modified_time": "2024-08-09T12:16:26.186244Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756317.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152068/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-08-09T12:16:26.162930Z", "last_modified_time": "2024-09-23T13:14:52.905790Z", "date_published": null, "start_time": "2024-09-27T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F928FDC8FE6A5E83AF902C29A96E841D/Pontus_Linder_Erwin_Semler_Looped_Square_", "sv": "http://www.stoa.fi/sv/evenemang/event/F928FDC8FE6A5E83AF902C29A96E841D/Pontus_Linder_Erwin_Semler_Looped_Square_", "en": "http://www.stoa.fi/en/events/event/F928FDC8FE6A5E83AF902C29A96E841D/Pontus_Linder_Erwin_Semler_Looped_Square_" }, "description": { "fi": "<p>Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.</p><p>Esitys syntyy yhteistyössä yleisön kanssa. Yleisö on mukana vaikuttamassa sisältöön vapaaehtoisten interaktiivisten hetkien aikana. Esteettisesti esitys liikkuu katutaiteen, nykytanssin ja teatterin välimaastossa. Nopeita, voimakkaita ja herkkiä liikkeitä sekä ripaus kuivaa huumoria! Esityksen yhteydessä on tanssifilmien installaatio, joka koostuu ammattilaisten ja ei-ammattilaisten teoksista.</p><p>Kesto: 50 min<br>Ikäsuositus: yläkouluikäiset<br>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.</p><p>Föreställningen skapas i samråd med publiken, de är med och påverkar innehållet under frivilliga interaktiva moment. Estetiskt rör sig föreställningen mellan streetperformance, nutida dans och teater. Snabba, starka och ömma rörelser samt en gnutta torr humor. I anslutning till föreställningen finns en dansfilmsinstallation, den består av en mix och professionella och icke-professionella utövares verk.</p><p>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p>", "en": "<p>Looped square is a square where we open up, dig into and channel our own artistic callings.</p><p>The performance is created together with the audience, they participate and influence the content during voluntary interactive moments. Aesthetically, the show moves between street performance, contemporary dance and theater. Fast, strong and tender movements as well as a touch of dry humor. In connection with the performance there is a dance film installation, it consists of a mix and the works of professional and non-professional practitioners.</p><p>Ask for more information and register: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Pontus Linder & Erwin Semler: Looped Square – työpaja ja esitys osana Nomads-festivaalia", "sv": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festivalen", "en": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festival" }, "short_description": { "fi": "Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.", "sv": "Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.", "en": "Looped square is a square where we open up, dig into and channel our own artistic callings." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64366/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64365", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152067, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-09T12:16:26.039134Z", "last_modified_time": "2024-08-09T12:16:26.039151Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756316.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152067/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-08-09T12:16:26.018889Z", "last_modified_time": "2024-09-23T13:14:52.748357Z", "date_published": null, "start_time": "2024-09-27T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CBFC34B58DFDB09F7113C8C491C21334/Pontus_Linder_Erwin_Semler_Looped_Square_", "sv": "http://www.stoa.fi/sv/evenemang/event/CBFC34B58DFDB09F7113C8C491C21334/Pontus_Linder_Erwin_Semler_Looped_Square_", "en": "http://www.stoa.fi/en/events/event/CBFC34B58DFDB09F7113C8C491C21334/Pontus_Linder_Erwin_Semler_Looped_Square_" }, "description": { "fi": "<p>Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.</p><p>Esitys syntyy yhteistyössä yleisön kanssa. Yleisö on mukana vaikuttamassa sisältöön vapaaehtoisten interaktiivisten hetkien aikana. Esteettisesti esitys liikkuu katutaiteen, nykytanssin ja teatterin välimaastossa. Nopeita, voimakkaita ja herkkiä liikkeitä sekä ripaus kuivaa huumoria! Esityksen yhteydessä on tanssifilmien installaatio, joka koostuu ammattilaisten ja ei-ammattilaisten teoksista.</p><p>Kesto: 50 min<br>Ikäsuositus: yläkouluikäiset<br>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.</p><p>Föreställningen skapas i samråd med publiken, de är med och påverkar innehållet under frivilliga interaktiva moment. Estetiskt rör sig föreställningen mellan streetperformance, nutida dans och teater. Snabba, starka och ömma rörelser samt en gnutta torr humor. I anslutning till föreställningen finns en dansfilmsinstallation, den består av en mix och professionella och icke-professionella utövares verk.</p><p>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p>", "en": "<p>Looped square is a square where we open up, dig into and channel our own artistic callings.</p><p>The performance is created together with the audience, they participate and influence the content during voluntary interactive moments. Aesthetically, the show moves between street performance, contemporary dance and theater. Fast, strong and tender movements as well as a touch of dry humor. In connection with the performance there is a dance film installation, it consists of a mix and the works of professional and non-professional practitioners.</p><p>Ask for more information and register: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Pontus Linder & Erwin Semler: Looped Square – työpaja ja esitys osana Nomads-festivaalia", "sv": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festivalen", "en": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festival" }, "short_description": { "fi": "Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.", "sv": "Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.", "en": "Looped square is a square where we open up, dig into and channel our own artistic callings." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64365/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64598", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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:p1377/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T12:15:08.088572Z", "last_modified_time": "2024-09-23T12:15:08.088589Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758387.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-09-23T12:15:08.034164Z", "last_modified_time": "2024-09-23T12:15:08.228455Z", "date_published": null, "start_time": "2024-09-28T10:00:00Z", "end_time": "2024-09-28T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1E5FF4F4C9A87E8352D007ED8BDD58F1/Mur_ja_metsan_valo_kirjan_julkistaminen_" }, "description": { "fi": "<p>Lämpimästi tervetuloa juhlistamaan Mur ja metsän valo -kirjan julkaisemista Annantalon kahvilaan lauantaina 28.syyskuuta klo 13!</p><p>Paikalla ovat kirjantekijät Kaisa Happonen ja Anne Vasko. <br> <br>Tule kuuntelemaan tarina uudesta kirjasta, ihastelemaan kuvitusnäyttelyä ja kohottamaan mustikkamehumalja! <br> <br>Tilaisuudessa on mahdollisuus hankkia uusi kirja signeerattuna.</p><p>Anne Vaskon kuvituksia voi ihastella ja tarkastella kuvitusnäyttelyssä Annantalon kahvilassa 21. syyskuuta - 19. lokakuuta.</p>" }, "name": { "fi": "Mur ja metsän valo–kirjan julkistaminen" }, "short_description": { "fi": "Lämpimästi tervetuloa juhlistamaan Mur ja metsän valo -kirjan julkaisemista Annantalon kahvilaan lauantaina 28.syyskuuta klo 13!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5ywxuy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3466/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T11:34:07.847684Z", "last_modified_time": "2024-09-23T11:34:07.847704Z", "date_published": "2024-09-23T11:30:00Z", "start_time": "2024-10-14T10:00:00Z", "end_time": "2024-10-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tule mukaan syyslomalla kirjaston avoimeen pajaan ja painata vaatteesi loistavaksi! Valmistamme heijastavia kuvia kankaalle heijastavasta vinyylistä. Ota mukaan omat silitettävät vaatteesi tai asusteesi ja loihdi niistä uniikit! Kirjasto tarjoaa materiaalit ja runsaan valikoiman kuviovaihtoehtoja.</p>", "sv": "<p>Kom med under höstlovet till bibliotekets öppna verkstad och gör dina kläder lysande. Vi kommer att skapa reflekterande bilder på tyg med reflekterande vinyl. Ta med egna strykbara kläder eller accessoarer och gör dem unika. Biblioteket står för material och ett brett urval av mönsteralternativ. </p>", "en": "<p>Join us during the autumn brake for an open workshop at the library and make your clothes shine! We will create reflective images on fabric using reflective vinyl. Bring your own ironable clothes or accessories and turn them into unique pieces. The library will provide the materials and a wide selection of design options. </p>" }, "name": { "fi": "Heijastava paja Ison Omenan kirjastossa", "sv": "Reflex verkstad i Iso Omenans bibliotek", "en": "Reflecting Workshop At Iso Omena Library" }, "short_description": { "fi": "Pajassa painatetaan omiin vaatteisiin heijastavia kuvia.", "sv": "I verkstaden trycks reflekterande bilder på egna kläder.", "en": "In the workshop, reflecting images are printed onto personal clothing." }, "location_extra_info": { "fi": "Paja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5ywxuy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4cyy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-16T10:40:38.027289Z", "last_modified_time": "2024-09-23T10:53:29.659556Z", "date_published": "2024-09-23T04:59:00Z", "start_time": "2024-09-23T05:00:00Z", "end_time": "2024-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Linda Cederberg on monipuolinen taiteilija, joka on laajentanut ilmaisutapaansa perinteisen maalaustaiteen lisäksi uusien materiaalien ja tekniikoiden tutkimiseen. Viime vuosina hän on keskittynyt työskentelemään pleksilasin, lasin ja hartsin parissa, mikä on tuonut hänen taiteeseensa uusia ulottuvuuksia.</p><p><br></p><p>Cederbergin näyttelyt eivät koskaan tarjoa tavanomaisia tai ennalta-arvattavia elämyksiä. Hän pyrkii herättämään katsojassa hämmennyksen ja deja vu -tunteen, ikään kuin muodot ja värit olisivat peräisin jostakin unesta tai kaukaisista muistoista, joiden todenperäisyydestä ei voi olla varma. Hänen teoksensa luovat visuaalisia kerroksia, jotka ovat yhtä aikaa haikeita ja läheisiä, mutta samalla etäisiä.</p><p><br></p><p>Tutkimalla musteen ja hartsin värien monimuotoisuutta, Cederberg rakentaa teoksensa kerroksittain. Hänen työnsä herättävät kysymyksiä ja tunteita, jotka saavat katsojan pohtimaan suhdettaan ympäröivään maailmaan.</p>", "sv": "<p>Välkommen att besöka Linda Cederbergs utställning \"Hiljaiset pinnat\" i Entressebiblioteket under tiden 23.9.-13.10.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Hiljaiset pinnat\" by Linda Cederberg in Entresse Library during 23.9.-13.10.2024. Welcome!</p>" }, "name": { "fi": "Linda Cederberg: Hiljaiset pinnat 23.9.-13.10.2024", "sv": "Linda Cederberg: Hiljaiset pinnat 23.9.-13.10.2024", "en": "Linda Cederberg: Hiljaiset pinnat 23.9.-13.10.2024" }, "short_description": { "fi": "Linda Cederbergin taidenäyttely \"Hiljaiset pinnat\" Entressen kirjaston Galleria Betonissa 23.9.-13.10.2024. Tervetuloa!", "sv": "Linda Cederbergs utställning \"Hiljaiset pinnat\" i Entressebiblioteket under tiden 23.9.-13.10.2024.", "en": "Art exhibition \"Hiljaiset pinnat\" by Linda Cederberg in Entresse Library during 23.9.-13.10.2024." }, "location_extra_info": { "fi": "Galleria Betoni" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4cyy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4duu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dq4/?format=api" } ], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-09-23T10:21:10.260254Z", "last_modified_time": "2024-09-23T10:31:37.616128Z", "date_published": null, "start_time": "2024-09-26T14:00:00Z", "end_time": "2024-12-19T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 26.9., 24.10., 21.11. and 19.12. at 5 pm. Welcome!</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4duu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64071", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151792, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T15:13:29.286037Z", "last_modified_time": "2024-07-22T15:13:29.286061Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755474.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151792/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T15:13:29.254693Z", "last_modified_time": "2024-09-23T10:14:54.003345Z", "date_published": null, "start_time": "2024-09-27", "end_time": "2024-11-03", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3561EFF4362256E84AD69F383E0832E8/Jyrki_Hirvensalo_Viimeisella_rannalla_On_the_Beach", "sv": "http://www.stoa.fi/sv/evenemang/event/3561EFF4362256E84AD69F383E0832E8/Jyrki_Hirvensalo_Viimeisella_rannalla_On_the_Beach", "en": "http://www.stoa.fi/en/events/event/3561EFF4362256E84AD69F383E0832E8/Jyrki_Hirvensalo_Viimeisella_rannalla_On_the_Beach" }, "description": { "fi": "<p>Vuosina 2016–23 Jyrki Hirvensalo valokuvasi Hermanninrannan uudistuvan kaupungin alle jäävillä rannoilla ja joutomailla.</p><p>Häntä kiinnostivat alueella aikaansa eri tavoilla viettäneiden kaupunkilaisten toiminnasta jääneet jäljet. Alue on pääasiassa entistä merenpohjaa, joka on otettu aikoinaan mm. teollisuuskäyttöön. Myöhemmin alue on jäänyt joutomaaksi, jota kaupunkilaiset ovat hyödyntäneet omien tarpeidensa mukaisesti. Luonto on vallannut osan alueesta, ja näin on syntynyt uudenlaista kaupunkiluontoa.<br> <br>Vanhankaupunginlahden toisella puolella, kymmenen minuutin metromatkan päässä Helsingin rautatieasemalta, lähellä kaupungin maantieteellistä keskipistettä, sijaitsee Kivinokan kesämaja-alue. Kesäasukkaat saavat toteuttaa sinne tarkkojen ohjeiden mukaan oman kesämajansa, itse tehdyn 12 neliömetrin suuruisen paratiisinsa.</p><p>Jyrki Hirvensalo on helsinkiläinen valokuvataiteilija, jonka kiinnostuksen kohteena on ensisijaisesti ihmisen toiminnan jäljet ympäristössämme.</p>", "sv": "<p>Under åren 2016–23 fotograferade Jyrki Hirvensalo stränderna och de övergivna markerna i Hermanstad som höll på att byggas över av staden i förnyelse.</p><p>Han var intresserad av spåren efter stadsbor som hade tillbringat sin tid i området på olika sätt. Området består huvudsakligen av tidigare havsbotten, som en gång i tiden har använts bland annat för industriella ändamål. Senare har markerna övergivits, och stadsborna har utnyttjat området för olika behov. Naturen har tagit över en del av området och på så sätt har en ny typ av stadsnatur skapats.<br> <br>På andra sidan av Gammelstadsfjärden, tio minuter med metro från Helsingfors järnvägsstation och nära stadens geografiska mittpunkt, ligger Stenuddens område för sommarstugor. Där får sommargäster bygga en egen sommarstuga enligt noggranna anvisningar, ett 12 kvadratmeter stort hemgjort paradis.</p><p>Jyrki Hirvensalo är en fotograf från Helsingfors vars främsta intresse är spåren av mänsklig aktivitet i vår miljö.</p>", "en": "<p>In 2016–23, Jyrki Hirvensalo took photographs at the shores and wastelands of Hermanni, disappearing under the development of the city.</p><p>He was interested in traces of the activities of city residents who spent their time in the area in different ways. The area is primarily former seabed, which was reclaimed for industrial use, for example. Later, the area became a wasteland, which city residents have made use of as they wanted. Nature has reclaimed parts of the area, thus creating a new kind of urban nature.<br> <br>On the other side of Vanhankaupunginlahti, a ten-minute metro ride from Helsinki railway station, near the city's geographical centre, is the summerhouse area of Kivinokka. There, summer residents have been allowed to build summer houses, a self-made 12-square-metre paradises, according to precise guidelines.</p><p>Jyrki Hirvensalo is a Helsinki-based photography artist who is primarily interested in traces of human activity in our environment.</p>" }, "name": { "fi": "Jyrki Hirvensalo: Viimeisellä rannalla – On the Beach – Stoa 40!", "sv": "Jyrki Hirvensalo: Viimeisellä rannalla – On the Beach – Stoa 40!", "en": "Jyrki Hirvensalo: Viimeisellä rannalla – On the Beach – Stoa 40!" }, "short_description": { "fi": "Vuosina 2016–23 Jyrki Hirvensalo valokuvasi Hermanninrannan uudistuvan kaupungin alle jäävillä rannoilla ja joutomailla.", "sv": "Under åren 2016–23 fotograferade Jyrki Hirvensalo stränderna och de övergivna markerna i Hermanstad som höll på att byggas över av staden i förnyelse.", "en": "In 2016–23, Jyrki Hirvensalo took photographs at the shores and wastelands of Hermanni, disappearing under the development of the city." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64210", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-tiistaitanssit-vuotalossa-vuotalo-19134716/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-tiistaitanssit-vuotalossa-vuotalo-19134716/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-tiistaitanssit-vuotalossa-vuotalo-19134716/" }, "description": null, "price": { "fi": "10 €", "sv": "10 €", "en": "10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151771, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T11:13:06.599963Z", "last_modified_time": "2024-07-22T11:13:06.599979Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750044.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151771/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T11:13:06.581388Z", "last_modified_time": "2024-09-23T09:15:43.565996Z", "date_published": null, "start_time": "2024-09-24T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E5DC6F97CDDDA70404D29AD257C036A4/Pasi_Kivimaki_N_Y_T", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E5DC6F97CDDDA70404D29AD257C036A4/Pasi_Kivimaki_N_Y_T", "en": "http://www.vuotalo.fi/en/events/event/E5DC6F97CDDDA70404D29AD257C036A4/Pasi_Kivimaki_N_Y_T" }, "description": { "fi": "<p>Jalalla koreasti tiistai-iltapäivässä!</p><p>Pasi Kivimäki on pitkän linjan laulaja-artisti, jolle esiintyminen ja tunteiden välittäminen yhdessä laulun tulkinnan kautta on aina ollut sydämen asia. Keikkakokemusta on kertynyt erilaisten, isojenkin orkestereiden, solistina mm. Puolustusvoimien tilaisuuksissa. Tanssimusiikkitaustaa on eri kokoonpanoilla ollut jo parisen kymmentä vuotta.</p><p>Kivimäki on mm. Olavi Virta – laulukilpailun voittaja (2016) ja monia muitakin tunnustuksia keräillyt artisti. Pasi on ollut vuonna 2017 Seinäjoen tangofinalisti voittaen siellä mm. yleisöäänestyksen. Paria vuotta myöhemmin, vuonna 2019 hän sijoittui Tangomarkkinoilla kolmen parhaan joukkoon finaaliin saakka. Vaikka kruunu jäikin saavuttamatta, voidaan häntä hyvinkin kutsua Tangoprinssiksi.</p><p>Pasin taustalla säestää monivuotisella ammattiotteella nelimiehinen N.Y.T.-orkesteri perinteisine soittimineen. Ne istuvat mainiosti tanssimusiikin esittämiseen. Bändi säveltää myös omaa tuotantoa, äänittää ja julkaisee aika ajoin myös uutta materiaalia.</p><p>Kesto: 2 t<br>Liput: 10 € + palvelumaksu</p>", "sv": "<p>Dansanta tisdagseftermiddagar!</p>", "en": "<p>Get dancing on Tuesday afternoon!</p>" }, "name": { "fi": "Pasi Kivimäki & N.Y.T – Tiistaimatinea / tanssit", "sv": "Pasi Kivimäki & N.Y.T – Matinédanser på tisdagar", "en": "Pasi Kivimäki & N.Y.T – Tuesday Matinee" }, "short_description": { "fi": "Jalalla koreasti tiistai-iltapäivässä!", "sv": "Dansanta tisdagseftermiddagar!", "en": "Get dancing on Tuesday afternoon!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb4pxb74", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-09-23T08:53:23.223547Z", "last_modified_time": "2024-09-23T09:14:29.212034Z", "date_published": "2024-09-23T08:09:00Z", "start_time": "2024-09-24T06:30:00Z", "end_time": "2024-09-24T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Aamun Satuhetki kirjaston Lastenosastolla tiistaina 24.9.2024 klo 9.30 ja Iltasatutuokio keskiviikkona 25.9.2024 klo 17.00. Tervetuloa mukaan!</p>", "sv": "<p>Välkomna på sagostund! Entresse bibliotek håller en sagostund tisdag 24.9.2024 kl. 9.30 och onsdag 25.9.2024 kl. 17.00. Vi läser böcker på finska. Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>", "en": "<p>Welcome to join the storytime on Tue, 24th of September at 9.30 AM and on Wed, 25th at 5.00 PM. We read stories in Finnish.</p>" }, "name": { "fi": "Satutuokio", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Satuhetki lapsiperheille", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "location_extra_info": { "fi": "Lastenosasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb4pxb74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb4pxcl4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-09-23T09:13:53.302721Z", "last_modified_time": "2024-09-23T09:13:53.302742Z", "date_published": "2024-09-23T09:10:00Z", "start_time": "2024-09-25T14:00:00Z", "end_time": "2024-09-25T14: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, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Aamun Satuhetki kirjaston Lastenosastolla tiistaina 24.9.2024 klo 9.30 ja Iltasatutuokio keskiviikkona 25.9.2024 klo 17.00. Tervetuloa mukaan!</p>", "sv": "<p>Välkomna på sagostund! Entresse bibliotek håller en sagostund tisdag 24.9.2024 kl. 9.30 och onsdag 25.9.2024 kl. 17.00. Vi läser böcker på finska. Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>", "en": "<p>Welcome to join the storytime on Tue, 24th of September at 9.30 AM and on Wed, 25th at 5.00 PM. We read stories in Finnish.</p>" }, "name": { "fi": "Satutuokio", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "short_description": { "fi": "Satuhetki lapsiperheille", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "location_extra_info": { "fi": "Pelihuone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb4pxcl4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19286, "next": "