Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=216
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=217", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=215" }, "data": [ { "id": "espoo_le:agmk23dkc4", "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:agggfz66qa/?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:p1808/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-14T07:33:44.962884Z", "last_modified_time": "2025-03-14T07:33:44.962899Z", "date_published": null, "start_time": "2025-05-24T12:00:00Z", "end_time": "2025-05-25T13: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_contact_info": null, "short_description": { "fi": "Konsertissa Ääni-ilmiö luo musiikkiteoksia yleisön mukanaan tuomien runojen tai tekstien innoittamana. Tervetuloa!" }, "info_url": null, "name": { "fi": "Ääni-ilmiö: improvisaatio-konsertit runojen inspiroimana" }, "description": { "fi": "<p>Konsertissa Ääni-ilmiö luo musiikkiteoksia yleisön mukanaan tuomien runojen tai tekstien innoittamana. Musiikkiteokset syntyvät esitystilanteessa improvisoiden, yhtyeen ja yleisön sekä tekstin ja musiikin vuorovaikutuksesta. Ääni-ilmiö kollektiivi tutkii ihmisäänen ulottuvuuksia ja kommunikatiivista luonnetta eikä pelkää pukea ajatuksiaan, tunteitaan ja kokemuksiaan ääneksi. Äänenkäyttö on yllätyksellistä, ajassa muuntuvaa ja esteettisistä ihanteista riisuttua. Tekstit toimivat konsertissa musiikkiteosten inspiraationa, materiaalina ja ilmaisun välineinä. </p><p> </p><p>Tuo mukanasi runo tai teksti, jonka haluaisit kuulla Ääni-ilmiön luomana musiikkina! </p><p> </p><p>Konsertissa esiintyvät Ääni-ilmiön improvisoijat Tua Hakanpää, Satu Tillanen, Johanna Vahtola, Heliä Mailiis Viirakivi ja Sanna Vuolteenaho.</p><p><br></p><p><a href=\"https://aaniilmio.wixsite.com/kollektiivi \">https://aaniilmio.wixsite.com/kollektiivi </a></p><p><br></p><p>Kollektiivi on saanut tukea Espoon kaupungilta.</p>" }, "location_extra_info": { "fi": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dkc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agky7sagfi", "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/kultus:16/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api" } ], "created_time": "2025-03-13T13:53:25.594784Z", "last_modified_time": "2025-03-13T13:55:52.711392Z", "date_published": null, "start_time": "2025-09-28T07:00:00Z", "end_time": "2025-09-28T08: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": "2025-03-13T16:05:00+02:00", "enrolment_end_time": "2025-09-28T10:00:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "asdf", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "name": { "fi": "Ryhmätesti 13.3.2025", "sv": "", "en": "" }, "description": { "fi": "<p>asdf</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agky7sagfi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dkom", "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/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490230, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-23T12:31:26.106421Z", "last_modified_time": "2025-01-23T12:31:26.106442Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3ca6343f-2480-43ce-8cb7-6726b4293a99.jpg", "cropping": "772,0,3805,3034", "photographer_name": "", "alt_text": "Äänimalja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-13T13:01:01.043604Z", "last_modified_time": "2025-03-13T13:01:01.043622Z", "date_published": "2025-03-12T12:49:00Z", "start_time": "2025-05-20T14:00:00Z", "end_time": "2025-05-20T15: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_contact_info": null, "short_description": { "fi": "Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. ", "en": "Welcome to relax with the beautiful sound of singing bowls." }, "info_url": null, "name": { "fi": "Äänimaljarentoutus", "en": "Singing Bowl Relaxation" }, "description": { "fi": "<p>Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. Rentoutuksen aikana voit istua tuolilla tai maata joogamatolla. Kirjastolla on 10 kpl joogamattoja joita voit lainata. Voit tuoda mukaan myös oman joogamaton. Vetäjänä toimii musiikkipedagogi Sakari Heikka.</p><p>#rentoutus</p>", "en": "<p>Welcome to relax with the beautiful sound of singing bowls. During relaxation, you can sit on a chair or lie on a yoga mat. The library has 10 yoga mats that you can borrow. You can also bring your own yoga mat. The relaxation is led by Music pedagogue Sakari Heikka.</p><p>#relaxation</p>" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dkom/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65714", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 335059, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-13T09:14:34.477426Z", "last_modified_time": "2025-03-13T09:14:34.477441Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766488.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/335059/?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": "2025-03-13T09:14:34.425967Z", "last_modified_time": "2025-03-13T09:14:34.575962Z", "date_published": null, "start_time": "2025-03-22T14:00:00Z", "end_time": "2025-03-22T19: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_contact_info": null, "short_description": { "fi": "Liity seuraamme ja saavu ihastuttavaan Ramadan-festivaaliin Malmitalossa!", "en": "Come and join us for wonderful Ramadan Festival in Malmitalo!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E81F24C2B757607D8F43EC48F9D30FE9/Ramadan-festivaali", "en": "http://www.malmitalo.fi/en/events/event/E81F24C2B757607D8F43EC48F9D30FE9/Ramadan_festival" }, "name": { "fi": "Ramadan-festivaali", "en": "Ramadan festival" }, "description": { "fi": "<p>Liity seuraamme ja saavu ihastuttavaan Ramadan-festivaaliin Malmitalossa!</p><p>Tule mukaan tapaamaan uusia ihmisiä, harhailemaan basaarialueella ja nauti Iftarista sekä herkullisista ruoista ja miellyttävistä peleistä.</p><p>Tapahtuman järjestää Suomen pakistanilaisten seura (Pakistanis in Finland Associastion), joka toivottaa ihmiset tervetulleeksi tähän kauniiseen ohjelmapäivään ja halutuimpaan lifestyle-tapahtumaan Helsingissä pyhän kuukauden aikana.</p><p><b>Tapahtumasta löydät:</b><br>Vaatteita, myös käsintehtynä<br>Lasten vaatteita<br>Koruja<br>Kenkiä<br>Ruokaa<br>Aktiviteetteja lapsille<br>Pelejä<br>Valokuvaamista</p><p><b>Paikan päältä löydät:</b><br>Rukousalue rukousmattoineen<br>Alue istumiseen ja oleskeluun<br>Ruokakojuja</p><p><b>Ohjelma:</b><br>16–18 Tapahtuma alkaa. Tutustu basaarialueen ruoka- ja vaatekojuihin. Tapaa uusia ihmisiä.<br>18–19 Nauti Iftarista runsaan ruokatarjonnan kera, luvassa myös herkullisia makupaloja.<br>19–21 Tule mukaan pelaamaan ja osallistu muihin aktiviteetteihin!</p><p>Tervetuloa mukaan! Vapaa pääsy.</p>", "en": "<p>Come and join us for wonderful Ramadan Festival in Malmitalo!</p><p>Enjoy meeting new people, wandering in shopping bazaar, Iftar, delicious food and games. Pakistanis in Finland Association is welcoming people to this beautiful day and the most sought-after lifestyle event in Helsinki during the Holy Month.</p><p><b>What to Expect:</b><br>Readymade Clothes<br>Stitched Clothes<br>Kids Clothes<br>Jewelry<br>Shoes<br>Food<br>Children Activities<br>Games<br>Photography</p><p><b>Program:</b><br>04:00 – 06:00 PM: Arrival to the venue. Explore different stalls for shopping. Meet new people.<br>06:00 – 07:00 PM: Have Iftar with lot of food options. Delicious Snacks.<br>07:00 – 09:00 PM: Have fun with games and other activities.</p><p><b>Facilities:</b><br>Pray Area with Prayer Mat <br>Seating Area<br>Food Court</p><p>Free entry!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65714/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agky4rleje", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21357/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:12/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:9/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p84/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 334614, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-13T06:49:54.034144Z", "last_modified_time": "2025-03-13T06:51:08.301521Z", "name": "notset", "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0780-pienempi_sj0MsVs.jpg", "cropping": "280,0,1640,1360", "photographer_name": "", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/334614/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-13T06:51:07.258924Z", "last_modified_time": "2025-03-13T06:51:07.258943Z", "date_published": "2025-03-13T06:51:06.923000Z", "start_time": "2025-03-13", "end_time": "2025-05-31", "custom_data": { "spots": "1", "org_name": "yritys", "website_url": "https://www.hs.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0401234567", "contact_last_name": "Testaaja", "contact_first_name": "Yrittäjä" }, "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_contact_info": null, "short_description": { "fi": "Testataan" }, "info_url": null, "name": { "fi": "Harjoittelija" }, "description": { "fi": "Testataan" }, "location_extra_info": null, "provider": { "fi": "Sur Testifirma As.OY", "sv": "7006843-0" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agky4rleje/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agky4mllg4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:6/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:7/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p84/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 334392, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-13T06:28:02.836631Z", "last_modified_time": "2025-03-13T06:29:20.819573Z", "name": "notset", "url": "https://linkedevents.api.test.hel.ninja/media/images/tyokannettava_MG_4635-2.jpg", "cropping": "320,0,1600,1280", "photographer_name": "", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/334392/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-13T06:29:18.318851Z", "last_modified_time": "2025-03-13T06:29:18.318871Z", "date_published": "2025-03-13T06:29:17.848000Z", "start_time": "2025-03-17", "end_time": "2025-06-30", "custom_data": { "spots": "3", "org_name": "yritys", "website_url": "https://www.hel.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0509876543", "contact_last_name": "Testaaja", "contact_first_name": "Yrittäjä" }, "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_contact_info": null, "short_description": { "fi": "Vi testar." }, "info_url": null, "name": { "fi": "Kokemusasiantuntija" }, "description": { "fi": "Vi testar." }, "location_extra_info": null, "provider": { "fi": "Hvenerik Testbolag AB", "sv": "7009773-3" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agky4mllg4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agky4limuu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:10/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:11/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2851/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 334390, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-13T06:23:22.074735Z", "last_modified_time": "2025-03-13T06:24:32.765904Z", "name": "notset", "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_7257-1_w5CERZI.jpg", "cropping": "320,0,1600,1281", "photographer_name": "", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/334390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-13T06:24:31.961937Z", "last_modified_time": "2025-03-13T06:24:31.961958Z", "date_published": "2025-03-13T06:24:31.895000Z", "start_time": "2025-03-14", "end_time": "2025-05-31", "custom_data": { "spots": "3", "org_name": "Digiyksikkö", "editor_oid": "6aa436fe-b496-4bd3-a19e-d5aefc9b03e7", "website_url": "https://www.yle.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0401234567", "contact_last_name": "Testaaja", "contact_first_name": "Testi" }, "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_contact_info": null, "short_description": { "fi": "Testausta" }, "info_url": null, "name": { "fi": "Harjoittelija" }, "description": { "fi": "Testausta" }, "location_extra_info": null, "provider": { "fi": "Helsingin kaupunki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agky4limuu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65077", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153638, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T15:14:17.770863Z", "last_modified_time": "2024-12-31T15:14:17.770878Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763825.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153638/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-31T15:14:17.744178Z", "last_modified_time": "2025-03-12T14:14:44.719941Z", "date_published": null, "start_time": "2025-03-22T10:00:00Z", "end_time": "2025-03-22T13: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_contact_info": null, "short_description": { "fi": "Katkeilevia kastematoja, dinosaurusten sukulaisia ja kasvimaailman lumoa: Hurraa! -viikon perhepäivässä kohdataan luonto ja koko sen värikäs lajien kirjo.", "sv": "Daggmaskar som går av, dinosauriesläktingar och växtvärldens magi: På familjedagen under Hurra!-veckan möter vi naturen och alla dess färgstarka arter.", "en": "Broken earthworms, dinosaur relatives and enchantment from the plant world: on Hurraa! Week’s Family Day, we encounter nature and its entire colourful spectrum of species." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2700B0FBD7FBDA35172C077A3C9EFADE/Supervoimia_ja_elavia_ihmeita", "sv": "http://www.stoa.fi/sv/evenemang/event/2700B0FBD7FBDA35172C077A3C9EFADE/Superkrafter_och_levande_underverk", "en": "http://www.stoa.fi/en/events/event/2700B0FBD7FBDA35172C077A3C9EFADE/Superpowers_and_living_wonders" }, "name": { "fi": "Supervoimia ja eläviä ihmeitä – Hurraa! -viikon perhepäivä", "sv": "Superkrafter och levande underverk – Familjedag under Hurraa!-veckor", "en": "Superpowers and living wonders – Hurraa! Week’s Family Day" }, "description": { "fi": "<p>Katkeilevia kastematoja, dinosaurusten sukulaisia ja kasvimaailman lumoa: Hurraa! -viikon perhepäivässä kohdataan luonto ja koko sen värikäs lajien kirjo.</p><p>Päivän esitykset vievät luontoäidin luokse ja paljastavat mitä ihmeellisempiä supervoimia, joita luontokappaleilla voi olla. Tule mukaan eläimenä, ihmisenä tai minä tahansa luonnonoikkuna, ja löydä oma supervoimasi!</p><p>Voit täydentää asuasi UV-kasvomaalauksella tai kehitellä työpajoissa kaikenlaisia korvia. Tarjolla on monenlaista tieteellistä ja taiteellista tekemistä. Monimuotoinen luonto on aarre vailla vertaa – tule mukaan sen ihmeistä oppimaan!</p><p><b>Maksuttomat työpajat klo 12–15</b></p><p><b>Robotit suojelijoina!<br>Aalto-yliopisto Juniorin robotiikkatyöpaja</b><br>Miten robotit toimivat? Mitä ohjelmointi tarkoittaa ja miten se liittyy robotteihin? Voiko robotit olla apuna luonnon monimuotoisuuden suojelemisessa?<br> <br>Tervetuloa oppimaan ohjelmoinnista ja robotiikasta ikätasolle sopivasti! Työpajassa tutustutaan LEGO-robotteihin ohjelmoimalla niitä innostavassa ja lapsille sopivassa ohjelmointiympäristössä. Samalla opitaan ympäröivän teknologian toiminnasta ja pohditaan luonnon monimuotoisuuden säilyttämistä.<br>Maksuton työpaja soveltuu 5–10-vuotiaille lapsille, tai alle kouluikäisille yhdessä vanhemman kanssa. <br>Ohjaaja: Saija Huoponen, Aalto-yliopisto Junior<br> <br><b>Hehkuva puutarha - photobooth</b> <br>Hehkuvassa puutarhassa leikitellään pörriäisten värinäöllä. Maalaamme kukkia ja ihmettelemme niiden hehkuvia värejä uv-valossa. Työpajassa syntyneet maalaukset liitetään osaksi päivän aikana syntyvää hehkuvaa lavastusta, jonka äärellä saa napattua ihanan kuvan muistoksi tapahtumapäivästä. Luvassa myös uv-kasvomaalausta! Avoin työpaja kaikenikäisille!<br>Ohjaaja: Verna Kuntsi, Seikkailutaidekoulu <br> <br><b>Suomen luonnonsuojeluliitto:<br>Luonnon ystävä -taitokortit</b><br>Oletko luonnon ystävä? Nyt on täydellinen hetki osoittaa se: voit suorittaa Luonnon ystävä -taitokortin suorittamalla hauskoja tehtävärasteja. Kortin saa jokainen osallistuja, kaikkea ei tarvitse osata valmiiksi.<br>Ohjaajat: Riitta Malve ja Mirja Reijonen</p><p><b>Karvakorvia ja tuntosarvia -työpaja</b><br>Maailma on täynnä kaikenlaisia ihania ja kummallisia korvia. Tule tekemään koko perheelle eläimellistä ilmettä! Työpajassa askarrellaan eläinten ja kaikenlaisten ihmeellisten otusten korvia.<br>Ohjaaja: Noora Puranen</p><p>Lisäksi: Itäkeskuksen <b>kirjaston lastenosastolla on kirjanäyttely</b> erikoisista eläimistä ja eläinten tavoista.</p><p><b>Maksulliset esitykset<br>klo 13 Kukkatanssit<br>klo 14 Eläköön eläimet </b></p><p>Liput esityksiin 6 €, muu ohjelma maksutonta.</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theater – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p>", "sv": "<p>Daggmaskar som går av, dinosauriesläktingar och växtvärldens magi: På familjedagen under Hurra!-veckan möter vi naturen och alla dess färgstarka arter.</p><p>Föreställningarna under dagen tar dig med till Moder Natur och avslöjar de mest fantastiska superkrafter som varelser kan ha. Häng med som ett djur, en människa eller något annat naturens nyck och upptäck din egen superkraft!</p><p>Du kan komplettera din outfit med en ansiktsmålning eller göra öron eller vingar i verkstäderna. Dagen bjuder på ett brett utbud av vetenskapliga och konstnärliga aktiviteter. Biologisk mångfald är en skatt utan dess like – kom och lär dig mer om dess underverk!</p><p><b>Gratis verkstäder</b></p><p><b>Robotar som beskyddare!<br>Aalto-universitetets Juniors robotteknikverkstad</b></p><p>Hur fungerar robotar? Vad är programmering och hur hänger det ihop med robotar? Kan robotar hjälpa till att skydda den biologiska mångfalden?<br> <br>Välkommen att lära dig mer om programmering och robotteknik på ett åldersanpassat sätt! I verkstaden utforskar vi LEGO-robotar genom att programmera dem i en inspirerande och barnvänlig programmeringsmiljö. Samtidigt får du lära dig mer om hur tekniken omkring dig fungerar och fundera på hur du kan bevara den biologiska mångfalden.</p><p>Den kostnadsfria verkstaden är lämplig för barn i åldern 5–10 år, eller för barn under skolåldern tillsammans med en förälder. <br>Handledare: Saija Huoponen, Aalto-universitetet Junior<br> <br> <br><b>Fotoverkstad Glödande trädgård</b><br>I den glödande trädgården kan du leka med insekternas färgseende. Vi målar blommor och förundras över deras lysande färger under uv-ljus. Målningarna som skapas i verkstaden kommer att införlivas i en glödande scendesign som skapas under dagen och där man kan ta ett vackert foto som ett minne om dagen. Vi ska också ha uv-ansiktsmålning! Öppen verkstad för alla åldrar!<br>Handledare: Verna Kuntsi, konstskolan Seikkailutaidekoulu <br> <br><b>Finlands naturskyddsförbund:<br>Färdighetskort för naturvän</b><br>Är du en naturvän? Nu är det perfekta tillfället att bevisa det: du kan avlägga färdighetskortet för naturvän genom att klara av roliga uppgiftsutmaningar. Varje deltagare får ett kort, så du behöver inte kunna allt på förhand.<br>Handledare: Riitta Malve och Mirja Reijonen</p><p><b>Dessutom:</b><br>Barnavdelningen i Östra centrums bibliotek har en bokutställning om ovanliga djur och djurens vanor.</p><p>Avgiftsbelagda föreställningar<br>Kl. 13 Blomsterdans<br>Kl. 14 Länge leve djuren</p><p>Biljetter till föreställningar 6 €, övriga program gratis.</p>", "en": "<p>Broken earthworms, dinosaur relatives and enchantment from the plant world: on Hurraa! Week’s Family Day, we encounter nature and its entire colourful spectrum of species.</p><p>The presentations take you to Mother Nature and reveal the amazing superpowers that living creatures can have. Come along as an animal, human or even a freak of nature, and discover your superpower!</p><p>You can complement your outfit with a face painting or make ears or wings in our workshops. The event will include a wide range of scientific and artistic activities. Our diverse nature is an unparalleled treasure – come and learn from its wonders!</p><p><b>Free workshops</p><p>Robots as protectors!<br>Aalto University Junior Robotics Workshop</b></p><p>How do robots work? What does programming mean and how does it relate to robots? Can robots help protect biodiversity?<br> <br>Welcome to learning about programming and robotics in an age-appropriate way! The workshop will introduce you to LEGO robots by programming them in an inspiring and child-friendly programming environment. At the same time, we learn about the operation of the surrounding technology and consider the preservation of biodiversity.</p><p>The free workshop is suitable for children aged 5 to 10 years or for children under school age together with a parent. <br>Instructor: Saija Huoponen, Aalto University Junior<br> <br><b>Glowing Garden - photobooth</b><br>In the Glowing Garden, participants play around with bugs’ colour vision. They paint flowers and marvel at the glowing colours under a UV light. The paintings created in the workshop are connected to the glowing stage design created during the day, where you can take a wonderful picture to remember the event day. There will also be UV facial painting! Open workshop for all ages!<br>Instructor: Verna Kuntsi, Adventure art school Seikkailutaidekoulu <br> <br><b>Finnish Association for Nature Conservation:<br>Nature Friend skill cards</b><br>Are you a nature lover? Now is the perfect time to show it: you can complete the Nature Friend skill card by completing fun checkpoints. Every participant will receive the card, so it is not necessary to know everything.<br>Instructors: Riitta Malve and Mirja Reijonen</p><p><b>In addition:</b><br>The children’s section of the Itäkeskus Library has a book exhibition on peculiar animals and animal customs.</p><p>Performances subject to a fee<br>13.00 Flower Dances<br>14.00 Long Live the Animals</p><p>Tickets to the performances €6, other programme free of charge.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65077/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agkysvv4fa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:mannerheimintie_86_helsinki/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:10/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:12/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 329531, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-12T07:50:35.774261Z", "last_modified_time": "2025-03-12T07:53:34.851947Z", "name": "notset", "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0780-pienempi.jpg", "cropping": "280,0,1640,1360", "photographer_name": "smoisala", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/329531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-12T07:51:57.801016Z", "last_modified_time": "2025-03-12T07:53:34.235551Z", "date_published": "2025-03-11T22:00:00Z", "start_time": "2025-02-12", "end_time": "2025-03-12", "custom_data": { "spots": "1", "org_name": "Testiyritys", "website_url": "https://www.yle.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0509876543", "contact_last_name": "Testaaja", "contact_first_name": "Yrittäjä" }, "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_contact_info": null, "short_description": { "fi": "Harjoittelija" }, "info_url": null, "name": { "fi": "yrityksen harjoittelija" }, "description": { "fi": "Harjoittelija" }, "location_extra_info": null, "provider": { "fi": "Hvenerik Testbolag AB", "sv": "7009773-3" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agkysvv4fa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agkyss2ism", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:6/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:7/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p84/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 329530, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-12T07:37:17.654758Z", "last_modified_time": "2025-03-12T07:39:28.485346Z", "name": "notset", "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0879_2.jpg", "cropping": "452,0,1468,1016", "photographer_name": "smoisala", "alt_text": null, "data_source": "tet", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/329530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-03-12T07:39:27.299659Z", "last_modified_time": "2025-03-12T07:39:27.299678Z", "date_published": "2025-03-12T07:39:26.815000Z", "start_time": "2025-03-20", "end_time": "2025-05-31", "custom_data": { "spots": "1", "org_name": "Digiyksikkö", "editor_oid": "6aa436fe-b496-4bd3-a19e-d5aefc9b03e7", "website_url": "https://www.hel.fi", "contact_email": "kerrokantasi@hel.fi", "contact_phone": "0401234567", "contact_last_name": "Testaaja", "contact_first_name": "Testi" }, "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_contact_info": null, "short_description": { "fi": "Testataan toiminnallisuuksia." }, "info_url": null, "name": { "fi": "Kokemusasiantuntija" }, "description": { "fi": "Testataan toiminnallisuuksia." }, "location_extra_info": null, "provider": { "fi": "Helsingin kaupunki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agkyss2ism/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dk2q", "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: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:agggfz66ru/?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/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p4934/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dlpm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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:agggfz7axy/?format=api" } ], "created_time": "2025-03-11T12:40:16.546201Z", "last_modified_time": "2025-03-11T12:40:16.546217Z", "date_published": null, "start_time": "2025-05-27T09:00:00Z", "end_time": "2025-05-27T11: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_contact_info": null, "short_description": { "fi": "Asiaa ja iloa Espoon senioreille", "sv": "Kunskap och glädje för seniorer i Esbo", "en": "Information and joy for Espoo seniors" }, "info_url": null, "name": { "fi": "Ompun kohtaamiskahvila", "sv": "Omppus mötescafé", "en": "Omppu's Meeting Café" }, "description": { "fi": "<p>TIISTAINA 25.3. KELLO 12-14 - Aiheena etsivä vanhustyö </p><p>TIISTAINA 22.4. KELLO 12-14 - Teemana turvallisuus</p><p>TORSTAINA 27.5. KELLO 12-14 - Pureudumme Digitaitoihin ja Alueen eläkeläisjärjestöt esittäytyvät. </p><p>Myös Seniori-info on paikalla joka kerta kello 12-15. </p><p>Lämpimästi tervetuloa mukaan saamaan tietoa ja oppimaan ja tutustumaan alueen ihmisiin. Kohtaamiskahvilaan saa jäädä istuskelemaan ja juttelemaan kello 15 asti.</p>", "sv": "<p>TISDAG 25.3. KL. 12–14 – Tema: Uppsökande äldrearbete</p><p>TISDAG 22.4. KL. 12–14 – Tema: Säkerhet</p><p>TORSDAG 27.5. KL. 12–14 – Vi fördjupar oss i digitala färdigheter, och pensionärsorganisationer i området presenterar sig.</p><p>Seniorinfo är också på plats varje gång kl. 12–15.</p><p>Varmt välkommen att ta del av information, lära dig nytt och träffa människor i området. Mötescaféet är öppet för att sitta och samtala fram till kl. 15.</p>", "en": "<p>TUESDAY, MARCH 25, 12:00–14:00 – Topic: Outreach work for the elderly</p><p>TUESDAY, APRIL 22, 12:00–14:00 – Theme: Security</p><p>THURSDAY, MAY 27, 12:00–14:00 – We will explore digital skills, and local pensioners' organizations will introduce themselves.</p><p>Senior Info will also be present each time from 12:00 to 15:00.</p><p>You are warmly welcome to receive information, learn new things, and meet people from the area. The meeting café will remain open for sitting and chatting until 15:00.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dk2q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dlpm", "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: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:agggfz66ru/?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/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p4934/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dk2q/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-11T12:40:15.585219Z", "last_modified_time": "2025-03-11T12:40:15.585234Z", "date_published": null, "start_time": "2025-03-25T10:00:00Z", "end_time": "2025-05-27T11:00: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_contact_info": null, "short_description": { "fi": "Asiaa ja iloa Espoon senioreille", "sv": "Kunskap och glädje för seniorer i Esbo", "en": "Information and joy for Espoo seniors" }, "info_url": null, "name": { "fi": "Ompun kohtaamiskahvila", "sv": "Omppus mötescafé", "en": "Omppu's Meeting Café" }, "description": { "fi": "<p>TIISTAINA 25.3. KELLO 12-14 - Aiheena etsivä vanhustyö </p><p>TIISTAINA 22.4. KELLO 12-14 - Teemana turvallisuus</p><p>TORSTAINA 27.5. KELLO 12-14 - Pureudumme Digitaitoihin ja Alueen eläkeläisjärjestöt esittäytyvät. </p><p>Myös Seniori-info on paikalla joka kerta kello 12-15. </p><p>Lämpimästi tervetuloa mukaan saamaan tietoa ja oppimaan ja tutustumaan alueen ihmisiin. Kohtaamiskahvilaan saa jäädä istuskelemaan ja juttelemaan kello 15 asti.</p>", "sv": "<p>TISDAG 25.3. KL. 12–14 – Tema: Uppsökande äldrearbete</p><p>TISDAG 22.4. KL. 12–14 – Tema: Säkerhet</p><p>TORSDAG 27.5. KL. 12–14 – Vi fördjupar oss i digitala färdigheter, och pensionärsorganisationer i området presenterar sig.</p><p>Seniorinfo är också på plats varje gång kl. 12–15.</p><p>Varmt välkommen att ta del av information, lära dig nytt och träffa människor i området. Mötescaféet är öppet för att sitta och samtala fram till kl. 15.</p>", "en": "<p>TUESDAY, MARCH 25, 12:00–14:00 – Topic: Outreach work for the elderly</p><p>TUESDAY, APRIL 22, 12:00–14:00 – Theme: Security</p><p>THURSDAY, MAY 27, 12:00–14:00 – We will explore digital skills, and local pensioners' organizations will introduce themselves.</p><p>Senior Info will also be present each time from 12:00 to 15:00.</p><p>You are warmly welcome to receive information, learn new things, and meet people from the area. The meeting café will remain open for sitting and chatting until 15:00.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dlpm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dmc4", "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:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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: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:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dm2m/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150479, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-08T11:19:23.769532Z", "last_modified_time": "2024-03-08T11:19:23.769564Z", "name": "Sigmund W / Unsplash", "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:32:35.236998Z", "last_modified_time": "2025-03-11T11:45:04.754520Z", "date_published": null, "start_time": "2025-05-21T12:30:00Z", "end_time": "2025-05-21T14: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_contact_info": null, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "info_url": null, "name": { "fi": "Pajailtapäivä ", "sv": "Pysseleftermiddag i bibliotekets Makerspace", "en": "Arts and crafts afternoon in the library’s Makerspace" }, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dmoy", "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:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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: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:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dm2m/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150479, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-08T11:19:23.769532Z", "last_modified_time": "2024-03-08T11:19:23.769564Z", "name": "Sigmund W / Unsplash", "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:32:35.837301Z", "last_modified_time": "2025-03-11T11:45:04.659407Z", "date_published": null, "start_time": "2025-05-28T12:30:00Z", "end_time": "2025-05-28T14: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_contact_info": null, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "info_url": null, "name": { "fi": "Pajailtapäivä ", "sv": "Pysseleftermiddag i bibliotekets Makerspace", "en": "Arts and crafts afternoon in the library’s Makerspace" }, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmoy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dm2m", "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:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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: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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmoy/?format=api" } ], "images": [ { "id": 150479, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-08T11:19:23.769532Z", "last_modified_time": "2024-03-08T11:19:23.769564Z", "name": "Sigmund W / Unsplash", "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:31:56.758647Z", "last_modified_time": "2025-03-11T11:45:02.749432Z", "date_published": null, "start_time": "2025-01-21T13:30:00Z", "end_time": "2025-05-28T14: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_contact_info": null, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "info_url": null, "name": { "fi": "Pajailtapäivä ", "sv": "Pysseleftermiddag i bibliotekets Makerspace", "en": "Arts and crafts afternoon in the library’s Makerspace" }, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dm2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65711", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 325005, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-11T11:15:02.819434Z", "last_modified_time": "2025-03-11T11:15:02.819460Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764112.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/325005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-11T11:15:02.774909Z", "last_modified_time": "2025-03-11T11:15:02.903198Z", "date_published": null, "start_time": "2025-05-17T09:00:00Z", "end_time": "2025-05-17T11: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_contact_info": null, "short_description": { "fi": "Tervetuloa Satutuokion tAIkaa -työpajaan, jossa mielikuvitus ja teknologia kohtaavat!", "sv": "Välkommen till verkstaden Sagostundens magi med AI där fantasi och teknik möter!", "en": "Welcome to the fAIry tale magic workshop, where imagination and technology meet!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/542A6F0758B297378EC129AAD7D159F3/Satutuokion_tAIkaa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/542A6F0758B297378EC129AAD7D159F3/Sagostundens_magi_med_AI_", "en": "http://www.vuotalo.fi/en/events/event/542A6F0758B297378EC129AAD7D159F3/fAIrytale_Magic" }, "name": { "fi": "Satutuokion tAIkaa – Luovaa kertomusta ja kuvitusta tekoälyllä", "sv": "Sagostundens magi med AI – Kreativa berättelser och illustrationer med artificiell intelligens", "en": "fAIrytale Magic – Creative storytelling and illustration with AI" }, "description": { "fi": "<p>Tervetuloa Satutuokion tAIkaa -työpajaan, jossa mielikuvitus ja teknologia kohtaavat!</p><p>Työpajassa sukellamme tarinoiden ja kuvien maailmaan generatiivisen tekoälyn avulla. Pääset luomaan omia ainutlaatuisia tarinoita ja kuvia tekoälyn avustamana. Onko mielessäsi satumainen prinsessaseikkailu, jännittävä avaruusmatka tai hauska eläintarina?</p><p>Vain mielikuvitus on rajana!</p><p>Ikäsuositus: alle 9 v. aikuisen seurassa<br>Paikka: Vuotalon aula</p><p>Avoin ja maksuton nonstop-työpaja – tule mukaan silloin, kun sinulle sopii!</p><p>Järjestäjä: Aalto-yliopisto Junior, Tekoälytaiturit-hanke</p>", "sv": "<p>Välkommen till verkstaden Sagostundens magi med AI där fantasi och teknik möter!</p><p>I den här verkstaden dyker vi in i berättelsernas och bildernas värld med hjälp av generativ artificiell intelligens. Du får skapa egna unika berättelser och bilder med hjälp av artificiell intelligens. Vill du skapa ett sagoliknande prinsessäventyr, en spännande rymdresa eller en rolig djurberättelse?</p><p>Bara fantasin sätter gränser!</p><p>Åldersrekommendation: under 9-åringar i sällskap av en vuxen<br>Plats: Nordhusets lobby</p><p>Öppen och gratis nonstop-workshop – kom med när det passar dig!</p><p>Arrangeras av: Aalto-universitet Junior, projektet Tekoälytaiturit</p>", "en": "<p>Welcome to the fAIry tale magic workshop, where imagination and technology meet!</p><p>In the workshop, we will dive into the world of stories and images with the help of generative artificial intelligence. You will be able to create your own unique stories and images with the help of AI. Do you have a fabulous princess adventure, an exciting space trip or a funny animal story in mind?</p><p>Imagination is the limit!</p><p>Recommended age: under 9 years with an adult</p><p>Place: Vuotalo lobby</p><p>Free and open nonstop workshop – join in whenever it suits you!</p><p>Organised by: Aalto University Junior, Tekoälytaiturit initiative</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65711/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dngm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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:agggfz7axy/?format=api" } ], "created_time": "2025-03-11T09:34:10.302757Z", "last_modified_time": "2025-03-11T09:34:10.302776Z", "date_published": "2025-03-11T09:23:00Z", "start_time": "2025-05-20T10:00:00Z", "end_time": "2025-05-20T11: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_contact_info": null, "short_description": { "fi": "Espoon kaupunginkirjaston muusikko Timopekka Sillantaus laulattaa tuttuja, mutta ehkä osin unohtuneita suomalaisia musiikkihelmiä.", "sv": "Espoo stadsbiblioteks musiker Timopekka Sillantaus sjunger bekanta, men kanske delvis bortglömda finländska musikpärlor.", "en": "Espoo City Library's musician Timopekka Sillantaus will sing familiar, but perhaps partly forgotten Finnish musical gems." }, "info_url": null, "name": { "fi": "Yhteislauluillat Espoon kirjastoissa", "sv": "Gemensamma sångkvällar på Esbo bibliotek", "en": "Community Singing Evenings at Espoo Libraries" }, "description": { "fi": "<p><strong>Espoon kaupunginkirjaston muusikko Timopekka Sillantaus laulattaa tuttuja, mutta ehkä osin unohtuneita suomalaisia musiikkihelmiä.</strong></p><ul><li>ti 25.3. klo 17:00 Sellon kirjastossa</li><li>ti 15.4. klo 18:00 Entressen kirjastossa </li><li><strong>ti 20.5. klo 13:00 Tapiolan kirjastossa</strong></li><li>ma 26.5. klo 13:00 Lippulaivan kirjastossa</li></ul><p>Tervetuloa laulamaan yhdessä!</p>", "sv": "<p><strong>Espoo stadsbiblioteks musiker Timopekka Sillantaus sjunger bekanta, men kanske delvis bortglömda finländska musikpärlor.</strong></p><ul><li>tis 25.3. kl 17:00 Sello bibliotek</li><li>tis 15.4. kl 18:00 Entresse bibliotek </li><li><strong>tis 20.5. kl 13:00 Hagalunds bibliotek</strong></li><li>mån 26.5. kl 13:00 Lippulaiva bibliotek</li></ul><p>Välkommen att sjunga tillsammans!</p><p>Evenemanget hålls på finska.</p>", "en": "<p><strong>Espoo City Library's musician Timopekka Sillantaus will sing familiar, but perhaps partly forgotten Finnish musical gems.</strong></p><ul><li>25.3. at 17:00 Sello library</li><li>15.4. at 18:00 Entresse library</li><li><strong>20.5. at 13:00 Tapiola library</strong></li><li>26.5. at 13:00 Lippulaiva library</li></ul><p>Welcome to sing together!</p><p>The event is in Finnish.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dngm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65475", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T15:15:39.875505Z", "last_modified_time": "2025-01-17T15:15:39.875523Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763592.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156460/?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": "2025-01-17T15:15:39.849565Z", "last_modified_time": "2025-03-11T09:14:47.221521Z", "date_published": null, "start_time": "2025-03-18T08:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!", "sv": "Alla blommor har mist sin färg och därmed sin superkraft. Lyckligtvis för oss vet Ama hur hon ska kommunicera med moder natur genom dans, och publiken får också dansa!", "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance, too!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/554285DD05B9D6AC76C2F766C1B6A3E5/Ama_Kyei_Kukkatanssit_paivakoti-_ja_koululaisryhmille", "sv": "http://www.caisa.fi/sv/evenemang/event/554285DD05B9D6AC76C2F766C1B6A3E5/Ama_Kyei_Kukkatanssit_Blomdanser_", "en": "http://www.caisa.fi/en/events/event/554285DD05B9D6AC76C2F766C1B6A3E5/Ama_Kyei_Flower_Dances" }, "name": { "fi": "Ama Kyei: Kukkatanssit | päiväkoti- ja koululaisryhmille – Hurraa! -teatteriviikot", "sv": "Ama Kyei: Kukkatanssit (Blomdanser) – Hurraa!-teaterveckor", "en": "Ama Kyei: Flower Dances – Hurraa! theatre weeks" }, "description": { "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7-vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Kesto: 30 min<br>Ikäsuositus: 3–7 vuotta<br>Kieli: suomi</p><p>Päiväkoti- ja koululaisryhmille esitys on maksuton, mutta vaatii ilmoittautumisen etukäteen https://kultus.fi/fi</p><p>Esitykseen voi ostaa lippuja lippu.fi:n kautta.</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>", "sv": "<p>Alla blommor har mist sin färg och därmed sin superkraft. Lyckligtvis för oss vet Ama hur hon ska kommunicera med moder natur genom dans, och publiken får också dansa!</p><p>Med moder naturs vägledning och barnens hjälp kan vi hjälpa blommorna att återfå sin färg och sina superkrafter. Under föreställningen får vi bland annat dansa regn-, jord-, vind- och soldanser och se hur magiskt grönt vatten skapas. Denna föreställning påminner oss om att värna om allt vi bryr oss om.</p><p>Blomdanser är en interaktiv föreställning för barn i åldern 3–7 år samt barn med särskilda behov upp till gymnasieåldern.</p><p>Koreografi och dans: Ama Kyei<br>Kreativa assistenter: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Sponsor: Konstnärsnämnden och Region Stockholm<br>Trailer & foto: Jonathan Morell<br>Musik i trailern: Sara Celaya</p><p>Längd: 30 min.<br>Åldersrekommendation: 3–7 år<br>Språk: finska</p><p>Föreställningen är avgiftsfri för daghems- och skolgrupper, men kräver förhandsanmälan på adressen kultus.fi</p><p>Biljetter till föreställningen kan köpas via lippu.fi.</p><p><b>Hurraa!-teaterveckor <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurraa!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 14 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurraa!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to the theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>", "en": "<p>All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance, too!</p><p>Together with Mother Nature’s guidance and with help from the children, we can help flowers regain their colour and superpower. We get to dance rain, earth, wind and sun dances and see how magical green water is born. This performance reminds us to cherish everything we care about.</p><p>Flower Dances is an interactive performance for 3–7-year-old children and special needs children up to general upper secondary school.</p><p>Choreography and dance: Ama Kyei<br>Creative Assistants: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Funded by: The Swedish Arts Grants Committee and Region Stockholm<br>Trailer & image: Jonathan Morell<br>Trailer music: Sara Celaya</p><p>Duration: 30 min<br>Age recommendation: 3–7 years<br>Language: Finnish</p><p>The performance is free of charge for daycare and school groups, but requires advance registration at Kultus.fi</p><p>Tickets for the performance can be purchased through lippu.fi</p><p><b>Hurraa! Theatre Weeks<br>Take a Child to the Theatre</b><br>Hurraa! Theatre Weeks offer live theatre specifically designed for children and young adults. The high-quality repertoire consists of 12 different performances and 37 shows all over Helsinki. <br> <br>The shows will take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki. <br> <br>Hurraa! Theatre Weeks are arranged as part of the international Take a Child to the Theatre week. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March. <br> <br>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65474", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156459, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T15:15:39.656908Z", "last_modified_time": "2025-01-17T15:15:39.656929Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763591.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156459/?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": "2025-01-17T15:15:39.620146Z", "last_modified_time": "2025-03-11T09:14:47.095898Z", "date_published": null, "start_time": "2025-03-18T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!", "sv": "Alla blommor har mist sin färg och därmed sin superkraft. Lyckligtvis för oss vet Ama hur hon ska kommunicera med moder natur genom dans, och publiken får också dansa!", "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance, too!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/A75AC3B389089606E84D966DE5C73691/Ama_Kyei_Kukkatanssit_paivakoti-_ja_koululaisryhmille", "sv": "http://www.caisa.fi/sv/evenemang/event/A75AC3B389089606E84D966DE5C73691/Ama_Kyei_Kukkatanssit_Blomdanser_", "en": "http://www.caisa.fi/en/events/event/A75AC3B389089606E84D966DE5C73691/Ama_Kyei_Flower_Dances" }, "name": { "fi": "Ama Kyei: Kukkatanssit | päiväkoti- ja koululaisryhmille – Hurraa! -teatteriviikot", "sv": "Ama Kyei: Kukkatanssit (Blomdanser) – Hurraa!-teaterveckor", "en": "Ama Kyei: Flower Dances – Hurraa! theatre weeks" }, "description": { "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7-vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Kesto: 30 min<br>Ikäsuositus: 3–7 vuotta<br>Kieli: suomi</p><p>Päiväkoti- ja koululaisryhmille esitys on maksuton, mutta vaatii ilmoittautumisen etukäteen https://kultus.fi/fi</p><p>Esitykseen voi ostaa lippuja lippu.fi:n kautta.</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>", "sv": "<p>Alla blommor har mist sin färg och därmed sin superkraft. Lyckligtvis för oss vet Ama hur hon ska kommunicera med moder natur genom dans, och publiken får också dansa!</p><p>Med moder naturs vägledning och barnens hjälp kan vi hjälpa blommorna att återfå sin färg och sina superkrafter. Under föreställningen får vi bland annat dansa regn-, jord-, vind- och soldanser och se hur magiskt grönt vatten skapas. Denna föreställning påminner oss om att värna om allt vi bryr oss om.</p><p>Blomdanser är en interaktiv föreställning för barn i åldern 3–7 år samt barn med särskilda behov upp till gymnasieåldern.</p><p>Koreografi och dans: Ama Kyei<br>Kreativa assistenter: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Sponsor: Konstnärsnämnden och Region Stockholm<br>Trailer & foto: Jonathan Morell<br>Musik i trailern: Sara Celaya</p><p>Längd: 30 min.<br>Åldersrekommendation: 3–7 år<br>Språk: finska</p><p>Föreställningen är avgiftsfri för daghems- och skolgrupper, men kräver förhandsanmälan på adressen kultus.fi</p><p>Biljetter till föreställningen kan köpas via lippu.fi.</p><p><b>Hurraa!-teaterveckor <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurraa!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 14 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurraa!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to the theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>", "en": "<p>All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance, too!</p><p>Together with Mother Nature’s guidance and with help from the children, we can help flowers regain their colour and superpower. We get to dance rain, earth, wind and sun dances and see how magical green water is born. This performance reminds us to cherish everything we care about.</p><p>Flower Dances is an interactive performance for 3–7-year-old children and special needs children up to general upper secondary school.</p><p>Choreography and dance: Ama Kyei<br>Creative Assistants: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Funded by: The Swedish Arts Grants Committee and Region Stockholm<br>Trailer & image: Jonathan Morell<br>Trailer music: Sara Celaya</p><p>Duration: 30 min<br>Age recommendation: 3–7 years<br>Language: Finnish</p><p>The performance is free of charge for daycare and school groups, but requires advance registration at Kultus.fi</p><p>Tickets for the performance can be purchased through lippu.fi</p><p><b>Hurraa! Theatre Weeks<br>Take a Child to the Theatre</b><br>Hurraa! Theatre Weeks offer live theatre specifically designed for children and young adults. The high-quality repertoire consists of 12 different performances and 37 shows all over Helsinki. <br> <br>The shows will take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki. <br> <br>Hurraa! Theatre Weeks are arranged as part of the international Take a Child to the Theatre week. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March. <br> <br>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65474/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64981", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:40.008634Z", "last_modified_time": "2025-01-24T11:09:40.008650Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763299.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166310/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T11:09:39.981230Z", "last_modified_time": "2025-03-10T13:15:58.920104Z", "date_published": null, "start_time": "2025-03-24", "end_time": "2025-03-29", "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_contact_info": null, "short_description": { "fi": "SIIRTYY keväälle 2026. Stoan galleriaan rakentuu Kaisu Koiviston ja Gabriela Aldanan yhteinen installaatio, joka tarjoaa tilan hidastumiseen ja lepoon.", "sv": "I Stoas galleri byggs en gemensam installation av Kaisu Koivisto och Gabriela Aldana upp, som ger besökarna en plats för att sakta ner och vila.", "en": "Kaisu Koivisto and Gabriela Aldana’s joint installation at Stoa Gallery provides a space for slowing down and resting." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/96EF8E0F4D5CD59053D3E2114626BBAB/The_Act_of_Revealing", "sv": "http://www.stoa.fi/sv/evenemang/event/96EF8E0F4D5CD59053D3E2114626BBAB/The_Act_of_Revealing", "en": "http://www.stoa.fi/en/events/event/96EF8E0F4D5CD59053D3E2114626BBAB/The_Act_of_Revealing" }, "name": { "fi": "The Act of Revealing", "sv": "The Act of Revealing", "en": "The Act of Revealing" }, "description": { "fi": "<p>SIIRTYY keväälle 2026. Stoan galleriaan rakentuu Kaisu Koiviston ja Gabriela Aldanan yhteinen installaatio, joka tarjoaa tilan hidastumiseen ja lepoon.</p><p>Teos tutkii liikkeen, äänen ja kosketuksen kautta kollektiivisia hoivan periaatteita ja solullisen toiminnan suhdetta kehossa oleviin muistiin. Samalla tutkitaan kehon ajatonta olemusta, kehoa luontona, joka läsnäolonsa kautta nostaa esille yhteiskunnan toiminnan ja kehon aitojen tarpeiden ristiriitaa.</p><p>Stoan Galleriaan rakennetaan installaatio, jonka ympäröimänä esitykset tapahtuvat.</p><p>Esitysten ajankohdat ilmoitetaan myöhemmin keväällä.</p><p><b>Työryhmä:</b><br>Gabriela Aldana: Koreografi, esiintyjä, äänitaiteilija<br>Riina Huhtanen: Esiintyjä<br>Taru Koski: Esiintyjä<br>Kaisu Koivisto: Installaatio</p><p>Vapaa pääsy</p>", "sv": "<p>I Stoas galleri byggs en gemensam installation av Kaisu Koivisto och Gabriela Aldana upp, som ger besökarna en plats för att sakta ner och vila.</p><p>Genom rörelse, ljud och beröring utforskar verket principerna för kollektiv omvårdnad och förhållandet mellan cellulär aktivitet och kroppsminnen. Samtidigt utforskas kroppens tidlösa väsen, kroppen som natur, som genom sin närvaro belyser motsättningen mellan samhällets agerande, och kroppens genuina behov.</p><p>I Stoas galleri byggs en installation upp, och runt den kommer föreställningarna att äga rum. <br>Tidpunkter för föreställningarna meddelas under våren.</p><p><b>Arbetsgrupp:</b><br>Gabriela Aldana: Koreografi, framträdande, ljudkonst<br>Riina Huhtanen: Framträdande<br>Taru Koski: Framträdande<br>Kaisu Koivisto: Installation</p><p>Fritt inträde</p>", "en": "<p>Kaisu Koivisto and Gabriela Aldana’s joint installation at Stoa Gallery provides a space for slowing down and resting.</p><p>Through movement, sound and touch, the work explores the collective principles of care and the relationship of cellular activity with the memory in the body. At the same time, we study the timeless nature of the body, the body as nature, which, through its presence, highlights the conflict between the functioning of society and the real needs of the body.</p><p>The installation will be built at Stoa Gallery, and performances will happen around it. <br>Performance dates will be announced in the spring.</p><p><b>Working Group:</b><br>Gabriela Aldana: choreographer, performer, sound artist<br>Riina Huhtanen: performer<br>Taru Koski: performer<br>Kaisu Koivisto: installation</p><p>Free admission</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64981/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24611, "next": "