Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=122&weekday=6%2C7
{ "meta": { "count": 6602, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=123&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=121&weekday=6%2C7" }, "data": [ { "id": "kulke:66437", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 818964, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-21T09:14:58.939855Z", "last_modified_time": "2025-05-21T09:14:58.939875Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774177.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/818964/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-21T09:14:58.753388Z", "last_modified_time": "2025-07-02T12:12:24.014963Z", "date_published": null, "start_time": "2025-05-23", "end_time": "2025-08-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Novellikoukun vuodenajat -näyttely tuo nähtäville Vuosaaren kirjastossa kokoontuvan ryhmän käsitöitä ja tekstiilitaidetta.", "sv": "Utställningen Novellkrokens årstider (Novellikoukun vuodenajat) presenterar hantverk och textilkonst skapade av gruppen som träffas på Nordsjö bibliotek.", "en": "The exhibition Novellikoukun vuodenajat, Seasons by Novellikoukku, showcases the handicrafts and textile art by a group meeting up at Vuosaari Library." }, "description": { "fi": "<p>Novellikoukun vuodenajat -näyttely tuo nähtäville Vuosaaren kirjastossa kokoontuvan ryhmän käsitöitä ja tekstiilitaidetta.</p><p>Näytteillä olevat luontoaiheiset teokset on tehty kierrätysmateriaalista, joka jäi yli edellisestä suuresta virkkausprojektista. Vuodenaikoja kuvaavat teokset ovat saaneet innoitusta Vuotalon harmaan yleisilmeen ja värikkäiden lankojen välisestä kontrastista sekä itäisestä Helsingistä. Vuosaaren novellikoukkulaiset osallistuivat myös Helsinki Biennaaliin vuonna 2021 saatuaan lahjoituksena suuren määrän tekokuitulankoja, joita ei voi käyttää hyväntekeväisyysprojekteihin.</p><p>Vuosien myötä ryhmä on kuunnellut lukemattomia novelleja ja neulonut satoja lämpimiä sukkia, pipoja ja lapasia sekä virkannut tuhansia silmukoita Äiti Teresa -peittoihin. Niiden lisäksi ryhmä on tehnyt etiopialaisnuttuja vastasyntyneille, hypistelymuhveja muistisairaille ja villaisia hartiahuiveja vanhuksille. Valmiit työt on lahjoitettu ensikodille, palvelutaloihin ja humanitaarisen järjestön kautta lämmikkeeksi kriisialueille. Tässä näyttelyssä esillä olevat sukat, nutut ja peitot pääsevät syksyllä lämmittämään viluisia Suomessa ja ulkomailla.</p><p>Novellikoukku on kokoontunut Vuosaaren kirjastossa jo vuodesta 2016 saakka, noin kerran kuukaudessa. Tapahtuma on avoin eikä siihen tarvitse ilmoittautua. Mukaan voi tulla, vaikka ei osaisi neuloa tai virkata. Neuvoja toki saa kysyttäessä. Osa kävijöistä on paikalla aina, toiset ehtiessään piipahtavat. Kahden tunnin aikana voi neuloa omia projekteja tai hyväntekeväisyystöitä kirjaston langoilla ja tarvikkeilla. Ääneen luettavien kirjojen lisäksi kirjasto tarjoaa kahvia ja teetä. Tyyli on vapaa ja tunnelma rento, hyväntuulinen. Novellikoukkuun voi myös lahjoittaa lankoja ja tarvikkeita.<br> <br>Novellikoukkuilemaan pääsee myös muissa kirjastoissa. Viikin kirjastossa vuoden 2013 alussa käynnistynyt säännöllinen tapahtuma on suuren suosionsa vuoksi levinnyt moniin kirjastoihin ympäri Suomea.<br> <br>Novellikoukun lankasponsoreina ovat toimineet Snurre ja Lankamaailma.</p>", "sv": "<p>Utställningen Novellkrokens årstider (Novellikoukun vuodenajat) presenterar hantverk och textilkonst skapade av gruppen som träffas på Nordsjö bibliotek.</p><p>De utställda föremålen med naturtema är tillverkade av återvunnet material som blivit över från ett tidigare stort virkat projekt. De säsongsbetonade verken är inspirerade av kontrasten mellan Nordhusets gråa allmänna uppsyn och de färgglada garnerna, samt av östra Helsingfors. Novellkrokarna i Nordsjö deltog också i Helsingforsbiennalen 2021 efter att ha fått en stor donation av garn av konstfiber, som inte kunde användas för välgörenhetsprojekt.</p><p>Under årens lopp har gruppen lyssnat på otaliga noveller, stickat hundratals varma sockor, mössor och vantar och virkat tusentals maskor till Moder Teresas lapptäcken. Dessutom har gruppen tillverkat etiopiska koftor för nyfödda barn, muffar för minneshandikappade och yllesjalar för äldre. De färdiga arbetena har donerats till förstahem, servicehus och, genom en humanitär organisation, för att ge värme i krisområden. Strumporna, koftorna och filtarna som visas i utställningen värmer upp höstkylan både i Finland och utomlands.</p><p>Novellkrokarna, ”Novellikoukku”, har träffats på Nordsjö bibliotek sedan 2016, ungefär en gång i månaden. Evenemanget är öppet och ingen anmälan krävs. Du kan vara med även om du inte vet hur man stickar eller virkar. Det går absolut att fråga om råd. Vissa besökare är alltid där, andra tittar in när de kan. Under de två timmarna kan du sticka dina egna projekt eller jobba på välgörenhetsarbeten med bibliotekets garn och tillbehör. Förutom högläsningsböcker bjuder biblioteket på kaffe och te. Stilen är fri och stämningen är avslappnad och trivsam. Du kan också donera garn och tillbehör till Novellkroken</p><p>Det går också att delta i Novellkroken på andra bibliotek. Det återkommande evenemanget, som startade i Vik bibliotek i början av 2013, har spridit sig till många bibliotek runt om i Finland tack vare sin stora popularitet.</p><p>Novellkrokens garn sponsras av Snurre och Lankamaailma.</p>", "en": "<p>The exhibition Novellikoukun vuodenajat, Seasons by Novellikoukku, showcases the handicrafts and textile art by a group meeting up at Vuosaari Library.</p><p>The nature-themed pieces on display are made from recycled materials left over from the group’s previous large-scale crochet project. The works depicting the seasons of the year are inspired by the contrast between Cultural Centre Vuotalo’s grey overall appearance and the colourful yarns, and the eastern Helsinki area. The craft group members also participated in the Helsinki Biennale 2021 after receiving a large donation of synthetic yarn, which cannot be used for charity projects.</p><p>Over the years, the group has listened to countless short stories, knitted hundreds of warm socks, hats and mittens, and crocheted thousands of stitches for Mother Teresa blankets. They have also created little Ethiopian sweaters for newborn babies, twiddle muffs for people with memory disorders and woollen shawls for the elderly. The finished works have been donated to mother and child homes and service homes, and with the help of a humanitarian organisation they have also been transported to crisis areas to provide warmth. The socks, baby sweaters and blankets showcased in this exhibition will provide warmth in Finland and across the world by the upcoming autumn.</p><p>The Novellikoukku group have been meeting at Vuosaari Library since 2016, about once a month. The event is open to all and no registration is required. You can join the group even if you don't know how to knit or crochet. Advice is always available when needed. Some group members are present at all meetings, while others drop in when they can. During the two hours you can focus on your own creations or work on charity projects with the library's yarns and supplies. In addition to the books being read aloud, the library offers coffee and tea. Create in your own style and enjoy the relaxed, happy atmosphere. You can also donate yarn and supplies to the group.</p><p>Similar groups are also available at other libraries. This regular meet-up, which started in Viikki Library in early 2013, has spread to many libraries around Finland due to its great popularity.</p><p>The Novellikoukku meet-ups have been sponsored by Snurre and Lankamaailma.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A642E7C9D64E66080FCA4D6906F27621/Novellikoukun_vuodenajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A642E7C9D64E66080FCA4D6906F27621/Novellkrokens_arstider", "en": "http://www.vuotalo.fi/en/events/event/A642E7C9D64E66080FCA4D6906F27621/Seasons_by_Novellikoukku" }, "name": { "fi": "Novellikoukun vuodenajat", "sv": "Novellkrokens årstider", "en": "Seasons by Novellikoukku" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pdny", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pfei/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-02T12:04:00.455139Z", "last_modified_time": "2025-07-02T12:04:00.455155Z", "date_published": null, "start_time": "2025-07-26T10:30:00Z", "end_time": "2025-07-26T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule askartelemaan kirjaston pajaan!" }, "description": { "fi": "<p>Tervetuloa mukaan askartelemaan ja viettämään mukavaa yhdessäoloa kirjaston pajaan! Askartepupajat järjestetään heinäkuussa lauantaisin klo 13:30-15:30.</p><p>Pajat ovat seuraavina päivinä:</p><p>5.7.</p><p>12.7.</p><p>19.7.</p><p>26.7.</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Askartelupaja" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pdny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pd3e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pfei/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-02T12:03:59.997311Z", "last_modified_time": "2025-07-02T12:03:59.997329Z", "date_published": null, "start_time": "2025-07-19T10:30:00Z", "end_time": "2025-07-19T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule askartelemaan kirjaston pajaan!" }, "description": { "fi": "<p>Tervetuloa mukaan askartelemaan ja viettämään mukavaa yhdessäoloa kirjaston pajaan! Askartepupajat järjestetään heinäkuussa lauantaisin klo 13:30-15:30.</p><p>Pajat ovat seuraavina päivinä:</p><p>5.7.</p><p>12.7.</p><p>19.7.</p><p>26.7.</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Askartelupaja" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pd3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22peja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pfei/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-02T12:03:59.848567Z", "last_modified_time": "2025-07-02T12:03:59.848586Z", "date_published": null, "start_time": "2025-07-12T10:30:00Z", "end_time": "2025-07-12T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule askartelemaan kirjaston pajaan!" }, "description": { "fi": "<p>Tervetuloa mukaan askartelemaan ja viettämään mukavaa yhdessäoloa kirjaston pajaan! Askartepupajat järjestetään heinäkuussa lauantaisin klo 13:30-15:30.</p><p>Pajat ovat seuraavina päivinä:</p><p>5.7.</p><p>12.7.</p><p>19.7.</p><p>26.7.</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Askartelupaja" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22peja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pewy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pfei/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-02T12:03:59.696040Z", "last_modified_time": "2025-07-02T12:03:59.696056Z", "date_published": null, "start_time": "2025-07-05T10:30:00Z", "end_time": "2025-07-05T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule askartelemaan kirjaston pajaan!" }, "description": { "fi": "<p>Tervetuloa mukaan askartelemaan ja viettämään mukavaa yhdessäoloa kirjaston pajaan! Askartepupajat järjestetään heinäkuussa lauantaisin klo 13:30-15:30.</p><p>Pajat ovat seuraavina päivinä:</p><p>5.7.</p><p>12.7.</p><p>19.7.</p><p>26.7.</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Askartelupaja" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pewy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pfei", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2787/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pdny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pd3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22peja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pewy/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-02T12:03:58.794891Z", "last_modified_time": "2025-07-02T12:03:58.794908Z", "date_published": null, "start_time": "2025-07-05T10:30:00Z", "end_time": "2025-07-26T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule askartelemaan kirjaston pajaan!" }, "description": { "fi": "<p>Tervetuloa mukaan askartelemaan ja viettämään mukavaa yhdessäoloa kirjaston pajaan! Askartepupajat järjestetään heinäkuussa lauantaisin klo 13:30-15:30.</p><p>Pajat ovat seuraavina päivinä:</p><p>5.7.</p><p>12.7.</p><p>19.7.</p><p>26.7.</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Askartelupaja" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pfei/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66661", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1107178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-25T09:14:20.396025Z", "last_modified_time": "2025-06-25T09:14:20.396044Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773683.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1107178/?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": "2025-06-25T09:14:20.276160Z", "last_modified_time": "2025-07-02T11:12:22.499023Z", "date_published": null, "start_time": "2025-08-26", "end_time": "2025-08-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kulttuurinnälkäisille katetaan notkuva tarjonta yhteiskunnallista, leikkisää, kriittistä, yllättävää, paikkasidonnaista ja riemastuttavaa nykytaidetta!", "sv": "För den kulturellt intresserade finns det ett överflöd av social, lekfull, kritisk, överraskande, platsspecifik och spännande samtidskonst!", "en": "A real cornucopia of political, playful, critical, surprising, local and exhilarating contemporary art is being served for all visitors longing for culture!" }, "description": { "fi": "<p>Kulttuurinnälkäisille katetaan notkuva tarjonta yhteiskunnallista, leikkisää, kriittistä, yllättävää, paikkasidonnaista ja riemastuttavaa nykytaidetta!</p><p>Viisi päivää kestävä UrbanApa x Stoa -festivaali levittäytyy Stoan kulttuurikeskukseen ja sen ympäristöön 26.-30.8.2025.</p><p>Luvassa on tanssiesityksiä, performansseja, työpajoja ja liikkuvaa kuvaa moninaisista taustoista tulevilta taiteen tekijöiltä. Kaikkiin tapahtumiin on vapaa pääsy.</p><p>Piipahda paikalla yhden esityksen verran tai viivy koko viikko.</p><p>Tervetuloa tuntemattoman äärelle!</p><p>Tarkempi festivaaliohjelma julkaistaan kesän aikana osoitteessa: https://urbanapa.fi/?lang=fi</p>", "sv": "<p>För den kulturellt intresserade finns det ett överflöd av social, lekfull, kritisk, överraskande, platsspecifik och spännande samtidskonst!</p><p>UrbanApa x Stoa - djärv och överraskande samtidskonst i augusti<br>För den kulturellt intresserade finns det ett överflöd av social, lekfull, kritisk, överraskande, platsspecifik och spännande samtidskonst!</p><p>Den fem dagar långa UrbanApa x Stoa-festivalen äger rum i och runt kulturcentret Stoa den 26–30 augusti 2025.</p><p>Det blir dansföreställningar, performancer, workshops och rörlig bild från konstnärer med olika bakgrunder. Det är fritt inträde till samtliga evenemang.</p><p>Titta in för en föreställning eller stanna hela veckan.</p><p>Välkommen till det okända!</p><p>Ett mer detaljerat program kommer att publiceras under sommaren på https://urbanapa.fi/?lang=fi</p>", "en": "<p>A real cornucopia of political, playful, critical, surprising, local and exhilarating contemporary art is being served for all visitors longing for culture!</p><p>UrbanApa x Stoa – bold and surprising contemporary art in August<br>A real cornucopia of political, playful, critical, surprising, local and exhilarating contemporary art is being served for all visitors longing for culture!</p><p>The five-day UrbanApa x Stoa festival will take over the Stoa Cultural Centre and its surroundings on 26–30 August 2025.</p><p>The festival will serve dance shows, performances, workshops and moving pictures from artists from a variety of backgrounds. Entry to all the events is free of charge.</p><p>Drop in for one show or stay for the whole week.</p><p>Welcome to the unknown!</p><p>A more detailed programme will be published during the summer at: https://urbanapa.fi/</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D32A6E24F356A913246BB66AF4B55353/UrbanApa_x_Stoa_rohkeaa_ja_yllattavaa_nykytaidetta_elokuussa", "sv": "http://www.stoa.fi/sv/evenemang/event/D32A6E24F356A913246BB66AF4B55353/UrbanApa_x_Stoa_-_djarv_och_overraskande_samtidskonst_i_augusti", "en": "http://www.stoa.fi/en/events/event/D32A6E24F356A913246BB66AF4B55353/UrbanApa_x_Stoa_bold_and_surprising_contemporary_art_in_August" }, "name": { "fi": "UrbanApa x Stoa – rohkeaa ja yllättävää nykytaidetta elokuussa", "sv": "UrbanApa x Stoa - djärv och överraskande samtidskonst i augusti", "en": "UrbanApa x Stoa – bold and surprising contemporary art in August" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66532", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-783/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 977338, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-09T11:14:43.801251Z", "last_modified_time": "2025-06-09T11:14:43.801272Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759630.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977338/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-06-09T11:14:43.702301Z", "last_modified_time": "2025-07-02T11:12:20.874376Z", "date_published": null, "start_time": "2025-08-09T11:00:00Z", "end_time": "2025-08-09T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lasten lauantaina on Etno-Espan riemukkain päivä! Mukavaa ohjelmaa koko perheelle.", "sv": "Barnens lördag är Etno-Espas roligaste dag! Trevligt program för hela familjen.", "en": "Children’s Saturday is the most joyful day of Etno-Espa! Fun programme for the whole family." }, "description": { "fi": "<p>Lasten lauantaina on Etno-Espan riemukkain päivä! Mukavaa ohjelmaa koko perheelle.</p><p><b>klo 14 Pajunen: Lauluja hatusta</b><br>On kaksi asiaa, jotka Tero Pajuselta löytyvät joka tilanteeseen: laulu ja hattu. Tämä huipputaitava lauluntekijä, kansanmuusikko, multi-instrumentalisti ja ääniakrobaatti johdattaa yleisön hattu kerrallaan musiikkityylistä, äänenkäyttötavasta ja tarinasta toiseen. Pajusen johdolla yleisö pääsee tutustumaan mm. kurkkulauluun, beatboxaukseen ja scatlauluun.<br> <br>Konsertissa kuultavasta musiikista huomattava osa on improvisoitua eli ”hatusta vedettyä”, ja lauluja syntyy myös vuorovaikutuksessa yleisön kanssa. Korvia hivelevä sointikuva muotoutuu yhteistyössä miksauspöydän takana taikojaan tekevän äänisuunnittelijan kanssa.<br> <br>Tero Pajunen, laulu, viulu ja kitara<br>Tuomas Haimakainen, äänitekniikka</p><p><b>klo 15 INDABA</b> <br>Voimallista laulua ja tanssia, taiturimaisia sooloja, polyrytmisiä bambuhuiluhetkiä ja hauskanpitoa yhdessä?! Kyllä kiitos!<br> <br>Tätä kaikkea on luvassa, kun kaksi multi-instrumentalistia ja breikin suomenmestari yhdistävät voimansa. INDABA on vauhdikas ja valloittava show, jossa tutkitaan lempeästi yhdessä yleisön kanssa identiteettikysymyksiä kuten: miltä tuntuu olla suomalainen tai afrikkalainen – tai molempia? Miten yhteen ihmiseen mahtuu monta identiteettiä?<br> <br>Esitys ammentaa tansanialaisesta perinteestä, hiphop-kulttuurista sekä esiintyjien mielikuvituksesta. Konsertissa puhutaan ja lauletaan suomeksi, englanniksi, swahiliksi ja sumbwaksi.<br> <br>INDABA tarkoittaa zulun kielellä kokoontumista, jossa oikeat ihmiset päättävät oikealla hetkellä heitä itseään koskevista asioista. Let’s have an indaba!<br> <br>Päivä järjestetään yhteistyössä Konserttikeskuksen kanssa.<br> <br>Pietari Kauppinen - tanssi, laulu, huilu, MPC<br>Ayla Brinkmann, laulu, huilut<br>Kasheshi Makena, laulu, bongo-rummut, timbila, huilu, pasuuna</p><p>Päivä järjestetään yhteistyössä Konserttikeskuksen kanssa.</p>", "sv": "<p>Barnens lördag är Etno-Espas roligaste dag! Trevligt program för hela familjen.</p><p>Dagen ordnas i samarbete med Konsertcentralen.</p><p>kl. 14 Pajunen: Lauluja hatusta<br>Det finns två saker som Tero Pajunen har för varje tillfälle: en sång och en hatt. Denna skickliga låtskrivare, folkmusiker, multiinstrumentalist och sångakrobat leder publiken från en musikstil, en sångstil och en berättelse till nästa, hatt för hatt. Pajunen kommer att introducera publiken i bl.a. strupsång, beatboxing och scatsång.</p><p>Mycket av musiken i konserten är improviserad, ”tagen ur hatten”, och låtarna skapas också i samspel med publiken. Den förtjusande ljudbilden skapas i samarbete med ljuddesignern som utövar sin magi bakom mixerbordet.</p><p>Tero Pajunen, sång, fiol och gitarr<br>Tuomas Haimakainen, ljudteknik</p><p>kl. 15 INDABA<br>Kraftfull sång och dans, skickliga solon, polyrytmiska bambuflöjtstunder och roligt tillsammans? Ja, tack!</p><p>Det här är vad man kan förvänta sig när två multiinstrumentalister och den finska mästaren på breakdance går samman. INDABA är en fartfylld och fängslande show som försiktigt utforskar identitetsfrågor med publiken, till exempel: hur känns det att vara finsk eller afrikansk – eller båda? Hur får man många identiteter att rymmas i en person?</p><p>Föreställningen bygger på tanzanisk tradition, hiphopkultur och artisternas fantasi. Artisterna talar och sjunger på finska, engelska, swahili och sumbwa under föreställningen.</p><p>På zulu betyder INDABA en sammankomst där rätt personer vid rätt tidpunkt beslutar om frågor som berör dem. Let’s have an indaba!</p><p>Pietari Kauppinen – dans, sång, flöjt, MPC<br>Ayla Brinkmann, sång, flöjter<br>Kasheshi Makena, sång, bongotrummor, timbila, flöjt, trombon</p>", "en": "<p>Children’s Saturday is the most joyful day of Etno-Espa! Fun programme for the whole family.</p><p>The day will be organised in cooperation with the Concert Centre Finland.</p><p>Children’s Saturday is the most joyful day of Etno-Espa! Fun programme for the whole family.</p><p>14:00 Pajunen: Songs from the hat<br>There are two things that Tero Pajunen has for every situation: a song and a hat. This super talented songwriter, folk musician, multi-instrumentalist and vocal acrobat leads the audience from one musical style, vocal performance and story to the next, one hat at a time. Pajunen will introduce the audience to styles such as throat singing, beatboxing and scat.</p><p>Much of the music in the concert is improvised – or pulled out of a hat – and some songs are also created through dialogue with the audience. The ear-catching soundscape is created in tandem with the sound designer who works his magic behind the mixing desk.</p><p>Tero Pajunen, vocals, violin and guitar<br>Tuomas Haimakainen, sound design</p><p>15:00 INDABA<br>Powerful singing and dancing, skilful solos, polyrhythmic bamboo flute performances and shared fun? Yes, please!</p><p>This is what you can expect when two multi-instrumentalists and a Finnish breakdance champion join forces. INDABA is a fast-paced and captivating show that gently explores questions of identity together with the audience: how does it feel to be Finnish or African – or both? How do you fit many identities into one person?</p><p>The performance draws on Tanzanian traditions, hip hop culture and the performers’ imagination. The concert will be spoken and sung in Finnish, English, Swahili and Sumbwa.</p><p>In Zulu, INDABA means a gathering where the right people come together at the right time to make decisions on matters that concern them. Let's have an indaba!</p><p>Pietari Kauppinen, dance, vocals, flute, MPC<br>Ayla Brinkmann, vocals, flutes<br>Kasheshi Makena, vocals, bongo drums, timbila, flute, trombone</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AC65432D2CDD3CDEA38F747518FA46EA/Lasten_lauantai", "sv": "http://www.espanlava.fi/sv/evenemang/event/AC65432D2CDD3CDEA38F747518FA46EA/Lasten_lauantai", "en": "http://www.espanlava.fi/en/events/event/AC65432D2CDD3CDEA38F747518FA46EA/Lasten_lauantai" }, "name": { "fi": "Lasten lauantai – Etno-Espa", "sv": "Lasten lauantai – Etno-Espa Barnens lördag", "en": "Lasten lauantai – Etno-Espa: Children’s Saturday" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66532/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pi74", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/681037931582443/681039004915669/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pgxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ph4e/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T10:59:19.895403Z", "last_modified_time": "2025-07-02T11:03:46.484302Z", "date_published": null, "start_time": "2025-09-01T13:30:00Z", "end_time": "2025-09-15T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Ota korjattava tai tuunattava vaate mukaan kirjastoon ja saat opastusta sekä vinkkejä, miten siitä tulee entistä ehompi.", "sv": "Ta med det plagg du vill reparera eller piffa upp till biblioteket och få vägledning och tips om hur du kan bättra det. ", "en": "Bring the garment you want to repair or customize to the library and get guidance and tips on how to make it even better than it was before." }, "description": { "fi": "<p>Onko paidassa reikä tai takissa sauma ratkennut, etkä keksi miten sen korjaisi?</p><p>Ota korjattava tai tuunattava vaate mukaan kirjastoon ja saat opastusta sekä vinkkejä, miten siitä tulee entistä ehompi. Tuunaajamutsi neuvoo erilaisia vaatteiden paikkaus-, parsinta- ja tuunaustekniikoita, joilla voit pidentää lempivaatteesi käyttöikää korjaamalla, tuunata kierrätyslöytöjä tai vaikka peittää pinttyneitä tahroja hauskasti ja luovasti.</p><p>Paikalla on ohjaajan lisäksi perustarvikkeet korjaamiseen, parsimiseen ja paikkaukseen sekä kirjaston ompelukoneita käytettävissä.</p><p>Korjaaminen on kivaa! Yhdessä korjaaminen on vielä kivampaa!</p><p>Tuunaajamutsin maanantaiset korjaustyöpajat järjestetään elo-lokakuussa seuraavasti:</p><p>Lippulaivan kirjasto:</p><ul><li>ma 11.8. klo 16.30–18.30, sashiko-kirjonta ja boro-paikkaus</li><li>ma 18.8. klo 16.30–18.30, parsinta</li><li>ma 25.8. klo 16.30–18.30, paikkaus</li></ul><p>Iso Omenan kirjasto:</p><ul><li>ma 1.9. klo 16.30–18.30, sashiko-kirjonta ja boro-paikkaus</li><li>ma 8.9. klo 16.30–18.30, parsinta</li><li>ma 15.9. klo 16.30–18.30, paikkaus</li></ul><p>Entressen kirjasto:</p><ul><li>ma 29.9. klo 16.30–18.30, sashiko-kirjonta ja boro-paikkaus</li><li>ma 6.10. klo 16.30–18.30, parsinta</li><li>ma 13.10. klo 16.30–18.30, paikkaus</li></ul><p>Ohjatut vaatteiden korjaustyöpajat ovat kaikille avoimia ja maksuttomia. Työpajat ovat osa Europan Unionin rahoittamaa Espoon ilmasto-osallisuuden kokeilua.</p><p>***</p><p>Hankkeen muista kokeiluista löytyy tietoa täältä <a href=\"https://www.espoo.fi/fi/uutiset/2025/05/ilmastotyon-vaikuttavuus-syntyy-yhdessa-tekemalla-espoon-ilmasto-osallisuuden-kokeilut-alkavat\">Ilmastotyön vaikuttavuus syntyy yhdessä tekemällä - Espoon ilmasto-osallisuuden kokeilut alkavat kesällä | Espoon kaupunki </a></p>", "sv": "<p>Ta med det plagg du vill reparera eller piffa upp till biblioteket och få vägledning och tips om hur du kan bättra det. </p><p><br></p><p>Lippulaiva biblioteket:</p><ul><li>Mån 11.8. kl 16.30–18.30, sashiko- och boro-broderi</li><li>Mån 18.8. kl 16.30–18.30, Stoppning</li><li>Mån 25.8. kl 16.30–18.30, Lappa och laga</li></ul><p>Iso Omena biblioteket:</p><ul><li>Mån 1.9. kl 16.30–18.30, sashiko- och boro-broderi</li><li>Mån 8.9. kl 16.30–18.30, Stoppning</li><li>Mån 15.9. kl 16.30–18.30, Lappa och laga</li></ul><p>Entresse biblioteket:</p><ul><li>Mån 29.9. kl 16.30–18.30, sashiko- och boro-broderi</li><li>Mån 6.10. kl 16.30–18.30, Stoppning</li><li>Mån 13.10. kl 16.30–18.30, Lappa och laga</li></ul><p>De guidade verkstäderna för reparation av kläder är öppna för alla och kostnadsfria. Verkstäderna är en del av Espoo Climate Participation Pilot som finansieras av Europeiska unionen.</p>", "en": "<p>Bring the garment you want to repair or customize to the library and get guidance and tips on how to make it even better than it was before.</p><p>Lippulaiva library:</p><ul><li>Monday 11.8. from 16.30-18.30, sashiko embroidery and boro mending</li><li>Monday 18.8. from 16.30-18.30, mending</li><li>Monday 25.8. from16.30-18.30, patching</li></ul><p>Iso Omena library:</p><ul><li>Monday 1.9. from 16.30-18.30, sashiko embroidery and boro mending</li><li>Monday 8.9. from 16.30-18.30, mending</li><li>Monday 15.9. from 16.30-18.30, patching</li></ul><p>Entresse library:</p><ul><li>Monday 29.9. from 16.30-18.30, sashiko embroidery and boro mending</li><li>Monday 6.10. from 16.30-18.30, mending</li><li>Monday 13.10. from 16.30-18.30, patching</li></ul><p>The guided clothing repair workshops are open to all and free of charge. The workshops are part of the European Union-funded Espoo Climate Participation Pilot.</p>" }, "info_url": null, "name": { "fi": "Tuunaajamutsin ohjattua vaatteiden korjausta Espoon kirjastoissa", "sv": " Guidad reparation av kläder i Esbo stadsbibliotek", "en": " Guided clothing repair in Espoo city libraries" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pi74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pkcy", "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:p11617/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-06-30T11:57:49.435645Z", "last_modified_time": "2025-07-02T05:56:14.184979Z", "date_published": null, "start_time": "2025-07-01T10:00:00Z", "end_time": "2025-07-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa kesäiseen tietokilpailuun. vastaa kaikkiin kysymyksiin oikein, niin sinulla on mahdollisuus voittaa palkinto." }, "description": { "fi": "<p>Tervetuloa ison omenan kirjastoon kesäiseen tietokilpailuun. vastaa kaikkiin kysymyksiin oikein, niin sinulla on mahdollisuus voittaa palkinto. Kilpailu kestää koko heinäkuun.</p><p>Tiedot kerätään vain tätä arvontaa varten ja hävitetään heti arvonnansuorittamisen jälkeen. Arvonta suoritetaan viimeistään15.9.2025.</p>" }, "info_url": null, "name": { "fi": "Ison Omenan Kirjaston Kesän tietokilpailu" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pkcy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66429", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 811550, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-20T11:15:08.469108Z", "last_modified_time": "2025-05-20T11:15:08.469134Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764908.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/811550/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-20T11:15:08.274907Z", "last_modified_time": "2025-07-01T11:12:31.106482Z", "date_published": null, "start_time": "2025-07-05T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Teho. on yhtä aikaa rajoja rikkova ja perinnetietoinen yhtye ja kaustislaisesta äänimaisemasta kumpuava duo.", "sv": "Teho. är samtidigt gränsöverskridande och traditionsmedvetna, en duo som har sitt ursprung i Kaustbytraditionens ljudlandskap.", "en": "Teho. is a Finnish power-fiddle duo that explodes musical boundaries while having roots deeply in the tradition." }, "description": { "fi": "<p>Teho. on yhtä aikaa rajoja rikkova ja perinnetietoinen yhtye ja kaustislaisesta äänimaisemasta kumpuava duo.</p><p>Hannu Saha kuvailee vuoden 2016 Konsta Jylhä -kilpailun päätöspuheessaan voittajayhtyeelle: ”Teho.n muusikot tuntevat perinteen läpikotaisin. Raudanlujina, monipuolisina ammattilaisina he tekevät sillä mitä lystäävät ja pystyvät viemään musiikkia äärilaidasta toiseen.”</p><p>Teho.n musiikissa yhdistellään saumattomasti suomalaista pelimanniviulismia, norjalaista hallingia, ruotsalaista polskaa, bepopia, western swingiä ja uutta, itse sävellettyä kansanmusiikkia ryyditettynä ankaralla svengillä. Teho.n molemmat jäsenet Esko Järvelä ja Tero Hyväluoma ovat kansanmusiikkikentän kärkinimiä ja genrerajoja kaihtamattomia freelancereita. Heillä on vuosien yhteissoittokokemus nuoruudesta lähtien mm. Frigg-yhtyeen riveistä. Molemmat opettavat sivutoimisesti Sibelius-Akatemiassa ja kummallakin on luotsattavanaan myös omia yhtyeitä.</p><p>Teho. esiintyi vuonna 2022 Folkelarm-showcasessa Oslossa ja on sen jälkeen saanut paljon huomiota paitsi Pohjoismaissa myös muualla Euroopassa.</p><p>Teho.n debyyttialbumi ”(E2 + ε + V) x I3 = P” oli Emma-ehdokkaana vuoden 2018 parhaana kansanmusiikkilevynä. <br>Toinen albumi \"Not a violin duo\" julkaistiin vuonna 2023.</p><p>Huom! Puheosuudet englanniksi.</p>", "sv": "<p>Teho. är samtidigt gränsöverskridande och traditionsmedvetna, en duo som har sitt ursprung i Kaustbytraditionens ljudlandskap.</p><p>Hannu Saha beskrev den segrande gruppen i sitt avslutningstal vid Konsta Jylhä-tävlingen 2016: ”Teho.s musiker känner traditionen utan och innan. Som gedigna, mångsidiga proffs gör de vad de har lust med och kan ta musiken från en ytterlighet till en annan.”</p><p>I Teho.s musik kombineras på ett sömlöst sätt den finska spelmannens fiol, norsk halling, svensk polska, bebop, western swing och ny, egenhändigt skriven folkmusik med mycket sväng. Teho.s medlemmar Esko Järvelä och Tero Hyväluoma är toppnamn inom folkmusikfältet och frilansare som inte skyggar för genregränserna. De har spelat ihop i många år ända sedan ungdomen, bland annat i gruppen Frigg. Båda undervisar också vid Sibelius-Akademin och leder egna grupper.</p><p>Teho. uppträdde 2022 på Folkelarm-showcase i Oslo och har sedan dess fått mycket uppmärksamhet både i Norden och i övriga Europa.</p><p>Teho.s debutalbum (E2 + ε + V) x I3 = P var nominerat till en Emma för bästa folkmusikskiva 2018. Det andra albumet Not a violin duo kom 2023.</p><p>Obs! De talade avsnitten är på engelska.</p>", "en": "<p>Teho. is a Finnish power-fiddle duo that explodes musical boundaries while having roots deeply in the tradition.</p><p>Teho’s fiddlers grew up in Central Ostrobothnia – an area known for its extremely virile and rich folk music life. Their music combines fluently Finnish traditional fiddling, Norwegian Halling, Swedish Polska, Bebop, Western Swing, and composed, Contemporary Folk Music. Improvisation plays also big part of the duo’s sound.</p><p>”Teho.’s musicians are extremely versatile professionals, who know the Nordic Folk Music tradition inside out. Järvelä and Hyväluoma combine musical elements widely and creatively, they master their instruments on a virtuoso level giving them unlimited musical possibilities.” Complimented director Hannu Saha in his speech for the winners of the Konsta Jylhä Competition, the most significant folk music competition in Finland, at summer 2016.</p><p>Tero Hyväluoma and Esko Järvelä are both top-notch names in the Nordic folk music field and cross-over freelancers without genre boundaries. They have played together for years in various different bands and projects, including one of the most well known Finnish folk band Frigg. Teho.’s debut album called “(E2 + ε + V) x I3 = P” was nominated for Finnish Grammy (Emma Awards) in 2018. Their second album was released on 28th April 2023.</p><p>Teho. showcased at Folkelarm in Oslo in November 2022 leading to many gigs in Scandinavia and beyond.</p><p>SPOKEN PARTS IN ENGLISH.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/51032DCEF261D64274ECF8AEAA639D96/Teho_", "sv": "http://www.espanlava.fi/sv/evenemang/event/51032DCEF261D64274ECF8AEAA639D96/Teho_", "en": "http://www.espanlava.fi/en/events/event/51032DCEF261D64274ECF8AEAA639D96/Teho_" }, "name": { "fi": "Teho.", "sv": "Teho.", "en": "Teho." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66429/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66599", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 992193, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T06:12:37.121465Z", "last_modified_time": "2025-06-11T06:12:37.121479Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765361.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/992193/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T06:12:37.070392Z", "last_modified_time": "2025-07-01T06:13:43.446109Z", "date_published": null, "start_time": "2025-08-30T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Hoedown Espan lavalla ensi kertaa!", "sv": "Hoedown kommer till Esplanadestraden för första gången!", "en": "Hoedown takes over the Espa Stage, finally!" }, "description": { "fi": "<p>Hoedown Espan lavalla ensi kertaa!</p><p>Vuonna 2002 ensimmäisen esiintymisensä tehnyt suomalaisen juurevan rytmimusiikin 23-vuotias sanansaattaja, Hoedown-yhtye, saapuu Espan kesälavalle vihdoinkin!</p><p>22 vuotta legendaarisessa Ravintola Juttutuvassa omaa Hoedown Klubia pitänyt kuusikko on tehnyt kolme omaa levyä ja kolme levyä yhdessä artistiystäviensä Tuomari Nurmion, Tokelan ja Jukka Gustavsonin kanssa.</p><p>Espan lavalla kuullaan yhtyeen levymateriaalin lisäksi tietysti myös Hoedownin omaksi sovitettuja versioita huikeista juurimusiikin klassikoista.</p><p><b>Kokoonpano:</b> <br>Mika Kuokkanen: laulu, kitara, piano <br>Jere Ijäs: laulu, kitara, piano <br>Olli Haavisto: pedal- ja lap steel -kitara, dobro <br>Jarmo Nikku: kitara, mandoliini <br>Masa Maijanen: basso <br>Topi Kurki: rummut</p>", "sv": "<p>Hoedown kommer till Esplanadestraden för första gången!</p><p>Den 23-åriga budbäraren, gruppen Hoedown, som gjorde sitt första framträdande år 2002, kommer äntligen till Esplanadestraden på sommaren!</p><p>I 22 år har sextetten, som hade sin egen Hoedown Klubb i den legendariska restaurangen Juttutupa, gjort tre egna skivor och tre skivor tillsammans med sina artistvänner Tuomio Nurmio, Tokela och Jukka Gustavson.</p><p>På Esplanadestraden hör vi förutom bandets skivmaterial även Hoedowns egna arrangerade versioner av de fantastiska rotmusikklassikerna.</p><p>Sammansättning:<br>Mika Kuokkanen: sång, gitarr, piano<br>Jere Ijäs: sång, gitarr, piano<br>Olli Haavisto: pedal- och lap steel-gitarr, dobro<br>Jarmo Nikku: gitarr, mandolin<br>Masa Maijanen: basgitarr<br>Topi Kurki: trummor</p>", "en": "<p>Hoedown takes over the Espa Stage, finally!</p><p>Hoedown has proudly carried the flag of roots music in Finland for 23 years and for 22 years they’ve had their Hoedown Club at the famous restaurant Juttutupa.</p><p>Hoedown has released so far three album’s and also three albums with the fabulous artists and friends of the band Tuomari Nurmio, Tokela and Jukka Gustavson.</p><p>The audience at the Espa stage will experiece Hoedown band’s performance and playing music from their albums as well as good old roots music classics with their own Hoedown twist!</p><p><b>Line-up:</b> <br> Mika Kuokkanen: vocals, guitar, piano <br> Jere Ijäs: vocals, guitar, piano <br> Olli Haavisto: pedal and lap steel guitar, dobro <br> Jarmo Nikku: guitar, mandolin <br> Masa Maijanen: bass <br> Topi Kurki: drums</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/66A4A3F7B215BDA375A71328AE151841/Hoedown", "sv": "http://www.espanlava.fi/sv/evenemang/event/66A4A3F7B215BDA375A71328AE151841/Hoedown", "en": "http://www.espanlava.fi/en/events/event/66A4A3F7B215BDA375A71328AE151841/Hoedown" }, "name": { "fi": "Hoedown – Espan lavan kauden päättäjäiset", "sv": "Hoedown – Säsongavslutning på Esplanadestraden", "en": "Hoedown – Espa stage end-of-season concluding ceremony" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66600", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 992191, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T06:12:36.724805Z", "last_modified_time": "2025-06-11T06:12:36.724817Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765360.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/992191/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-06-11T06:12:36.675786Z", "last_modified_time": "2025-06-30T13:12:55.545106Z", "date_published": null, "start_time": "2025-08-30T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Päistikka on täällä! Palkittu lastenmusiikkiyhtye siivittää kaikki seikkailuun sekä keskelle mielikuvitusmaailmaa. Kuka kumma metelöi maan alla?", "sv": "Päistikka är här! Den prisbelönta barnmusikgruppen tar med sig alla på äventyr ut i fantasivärlden. Vad är det märkvärdiga ting som väsnas under jorden?", "en": "Päistikka is here! The award-winning children’s music group takes everyone on an adventure in the middle of an imaginary world. Who is making noise underground?" }, "description": { "fi": "<p>Päistikka on täällä! Palkittu lastenmusiikkiyhtye siivittää kaikki seikkailuun sekä keskelle mielikuvitusmaailmaa. Kuka kumma metelöi maan alla?</p><p>Mitä käy, kun lattia onkin laavaa? Eikös hirviöt ole niitä hassuja höpönassuja? Musiikin ja tarinoiden täyttämässä show'ssa tarvitaan myös välillä yleisön apua.</p>", "sv": "<p>Päistikka är här! Den prisbelönta barnmusikgruppen tar med sig alla på äventyr ut i fantasivärlden. Vad är det märkvärdiga ting som väsnas under jorden?</p><p>Vad händer när det visar sig att golvet är lava? Är inte monstren de där tossiga sötnosarna? I showen fylld med musik och berättelser behövs ibland också publikens hjälp.</p>", "en": "<p>Päistikka is here! The award-winning children’s music group takes everyone on an adventure in the middle of an imaginary world. Who is making noise underground?</p><p>What happens when the floor is lava? And monsters are just silly little sweethearts, right? This show filled with music and stories will also need some help from the audience.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/43BDBA7179D679B7562CE1583782E498/Paistikka", "sv": "http://www.espanlava.fi/sv/evenemang/event/43BDBA7179D679B7562CE1583782E498/Paistikka", "en": "http://www.espanlava.fi/en/events/event/43BDBA7179D679B7562CE1583782E498/Paistikka" }, "name": { "fi": "Päistikka – Espan lavan kauden päättäjäiset", "sv": "Päistikka", "en": "Päistikka" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66600/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66582", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 986341, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T13:14:03.096937Z", "last_modified_time": "2025-06-10T13:14:03.096953Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767517.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986341/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T13:14:02.993309Z", "last_modified_time": "2025-06-30T13:12:55.294279Z", "date_published": null, "start_time": "2025-08-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kitaristilegenda Ben Granfelt julkaisee jo 21. studioalbuminsa It’s Personal ja juhlistaa tapausta Suomen- sekä Saksan-keikoilla.", "sv": "Gitarristlegenden Ben Granfelt släpper sitt 21:a studioalbum It's Personal och firar detta med spelningar i Finland och Tyskland.", "en": "Legendary guitarist Ben Granfelt is releasing his 21st studio album, It’s Personal, and is celebrating the event with gigs in Finland and Germany." }, "description": { "fi": "<p>Kitaristilegenda Ben Granfelt julkaisee jo 21. studioalbuminsa It’s Personal ja juhlistaa tapausta Suomen- sekä Saksan-keikoilla.</p><p>Kyseessä on harvinainen tupla-albumi, studioalbumin ja livealbumin yhdistelmä. Studioalbumi on vaihteeksi instrumentaalilevytys, jollaista Granfeltilta on toivottu pitkään - kokoelma hienoja melodioita, riffejä ja toki myös kitarasooloja.</p><p>“Äänitimme pohjaraidat livenä Masa Maijasen (basso) ja Jari Salmisen (rummut) kanssa isossa huoneessa, ja sitten lukitsin itseni pieneen studioon äänittämään kitaroita ja luomaan soundeja. Mielestäni lopputulos on hieno ja henkilökohtainen, ja olen siitä ylpeä.”</p><p>Tupla-albumin live-levytys sisältää sekä laulettuja että instrumentaalibiisejä. Selvästi bändi todella nauttii yhdessä soittamisesta. Albumi on äänitetty vuoden 2024 Gratitude-kiertueen aikana.</p><p>“Haluamme tehdä biiseistämme uudenlaisia esittäessämme niitä livenä. Oli kiinnostavaa kuunnella hyvin erilaisia versioita ja vaikea valita, mikä niistä päätyi lopulta live-albumille.”</p><p>Ben ja hänen bändinsä kiertävät uuden tupla-albumin merkeissä kesällä Suomessa, josta jatkavat syksymmällä Saksan kiertueelle.</p><p><b>Kokoonpano:</b> <br>Ben Granfelt kitara, laulu <br>Masa Maijanen basso, laulu <br>Miri Miettinen rummut, laulu</p>", "sv": "<p>Gitarristlegenden Ben Granfelt släpper sitt 21:a studioalbum It's Personal och firar detta med spelningar i Finland och Tyskland.</p><p>Det är ett sällsynt dubbelalbum – en kombination av studioalbum och livealbum. Studioalbumet är en instrumentalinspelning som Granfelt länge önskat – en samling fina melodier, riff och naturligtvis gitarrsolon.</p><p>”Vi spelade in bakgrundsspåret med Masa Maijanen (basgitarr) och Jari Salminen (trummor) i ett stort rum, och sedan låste jag in mig i en liten studio för att spela in gitarrer och skapa sounden. Jag tycker att resultatet är bra och personligt och jag är stolt över det.”</p><p>Liveinspelningen av dubbelalbumet innehåller både låtar med sång och instrumentala låtar. Det är tydligt att bandet verkligen tycker om att spela tillsammans. Albumet spelades in under turnén Gratitude 2024.</p><p>”Vi vill göra våra låtar nya när vi framför dem live. Det var intressant att lyssna på de mycket olika versionerna och svårt att välja vilka vi skulle ta med i livealbumet.”</p><p>Under sommaren turnerar Ben och hans band i Finland i det nya dubbelalbumets tecken och fortsätter på hösten med en turné i Tyskland.</p><p>Sammansättning:<br>Ben Granfelt – gitarr, sång<br>Masa Maijanen – basgitarr, sång<br>Miri Miettinen – trummor, sång</p>", "en": "<p>Legendary guitarist Ben Granfelt is releasing his 21st studio album, It’s Personal, and is celebrating the event with gigs in Finland and Germany.</p><p>This piece is a rare double album; a combination of a studio recording and a live album. The studio album is an instrumental recording, which has been requested from Granfelt for a long time. It’s a collection of beautiful melodies, riffs and – naturally – guitar solos.</p><p>“We recorded the baselines live with Masa Maijanen (bass) and Jari Salminen (drums) in a large room, and then I locked myself into a tiny studio to record the guitar parts and create the sounds.<br>I think that the end result is great and personal, and I’m proud of it.”</p><p>The live recordings of the double album include both singing and instrumental songs. The band clearly loves playing together.</p><p>The album was recorded during their Gratitude tour in 2024.<br>“We want to create our songs anew when we play them live. It was interesting to listen to the very different versions and difficult to choose which to include on our live album.”</p><p>Ben and his band tour Finland in the summer to present their new double album, and will continue with a tour in Germany in the autumn</p><p>Line-up:<br>Ben Granfelt – guitar, vocals<br>Masa Maijanen – bass, vocals<br>Miri Miettinen – drums, vocals</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/13D44CE9A95AFFC4CF54C35B39DE0018/Ben_Granfelt", "sv": "http://www.espanlava.fi/sv/evenemang/event/13D44CE9A95AFFC4CF54C35B39DE0018/Ben_Granfelt", "en": "http://www.espanlava.fi/en/events/event/13D44CE9A95AFFC4CF54C35B39DE0018/Ben_Granfelt" }, "name": { "fi": "Ben Granfelt", "sv": "Ben Granfelt", "en": "Ben Granfelt" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66583", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 986340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T13:14:02.764456Z", "last_modified_time": "2025-06-10T13:14:02.764474Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767578.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T13:14:02.657370Z", "last_modified_time": "2025-06-30T13:12:55.115869Z", "date_published": null, "start_time": "2025-08-29T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Iron Country Sisters on helsinkiläinen siskotrio, jonka englanninkielisessä musiikissa kaikuu perinteisen ja modernin americanan vaikutus.", "sv": "Iron Country Sisters är en systertrio från Helsingfors med musik på engelska som påverkats av traditionell och modern americana.", "en": "Iron Country Sisters is a trio of sisters from Helsinki. Their songs are written in English and draw clear inspiration from both traditional and modern Americana." }, "description": { "fi": "<p>Iron Country Sisters on helsinkiläinen siskotrio, jonka englanninkielisessä musiikissa kaikuu perinteisen ja modernin americanan vaikutus.</p><p>Bändin omaleimainen soundi nojaa vahvaan tulkintaan ja sielukkaisiin kolmiäänisiin lauluharmonioihin, jotka ovat hioutuneet lapsesta asti yhdessä laulamisen tuloksena. Siskosten persoonalliset lauluäänet soivat yhdessä upeasti, jokaisen toimiessa vuorollaan myös solistina.</p><p>Iron Country Sisters julkaisi toisen kokopitkän albuminsa Grace syksyllä 2024. Albumin kappaleet käsittelevät mm. luopumista, ystävyyttä ja yhteiskunnan normeista vapautumista. Albumi soi juurevana ja raikkaana, ja sillä vuorottelevat pelkistetyt tunnelmat sekä bändisoitto.</p>", "sv": "<p>Iron Country Sisters är en systertrio från Helsingfors med musik på engelska som påverkats av traditionell och modern americana.</p><p>Bandets särpräglade sound bygger på en stark tolkning och själfulla trestämmiga sångharmonier som har finslipats av att systrarna sjungit tillsammans sedan de var små. Systrarnas personliga sångröster ljuder tillsammans på ett fantastiskt sätt, medan var och en i tur och ordning också fungerar som solist.</p><p>Iron Country Sisters släppte sitt andra fullängdsalbum Grace hösten 2024. Låtarna på albumet handlar bland annat om att ge upp, vänskap och frigöra sig från samhällets normer. Albumet har ett robust och fräscht sound med omväxlande avskalade stämningar och bandspelande.</p>", "en": "<p>Iron Country Sisters is a trio of sisters from Helsinki. Their songs are written in English and draw clear inspiration from both traditional and modern Americana.</p><p>The band’s characteristic sound is built on strong expression and the soulful three-part song harmonies that have been finely refined, thanks to the sisters having sung together since they were children. The characterful singing voices of the sisters sound amazing together, and each sister also takes a turn as a soloist.</p><p>Iron Country Sisters released their second long play, Grace, in autumn 2024. The songs on the album deal with themes such as letting go, friendships and setting oneself free from the norms of society. The album’s sound is earthy and fresh, alternating between simplistic expression and band instrumentals.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DDDCC37D6A698D864C2BB8CCD93A398F/Iron_Country_Sisters_", "sv": "http://www.espanlava.fi/sv/evenemang/event/DDDCC37D6A698D864C2BB8CCD93A398F/Iron_Country_Sisters_", "en": "http://www.espanlava.fi/en/events/event/DDDCC37D6A698D864C2BB8CCD93A398F/Iron_Country_Sisters_" }, "name": { "fi": "Iron Country Sisters", "sv": "Iron Country Sisters", "en": "Iron Country Sisters" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66528", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 977340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-09T11:14:45.060459Z", "last_modified_time": "2025-06-09T11:14:45.060479Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765976.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-09T10:17:11.275641Z", "last_modified_time": "2025-06-30T12:12:49.666161Z", "date_published": null, "start_time": "2025-08-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, "provider": null, "short_description": { "fi": "Lena Jonsson & Johanna Juhola on suomalaisen harmonikkataiturin ja ruotsalaisen viulutähden superduo.", "sv": "Lena Jonsson & Johanna Juhola är en superduo som består av en finländsk dragspelskonstnär och en svensk violinstjärna.", "en": "Lena Jonsson & Johanna Juhola is a super duo comprising a Finnish top accordion talent and a Swedish violin virtuoso." }, "description": { "fi": "<p>Lena Jonsson & Johanna Juhola on suomalaisen harmonikkataiturin ja ruotsalaisen viulutähden superduo.</p><p>He sekoittavat molempien maiden kansanmusiikkia omiin sävellyksiinsä luoden raikkaan ja ilmavan, improvisaatiolla maustetun kokonaisuuden. Molemmilla muusikoilla on pitkä kansainvälinen ura solisteina ja säveltäjinä. Tässä duossa he antavat luovuutensa ja leikkimielisyytensä kohdata.<br> <br>Harmonikkataiteilija Johanna Juhola on esiintymisillään ja sävellyksillään uudistanut mielikuvaa harmonikasta. Juhola on julkaissut kuusi soololevyä ja esiintynyt yli kolmessakymmenessä maassa. Hän esittää fantasiatangosävellyksiään yhtyeissään Johanna Juhola Reaktori ja Trio sekä videoprojisointeja ja sooloharmonikkaa yhdistävässä Imaginary Friends -konsertissa. Juhola on vieraillut sinfoniaorkesterien solistina ja säveltänyt musiikkia nykytanssi-, sirkus- ja teatteriesityksiin. Muusikkona Juhola ylittää genrerajoja ja on tehnyt yhteistyötä niin klassisen kuin jazz-, pop- ja konemusiikinkin huippunimien kanssa. Viime aikoina Juhola on esiintynyt myös mm. pianisti Timo Alakotilan, laulaja Emma Salokosken ja viulisti Lena Jonssonin kanssa. Vuonna 2022 Juholalle myönnettiin sävellyksistään Pohjoismaisten musiikintekijäjärjestöjen NPU-palkinto.</p><p>Lena Jonssonin kyky yhdistää perinteisen ruotsalaisen kansanmusiikin syvä tuntemus taiteelliseen herkkyyteen ja toisaalta rocktähden karismaan, on tehnyt hänestä yhden Ruotsin kiireisimmistä kansanmuusikoista. Jonssonin soittotyylissä on vaikutteita perinteisestä ruotsalaisesta musiikista, rockista, popista ja amerikkalaisesta old-time- ja bluegrass-perinteestä. Jonsson on palkittu Ruotsin Grammy- ja Manifest -palkinnolla sekä vuoden 2022 artistina ruotsalaisessa maailmanmusiikkigaalassa.</p><p>Lena Jonsson: viulu<br>Johanna Juhola: harmonikka</p>", "sv": "<p>Lena Jonsson & Johanna Juhola är en superduo som består av en finländsk dragspelskonstnär och en svensk violinstjärna.</p><p>De blandar folkmusik från båda länderna i sina kompositioner och skapar en fräsch och luftig helhet kryddad med improvisation. Båda musikerna har en lång internationell karriär som solister och kompositörer. I denna duo låter de sin kreativitet och lekfullhet mötas.<br> <br>Dragspelskonstnären Johanna Juhola har reformerat uppfattningen om dragspel med sina framträdanden och kompositioner. Juhola har gett ut sex soloskivor och uppträtt i över trettio länder. Hon framför sina fantasy-tangokompositioner i banden Johanna Juhola Reaktor och Trio samt i konserten Imaginary Friends som förenar videoprojektioner och solodragspel. Juhola har gästspelat som solist för symfoniorkestrar och komponerat musik för nutidsdans-, cirkus- och teaterföreställningar. Som musiker går Juhola över genregränserna och har samarbetat med toppnamn inom såväl klassisk musik som jazz, pop och maskinmusik. På senare tid har Juhola också uppträtt tillsammans med bland annat pianisten Timo Alakotila, sångaren Emma Salokoski och violinisten Lena Jonsson. År 2022 tilldelades Juhola Nordiska musikskaparorganisationernas NPU-pris för sina kompositioner.</p><p>Lena Jonssons förmåga att kombinera sin djupa kännedom om traditionell svensk folkmusik med konstnärlig känslighet och å andra sidan med karisman av en rockstjärna har gjort henne till en av Sveriges mest upptagna folkmusiker. Jonssons spelstil har influenser från traditionell svensk musik, rock, pop samt amerikansk old-time- och bluegrasstradition. Jonsson har belönats med Svenska Grammy- och Manifestpriset samt som Årets artist 2022 på den svenska världsmusikgalan.</p><p>Lena Jonsson – violin<br>Johanna Juhola – dragspel</p>", "en": "<p>Lena Jonsson & Johanna Juhola is a super duo comprising a Finnish top accordion talent and a Swedish violin virtuoso.</p><p>They combine folk music of both countries with their own compositions, creating fresh and bright melodies seasoned with improv. Both musicians have long international careers as vocalists and composers. In this duo, they allow their creativeness and playfulness come together.<br> <br>Accordion artist Johanna Juhola has reformed the image of the accordion through her performances and compositions. Juhola has released six solo albums and performed in more than thirty different countries. She performs her fantasy tango compositions in her bands Johanna Juhola Reaktori and Johanna Juhola Trio, as well as the Imaginary Friends concert, which combines video projections with solo accordion playing. Juhola has been a visiting soloist of symphony orchestras and has composed music for contemporary dance, circus and theatre performances. As a musician, Juhola crosses the borders of different genres and has worked together with some of the top names of classical, jazz, pop and electronic music alike. Recently, Juhola has also performed with artists such as the pianist Timo Alakotila, singer Emma Salokoski and violinist Lena Jonsson. In 2022, Juhola was granted the NPU award of Nordic music composers’ organisations for her compositions.</p><p>Lena Jonsson’s ability to combine her deep knowledge of Swedish folk music with artistic vulnerability and the charisma of a rock star has turned her into one of the busiest folk musicians in Sweden. Jonsson’s playing style draws inspiration from traditional Swedish music, rock, pop and American old-time and bluegrass traditions. Jonsson has been awarded the Swedish Grammy and Manifest awards and was chosen as the Artist of the Year in 2022 in a Swedish world music gala.</p><p>Lena Jonsson: violin<br>Johanna Juhola: accordion</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/91E57CACED00AD4C637FDC38B4623BA6/Lena_Jonsson_Johanna_Juhola", "sv": "http://www.espanlava.fi/sv/evenemang/event/91E57CACED00AD4C637FDC38B4623BA6/Lena_Jonsson_Johanna_Juhola", "en": "http://www.espanlava.fi/en/events/event/91E57CACED00AD4C637FDC38B4623BA6/Lena_Jonsson_Johanna_Juhola" }, "name": { "fi": "Lena Jonsson & Johanna Juhola", "sv": "Lena Jonsson & Johanna Juhola", "en": "Lena Jonsson & Johanna Juhola" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66528/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pnjm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/maritta_nevalainen_art/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T11:49:03.321528Z", "last_modified_time": "2025-06-30T11:49:40.857494Z", "date_published": "2025-06-30T11:41:00Z", "start_time": "2025-08-04T05:00:00Z", "end_time": "2025-08-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Maritta Nevalainen", "sv": "Maritta Nevalainen", "en": "Maritta Nevalainen" }, "short_description": { "fi": "“Hiljaisuuden kaiut” on matka sisäänpäin. Toivon, että teokseni saavat viipyä katseessasi ja ehkä jäädä kaikumaan hetkeksi myös mieleesi.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "description": { "fi": "<p><strong>Taidenäyttely | Maritta Nevalainen</strong></p><p>Kokosin tähän näyttelyyn teoksia lyhyen taidematkani varrelta. On kulunut tasan 624 päivää siitä, kun ensimmäisen kerran otin pensselin käteeni lähes 20 vuoden jälkeen. Matka on ollut hiljainen vuoropuhelu sisimpäni kanssa – keskustelua ilman sanoja, täynnä tunnetta ja käden liikettä, tuskaa ja onnistumisia. Tämä näyttely on kokoelma abstrakteja teoksia, jotka syntyivät tarpeesta ilmaista sellaista, mitä kieli ei tavoita. Tunsin valtavaa tarvetta ilmaista väreillä sitä, mitä en saa sanoitettua. Joukossa on muutama kuvaavampi teos. Erityisesti minua kiehtoo ilmeikkäät ja puhuttelevat naisten kasvot. Ne kaikki ovat mielikuvituksen tuotetta, joita sen hetkinen tunnetilani on kuvittanut. </p><p>Jokainen teos on heijastus sisäisestä liikkeestä: kaipuusta, rauhasta, myllerryksestä ja hauraudesta. Tunteista, jotka liikuttavat minua syvästi. Värit ja muodot sekä niiden rytmi rakentavat tilan, jossa katsoja voi kohdata omat tunteensa - ehkä jopa ne, joita ei ole aiemmin uskaltanut nimetä. </p><p>“Hiljaisuuden kaiut” on matka sisäänpäin. Toivon, että teokseni saavat viipyä katseessasi ja ehkä jäädä kaikumaan hetkeksi myös mieleesi.</p><p>Lämmöllä Maritta </p><p>Teokset ovat myytävänä.</p><p><br></p><p><strong>Yhteystiedot:</strong></p><p>Instagram: <a href=\"https://www.instagram.com/maritta_nevalainen_art/\">maritta_nevalainen_art</a></p><p><a href=\"Marittanevalainen.com\">Marittanevalainen.com</a> tai <a href=\"taidesivut.net/marittanevalainen\">taidesivut.net/marittanevalainen</a></p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an Art exhibition in Tapiola Library.</p><p>Exhibition can be seen at Librarys opening hours.</p>" }, "info_url": null, "name": { "fi": "Näyttely: Hiljaisuuden kaiut ", "sv": "Utställning: Hiljaisuuden kaiut ", "en": "Art exhibition: Echoes of Silence" }, "provider_contact_info": null, "location_extra_info": { "fi": "Näyttelyseinä Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pnjm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66565", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985988, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:49.140896Z", "last_modified_time": "2025-06-10T12:14:49.140916Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773072.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985988/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T12:14:49.040501Z", "last_modified_time": "2025-06-30T11:12:49.705227Z", "date_published": null, "start_time": "2025-08-23T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Helsinki Klezmer Kapelye on muusikkokollektiivi, joka on esiintynyt yhdessä jo toistakymmentä vuotta.", "sv": "Helsinki Klezmer Kapelye är ett musikkollektiv som har uppträtt tillsammans i över tio år.", "en": "Helsinki Klezmer Kapelye is a collective of musicians who have been performing together for more than a decade." }, "description": { "fi": "<p>Helsinki Klezmer Kapelye on muusikkokollektiivi, joka on esiintynyt yhdessä jo toistakymmentä vuotta.</p><p>Helsinki Klezmer Kapelye on ainoa klezmer-bändi Suomessa, joka esittää traditionaalista klezmer-musiikkia ja siten vie Itä-Euroopan vanhaa juutalaista kulttuuria eteenpäin. HKK on konsertoinut ahkerasti Suomessa pääkaupunkiseudulla ja mm. Kaustisen kansamusiikkifestivaalilla.<br> <br>Ulkomailla bändi on esiintynyt mm. Saksassa Yiddish Summer Weimar -festivaalilla, Klezmer-festivaalilla Pietarissa sekä kiertänyt Liettuassa. Yhtye julkaisi ensimmäisen levynsä vuonna 2023. Klezmer-musiikki on Itä-Euroopan juutalaisten kansanmusiikkia ja juontaa juurensa keskiajan Eurooppaan, jossa juutalaiset klezmer-muusikot kiersivät soittamassa Itä-Euroopan juutalaisyhteisöissä.</p><p>Klezmer on vauhdikasta tanssimusiikkia, jota on soitettu erilaisissa juhlissa ja häissä. 1800-luvun loppuun mennessä klezmer-musiikista oli tullut pitkälle kehittynyt musiikkityyli, joka keräsi vaikutteita sekä juutalaisesta kulttuurista että sen ulkopuolelta.</p><p>Helsinki Klezmer Kapelye on monikulttuurinen ryhmä, joka työskentelee ainakin seitsemällä eri kielellä: suomi, venäjä, englanti, jiddish, ruotsi, heprea ja turkki. Esiintyjien joukossa on maahanmuuttajia. mm Turkista, USA:sta ja Tsetseniasta.</p>", "sv": "<p>Helsinki Klezmer Kapelye är ett musikkollektiv som har uppträtt tillsammans i över tio år.</p><p>Helsinki Klezmer Kapelye är det enda klezmerbandet i Finland som framför traditionell klezmermusik och utvecklar därmed Östeuropas gamla judiska kultur. HKK har konserterat flitigt i Finland i huvudstadsregionen och bland annat på Kaustby folkmusikfestival.</p><p>Utomlands har bandet uppträtt bland annat i Tyskland på festivalen Yiddish Summer Weimar, festivalen Klezmer i Sankt Petersburg samt turnerat i Litauen. Gruppen släppte sin första skiva 2023. Klezmermusik är judisk folkmusik från Östeuropa och går tillbaka till medeltidens Europa, där judiska klezmermusiker reste runt och spelade i de judiska samhällena i Östeuropa.</p><p>Klezmer är en fartfylld dansmusik som har spelats på olika fester och bröllop. Vid 1800-talets slut hade klezmermusiken blivit en högt utvecklad musikstil som influerades både av den judiska kulturen och utanför den.</p><p>Helsinki Klezmer Kapelye är en mångkulturell grupp som arbetar på minst sju olika språk: finska, ryska, engelska, jiddisch, svenska, hebreiska och turkiska. Bland artisterna finns invandrare från bland annat Turkiet, USA och Tjetjenien.</p>", "en": "<p>Helsinki Klezmer Kapelye is a collective of musicians who have been performing together for more than a decade.</p><p>Helsinki Klezmer Kapelye is the only klezmer band in Finland performing traditional klezmer music, preserving the old Jewish culture of Eastern Europe. HKK have given many concerts in Finland, for example in the Helsinki Metropolitan Area, as well as at the Kaustinen Folk Music Festival.<br> <br>The band have also performed abroad, e.g. at the Yiddish Summer Weimar festival in Germany and at a Klezmer festival in St. Petersburg, and have toured Lithuania.</p><p>The band released its first album in 2023. Klezmer music is the folk music of Eastern European Jewish people, dating back to medieval Europe where Jewish klezmer musicians toured the Jewish communities of Eastern Europe to play their music.</p><p>Klezmer is energetic dance music played at parties and in weddings. By the end of the 19th century, klezmer had become an advanced music style that drew inspiration from both within the Jewish culture and outside it.</p><p>Helsinki Klezmer Kapelye is a multicultural group of people who work in at least seven different languages: Finnish, Russian, English, Yiddish, Swedish, Hebrew and Turkish. The performers include immigrants from countries such as Turkey, the USA and Chechnya.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/2AE367CAD6BB649FF322B1BACCC8FAA2/Helsinki_Klezmer_Kapelye", "sv": "http://www.espanlava.fi/sv/evenemang/event/2AE367CAD6BB649FF322B1BACCC8FAA2/Helsinki_Klezmer_Kapelye", "en": "http://www.espanlava.fi/en/events/event/2AE367CAD6BB649FF322B1BACCC8FAA2/Helsinki_Klezmer_Kapelye" }, "name": { "fi": "Helsinki Klezmer Kapelye – Open Stage", "sv": "Helsinki Klezmer Kapelye – Open Stage", "en": "Helsinki Klezmer Kapelye – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66565/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 944693, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-05T13:13:54.601968Z", "last_modified_time": "2025-06-05T13:13:54.601985Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767586.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/944693/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-05T13:13:54.502862Z", "last_modified_time": "2025-06-30T08:12:37.058225Z", "date_published": null, "start_time": "2025-08-03T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Helsingin vanhimman kamarimusiikkifestivaalin taiteilijat yhdessä Henrik Sandåsin kanssa jatkavat syventymistään Astro Piazzollan musiikkin.", "sv": "Konstnärerna vid Helsingfors äldsta kammarmusikfestival tillsammans med Henrik Sandås fortsätter att fördjupa sig i Astro Piazzollas musik.", "en": "Henrik Sandås and the artists of the oldest chamber music festival in Helsinki continue to immerse themselves and their audience in the music of Astor Piazzolla." }, "description": { "fi": "<p>Helsingin vanhimman kamarimusiikkifestivaalin taiteilijat yhdessä Henrik Sandåsin kanssa jatkavat syventymistään Astro Piazzollan musiikkin.</p><p>Iltapäivän toisessa konsertissa Bandoneonin suru päästään entistä kaihoisempien ja riipaisevien sävelten pariin.</p>", "sv": "<p>Konstnärerna vid Helsingfors äldsta kammarmusikfestival tillsammans med Henrik Sandås fortsätter att fördjupa sig i Astro Piazzollas musik.</p><p>Eftermiddagens andra konsert Bandoneonin suru tar oss till en plats med ännu mer längtande och gripande toner.</p>", "en": "<p>Henrik Sandås and the artists of the oldest chamber music festival in Helsinki continue to immerse themselves and their audience in the music of Astor Piazzolla.</p><p>The second concert of the afternoon, Bandoneonin suru – Grief of bandoneon, features moving melodies filled with longing.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5CBDEF3DC2D20F316B80AA02936B3155/Kamarikesa-festivaali_Bandoneonin_suru", "sv": "http://www.espanlava.fi/sv/evenemang/event/5CBDEF3DC2D20F316B80AA02936B3155/Festivalen_Kammarsommar_Bandoneons_sorg", "en": "http://www.espanlava.fi/en/events/event/5CBDEF3DC2D20F316B80AA02936B3155/Kamarikesa_Chamber_Music_Festival_Bandoneonin_suru_Grief_of_bandoneon" }, "name": { "fi": "Kamarikesä-festivaali: Bandoneonin suru – Henrik Sandås x Kamarikesä", "sv": "Festivalen Kammarsommar: Bandoneons sorg – Henrik Sandås x Kammarsommar", "en": "Kamarikesä Chamber Music Festival: Bandoneonin suru – Grief of bandoneon – Henrik Sandås x Kamarikesä" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66517", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 944692, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-05T13:13:54.255279Z", "last_modified_time": "2025-06-05T13:13:54.255295Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767585.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/944692/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-05T13:13:54.150588Z", "last_modified_time": "2025-06-30T08:12:36.884348Z", "date_published": null, "start_time": "2025-08-03T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Sunnuntaina Kamarikesä täyttää Helsingin keskustan Astor Piazzollan hurmaavalla musiikilla!", "sv": "På söndag fyller Kammarsommaren Helsingfors centrum med Astor Piazzollas betagande musik!", "en": "On Sunday, Kamarikesä Chamber Music Festival will fill the Helsinki City Centre with the charming music of Astor Piazzolla!" }, "description": { "fi": "<p>Sunnuntaina Kamarikesä täyttää Helsingin keskustan Astor Piazzollan hurmaavalla musiikilla!</p><p>Maamme mahtavin bandoneontaituri Henrik Sandås saapuu Espan lavalle kahden konsertin kera. Festivaalin taitelijoista kootun jousikvintetin kanssa esiintyvä Henrik soittaa Piazzollan unohtumattomimpia tangosäveliä Adios Noniñosta Le Grand Tangoon.</p>", "sv": "<p>På söndag fyller Kammarsommaren Helsingfors centrum med Astor Piazzollas betagande musik!</p><p>Landets mest framstående bandoneonkonstnär Henrik Sandås kommer till Esplanadestraden med två konserter. Henrik, som uppträder med en stråkkvintett sammansatt av festivalens artister, spelar Piazzollas mest oförglömliga tangotoner från Adios Noniño till Le Grand Tango.</p>", "en": "<p>On Sunday, Kamarikesä Chamber Music Festival will fill the Helsinki City Centre with the charming music of Astor Piazzolla!</p><p>The greatest bandoneon virtuoso in our country, Henrik Sandås, will take over Espa Stage in two concerts. Henrik will perform with a string quintet featuring some of the festival artists, playing the most unforgettable tango melodies by Piazzolla, from Adios Noniño to Le Grand Tango.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/428A4BB825C6ED8FDDC3485A7A298A89/Kamarikesa-festivaali_Le_Grand_Tango_", "sv": "http://www.espanlava.fi/sv/evenemang/event/428A4BB825C6ED8FDDC3485A7A298A89/Festivalen_Kammarsommar_Le_Grand_Tango_", "en": "http://www.espanlava.fi/en/events/event/428A4BB825C6ED8FDDC3485A7A298A89/Kamarikesa_Chamber_Music_Festival_Le_Grand_Tango_" }, "name": { "fi": "Kamarikesä-festivaali: Le Grand Tango – Henrik Sandås x Kamarikesä", "sv": "Festivalen Kammarsommar: Le Grand Tango – Henrik Sandås x Kammarsommar", "en": "Kamarikesä Chamber Music Festival: Le Grand Tango – Henrik Sandås x Kamarikesä" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66517/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }