Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=153
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=154", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=152" }, "data": [ { "id": "espoo_le:agjgweweyu", "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/helmet:11733/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-08T06:58:15.403680Z", "last_modified_time": "2024-10-08T06:58:15.403713Z", "date_published": null, "start_time": "2024-10-30T15:30:00Z", "end_time": "2024-10-30T16: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, "name": { "fi": "Tuntematon sotilas ja sota näyttämöllä " }, "short_description": { "fi": "Tuntematon sotilas -esitykseen liittyen & Espoon teatteri järjestää keskustelutilaisuuden, jossa pohditaan näytelmän sovittamista näyttämölle tässä ajassa. " }, "info_url": { "fi": "https://espoonteatteri.fi/ohjelmisto/tuntematon-sotilas/" }, "location_extra_info": { "fi": "Kaija" }, "provider": { "fi": "& Espoon Teatteri" }, "description": { "fi": "<p><strong>& Espoon Teatterin vierailuesityksenä nähdään Espoon kulttuurikeskuksessa ke 30.10.-2.11. Tuntematon sotilas. Esitykseen liittyen järjestämme keskustelutilaisuuden, jossa pohditaan Tuntemattoman sotilaan sovittamista näyttämölle tässä ajassa. </strong></p><p>Keskustelu linkittyy Sota satuttaa – esityksiä sodasta suomalaisilla näyttämöillä 1921-2024 -artikkelikokoelman julkaisuun. Kokoelma käsittelee teatterin roolia yhteisöjen vaikeiden kokemusten ja traumojen käsittelijänä, muistin säilyttäjänä ja edelleen siirtäjänä sekä sitä, miten teatteri yhteiskunnallisena taidemuotona on aina muovannut kuvaa sodasta esittämällään tavalla. </p><p>Mukana keskustelussa ovat Tuntematon sotilas esityksen on ohjannut Juho Mantere sekä artikkelikokoelman kirjoittajia. </p><p>Keskusteluun on vapaa pääsy. </p><p>Lisää esityksestä: <a href=\"https://espoonteatteri.fi/ohjelmisto/tuntematon-sotilas/ \">https://espoonteatteri.fi/ohjelmisto/tuntematon-sotilas/ </a> </p><p><br></p>\nLisätietoja<p><strong>Sota satuttaa - esityksiä sodasta suomalaisilla näyttämöillä 1921-2024 </strong></p><p>Sota on ollut poikkeuksellisen näkyvästi läsnä viime vuosina. Yhtäällä on vietetty sisällissodan päättymisen muistovuotta, toisaalla Venäjän hyökkäyssota Ukrainassa on tuonut sodan kauhut jälleen todellisiksi. Teatterilla on aina ollut merkittävä osa yhteisön vaikeiden kokemusten ja traumojen käsittelijänä, muistin säilyttäjänä ja edelleen siirtäjänä. Lisäksi teatteri yhteiskunnallisena taidemuotona on aina muovannut kuvaa sodasta esittämällään tavalla. </p><p>Kokoelma havainnollistaa, kuinka sotaa ja sen seurauksia käsitelleet esitykset ovat sisällissodan päättymisestä lähtien herättäneet keskustelua, olleet kiistanalaisia, tulleet osin sensuroiduiksi tai peräti kielletyiksi. 2000-luvulla esitykset ovat kyseenalaistaneet yhden totuuden tai hallitsevan narratiivin sodan esittämisessä ja ovat sotivien sijaan kohdistaneet katseen muun muassa naisten, sotaorpojen, pakolaisten ja paikallisyhteisöjen kokemuksiin. Tekstit tuovat myös esiin teatterin moninaiset taiteelliset keinot käsitellä sodan seurausten vaikeasti kielellistettäviä kokemuksia. </p><p>Kirjoittajina on joukko teatteritieteen tohtoreita: Laura-Elina Aho, Hanna Korsberg, Pirkko Koski, Outi Lahtinen, Julia Pajunen, Mikko-Olavi Seppälä ja Marja Silde (toimittaja).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgweweyu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgwewfgu", "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/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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-08T06:40:55.045830Z", "last_modified_time": "2024-10-08T06:40:55.045898Z", "date_published": "2024-10-08T06:34:00Z", "start_time": "2024-10-11T05:00:00Z", "end_time": "2024-11-02T16: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, "name": { "fi": "Embodied emotions -ääniteos" }, "short_description": { "fi": "EMBODIED EMOTIONS on sarja lyhyitä musiikkikappaleita, jotka inspiroituvat emootioiden kehollisista tuntemuksista ja emootioita käsittelevästä kielenkäytöstä." }, "info_url": null, "location_extra_info": { "fi": "Musiikkiosasto" }, "provider": { "fi": "Martin Granö" }, "description": { "fi": "<p><strong>EMBODIED EMOTIONS</strong> on sarja lyhyitä musiikkikappaleita, jotka inspiroituvat emootioiden kehollisista tuntemuksista ja emootioita käsittelevästä kielenkäytöstä. Tuntemusten purkaminen osiin luo pohjaa niiden äänellistämiselle löytämällä yhteisiä tekijöitä näiden kokemusten ja musiikkia kuvaavan termistön välillä. Kuvitellen, ja osin muuntaen tuntemusten ominaisuuksia ääniksi, muodostuu näistä miniatyyriteoksista tekijän eräänlainen emootioiden subjektiivisten kokemusten omakuva, jossa keholliset tuntemukset ovat keskiössä.</p><p><br></p>\nTekijästä lyhyesti<p>Martin Granö on espoolainen monipuolisesti musiikista kiinnostunut musiikintekijä, jonka teoksia on esitetty gallerioissa ja noteerattu Japanin hittilistoilla. Nykyisin hänen mielenkiinnon kohteenaan on erityisesti ihmisen kokemusmaailman tulkitseminen kokeellisen musiikin näkökulmasta.</p><p>Kiitos Laura Granö, Niklas Granö, Espoon kaupunginkirjasto sekä teosta rahallisesti tukenut Svenska kulturfonden.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgwewfgu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63494", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-18628010", "sv": "https://www.lippu.fi/event/name-18628010", "en": "https://www.lippu.fi/event/name-18628010" }, "description": null, "price": { "fi": "39,90 €", "sv": "39,90 €", "en": "39,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150902, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T10:13:11.190082Z", "last_modified_time": "2024-04-30T10:13:11.190095Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745220.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T10:13:11.168767Z", "last_modified_time": "2024-10-08T06:15:14.766085Z", "date_published": null, "start_time": "2024-10-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yona: Eden-levynjulkaisukiertue – Loppuunmyyty!", "sv": "Yona: Eden-levynjulkaisukiertue – Slutsåld!", "en": "Yona: Eden-levynjulkaisukiertue – Sold out!" }, "short_description": { "fi": "Yona julkaisee yhdeksännen sooloalbuminsa ja lähtee mittavalle konserttisalikiertueelle", "sv": "Yona släpper sitt nionde soloalbum och åker på en omfattande konsertturné", "en": "Yona releases her ninth solo album and embarks on a major concert hall tour" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E99A1FD778BADA1E272621D01DA2F439/Yona_Eden-levynjulkaisukiertue", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/E99A1FD778BADA1E272621D01DA2F439/Yona_Eden-levynjulkaisukiertue", "en": "http://www.savoyteatteri.fi/en/events/event/E99A1FD778BADA1E272621D01DA2F439/Yona_Eden-levynjulkaisukiertue" }, "location_extra_info": null, "provider": { "fi": "Soldout Management Oy", "sv": "Soldout Management Oy", "en": "Soldout Management Oy" }, "description": { "fi": "<p>Yona julkaisee yhdeksännen sooloalbuminsa ja lähtee mittavalle konserttisalikiertueelle</p><p>Laulaja- ja lauluntekijä <b>Yona</b> julkaisee syksyllä yhdeksännen studioalbuminsa ja suuntaa levynjulkaisukiertueella konserttisaleihin ympäri Suomen. Eden-nimeä kantava albumi julkaistaan 20. syyskuuta ja kiertue starttaa lokakuussa.</p><p><i>”Eden kertoo sisäisestä turvapaikasta, kaiken läpäisevästä rakkaudesta ja irtipäästämisestä. Levy on tehty yhdessä tuottaja <b>Mauri Syrjälän</b>, sekä mun rakkaan yhtyeeni kanssa. Eden on Yonan soinnille tutusti orgaaninen, mutta aikaisemmista levyistä poiketen konemusavaikutteisempi, biitimpi ja mystisempi”</i>, Yona kertoo tulevasta levystä</p><p>Julkaisukiertueen keikat ovat kaksiosaisia. Uuden levyn lisäksi konserteissa tullaan kuulemaan myös useita rakastetuimpia kappaleita Yonan aikaisemmilta levyiltä.</p><p><i>”Meidän jokainen keikka on uniikki ja annamme aina kaikkemme musiikille. Odotan suurella jännityksellä ja innolla, että pääsemme sukeltamaan yhdessä Edeniin”</i>, Yona fiilistelee kiertuetta.</p><p>Yona tunnetaan ennakkoluulottomasta ja uniikista tavastaan yhdistellä taiteessaan eri musiikkigenrejä. Yonan kappaleille on ominaista henkilökohtainen ote, vahva tunnelataus ja elokuvalliset mittasuhteet. Artisti palkittiin edellisestä albumistaan Uni johon herään Kriitikoiden valinta -Emmalla ja Teosto-palkinnolla.</p><p>Yonan ilmaisuvoimaisessa yhtyeessä̈ soittavat <b>Juhani Grönroos</b> (kitara), <b>Juho Kanervo</b> (sello), <b>Antti Kujanpää</b> (koskettimet), <b>Tuomas Timonen</b> (rummut), <b>Antti Kivimäki</b> (basso), <b>Paavo Malmberg</b> (ääni) sekä <b>Jaakko Peltonen</b> (valot).</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>", "sv": "<p>Yona släpper sitt nionde soloalbum och åker på en omfattande konsertturné</p><p>I höst släpper sångerskan och låtskrivaren Yona sitt nionde studioalbum, och åker på en albumsläppsturné till konsertsalar runt om i Finland. Albumet Eden släpps den 20 september och turnén inleds i oktober.</p><p>“Eden berättar om den inre fristaden, kärleken som klarar allt och om att släppa taget. Albumet har gjorts tillsammans med producenten Mauri Syrjälä och mitt älskade band. Troget Yonas sound är Eden organiskt, men till skillnad från tidigare album är det mer påverkat av maskinmusik, beatigt och mystiskt”, beskriver Yona det kommande albumet</p><p>Spelningarna på albumsläppsturnén är tvådelade. Utöver det nya albumet får vi på konserterna även höra de mest älskade låtarna från Yonas tidigare album.</p><p>“Var och en av våra spelningar är unik, och vi ger alltid musiken vårt allt. Jag ser med stor spänning och entusiasm fram emot att få dyka in i Eden tillsammans”, myser Yona om turnén.</p><p>Yona är känd för sitt fördomsfria och unika sätt att kombinera olika musikgenrer i sin konst. Yonas låtar kännetecknas av ett personligt grepp, stark känslomässig laddning och filmatiska proportioner. Artisten belönades med Emma-priset för kritikernas val och Teosto-priset för sitt tidigare album Uni (En dröm).</p><p>Yonas uttrycksfulla band består av Juhani Grönroos (gitarr), Juho Kanervo (cello), Antti Kujanpää (keyboard), Tuomas Timonen (trummor), Antti Kivimäki (bas), Paavo Malmberg (röst) och Jaakko Peltonen (ljus).</p><p>Åldersgräns: T</p><p>Längd ca 2 h, inklusive paus</p>", "en": "<p>Yona releases her ninth solo album and embarks on a major concert hall tour</p><p>Singer-songwriter Yona will release her ninth studio album in the autumn and embark on an album release tour of concert halls across Finland. The Eden album will be released on 20 September, and the tour will start in October.</p><p>“Eden is about an inner sanctuary, a love that transcends everything, and letting go. The album was made together with producer Mauri Syrjälä and my lovely band. Eden is a familiar organic sound for Yona, but unlike previous albums, it’s more influenced by electronic music, has more beats and is more mystical”, says Yona about the upcoming album.</p><p>The shows on the album release tour will have two parts. In addition to the new album, the concerts will also feature many of Yona’s best-loved songs from her previous albums.</p><p>“Each of our gigs is unique and we always give our all to the music. I’m very excited and looking forward to diving into Eden together”, says Yona enthusiastically about the tour.</p><p>Yona is known for her open-minded and unique ways of combining different musical genres in her art. Yona’s songs are characterised by a personal touch, a strong emotional atmosphere and cinematic proportions. The artist was awarded the Critics’ Choice Emma Award and the Teosto Award for her previous album, Uni.</p><p>Yona’s expressive band consists of Juhani Grönroos (guitar), Juho Kanervo (cello), Antti Kujanpää (keyboard), Tuomas Timonen (drums), Antti Kivimäki (bass), Paavo Malmberg (vocals) and Jaakko Peltonen (lights).</p><p>Age limit: All ages</p><p>Duration: approx. 2 h, including an intermission</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgvwcgyy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcffq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcfqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcfum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcfyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcf4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgm4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgva/?format=api" } ], "images": [ { "id": 150449, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T08:45:00.440809Z", "last_modified_time": "2024-03-15T08:45:00.440832Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/espanjan-kielikahvila.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kahvikuppi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150449/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-08T06:02:52.800968Z", "last_modified_time": "2024-10-08T06:02:52.800989Z", "date_published": null, "start_time": "2024-10-10T14:00:00Z", "end_time": "2024-12-19T16: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, "name": { "fi": "Hablamos Español! Tule puhumaan espanjaa!", "sv": "Hablamos Español! Kom och prata spanska!", "en": "Hablamos Español! Come and speak Spanish!" }, "short_description": { "fi": "Ryhmässä keskustellaan espanjan kielellä arkipäivän asioista. ", "sv": "Gruppen diskuterar vardagsfrågor på spanska.", "en": "The group discusses everyday issues in Spanish." }, "info_url": null, "location_extra_info": { "fi": "Elina", "sv": "Elina", "en": "Elina" }, "provider": null, "description": { "fi": "<p>Ryhmässä keskustellaan espanjan kielellä arkipäivän asioista. Tervetuloa mukaan!</p><p><br></p><p>El grupo está dirigido a personas que les interesa el español, este grupo es de discusión informal, con temas de uso cotidiano. No se necesita ningún nivel, podemos empezar desde el inicio juntos.</p><p>No es necesario registrarse.</p><p>¡Bienvenidos a disfrutar de un tiempo divertido!</p>", "sv": "<p>Gruppen diskuterar vardagsfrågor på spanska.</p>", "en": "<p>The group discusses everyday issues in Spanish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgvwcgyy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgq7lbxe", "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/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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-10-07T18:36:34.431571Z", "last_modified_time": "2024-10-07T18:36:34.431592Z", "date_published": null, "start_time": "2024-10-17T07:30:00Z", "end_time": "2024-10-17T08: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, "name": { "fi": "Vauvamuskarin syyskonsertti" }, "short_description": { "fi": "Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti." }, "info_url": null, "location_extra_info": { "fi": "Stage" }, "provider": null, "description": { "fi": "<p>Ison omenan kirjaston vauvamuskarin syyskonsertti torstaina 17.10 klo 10.30</p><p><br></p><p>Kirjaston musiikkipedagogit Lauri Iljin ja Sakari Heikka järjestävät kaksi konserttia, joihin voit ilmoittautua. Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti.</p><p>Konsertissa tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Konserttiin voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Konsertit ovat suunnattu 3kk - 3v ikäisille lapsille. On suositeltavaa ottaa mukaan oma viltti tai jarrusukat. Osallistuminen on maksutonta.</p><p>Vuorovaikutteinen vauvamuskareiden syyskonsertti kestää n. 30 minuuttia. Osallistuminen on maksutonta.</p><p>Linkki ilmoittautumiseen: <a href=\"https://link.webropol.com/s/vauvakonsertti\">https://link.webropol.com/s/vauvakonsertti</a></p><p>#vauvamuskari #musiikki #konsertti #perhe #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgq7lbxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrso3m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrsom4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrsoxu/?format=api" } ], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:52:04.929668Z", "last_modified_time": "2024-10-07T18:01:02.272326Z", "date_published": null, "start_time": "2024-10-22T07:30:00Z", "end_time": "2024-11-19T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrso3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrso7i", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:54:08.473012Z", "last_modified_time": "2024-10-07T18:00:44.119494Z", "date_published": null, "start_time": "2024-11-13T08:30:00Z", "end_time": "2024-11-13T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": { "fi": "Kajuutta" }, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrso7i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrspei", "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/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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:56:29.771105Z", "last_modified_time": "2024-10-07T18:00:27.441046Z", "date_published": null, "start_time": "2024-11-08T08:30:00Z", "end_time": "2024-11-08T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": { "fi": "tapahtumatila Heikki" }, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrspei/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrspjy", "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/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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:58:20.648675Z", "last_modified_time": "2024-10-07T18:00:07.693353Z", "date_published": null, "start_time": "2024-11-05T08:30:00Z", "end_time": "2024-11-05T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": { "fi": "nuortentila VOX" }, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrspjy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrspoy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:59:46.046818Z", "last_modified_time": "2024-10-07T17:59:46.046839Z", "date_published": null, "start_time": "2024-10-30T08:30:00Z", "end_time": "2024-10-30T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": { "fi": "Jaminurkka" }, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrspoy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrsptq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:48:47.546624Z", "last_modified_time": "2024-10-07T17:48:47.546645Z", "date_published": null, "start_time": "2024-11-20T08:30:00Z", "end_time": "2024-11-20T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": { "fi": "Jukeboksi" }, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p>https://link.webropol.com/s/vauvamuskari</p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrsptq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgqrspym", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T17:42:42.529088Z", "last_modified_time": "2024-10-07T17:42:42.529111Z", "date_published": null, "start_time": "2024-11-27T08:30:00Z", "end_time": "2024-11-27T09: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, "name": { "fi": "Vauvamuskari" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 11.10 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Nöykkiön kirjasto tiistai 22.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 30.10 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 5.11 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 8.11 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 13.11 klo 10.30</li><li>Nöykkiön kirjasto tiistai 19.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 20.11 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 27.11 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgqrspym/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64505", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10", "sv": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10", "en": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152283, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-04T10:14:58.656184Z", "last_modified_time": "2024-09-04T10:14:58.656201Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756298.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152283/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-09-04T10:14:58.624011Z", "last_modified_time": "2024-10-07T16:15:14.716398Z", "date_published": null, "start_time": "2024-10-15T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LOPPUUNMYYTY! Benny Törnroos & Muumipeikon tähtihetki", "sv": "SLUTSÅLD! Benny Törnroos & Mumintrollet och stjärnan", "en": "SOLD OUT! Benny Törnroos & the Moomintroll´s star moment" }, "short_description": { "fi": "Illan toiseen konserttiin klo 19 löytyy vielä lippuja ainakin viikkoa ennen!", "sv": "Det finns ännu åtminstone en vecka före biljetter till kvällens andra konsert kl.19.", "en": "There are still tickets to the second concert of the evening at 7 pm at least one week before the concert." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/45A7F2172E79DB12AA753F28DBE8DD44/LOPPUUNMYYTY_Benny_Tornroos_Muumipeikon_tahtihetki", "sv": "http://www.vuotalo.fi/sv/evenemang/event/45A7F2172E79DB12AA753F28DBE8DD44/SLUTSALD_Benny_Tornroos_Mumintrollet_och_stjarnan", "en": "http://www.vuotalo.fi/en/events/event/45A7F2172E79DB12AA753F28DBE8DD44/SOLD_OUT_Benny_Tornroos_the_Moomintroll_s_star_moment" }, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Illan toiseen konserttiin klo 19 löytyy vielä lippuja ainakin viikkoa ennen!</p><p>Saduilla on yleensä onnellinen loppu. Niin myös Muumikonserteilla!</p><p>Benny Törnroos ja Muumiperhe ovat loppusuoralla, ja esiintyvät enää vain muutaman kerran. Tunnelma onkin siksi katossa – muistot elävät, ja yhdessä lauletaan, tömistellään ja tanssitaan niin kuin ennen. Muumipeikon tähtihetki koittaa yhdessä Mamman, Papan, Nipsun ja Pikku Myyn seurassa – ja tietysti sinun kanssasi. Tervetuloa!</p><p>Kesto: n. 60 min<br>Kaksikielinen: suomi ja ruotsi</p><p>Liput: à 15 € Lippu.fi tai lippuautomaatilta ovella. <br>Järj. Benny Törnroos yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Det finns ännu åtminstone en vecka före biljetter till kvällens andra konsert kl.19.</p><p>Alla sagor har ett lyckligt slut. Så är det också med Muminkonserterna!</p><p>Benny Törnroos och Mumintrollen är på slutrakan och endast några konserter återstår. Kom med och fira finalen tillsammans med Mamman, Pappan, Sniff och Lilla My i konserten Mumintrollet och stjärnan. Vi dansar, skuttar och stampar så att hela huset darrar när vi sjunger Papapaaa... Mamamaaa. Välkommen. Vi ses!</p><p>Längd: ca 60 min<br>Tvåspråkig svenska-finska.</p><p>Bilj. à 15 € från Lippu.fi eller från biljettautomaten vid dörren.<br>Arr. Benny Törnroos i samarbete med Nordhuset.</p>", "en": "<p>There are still tickets to the second concert of the evening at 7 pm at least one week before the concert.</p><p>Fairy tales usually have a happy ending. So too, do Moomin concerts!</p><p>Benny Törnroos and the Moomin family are almost done, and will only perform a few more times. The atmosphere is therefore through the roof – memories live on, and together we sing, stomp and dance as we used to. Moomintroll's star moment comes together with Mama, Papa, Sniff and Little My – and of course with you. Welcome!</p><p>Duration: approx. 60 min<br>Bilingual: Finnish and Swedish</p><p>Tickets: 15 € from Lippu.fi or from the ticket machine at the door.<br>Org. Benny Törnroos in cooperation with Vuotalo.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64671", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152748, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-07T13:15:14.478769Z", "last_modified_time": "2024-10-07T13:15:14.478783Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759112.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-10-07T13:15:14.442663Z", "last_modified_time": "2024-10-07T13:15:14.570119Z", "date_published": null, "start_time": "2024-11-06", "end_time": "2024-12-03", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Fenomenaalinen – näyttely kokemusmaailmoista" }, "short_description": { "fi": "Fenomenaalinen – näyttely kokemusmaailmoista on mielenterveyden teemoja käsittelevä ryhmänäyttely, jonka taiteilijat ovat Sosped-säätiön Mieletöntä valoa -toiminnassa mukana olevia nuoria aikuisia." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0F3CDF04AECABB42B294089AFEFABE38/Fenomenaalinen_nayttely_kokemusmaailmoista_" }, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Fenomenaalinen – näyttely kokemusmaailmoista on mielenterveyden teemoja käsittelevä ryhmänäyttely, jonka taiteilijat ovat Sosped-säätiön Mieletöntä valoa -toiminnassa mukana olevia nuoria aikuisia.</p><p>Jokainen taiteilija lähestyy näyttelyn teemaa omasta uniikista näkökulmastaan. Näyttelyssä tuodaan esille niin mielenterveyttä ylläpitäviä hyviä asioita, kuin myös rankkoja kokemuksia ja matkaa itseensä. Mielenterveyden teemojen käsittely taiteen kautta on parhaimmillaan voimauttavaa ja eheyttävää.</p><p>Taiteilijat: DigitalDreamD, Taika Iinattiniemi, Tani Bylykbashi, Ziaro, Maiju Katariina Niemelä, Minea Kärki, Eero Iso-Pahkala ja Joakim Ståhlstedt.</p><p>Näyttelyn päätuottaja on Makte Muuri ja näyttely on osa hänen sosionomiopintojansa. Yhteistyökumppaneina ovat olleet Stadin Ammattiopiston painoviestinnän opiskelijat ja opettaja sekä Kontulan nuorten toimintakeskus Luuppi.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64671/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64653", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152747, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-07T13:15:14.062100Z", "last_modified_time": "2024-10-07T13:15:14.062116Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758870.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152747/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-10-07T13:15:13.991275Z", "last_modified_time": "2024-10-07T13:15:14.193376Z", "date_published": null, "start_time": "2024-11-04", "end_time": "2024-11-16", "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, "name": { "fi": "Muovieliöiden maailmanvalloitus – Valtakunnallinen peliviikko" }, "short_description": { "fi": "Jättilautapeli muovien, kierrätyksen ja evoluution maailmassa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EB1FBA4BD6133EAD218076B2110A1EF9/Muovielioiden_maailmanvalloitus" }, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Jättilautapeli muovien, kierrätyksen ja evoluution maailmassa!</p><p><i>On vuosi 2442. Tyynenmeren jätepyörre on kasvanut valtavaksi muovimantereeksi, jossa on alkanut tapahtua jotain odottamatonta. Muovin ja mikro-organismien vuorovaikutus on alkanut synnyttää uudenlaisia organismeja: muovieliöitä! Kilpaile siitä, pääseekö juuri sinun kehittämäsi muovieliö hallitsevaan asemaan tässä uudessa ekosysteemissä!</i></p><p>Tervetuloa Stoan peliviikoille! Pelitiimeissä kilpaillaan jättilautapelissä, joka rakentuu Stoan galleriaan. Pelissä liikutaan rataa pitkin, vastataan kiperiin kysymyksiin ja rakennetaan omaa muovieliötä. Eliöt liittyvät oman lahkonsa edustajien seuraan ja jäävät Stoan galleriaan näytille.</p><p>Ketkä löytävät tiedon tarpeeksi nopeasti ja ehtivät päästä maaliin saakka? Entä mikä muovieliölahko peliviikkojen lopuksi vie voiton?</p><p>Peliä voi pelata vapaasti omalla porukalla Stoan aukioloaikoina.</p><p>Koululuokille on tarjolla peliaikoja koulupäivien aikana. Ilmoittautumiset kultus.fi, lisätiedot hanna.westerholm@hel.fi.</p><p>Pelin kesto: noin 60min<br>Ikäsuositus: 11+</p><p>Kieli: suomi (ja englanti)</p><p>Pelin tekijät: Muoviamo, pelisuunnittelija Maaria Klemetti, Stoa</p><p><b>Valtakunnallinen peliviikko 4.–10.11.2024</b> <br>Peliviikko on vuosittain marraskuussa vietettävä pelikasvatuksen ja pelikulttuurin teemaviikko. Peliviikkoa vietettiin ensimmäisen kerran vuonna 2011. Peliviikko on osa kansainvälistä Pelien kuukautta. <br> <br>Peliviikkoa koordinoi Opetus- ja kulttuuriministeriön alainen Kansallinen audiovisuaalinen instituutti. Peliviikko saa osan rahoituksestaan Finnish Safer Internet Centre -hankkeesta. Paikallisia tapahtumia ovat järjestämässä sadat julkishallinnon, järjestöjen ja yritysten työntekijät, sekä lukuisat vapaaehtoiset.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64653/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjc5tmhqi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-26T11:41:50.135924Z", "last_modified_time": "2024-10-07T12:51:47.752856Z", "date_published": null, "start_time": "2024-10-17T13:00:00Z", "end_time": "2024-10-17T16: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, "name": { "fi": "Asunnottomien yön Leppävaaran tapahtuma" }, "short_description": { "fi": "Sellon kirjaston edustalla eri toimijoiden esittelyä ja pientä purtavaa" }, "info_url": null, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Sellon kirjaston edustalla tai huonolla säällä sisällä kirjastossa.</p><p>Klo 16-19.</p><p>Ohjelmassa:</p><p>villasukkien jakoa, grillimakkaraa ja mehua sekä Glo hotellin tarjoamia ruoka annoksia.</p><p>Paikalla Sininauhasäätiö asumisen tuki, Talous- ja velkaneuvojat, Kela, Illuusia, Leppävaaran seurakunta, Glo hotelli, Omnia sekä Kirjasto-auto Välkky.</p><p><br></p><p>Sellon kirjaston Pajassa myös virkataan tilkkupeittoa asunnottomille klo 16-19.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjc5tmhqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgom7mhy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-07T12:46:26.975054Z", "last_modified_time": "2024-10-07T12:46:26.975075Z", "date_published": null, "start_time": "2024-10-19T10:00:00Z", "end_time": "2024-10-19T13: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, "name": { "fi": "Pitsinnypläystä" }, "short_description": { "fi": "Tervetuloa tutustumaan pitsinnypläykseen" }, "info_url": null, "location_extra_info": { "fi": "Paja" }, "provider": { "fi": "Espoon pitsinnypläys ry" }, "description": { "fi": "<p>Tervetuloa tutustumaan pitsinnypläykseen</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgom7mhy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:d0b876a9-1444-496f-b877-8e09c0944437", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=Release_wave_2_2024_-testitapahtuma_to_LinkedEvents946182986" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 152743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-10-07T09:55:19.477098Z", "last_modified_time": "2024-10-07T09:55:19.477120Z", "name": "Ratikkakuvan teksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/cdc06a4f-76bf-ee11-9079-000d3ab37d34", "cropping": "", "photographer_name": "Leif Wager", "alt_text": "Ratikkakuvan alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-10-07T09:55:20.476392Z", "last_modified_time": "2024-10-07T09:55:20.476420Z", "date_published": "2024-10-07T09:51:42Z", "start_time": "2024-10-08T06:00:00Z", "end_time": "2024-10-08T06:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-09-30T08:00:00+03:00", "enrolment_end_time": "2024-10-07T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Release wave 2 / 2024 -testitapahtuma to LinkedEvents" }, "short_description": { "fi": "Release wave 2 / 2024 -testitapahtuma to LinkedEvents SHORT DESC" }, "info_url": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>Release wave 2 / 2024 -testitapahtuma to LinkedEvents LONG DESC</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:d0b876a9-1444-496f-b877-8e09c0944437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjgndwa2y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgndwagy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgndwasy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgndwawy/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-10-07T09:35:51.234273Z", "last_modified_time": "2024-10-07T09:35:51.234296Z", "date_published": null, "start_time": "2024-10-15T06:30:00Z", "end_time": "2024-12-17T08: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, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open Storytime" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "location_extra_info": { "fi": "Monitoimihuone", "sv": "Monitoimihuone", "en": "Monitoimihuone" }, "provider": null, "description": { "fi": "<p>Tervetuloa tarinoiden äärelle kaikille avoimeen aamusatuhetkeen Nöykkiön kirjaston monitoimihuoneessa. Syksyn aamusatuhetket ovat kello 9.30 tiistaisin 15.10., 12.11. ja 17.12.</p>", "sv": "<p>Välkommen att lyssna på morgonsagor som är öppna för alla i Nöykkiö biblioteks multifunktionella rum. Höstens morgonsagostunder är kl. 9.30 på tisdagar 15.10, 12.11 och 17.12.</p><p>Sagostunden är på Finska.</p>", "en": "<p>Welcome to listen to morning stories open to all in the multifunctional room of Nöykkiö Library. The autumn morning story times are at 9.30 on Tuesdays on 15.10., 12.11. and 17.12.</p><p>The story time is in finnish. </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjgndwa2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjeo57nhe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57l7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57mj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57mom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57mue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57mya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57m3y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57m7m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57ndi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-10-01T08:35:44.990900Z", "last_modified_time": "2024-10-07T07:35:08.666687Z", "date_published": null, "start_time": "2024-10-22T11:00:00Z", "end_time": "2024-12-10T13: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, "name": { "fi": "Digi tutuksi yli 65-vuotiaille", "en": "Make digital familiar for persons over 65" }, "short_description": { "fi": "Digi tutuksi on maksuton tietokoneen käytön alkeiskurssi yli 65-vuotiaille. ", "en": " \"Make digital familiar\" is a free beginner course on computer use for persons over 65 in Finnish." }, "info_url": null, "location_extra_info": { "fi": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "Vanhusten turva sr. ", "en": "Vanhusten turva sr. " }, "description": { "fi": "<p>Tervetuloa oppimaan tietokoneen käyttöä Entressen kirjaston Jukeboksi-tilaan tiistaisin 22.10.-10.12.2024 klo 14.00-15.30. \"Digi tutuksi\" on maksuton tietokoneen käytön alkeiskurssi yli 65-vuotiaille. Voit osallistua omalla kannettavalla tietokoneellasi tai lainata sen meiltä kurssin ajaksi. Ilmoittauduthan pian, paikkoja on rajoitetusti. Kurssin järjestää Vanhusten turva sr. / Askel askeleelta kohti yhdenvertaisuutta -hanke.</p><p>Ilmoittautuminen ja lisätiedot:</p><p>Kaisa Sjöholm</p><p>puh. 050 502 4131</p><p>kaisa.sjoholm@vanhustenturva.fi</p>", "en": "<p>Welcome to learn computer use in the Jukeboksi space of Entresse Library on Tuesdays 22.10.-10.12.2024 at 14.00-15.30. \"Make digital familiar\" is a free beginner course on computer use for persons over 65 in Finnish. You can participate with your own laptop or borrow one from us for the duration of the course. Please register soon, places are limited. The course is organised by Vanhusten turva sr. / Step by Step towards Equality -project.</p><p><br></p><p>Registration and further information:</p><p>Kaisa Sjöholm</p><p>tel. 050 502 4131</p><p>kaisa.sjoholm@vanhustenturva.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57nhe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19293, "next": "