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=86&show_all=true
{ "meta": { "count": 35273, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=87&show_all=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=85&show_all=true" }, "data": [ { "id": "jiiri:8553c3b7-3328-f111-8341-000d3a6746a9", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?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:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cd8eb2d6-1e44-456e-9e12-42f18d4a6b38/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://yt.com", "language": "fi" }, { "name": "extlink_instagram", "link": "https://ig.com", "language": "fi" }, { "name": "extlink_whatsapp", "link": "https://wa.com", "language": "fi" }, { "name": "extlink_facebook", "link": "https://face.com", "language": "fi" }, { "name": "extlink_snapchat", "link": "https://sc.com", "language": "fi" }, { "name": "extlink_reddit", "link": "https://reddid.com", "language": "fi" }, { "name": "extlink_tumblr", "link": "https://tumblr.com", "language": "fi" }, { "name": "extlink_twitter", "link": "https://x.com", "language": "fi" }, { "name": "extlink_tiktok", "link": "https://tt.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TLDG__Staging_Testing14812337710", "sv": "https://tapahtumat.hel.se", "en": "https://tapahtumat.hel.eng", "ru": "https://tapahtumat.hel.ru", "zh_hans": "https://tapahtumat.hel.chi", "ar": "https://tapahtumat.hel.ara" }, "description": { "fi": "Additional price information in Finnish", "sv": "Additional price information in Swedish", "en": "Additional price information in English", "ru": "Additional price information in Russian", "zh_hans": "Additional price information in Chinese", "ar": "Additional price information in Arabic" }, "price": { "fi": "15", "sv": "15", "en": "15", "ru": "15", "zh_hans": "15", "ar": "15" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2384955, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T14:39:39.391265Z", "last_modified_time": "2026-06-04T14:39:39.391296Z", "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/398f83e9-b2ee-ef11-9341-6045bde0ef17", "name": "Caption", "cropping": "", "photographer_name": "Image credit", "alt_text": "Image alt text", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384955/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Name of video", "url": "https://video.url.com", "alt_text": "Video alt text" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?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:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "created_time": "2026-03-25T10:21:13.435012Z", "last_modified_time": "2026-06-04T14:39:42.232991Z", "date_published": "2026-03-25T10:16:50Z", "start_time": "2026-09-30T09:19:00Z", "end_time": "2026-09-30T11:19:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 12, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-09-01T08:00:00+03:00", "enrolment_end_time": "2026-09-27T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "[TLDG] - Staging Testing", "sv": "Event title in Swedish", "en": "Event title in English", "ru": "Event title in Russian", "zh_hans": "Event title in Chinese", "ar": "Event title in Arabic" }, "location_extra_info": { "fi": "Venue location information in Finnish", "sv": "Venue location information in Swedish", "en": "Venue location information in English", "ru": "Venue location information in Russian", "zh_hans": "Venue location information in Chinese", "ar": "Venue location information in Arabic" }, "provider": { "fi": "Event organizer in Finnish", "sv": "Event organizer in Swedish", "en": "Event organizer in English", "ru": "Event organizer in Russian", "zh_hans": "Event organizer in Chinese", "ar": "Event organizer in Arabic" }, "short_description": { "fi": "Short description in Finnish (up to 160 characters)", "sv": "Short description in Swedish (up to 160 characters)", "en": "Short description in English (up to 160 characters)", "ru": "Short description in Russian (up to 160 characters)", "zh_hans": "Short description in Chinese (up to 160 characters)", "ar": "Short description in Arabic (up to 160 characters)" }, "info_url": { "fi": "https://tapahtumat.hel.fi", "sv": "https://tapahtumat.hel.se", "en": "https://tapahtumat.hel.eng", "ru": "https://tapahtumat.hel.ru", "zh_hans": "https://tapahtumat.hel.chi", "ar": "https://tapahtumat.hel.ara" }, "description": { "fi": "<div><p>Event description in Finnish</p></div>", "sv": "<div><p>Event description in Swedish<br> </p></div>", "en": "<div><p>Event description in English<br> </p></div>", "ru": "<div><p>Event description in Russian<br> </p></div>", "zh_hans": "<div><p>Event description in Chinese<br> </p></div>", "ar": "<div><p>Event description in Arabic<br> </p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:8553c3b7-3328-f111-8341-000d3a6746a9/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpjftxnui", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490576, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-28T16:42:17.396704Z", "last_modified_time": "2025-12-18T11:11:36.169680Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png", "name": "", "cropping": "94,0,468,375", "photographer_name": "", "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:26:19.504955Z", "last_modified_time": "2026-06-04T12:26:19.504971Z", "date_published": null, "start_time": "2025-09-11T14:00:00Z", "end_time": "2026-08-26T12:22:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "VITRIININÄYTTELY: Art Journal - Taidepäiväkirjatyöpaja" }, "location_extra_info": { "fi": "Vitriini" }, "provider": null, "short_description": { "fi": "Näyttelyssä taidepäiväkirjatyöpajan tuotoksia" }, "info_url": null, "description": { "fi": "TAIDENÄYTTELYSSÄ Art Journal - Taidepäiväkirjatyöpajan osallistujien taidetta<p><strong> Entressen kirjasto Vitriini Estradilla</strong></p><p>Näyttelyssä esillä työpajan osallistujien taidetta ja päiväkirjan sivuja. Ryhmä jatkuu taas syksyllä, jos kiinnostuit taidemuodosta; lämpimästi tervetuloa osallistumaan.</p><p><br></p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan. </p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjftxnui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69101", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/gaala-podcast/" }, "description": null, "price": { "fi": "35 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384851, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-02T07:14:28.583181Z", "last_modified_time": "2026-06-02T07:14:28.583195Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793269.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384851/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-02T07:14:28.478639Z", "last_modified_time": "2026-06-04T12:13:58.249433Z", "date_published": null, "start_time": "2026-11-11T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Gaala Liveshow (lisäkeikka)" }, "location_extra_info": null, "provider": { "fi": "All Day Entertainment Oy" }, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/764B8A75C339D42F77526485CF8DF5F6/Gaala_Liveshow_lisakeikka_" }, "description": { "fi": "<p>Gaala Liveshow saa lisäesityksen suuren kysynnän vuoksi! Huippusuosittu Gaala-podcast nousee Savoy-teatterin näyttämölle koko illan liveshow’lla, joka juhlistaa elämää ja ystävyyttä! Päivässä loppuunmyyneen show’n tähtinä säkenöivät rakastetut ystävykset Hennariikka Laaksola, Thelma Siberg ja Valtteri Lehtinen. Illan aikana kuullaan hersyvimmät keskustelut kiusallisista tilanteista tunteikkaimpiin hetkiin. Tyylilleen uskollisesti Gaala jakaa palkintoja mitä yllättävimmissä kategorioissa, ja saattaapa joku yleisön joukostakin päätyä pystin saajaksi!</p><p>Kunniavieraana lavalle nousee Gaala-podcastin arvoisa alkuperäisjäsen – Amelie Blauberg!</p><p>Tervetuloa nauttimaan illasta, rakas kutsuvieras! Elämä on Gaala!</p><p>Gaala on Podimon kuunnelluimpiin ohjelmiin lukeutuva lifestylepodcast, joka on jo vuosien ajan viihdyttänyt kuulijoitaan juhlistaen arjen glamouria.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 45 min, sisältää väliajan</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69244", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://rockcamp.myclub.fi/flow/courses/10799310", "sv": "https://rockcamp.myclub.fi/flow/courses/10799310", "en": "https://rockcamp.myclub.fi/flow/courses/10799310" }, "description": null, "price": { "fi": "25€", "sv": "25€", "en": "25€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:54.652582Z", "last_modified_time": "2026-06-04T12:13:54.652597Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793483.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:54.514947Z", "last_modified_time": "2026-06-04T12:13:54.849676Z", "date_published": null, "start_time": "2026-09-25T14:00:00Z", "end_time": "2026-09-25T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rock Camp – Musiikkileiri 13–29-v. nuorille", "sv": "Rock Camp", "en": "Rock Camp" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4162B184831D41D1334129262A00F3A3/Rock_Camp", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4162B184831D41D1334129262A00F3A3/Rock_Camp", "en": "http://www.malmitalo.fi/en/events/event/4162B184831D41D1334129262A00F3A3/Rock_Camp" }, "description": { "fi": "<p>Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!</p><p>Leiri järjestetään yhteistyössä Helsingin kaupungin ja Rock Camp Ry:n kanssa. Leirin aikana tapaat uusia kavereita, joita yhdistää sama intohimo musiikkiin, opit uutta ja pääset soittamaan bändissä kokeneiden valmentajien johdolla. Ei väliä, oletko vasta aloittamassa soittamista vai jo kokenut, meidän leirillä kaikki saavat loistaa!</p><p>Osallistumismaksu: 25 €<br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Ilmoittaudu leirille tämän linkin kautta 11.9. mennessä</u></a>. Mukaan mahtuu 20 osallistujaa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69243", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/", "sv": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/", "en": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/" }, "description": null, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384951, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:53.193699Z", "last_modified_time": "2026-06-04T12:13:53.193717Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793566.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384951/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:53.071607Z", "last_modified_time": "2026-06-04T12:13:53.342967Z", "date_published": null, "start_time": "2026-09-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tuula ja Pirkko: Meil on aina Toro", "sv": "Tuula ja Pirkko: Meil on aina Toro", "en": "Tuula ja Pirkko: Meil on aina Toro" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro", "en": "http://www.kanneltalo.fi/en/events/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro" }, "description": { "fi": "<p>Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta.</p><p>He eivät oikeastaan juuri pidä toisistaan, mutta jostain tuntemattomasta syystä he ovat viettäneet koko elämänsä hyvin tiiviisti yhdessä. Toisin kuin vanhuksista ehkä yleensä luullaan, ikä ei ole jalostanut heitä seesteiseen suuntaan. Päinvastoin. Tuula rakastaa Cindy Crawfordia ja turvavälejä, Pirkko ei anna arvoa lastenlastensa savitöille eikä piirustuksille, eikä hän edelleenkään osaa leipoa. Tuula ja Pirkko on jätetty hankalan luonteensa vuoksi koronakaranteenin rauhaan jo hyvän aikaa sitten, ja siksi heillä on kaikki maailman aika elellä elämäänsä juuri niin kuin he itse lystäävät.</p><p>Erinäisten sattumien jälkeen Tuula ja Pirkko päättävät karistaa pölyt matkalaukuistaan, suunnata maalliset tomumajansa Finavian lippuluukulle, maksaa lentoveronsa kenties viimeisen kerran ja suunnistaa kohti Fuengirolan aurinkoista costaa. Eikä aikaakaan, kun Toron varjossa käydään tähänastisen elämän ehkä tärkeimmät keskustelut. Tällä matkalla saavat kyytiä niin Tuulan ja Pirkon tyttärien luutuneet asenteet äitejään kohtaan, kuin patriarkaattinen machokulttuurikin. Löytyykö Fugen rannalta romanssi, ökyjahti vai Sean Conneryn rintakarva?</p><p>Esitys on kunnianosoitus hömelöydelle, elämänilolle, vapaalle tahdolle, tajunnanvirralle, omaehtoisuudelle, tyhmille jutuille, unelmille, ihmisyydelle, ihmisen lajityypilliselle tarpeelle valloittaa tuntemattomia alueita sekä itsemääräämisoikeuden tärkeydelle.</p><p>Käsikirjoitus, ohjaus ja kaikki roolit: Ria Kataja ja Minna Kivelä<br>Valosuunnittelu: Niina Sivén<br>Äänisuunnitelu: Esko Paavola</p><p>Tuula ja Pirkko nähtiin ensimmäisen kerran Pentti Järvisen käsikirjoittamassa esityksessä Punkkuelämää, johon he saapuivat Rian ja Minnan ideoimina ensi-illan jälkeen. Sen jälkeen Tuula ja Pirkko ovat tehneet myös 9-osaisen komediasarjan ”Kahden markan mummot – todella karmeeta-show”.</p><p>Kesto: noin 2,5 t sis. väliajan.<br>Ikäsuositus 15 v.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69243/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68463", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:38.950309Z", "last_modified_time": "2026-04-14T11:25:38.950324Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786177.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T11:25:38.715015Z", "last_modified_time": "2026-06-04T12:13:47.693404Z", "date_published": null, "start_time": "2026-08-20T13:00:00Z", "end_time": "2026-08-20T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taiteiden yö: Lala Salama, Juhlat ja työpajoja – Malmin tapahtumakesä 2026", "sv": "Konstens natt: Lala Salama, Juhlat och verkstäder – Malms evenemangssommar 2026", "en": "The Night of the Arts: Lala Salama, Juhlat and workshops – Malmi Summer of Events 2026" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!", "sv": "Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!", "en": "The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Taiteiden_yo_Lala_Salama_Juhlat_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Konstens_natt_Lala_Salama_Juhlat_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/The_Night_of_the_Arts_Lala_Salama_Juhlat_and_workshops" }, "description": { "fi": "<p>Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!</p><p><b>Aikataulu</b><br><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>16.00–19.00 Työväenopisto: Hippiäisestä muurahaisten poluille - maalaa elonkirjoa kasviväreillä!<br>16.00–19.00 Työväenopisto: Heijastintyöpaja<br>16.00–17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Päivän ohjelma<br>klo 16.00–18.00 Yksin hanke: Kangaskassien painatusta</b><br>Taiteiden yössä pääsee painamaan omia kangaskasseja rennossa ja luovassa työpajassa. Tule tekemään ja viihtymään!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>klo 17.00–18.00 Juhlat</b><br>Suomen kiinnostavimpiin indieyhtyeisiin lukeutuva Juhlat ammentaa melodiseen kitarapopiinsa 2000 luvun alun radiohiteistä, skandinaavisesta melankoliasta ja amerikkalaisesta aikuisrockista.<br>Vuonna 2025 julkaistu toinen albumi Yöllä taivas kaatuu keräsi ylistäviä arvioita ja toi yhtyeelle Indie Awards ehdokkuuksia. Yhtye on nähty muun muassa Provinssissa, Ruisrockissa ja Tavastialla.</p><p><b>klo 19.00–20.00 Lala Salama</b><br>Lala Salama on dynaaminen rock trio, jonka ilmaisussa yhdistyvät anteeksipyytelemätön herkkyys ja jyrähtelevä särö. Kansainvälistä kulttimainetta kerännyt yhtye tunnetaan intensiivisistä keikoistaan ja vahvasta yhteydestä yleisöön.</p><p>Kokoonpano:<br>Rosa Jules – kitara, laulu<br>Aliisa Keränen – rummut, taustalaulut<br>Elli Holmström – basso, taustalaulut</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!</p><p><b>Tidtabell</b><br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja<br>17.00-18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Dagens program<br>klo 16.00–18.00 Yksin-projektet: Tryck på tygkasse</b><br>Under Konstens natt kan man trycka egna tygkassar i en lättsam och kreativ verkstad. Kom med och tillverka och trivas!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>kl. 17.00–18.00 Juhlat</b><br>Juhlat, som är en av Finlands intressantaste indiegrupper, inhämtar inspiration från 2000-talets radiohits, skandinavisk melankoni och amerikansk vuxenrock till sin melodiska gitarrpop.<br>Deras andra album, Yöllä taivas kaatuu, som släpptes 2025, fick strålande recensioner och gav bandet Indie Awards-nomineringar. Bandet har bland annat setts på Provinssirock, Ruisrock och Tavastia.</p><p><b>kl. 19.00–20.00 Lala Salama</b><br>Lala Salama är en dynamisk rocktrio vars uttryck kombinerar en oförställd känslighet med en dundrande skärpa. Bandet med internationellt kultrykte är känt för sina intensiva spelningar och för sin starka kontakt med publiken.</p><p>Sammansättning:<br>Rosa Jules – gitarr, sång<br>Aliisa Keränen – trummor, bakgrundssång<br>Elli Holmström - bas, körsång</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!</p><p><b>Schedule</b><br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja</p><p>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Programme of the day<br>16.00–18.00 Yksin project: Printing tote bags</b><br>The Night of the Arts lets you print your own tote bags in a relaxed and creative workshop. Get creative and have fun!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>17.00–18.00 Juhlat</b><br>Juhlat, one of Finland's most interesting indie bands, draws inspiration for its melodic guitar pop from early 21st century radio hits, Scandinavian melancholy and American grown-up rock.<br>Their second album, Yöllä taivas kaatuu, was released in 2025, garnering rave reviews and even earning the band Indie Awards nominations. The band has performed in festivals such as Provinssi and Ruisrock and at Tavastia.</p><p><b>19.00–20.00 Lala Salama</b><br>Lala Salama is a dynamic rock trio whose expression combines unapologetic vulnerability with harsher edges. The band, which has built up an international cult following, is known for its intense live performances and strong connection with the audience.</p><p>Line-up:<br>Rosa Jules – guitar, vocals<br>Aliisa Keränen – drums, backing vocals<br>Elli Holmström – bass, backing vocals</p><p>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68463/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpd6vh4b4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2201331, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-19T08:05:52.260454Z", "last_modified_time": "2026-05-19T08:05:52.260467Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4b7f190c-20a6-46af-b1f9-a8376cd63cd0.png", "name": "", "cropping": "336,0,1200,864", "photographer_name": "Sanna Korkelainen", "alt_text": "vinyylileikkurin materiaalirullia ja kangaskasseja, pride sateenkaari", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201331/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-05-19T08:13:04.740100Z", "last_modified_time": "2026-06-04T11:09:30.815005Z", "date_published": null, "start_time": "2026-06-11T13:00:00Z", "end_time": "2026-06-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kangaskassipaja", "sv": "Tygpåseverkstad", "en": "Tote bag workshop" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "Maker Space" }, "provider": { "fi": "Kirjasto", "sv": "Biblioteket", "en": "Library" }, "short_description": { "fi": "tule tuunaamaan pride teemainen kangaskassi", "sv": "Kom och dekorera en tygkasse med Pride-tema", "en": "Come design a Pride-themed tote bag" }, "info_url": { "fi": "https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride", "sv": "https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride", "en": "https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride" }, "description": { "fi": "Kangaskassipaja<p><strong>To 11.6.2026 klo 16-18 | Entressen kirjaston paja</strong></p><p><strong>Tote-ally Proud - Ylpeydellä Kannettu</strong></p><p>Haluatko tulla tuunaamaan omia vaatteitasi tai kulkuelippua? Teemme pajassa vinyylileikkurilla värikkäitä silitettäviä kuvioita kankaalle. 50 ensimmäiselle kangaskassi kirjastolta.</p><p>Pajassa voi tehdä myös tarroja! </p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki </a></p>", "sv": "Tygkasseverkstad <p><strong>Torsdag 11 juni 2026 kl. 16–18 | Verkstaden på Entressen-biblioteket</strong></p><p><strong>Tote-ally Proud – Bär med stolthet</strong></p><p>Vill du komma och piffa upp dina egnakläder eller din flagga? I verkstaden skapar vi färgglada, strykbara mönster på tyg med hjälp av en vinylskärare. De 50 första får en tygkasse från biblioteket.</p><p>I verkstaden kan man också göra klistermärken! </p><p>Esbo stad är i år partner till Helsingfors Pride inom ramen för Working with Pride. Läs mer om programmet för Pride-månaden i Esbos bibliotek och hela Esbo stad på Esbo stads Pride-sida <a href=\"https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride\">Esbo stad x Helsingfors Pride | Esbo stad </a></p>", "en": "Tote Bag Workshop <p><strong>Thu, June 11, 2026, 4:00–6:00 p.m. | Entresse Library Workshop</strong></p><p><strong>Tote-ally Proud – Carried with Pride</strong></p><p>Would you like to come and customize your own clothes or flags? In this workshop, we’ll use a vinyl cutter to create colorful iron-on designs on fabric. The first 50 participants will receive a tote bag from the library.</p><p>You can also make stickers at the workshop! </p><p>This year, the City of Espoo is a “Working with Pride” partner of Helsinki Pride. Read more about the Pride Month program for Espoo libraries and the entire City of Espoo on the City of Espoo’s Pride page: <a href=\"https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride\">City of Espoo x Helsinki Pride | City of Espoo </a></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpd6vh4b4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpgslee6y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384769, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-27T10:20:41.415348Z", "last_modified_time": "2026-05-27T10:20:41.415366Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/051f5a6b-ba74-4875-8540-b97ae1ee9ab4.png", "name": "", "cropping": "1036,0,3111,2074", "photographer_name": "Canva", "alt_text": "piirroskuvat hamsteri, siili, sammakko katsoo yhdessä elokuvaa syöden poppareita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384769/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-05-27T10:21:25.621777Z", "last_modified_time": "2026-06-04T11:08:02.340980Z", "date_published": null, "start_time": "2026-06-05T14:30:00Z", "end_time": "2026-06-05T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Queer-kino leffailta (K-7)" }, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "short_description": { "fi": "Tule mukaan katsomaan leffaa kirjastolle!" }, "info_url": null, "description": { "fi": "Queer-kino leffailta (K-7)<p>Perjantaina 5.6. Entressen kirjaston sinisessä huoneessa klo 17.30-19.30</p><p>Tule mukaan katsomaan leffaa kirjastolle!</p><p><br></p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki </a></p><p><br></p><p>Tapahtuman järjestää kirjasto</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpgslee6y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpjeyby7i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384948, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-03T07:18:06.469218Z", "last_modified_time": "2026-06-03T07:18:06.469231Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/43f9d634-4a3d-4e30-bd32-51adf8c5a3be.jfif", "name": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,", "cropping": "46,0,229,183", "photographer_name": "", "alt_text": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-04T10:50:17.954509Z", "last_modified_time": "2026-06-04T10:56:25.666973Z", "date_published": null, "start_time": "2026-06-10T10:00:00Z", "end_time": "2026-06-10T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lautapelikerho" }, "location_extra_info": { "fi": "Lasten osasto" }, "provider": null, "short_description": { "fi": "Tapahtuma on tarkoitettu alakoululaisille." }, "info_url": null, "description": { "fi": "<p>Tapahtuma on tarkoitettu alakoululaisille. Se pidetään Lastenosastossa. Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjeyby7i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69223", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/we-jazz-presents-bill-frisell-trio-us-4171788/" }, "description": null, "price": { "fi": "59-79 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384944, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T09:13:54.963613Z", "last_modified_time": "2026-06-04T09:13:54.963629Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793529.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384944/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T09:13:54.600072Z", "last_modified_time": "2026-06-04T09:13:55.156883Z", "date_published": null, "start_time": "2027-02-16", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "We Jazz presents: BILL FRISELL TRIO (US)" }, "location_extra_info": null, "provider": { "fi": "We Jazz Oy" }, "short_description": { "fi": "Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4F8661641CE7F07C4F551F5AA5B40563/We_Jazz_presents_BILL_FRISELL_TRIO_US_" }, "description": { "fi": "<p>Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027</p><p><b>Legendaarinen amerikkalaiskitaristi Bill Frisell palaa Suomeen 16.2.2027 ja esiintyy Helsingin Savoy-teatterissa triokokoonpanonsa kanssa. Edellisellä kerralla Helsingin-konserttinsa loppuunmyynyt Bill Frisell Trio tuo kitaristin yhteen basisti Thomas Morganin ja rumpali Rudy Roystonin kanssa, ja kolmikon pitkään hioutunut yhtyessoitto on konserttitilanteessa maagista kuultavaa.</b></p><p>Maailman arvostetuimpiin jazz-yhtyeisiin lukeutuva <b>Bill Frisell Trio</b> palaa Helsinkiin ja esiintyy tiistaina 16.2. Savoy-teatterissa. Kitaristi <b>Bill Frisellin</b>, basisti <b>Thomas Morganin</b> ja rumpali <b>Rudy Roystonin</b> muodostama kokoonpano on tunnettu taianomaisen intensiivisistä konserteistaan, jossa musiikki soljuu ajatuksen lailla jo pitkään yhdessä musisoineen kokoonpanon kuljettaessa tarinaa. Vuonna 2020 julkaistu albumi <i>Valentine</i> (Blue Note Records) on trion mestariteos, ja livenä musiikki löytää saa vielä uusia tasoja. Bill Frisell Trio myi edellisen Helsingin-keikkansa loppuun keväällä 2025, jonka jälkeen yhtyeen paluuta on odotettu innokkaaasti. Tänä vuonna 75-vuotisjuhlakonserttiensa myötä laajasti esiintynyt tyylikkään kitarismin mestari on uransa vedossa ja odotettavissa onkin jopa hurjat odotuksen ylittävä talvinen tiistai-ilta Savoyssa.</p><p>Bill Frisell Trion Helsingin-esiintymisen järjestäjänä toimii helsinkiläinen We Jazz, joka on hiljattain laajentanut toimintaansa levymerkkinsä, lehtensä ja festivaalituotantojensa ohella aktiiviseksi keikkajärjestäjäksi. We Jazz Agency järjestää keikkoja jatkossa säännöllisesti esitellen artisteja, joiden musiikkiin se uskoo. Erityisesti Helsingin keikkatarjonnan piristäminen ympärivuotisesti on We Jazzin fokuksessa.</p><p><i>“With Valentine, Frisell, Royston and Morgan revel in the tight but loose interplay that is a hallmark of the best groups, plying a course as deeply lyrical as it is adventurous. Feels like the beginning of a great adventure.”</i> — AllAboutJazz</p><p><i>\"Kitaristi Bill Frisell soittaa melkein mitä tahansa, mutta kuulostaa silti aina itseltään.\"</i> – Helsingin Sanomat</p><p>Ovet klo 18.00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69223/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69220", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/", "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/", "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/" }, "description": null, "price": { "fi": "24,80 € / 20 € / 15 €", "sv": "24,80 € / 20 € / 15 €", "en": "24,80 € / 20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384943, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T08:13:51.288141Z", "last_modified_time": "2026-06-04T08:13:51.288155Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793522.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384943/?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": "2026-06-04T08:13:51.178755Z", "last_modified_time": "2026-06-04T08:13:51.453857Z", "date_published": null, "start_time": "2026-10-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Will Funk For Food: A Fistful of Funk", "sv": "Will Funk For Food: A Fistful of Funk", "en": "Will Funk For Food: A Fistful of Funk" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.", "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk", "en": "http://www.kanneltalo.fi/en/events/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk" }, "description": { "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa. <br> <br>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>", "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69219", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/", "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/", "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/" }, "description": null, "price": { "fi": "24,80 € / 20 € / 15 €", "sv": "24,80 € / 20 € / 15 €", "en": "24,80 € / 20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384942, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T08:13:50.663782Z", "last_modified_time": "2026-06-04T08:13:50.663800Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793521.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384942/?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": "2026-06-04T08:13:50.513970Z", "last_modified_time": "2026-06-04T08:13:50.882563Z", "date_published": null, "start_time": "2026-10-23T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Will Funk For Food: A Fistful of Funk", "sv": "Will Funk For Food: A Fistful of Funk", "en": "Will Funk For Food: A Fistful of Funk" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.", "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk", "en": "http://www.kanneltalo.fi/en/events/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk" }, "description": { "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa.</p><p>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>", "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69218", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/", "sv": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/", "en": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/" }, "description": null, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384941, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T07:14:04.286037Z", "last_modified_time": "2026-06-04T07:14:04.286052Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793520.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384941/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T07:14:04.130603Z", "last_modified_time": "2026-06-04T07:14:04.508919Z", "date_published": null, "start_time": "2026-10-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Piirpauke", "sv": "Piirpauke", "en": "Piirpauke" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Maailmanmusiikin legenda Piirpauke konsertoi Kanneltalossa." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke", "en": "http://www.kanneltalo.fi/en/events/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke" }, "description": { "fi": "<p>Maailmanmusiikin legenda Piirpauke konsertoi Kanneltalossa.</p><p>Kiistatta kautta aikain suosituimpiin kotimaisiin instrumentaaliyhtyeisiin lukeutuva Piirpauke on sukeltanut vuosien saatossa ennakkoluulottomasti monien eri kulttuurien musiikkiperinteisiin, joihin lukeutuvat mm. nuevo flamenco, mbalax, jazz, progressiivinen rock, musica llanera sekä romanialainen ja turkkilainen musiikki. Piirpaukeen tuoreimman albumin <i>Lumon</i> hengessä Kanneltalon keikalla kuullaan muun muassa Jean Sibeliuksen, Oskari Merikannon, Toivo Kuulan, Selim Palmgrenin ja Yrjö Kilpisen sävellyksistä.</p><p>Vuonna 1975 syntynsä Pori Jazzeilla saaneen yhtyeen debyyttialbumia on myyty enemmän kuin mitään muuta Suomessa julkaistua pelkästään soitinmusiikkia sisältävää pitkäsoittoa. Laajaa arvostusta nauttiva, genrensä merkittävimpiin nimiin lukeutuva Piirpauke on merkittävän uransa aikana soittanut satoja konsertteja ympäri maailman ja esiintynyt samoilla areenoilla huippunimien, kuten Miles Davis, Ravi Shankar, Astor Piazzolla ja Nirvana, kanssa. <br> <br>Kokoonpano:<br>Sakari Kukko – piano, saksofonit, huilut<br>Matti Salo – kitarat<br>Ari Hossi – basso<br>Ilmari Heikinheimo – rummut, perkussiot</p><p>Kesto 2 t sis. väliaika</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68524", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/", "en": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/" }, "description": null, "price": { "fi": "17-77 €, S&D 139 €", "en": "17-77 €, S&D 139 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1913059, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-05T10:13:28.299302Z", "last_modified_time": "2026-05-05T10:13:28.299318Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913059/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-05T10:13:28.139623Z", "last_modified_time": "2026-06-03T15:13:24.014325Z", "date_published": null, "start_time": "2026-11-28T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "The Glanz of Berlin – Roaring 20’s show", "en": "The Glanz of Berlin – Roaring 20’s show" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "en": "Savoy Theatre" }, "short_description": { "fi": "Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!", "en": "Step into the wild, glittering night of 1920s Berlin!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ED206D52BE77B6A07C9B114AFABB9E15/The_Glanz_of_Berlin_Roaring_20_s_show", "en": "http://www.savoyteatteri.fi/en/events/event/ED206D52BE77B6A07C9B114AFABB9E15/The_Glanz_of_Berlin_Roaring_20_s_show" }, "description": { "fi": "<p>Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!</p><p>Dekadentteja iltoja, hurmaavaa loistoa, maailmanluokan esiintyjiä ja vastustamatonta musiikkia – <b>The Glanz of Berlin</b> on unohtumaton matka legendaariseen Berliinin kaksikymmentäluvun sykkeeseen. Esityksen tähtenä loistaa <b>Evi Niessner</b> – <i>The Voice of Vintage</i>, joka tuo Weimarin ajan yöelämän huuman tähän päivään.</p><p>The Glanz of Berlin on ilotulitusta: musiikkia, tanssia, akrobatiaa, kabareeta, huumoria ja vintage glamouria. Kansainvälinen live orkesteri <b>THE GLANZ</b> ympäröi yleisön jazzin, tangon ja swingin sävelillä.</p><p>Esitys yhdistää show’lle luodut koreografiat ja akrobaattiset numerot aitoihin Weimarin ajan kappaleisiin, niiden moderneihin sovituksiin ja täysin uusiin sävellyksiin kuten esityksen nimikkokappaleeseen <i>Glanz auf dem Vulkan</i>. 1920-luku ei ole koskaan kuulostanut näin raikkaalta ja sähäkältä.</p><p>Evi Niessnerin suunnittelema kokonaisuus - vaikuttavat videoprojisoinnit, draaman täyttämä valosuunnittelu ja ylelliset käsintehdyt puvut luovat lavalle hohtavan maailman, joka kutsuu sukeltamaan ajan henkeen.</p><p>Show’ta on esitetty Saksassa menestyksekkäästi vuodesta 2020 alkaen, sen saksankielisellä nimellä <i>Glanz auf dem Vulkan</i>. Esitys on ollut sekä yleisömenestys että kriitikkojen suosiossa. Nyt The Glanz of Berlin nähdään Suomessa ensimmäistä kertaa!</p><p>The Glanz of Berlin on kunnianosoitus 1920-luvun rohkeille naisille ja pelottomille taiteilijoille, jotka loivat aikakauden täynnä vapautta, luovuutta ja ennakkoluulottomuutta. Show muistuttaa, että taide, huumori ja intohimo ovat edelleen vahvimmat vastavoimamme elämän myllerryksille.</p><p><b>Luvassa on ainutlaatuinen taiteen, vapauden ja ihmisyyden juhla! Iloinen 20-luku on jälleen täällä!</b></p><p>Esityksen kieli: englanti ja saksa, suomenkielinen tekstitys</p><p>Kesto n. 2 h 20 min, sis. 30 min väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b><i>Show & Dinner</b></i><br>Tarjolla myös herkulliset <i>Show & Dinner</i> -paketit – nauti päivällistä teatterin yhteydessä sijaitsevassa Ravintola Minne Gardenissa ennen esitystä klo 17.00!</p><p><i>Show & Dinner liput 139 € sisältävät parhaat paikat, kolmen ruokalajin illallisen ja naulakkopalvelumaksun.</p><p><b><i>Show & Dinner -paketit ovat myynnissä omina lipputyyppeinään Lippu.fi verkkokaupassa. <br>Pe 27.11. on toistaiseksi täyteen varattu.</b></i></p><p>Menu-vaihtoehdot:</p><p><b>Kabaree 1920</b><br>Porsaanpotkaterriiniä, hyydytettyä madeiralientä ja knöödeliä L<br>Yön yli mureaksi haudutettu häränrinta-sauerbraten, punakaalipaistosta ja perunafondant L,G<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L<br> <br><b>Grün 1920 (kasvismenu)</b><br>Maa-artisokkakeittoa L,G<br>Kotijuustoschnitzel, savojinkaalta ja perunafondant L<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L</p><p>- Menun hinta ei sisällä juomia.<br>- Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua (klo 17.00).<br>- Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p><b>Jatkot 1920-luvun hengessä</b><br>Perjantain esityksen jälkeen luvassa myös riemukkaat 20-luvun jatkobileet salakapakkahenkeen muuntautuvassa Ravintola Minnessä n. klo 21.15-00.00. Vapaa pääsy! Savoy-teatterin narikka palvelee jatkojen loppuun saakka.</p>", "en": "<p>Step into the wild, glittering night of 1920s Berlin!</p><p>Decadent evenings, dazzling glamour, world class performers and irresistible music – <b>The Glanz of Berlin</b> is an unforgettable journey into the legendary pulse of Berlin in the Roaring Twenties. Shining at the heart of the show is <b>Evi Niessner – The Voice of Vintage</b>, who brings the intoxicating nightlife of the Weimar era vividly into the present day.</p><p><b>The Glanz of Berlin</b> is a spectacular fireworks display of music, dance, acrobatics, cabaret, humor, and vintage glamour. The international live orchestra <b>THE GLANZ</b> surrounds the audience with the sounds of jazz, tango, and swing.</p><p>The show combines specially created choreography and acrobatic numbers with authentic Weimar era songs, their modern arrangements, and entirely new compositions, including the show’s signature piece <i>Glanz auf dem Vulkan</i>. The 1920s have never sounded this fresh or electrifying.</p><p>Designed by Niessner – the stunning video projections, drama filled lighting design, and luxurious handmade costumes create a luminous world on stage that invites the audience to dive into the spirit of the era.</p><p>The show has been performed to great success in Germany since 2020, known as Glanz auf dem Vulkan, winning both audiences and critics alike. <b>Now, The Glanz of Berlin arrives in Finland for the very first time!</b></p><p><b>The Glanz of Berlin</b> is a tribute to the bold women and fearless artists of the 1920s who created an era defined by freedom, creativity, and open mindedness. The show reminds us that art, humor, and passion remain our strongest forces in times of turbulence.</p><p><b>An extraordinary celebration of art, freedom, and humanity awaits! The Roaring Twenties are here again!</b></p><p>Languages: English and German, with Finnish subtitles</p><p>Duration: 2 h 20 min, including a 30 minute intermission</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><b><i>Show & Dinner</b></i><br>Delicious <i>Show & Dinner</i> packages are also available – enjoy dinner at Restaurant Minne Garden, located in connection with the theater, before the performance at 5:00 PM.</p><p><i>Show & Dinner tickets (€139) include the best seats, a three course dinner, and cloakroom service.</p><p>Menu options</p><p><b>Kabaree 1920</b><br>Pork hock terrine with jellied Madeira jus and dumpling (L)<br>Slow braised beef sauerbraten, sautéed red cabbage and potato fondant (L,G)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p><b>Grün 1920 (vegetarian menu)</b><br>Jerusalem artichoke soup (L,G)<br>House cheese schnitzel, savoy cabbage and potato fondant (L)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p>Please note:<br>The menu price does not include beverages.<br>Dinner is served at Restaurant Minne Garden in the Savoy Theatre two hours before the performance (at 5:00 PM).<br>Special dietary requirements are accommodated with advance notice (no later than three days before the performance).</p><p><b>Afterparty in 1920s Style</b><br>After the Friday performance, the celebration continues with joyous Roaring Twenties themed afterparty festivities at Restaurant Minne, Free admission! The Savoy Theatre cloakroom will remain open until the end of the afterparty.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68523", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/", "en": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/" }, "description": null, "price": { "fi": "17-77 €, S&D 139 €", "en": "17-77 €, S&D 139 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1913057, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-05T10:13:27.751991Z", "last_modified_time": "2026-05-05T10:13:27.752004Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789968.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913057/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-05T10:13:27.571258Z", "last_modified_time": "2026-06-03T15:13:23.676603Z", "date_published": null, "start_time": "2026-11-27T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "The Glanz of Berlin – Roaring 20’s show", "en": "The Glanz of Berlin – Roaring 20’s show" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "en": "Savoy Theatre" }, "short_description": { "fi": "Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!", "en": "Step into the wild, glittering night of 1920s Berlin!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/53B3685E5B1C3F9D0B722FA5726C767C/The_Glanz_of_Berlin_Roaring_20_s_show", "en": "http://www.savoyteatteri.fi/en/events/event/53B3685E5B1C3F9D0B722FA5726C767C/The_Glanz_of_Berlin_Roaring_20_s_show" }, "description": { "fi": "<p>Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!</p><p>Dekadentteja iltoja, hurmaavaa loistoa, maailmanluokan esiintyjiä ja vastustamatonta musiikkia – <b>The Glanz of Berlin</b> on unohtumaton matka legendaariseen Berliinin kaksikymmentäluvun sykkeeseen. Esityksen tähtenä loistaa <b>Evi Niessner</b> – <i>The Voice of Vintage</i>, joka tuo Weimarin ajan yöelämän huuman tähän päivään.</p><p>The Glanz of Berlin on ilotulitusta: musiikkia, tanssia, akrobatiaa, kabareeta, huumoria ja vintage glamouria. Kansainvälinen live orkesteri <b>THE GLANZ</b> ympäröi yleisön jazzin, tangon ja swingin sävelillä.</p><p>Esitys yhdistää show’lle luodut koreografiat ja akrobaattiset numerot aitoihin Weimarin ajan kappaleisiin, niiden moderneihin sovituksiin ja täysin uusiin sävellyksiin kuten esityksen nimikkokappaleeseen <i>Glanz auf dem Vulkan</i>. 1920-luku ei ole koskaan kuulostanut näin raikkaalta ja sähäkältä.</p><p>Evi Niessnerin suunnittelema kokonaisuus - vaikuttavat videoprojisoinnit, draaman täyttämä valosuunnittelu ja ylelliset käsintehdyt puvut luovat lavalle hohtavan maailman, joka kutsuu sukeltamaan ajan henkeen.</p><p>Show’ta on esitetty Saksassa menestyksekkäästi vuodesta 2020 alkaen, sen saksankielisellä nimellä <i>Glanz auf dem Vulkan</i>. Esitys on ollut sekä yleisömenestys että kriitikkojen suosiossa. Nyt The Glanz of Berlin nähdään Suomessa ensimmäistä kertaa!</p><p>The Glanz of Berlin on kunnianosoitus 1920-luvun rohkeille naisille ja pelottomille taiteilijoille, jotka loivat aikakauden täynnä vapautta, luovuutta ja ennakkoluulottomuutta. Show muistuttaa, että taide, huumori ja intohimo ovat edelleen vahvimmat vastavoimamme elämän myllerryksille.</p><p><b>Luvassa on ainutlaatuinen taiteen, vapauden ja ihmisyyden juhla! Iloinen 20-luku on jälleen täällä!</b></p><p>Esityksen kieli: englanti ja saksa, suomenkielinen tekstitys</p><p>Kesto n. 2 h 20 min, sis. 30 min väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b><i>Show & Dinner</b></i><br>Tarjolla myös herkulliset <i>Show & Dinner</i> -paketit – nauti päivällistä teatterin yhteydessä sijaitsevassa Ravintola Minne Gardenissa ennen esitystä klo 17.00!</p><p><i>Show & Dinner liput 139 € sisältävät parhaat paikat, kolmen ruokalajin illallisen ja naulakkopalvelumaksun.</p><p><b><i>Show & Dinner -paketit ovat myynnissä omina lipputyyppeinään Lippu.fi verkkokaupassa. <br>Pe 27.11. on toistaiseksi täyteen varattu.</b></i></p><p>Menu-vaihtoehdot:</p><p><b>Kabaree 1920</b><br>Porsaanpotkaterriiniä, hyydytettyä madeiralientä ja knöödeliä L<br>Yön yli mureaksi haudutettu häränrinta-sauerbraten, punakaalipaistosta ja perunafondant L,G<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L<br> <br><b>Grün 1920 (kasvismenu)</b><br>Maa-artisokkakeittoa L,G<br>Kotijuustoschnitzel, savojinkaalta ja perunafondant L<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L</p><p>- Menun hinta ei sisällä juomia.<br>- Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua (klo 17.00).<br>- Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p><b>Jatkot 1920-luvun hengessä</b><br>Perjantain esityksen jälkeen luvassa myös riemukkaat 20-luvun jatkobileet salakapakkahenkeen muuntautuvassa Ravintola Minnessä n. klo 21.15-00.00. Vapaa pääsy! Savoy-teatterin narikka palvelee jatkojen loppuun saakka.</p>", "en": "<p>Step into the wild, glittering night of 1920s Berlin!</p><p>Decadent evenings, dazzling glamour, world class performers and irresistible music – <b>The Glanz of Berlin</b> is an unforgettable journey into the legendary pulse of Berlin in the Roaring Twenties. Shining at the heart of the show is <b>Evi Niessner – The Voice of Vintage</b>, who brings the intoxicating nightlife of the Weimar era vividly into the present day.</p><p><b>The Glanz of Berlin</b> is a spectacular fireworks display of music, dance, acrobatics, cabaret, humor, and vintage glamour. The international live orchestra <b>THE GLANZ</b> surrounds the audience with the sounds of jazz, tango, and swing.</p><p>The show combines specially created choreography and acrobatic numbers with authentic Weimar era songs, their modern arrangements, and entirely new compositions, including the show’s signature piece <i>Glanz auf dem Vulkan</i>. The 1920s have never sounded this fresh or electrifying.</p><p>Designed by Niessner – the stunning video projections, drama filled lighting design, and luxurious handmade costumes create a luminous world on stage that invites the audience to dive into the spirit of the era.</p><p>The show has been performed to great success in Germany since 2020, known as Glanz auf dem Vulkan, winning both audiences and critics alike. <b>Now, The Glanz of Berlin arrives in Finland for the very first time!</b></p><p><b>The Glanz of Berlin</b> is a tribute to the bold women and fearless artists of the 1920s who created an era defined by freedom, creativity, and open mindedness. The show reminds us that art, humor, and passion remain our strongest forces in times of turbulence.</p><p><b>An extraordinary celebration of art, freedom, and humanity awaits! The Roaring Twenties are here again!</b></p><p>Languages: English and German, with Finnish subtitles</p><p>Duration: 2 h 20 min, including a 30 minute intermission</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><b><i>Show & Dinner</b></i><br>Delicious <i>Show & Dinner</i> packages are also available – enjoy dinner at Restaurant Minne Garden, located in connection with the theater, before the performance at 5:00 PM.</p><p><i>Show & Dinner tickets (€139) include the best seats, a three course dinner, and cloakroom service.</p><p>Menu options</p><p><b>Kabaree 1920</b><br>Pork hock terrine with jellied Madeira jus and dumpling (L)<br>Slow braised beef sauerbraten, sautéed red cabbage and potato fondant (L,G)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p><b>Grün 1920 (vegetarian menu)</b><br>Jerusalem artichoke soup (L,G)<br>House cheese schnitzel, savoy cabbage and potato fondant (L)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p>Please note:<br>The menu price does not include beverages.<br>Dinner is served at Restaurant Minne Garden in the Savoy Theatre two hours before the performance (at 5:00 PM).<br>Special dietary requirements are accommodated with advance notice (no later than three days before the performance).</p><p><b>Afterparty in 1920s Style</b><br>After the Friday performance, the celebration continues with joyous Roaring Twenties themed afterparty festivities at Restaurant Minne, Free admission! The Savoy Theatre cloakroom will remain open until the end of the afterparty.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68523/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68128", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://web.lippu.fi/palautus/" }, "description": null, "price": { "fi": "22,80-43,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494939, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T14:13:08.352861Z", "last_modified_time": "2026-02-24T14:13:08.352874Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785683.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494939/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-24T14:13:08.241624Z", "last_modified_time": "2026-06-03T12:14:23.057024Z", "date_published": null, "start_time": "2026-12-12T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTU: Duke Robillard & Band (USA) – KONSERTTI ON PERUTTU!" }, "location_extra_info": null, "provider": { "fi": "Deelen Consultancies" }, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/992DB2600727E0DEE674AA66BD9D3F82/PERUTTU_Duke_Robillard_Band_USA_" }, "description": { "fi": "<p><b>La 12.12.2026 Duke Robillard & Band -konsertti peruuntuu Savoy-teatterista ja tapahtumajärjestäjästä (Deelen Consultancies) riippumattomista syistä.</b></p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta ma 30.11.2026 mennessä.<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>****</p><p>Ainutkertainen merkkivuosi-show - ainoa konsertti Suomessa.</p><p><b>Duke Robillard</b> on ainutlaatuinen bluesin tulkitsija ja tyyliniekka.</p><p>Hän on uudelleen määritellyt bluesin genren ja jättänyt jälkensä siihen niin käänteentekevillä sooloalbumeillaan Rounders-levymerkille kuin legendaarisine yhteistöineen Roomful of Blues ja The Fabulous Thunderbirds yhtyeiden kanssa.</p><p>Robillardin viimevuotinen show Savoy-teatterissa oli yksi meidän kriittisesti menestyneimmistä konserteistamme koko vuonna. Tämän vuoksi Duke palaa uudestaan ja lupaa tällä kertaa vielä erityisemmän shown, joka tarjoilee lukuisia musiikillisia kohokohtia hänen menneisyydestään. Duke on aina tuntenut erityistä yhteyttä Suomeen ja on iloinen saadessaan tuoda shown ainukertaisena kokemuksena Savoy-teatteriin.</p><p>Robillard tuo mukanaan jälleen saman hienon bändin, <b>The Blues Delights</b>, joka yllätti kaikki viime kerralla. Mukana on <b>Damien Daigneua</b> pianossa ja laulussa, <b>Matteo Giannetti</b> bassossa, <b>Matthieu Gastaldi</b> rummuissa, <b>Franck Mottin</b> saksofonissa ja <b>David Cayrou</b> trumpetissa.</p><p>Luvassa on todella mahtava ilta niin bluesmusiikin ystäville kuin kelle tahansa musiikin ystävälle. Duke Robillard on taiteensa mestari, joka yhä 78-vuotiaana jatkaa yllättämistä ja ilahduttamista tavaramerkiksi muodostuneella kitarasoundillaan ja sielukkaalla laulullaan.</p><p>Ei kannata missata.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68128/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpi24ikqm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ioou/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-03T11:44:47.145045Z", "last_modified_time": "2026-06-03T11:44:47.145062Z", "date_published": null, "start_time": "2026-12-10T08:00:00Z", "end_time": "2026-12-10T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "info_url": null, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>13.8.</p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ikqm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpi24ilma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ioou/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-03T11:44:47.030117Z", "last_modified_time": "2026-06-03T11:44:47.030133Z", "date_published": null, "start_time": "2026-11-12T08:00:00Z", "end_time": "2026-11-12T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "info_url": null, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>13.8.</p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ilma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpi24il7e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ioou/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-03T11:44:46.910811Z", "last_modified_time": "2026-06-03T11:44:46.910827Z", "date_published": null, "start_time": "2026-11-05T08:00:00Z", "end_time": "2026-11-05T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "info_url": null, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>13.8.</p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24il7e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpi24imsu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ioou/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-03T11:44:46.798151Z", "last_modified_time": "2026-06-03T11:44:46.798166Z", "date_published": null, "start_time": "2026-10-08T07:00:00Z", "end_time": "2026-10-08T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "info_url": null, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>13.8.</p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24imsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }