Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=119
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=120", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=118" }, "data": [ { "id": "espoo_le:agmk23euey", "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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23etm4/?format=api" } ], "images": [ { "id": 150380, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-28T11:55:37.590301Z", "last_modified_time": "2024-03-28T11:55:37.590319Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-16_1.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kaksi seniori-ikäistä tutkivat tablettia ja puhelinta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-31T13:00:45.325233Z", "last_modified_time": "2024-12-31T13:00:45.325255Z", "date_published": null, "start_time": "2025-01-09T09:00:00Z", "end_time": "2025-05-22T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Tietotekniikkaopastusta senioreille", "sv": "Informationsteknisk vägledning för seniorer", "en": "Information technology guidance for seniors" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "short_description": { "fi": "Haluaisitko apua ja neuvoja tietokoneen, internetin tai sähköpostin peruskäyttöön?", "sv": "Vill du ha hjälp och råd om grundläggande dator-, internet- eller e-postanvändning?", "en": "Would you like help and advice on basic computer, internet or e-mail use?" }, "description": { "fi": "<p>Haluaisitko apua ja neuvoja tietokoneen, internetin tai sähköpostin peruskäyttöön?</p><p>Enter ry:n maksutonta tietotekniikkaopastuksia on tarjolla Entressen kirjastossa ajanvarauksella torstaisin 9.1.- 22.5.2025 kello 11 - 13 .</p><p>Opastus tapahtuu asiakkaan omalla kannettavalla tietokoneella, mobiililaitteella tai kirjaston asiakaskoneella. Opastuksissa käydään läpi tietokoneen käytön ja internetin palveluiden perusteita. Opastus kestää yhden tunnin. Opastusaika varataan etukäteen joko puhelimitse numerossa 09 8165 3776 tai paikan päällä kirjastossa. Asiakkaalla voi olla opastukseen vain yksi varaus kerrallaan.</p><p>Enter ry on tieto- ja viestintätekniikasta sekä vapaaehtoistoiminnasta kiinnostuneiden eläkeläisten yhdistys. Yhdistyksen kotisivu: Enter ry.</p>", "sv": "<p>Vill du ha hjälp och råd om grundläggande dator-, internet- eller e-postanvändning?</p><p>Enter rys kostnadsfria informationstekniska vägledning finns på Entresse-biblioteket efter överenskommelse torsdagarna den 9.1.- 22.5.2025 från 11.00 till 13.00.</p><p>Handledning sker på kundens egen laptop, mobila enhet eller biblioteksklientdator. Handledningarna täcker grunderna för datoranvändning och internettjänster. Instruktionen varar en timme. Guidetid bokas i förväg antingen på telefon 09 8165 3776 eller på plats på biblioteket. Kunden kan endast ha en reservation åt gången för vägledning.</p><p>Enter ry är en sammanslutning av pensionärer som är intresserade av informations- och kommunikationsteknik och volontärarbete. Föreningens hemsida: Enter ry.</p>", "en": "<p>Would you like help and advice on basic computer, internet or e-mail use?</p><p>Enter ry's free information technology guidance is available at the Entresse library by appointment on Thursdays, 9.1.- 22.5.2025 at 11.00-13.00</p><p>Guidance takes place on the customer's own laptop, mobile device or library client computer. The tutorials cover the basics of computer use and internet services. The instruction lasts one hour. Guide time is booked in advance either by phone at 09 8165 3776 or on site at the library. The customer can only have one reservation for guidance at a time.</p><p>Enter ry is an association of pensioners interested in information and communication technology and volunteering. The association's website: Enter ry.</p>" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "info_url": { "fi": "https://www.entersenior.fi/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23euey/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ev3e", "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: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:p916/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eu4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23evma/?format=api" } ], "images": [ { "id": 150463, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T12:32:51.773869Z", "last_modified_time": "2024-03-13T12:32:51.773892Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Yoga.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuva joogaavista naisista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150463/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T12:54:58.687770Z", "last_modified_time": "2024-12-31T12:54:58.687790Z", "date_published": null, "start_time": "2025-01-13T16:30:00Z", "end_time": "2025-05-26T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Jooga tunti ", "sv": "Yoga", "en": " Yoga" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "short_description": { "fi": "Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.", "sv": "Kom när du vill och så länge du vill.", "en": "Feel free to join at any time " }, "description": { "fi": "<p>Joogaa aloittelijoille maanantai-iltaisin klo 18.30-19.30 Sinisessä huoneessa.</p><p><br></p><p>Jooga voi:</p><p>Parantaa mielen keskittymiskykyä</p><p>Lisätä joustavuutta ja notkeutta</p><p>Poistaa fyysistä ja henkistä jännitystä</p><p>Elvyttää energia-tasoa</p><p>Parantaa terveyttä</p><p><br></p><p>Jooga-tunti sisältää:</p><p>Lämmittely-harjoituksia</p><p>Joogan perus-asentoja</p><p>Johdatuksen meditaatioon</p><p><br></p><p>Ota mukaasi oma jooga-mattosi.</p><p>Tule pukeutuneena mukaviin vaatteisiin.</p><p>Kokenut ohjaaja Lynda Bott (sairaanhoitaja ja jooga-hoitojen terapeutti)</p><p>Tunti on ilmainen.</p><p>Lisätietoja saat osoitteesta: lyndabott@hotmail.com….</p><p>Tunti on englanninkielinen suomenkielisellä käännöksellä.</p><p>www.anandamarga.fi</p>", "sv": "<p>Yoga på måndagskvällar kl. 18.30-19.30 Sininen huone</p><p>Kom när du vill och så länge du vill.</p><p>Yoga kan:</p><p>Förbättra det mentala fokuset</p><p>Öka flexibilitet och smidighet</p><p>lindra fysiska och mentala spänningar</p><p>Återuppliva energinivåerna</p><p>Förbättra hälsan</p><p>En yogaklass innehåller:</p><p>Uppvärmningsövningar</p><p>Grundläggande yogaställningar</p><p>Introduktion till meditation</p><p>Ta med din egen yogamatta.</p><p>Kom klädd i bekväma kläder.</p>", "en": "<p>Yoga on Monday evenings at 18.30-19.30 in the Sininen huone</p><p>Improve concentration of mind</p><p>Enhance flexibility</p><p>Remove physical and mental tension</p><p>Revitalize your energy</p><p>Improve health</p><p>It includes:</p><p>Warm up exercises</p><p>Basic yoga posture</p><p>Introduction to meditation</p><p>Bring your own yoga mat</p><p>Wear comfortable clothing</p><p>An experienced instructor, Lynda Bott (medical nurse, yogic treatments therapist)</p><p>The class is free as a service to the local community. (Ananda Marga Yoga association Finland www.anandamarga.fi)</p><p>For more information contact lyndabott@hotmail.com</p><p>The class will be in English with Finnish translation.</p>" }, "provider": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ev3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64832", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/event/roots-musiikin-evoluutio-malmitalo-19422537/", "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422537/", "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422537/" }, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153598, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T12:15:42.034738Z", "last_modified_time": "2024-12-31T12:15:42.034821Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760396.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153598/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T12:15:42.005681Z", "last_modified_time": "2024-12-31T12:15:42.108848Z", "date_published": null, "start_time": "2025-04-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Jani Forsman & The Sleepwalkers – Roots-musiikin evoluutio vol 10.", "sv": "Jani Forsman & The Sleepwalkers – Rootsmusikens evolution vol. 10", "en": "Jani Forsman & The Sleepwalkers – Evolution of Roots Music, Vol. 10" }, "location_extra_info": null, "short_description": { "fi": "Nostalgiannälkäisten ykkössuosikki The Sleepwalkers ammentaa aidot ja autenttiset vaikutteensa suoraan 60-luvun rautalanka- ja beat-musiikista.", "sv": "De nostalgisugnas toppfavorit The Sleepwalkers inhämtar sin äkta och autentiska inspiration direkt ur 60-talets ståltråds- och beatmusik.", "en": "The Sleepwalkers, the number one favourite among fans of nostalgia, draws its genuine and authentic influences directly from ‘60s Finnish instrumental rock and beat music." }, "description": { "fi": "<p>Nostalgiannälkäisten ykkössuosikki The Sleepwalkers ammentaa aidot ja autenttiset vaikutteensa suoraan 60-luvun rautalanka- ja beat-musiikista.</p><p>Yhtye toteuttaa kyseisen aikakauden klassisia piirteitä tinkimättömästi ja tyylikkäästi - niin soitossaan, ulkoasussaan kuin myös The Shadows-tyylisessä lavakoreografiassaan. Näillä ominaisuuksilla The Sleepwalkers onkin saavuttanut nostalgiannälkäisen yleisön suosion.</p><p>The Sleepwalkers on vuonna 2000 pääkaupunkiseudulla perustettu yhtye, joka aloitti instrumentaalimusiikin esittäjänä, mutta on vuodesta 2018 tehnyt tiivistä yhteistyötä laulusolistin kanssa. Nykyään yhtyeen ohjelmisto sisältää sekä instrumentaaleja että lauluja.</p><p>Vuosi 2025 on The Sleepwalkersille juhlavuosi, kun yhtye täyttää 25 vuotta.</p><p><b>Nykyinen kokoonpano:</b><br>Jan-Erik Saine - soolokitara (The Sounds, The Crescents, T-Bird Gang ym.) <br>Ben Engblom - komppikitara (The Quiets, The Crescents, Husky & The Sandmen ym.)</p><p>Kesto: noin 2 tuntia, sis. 20 min väliajan<br>Jari Haavistola - bassokitara (Silver Bullets, Cast Iron Arms, Greased Lightning) <br>Mikko Lund - rummut (Pekka Tiilikainen & Beatmakers ym.) <br>Jani Forsman - laulu (Jani & Jetsetters ym.)</p>", "sv": "<p>De nostalgisugnas toppfavorit The Sleepwalkers inhämtar sin äkta och autentiska inspiration direkt ur 60-talets ståltråds- och beatmusik.</p><p>Bandet förverkligar de klassiska dragen för denna tidsera på ett kompromisslöst och stiligt sätt – både i musiken, utseendet och scenkoreografin i The Shadows-stil. Med dessa egenskaper har The Sleepwalkers uppnått framgång bland den nostalgisugna publiken.</p><p>The Sleepwalkers är ett band som har grundats i huvudstadsregionen år 2000. Bandet började med att spela instrumentalmusik, men har sedan år 2018 samarbetat intensivt med en sångsolist. I dag innefattar bandets program både instrumentalmusik och låtar.</p><p>2025 är ett jubileumsår för The Sleepwalkers, som fyller 25 år.</p><p><b>Nuvarande ensemble:</b><br>Jan-Erik Saine – sologitarr (The Sounds, The Crescents, T-Bird Gang m.fl.) <br>Ben Engblom – kompgitarr (The Quiets, The Crescents, Husky & The Sandmen m.fl.) <br>Jari Haavistola – basgitarr (Silver Bullets, Cast Iron Arms, Greased Lightning) <br>Mikko Lund – trummor (Pekka Tiilikainen & Beatmakers m.fl.) <br>Jani Forsman – sång (Jani & Jetsetters m.fl.)</p><p>Längd: Cirka två timmar, inklusive en paus på 20 minuter</p>", "en": "<p>The Sleepwalkers, the number one favourite among fans of nostalgia, draws its genuine and authentic influences directly from ‘60s Finnish instrumental rock and beat music.</p><p>The band embodies the classic elements of the era without compromise and with style – in their playing, appearance and The Shadows-style stage choreography. These features have made The Sleepwalkers a hit with the nostalgia-hungry public.</p><p>The Sleepwalkers is a band formed in 2000 in the Helsinki Metropolitan Area. It started out as an instrumental band but, since 2018, has been working closely with a lead vocalist. Nowadays, the band’s repertoire includes both instrumentals and songs.</p><p>2025 will mark the 25th anniversary of The Sleepwalkers. <br> <br><b>Current line-up:</b><br>Jan-Erik Saine – lead guitar (The Sounds, The Crescents, T-Bird Gang, etc.) <br>Ben Engblom – rhythm guitar (The Quiets, The Crescents, Husky & The Sandmen, etc.) <br>Jari Haavistola – bass guitar (Silver Bullets, Cast Iron Arms, Greased Lightning) <br>Mikko Lund – drums (Pekka Tiilikainen & Beatmakers, etc.) <br>Jani Forsman - vocals (Jani & Jetsetters, etc.)</p><p>Duration: Approximately two hours, incl. 20 min intermission</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BF43DB1865CBC6C9AA3BCE6FB93A0C1F/Jani_Forsman_The_Sleepwalkers", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BF43DB1865CBC6C9AA3BCE6FB93A0C1F/Jani_Forsman_The_Sleepwalkers", "en": "http://www.malmitalo.fi/en/events/event/BF43DB1865CBC6C9AA3BCE6FB93A0C1F/Jani_Forsman_The_Sleepwalkers" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64832/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64831", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/event/aija-puurtinen-brooklynin-satu-malmitalo-19422609/", "sv": "https://www.lippu.fi/event/aija-puurtinen-brooklynin-satu-malmitalo-19422609/", "en": "https://www.lippu.fi/event/aija-puurtinen-brooklynin-satu-malmitalo-19422609/" }, "price": { "fi": "33,80 € / 28,80 €", "sv": "33,80 € / 28,80 €", "en": "33,80 € / 28,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T12:15:39.345338Z", "last_modified_time": "2024-12-31T12:15:39.345385Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760394.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T12:15:39.301271Z", "last_modified_time": "2024-12-31T12:15:39.462270Z", "date_published": null, "start_time": "2025-04-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Aija Puurtinen & Brooklynin Satu – Julmat Jäähyväiset -levynjulkaisukonsertti", "sv": "Aija Puurtinen & Brooklynin Satu – Skivsläppskonsert Julmat Jäähyväiset", "en": "Aija Puurtinen & Brooklynin Satu – Julmat Jäähyväiset (Cruel Farewells) album release concert" }, "location_extra_info": null, "short_description": { "fi": "Aija Puurtinen & Brooklynin Satu on musiikin keinoin toteutettu aikamatka amerikansuomalaiseen siirtolaisuuteen ja sen mielenmaisemaan.", "sv": "Aija Puurtinen & Brooklynin Satu är en tidsresa till den amerikafinländska emigrationen och dess själslandskap som genomförs med musikens metoder.", "en": "Aija Puurtinen & Brooklynin Satu is a musical journey back in time to Finnish-American immigration and its psychological landscape." }, "description": { "fi": "<p>Aija Puurtinen & Brooklynin Satu on musiikin keinoin toteutettu aikamatka amerikansuomalaiseen siirtolaisuuteen ja sen mielenmaisemaan.</p><p>Aija Puurtinen & Brooklynin satu on musiikin keinoin toteutettu aikamatka amerikansuomalaiseen siirtolaisuuteen ja sen mielenmaisemaan. Tarjolla on akustisesti ja puoliakustisesti toteutettua, sekä suomeksi että ”fingelskaksi” esitettyä, voimakkaasti sekä suomalaisesta että amerikkalaisesta kansanmusiikista ammentavaa epookkia. Mausteena on folkia, bluesia ja jopa jamaikalaisia aineksia. <br> <br>Suomesta lähti ennen toista maailmansotaa Pohjois-Amerikkaan kolmannesmiljoona siirtolaista. Basisti ja laulaja Aija Puurtinen on säveltänyt Perttu Hemmingin finglishiä hyödyntäviin teksteihin uusia, muuttoliikkeen erilaisia ulottuvuuksia ja ajanjaksoja ilmentäviä siirtolaislauluja. Niissä tarinoidaan menneisyyteen haikaillen, hiljentyen ja huvitellen. <br> <br>Konsertissa kuullaan materiaalia keväällä 2025 ilmestyvältä albumilta \"Julmat Jäähyväiset\" sekä kolmelta aiemmin julkaistuilta levyiltä ”Brooklynin satu”, ”Lännen maata” ja ”Sudbury Tango”!</p><p>Kesto: 1 tunti 30 min, sis. 20 min väliajan</p>", "sv": "<p>Aija Puurtinen & Brooklynin Satu är en tidsresa till den amerikafinländska emigrationen och dess själslandskap som genomförs med musikens metoder.</p><p>Aija Puurtinen & Brooklynin Satu är en tidsresa till den amerikafinländska emigrationen och dess själslandskap som genomförs med musikens metoder. Vi bjuds på akustiskt och halvakustiskt genomförd epok, som framförs både på finska och “fingelska” och som påverkas kraftigt av både finländsk och amerikansk folkmusik. Folk, blues och till och med jamaicanska ingredienser ger krydda. <br> <br>Före andra världskriget åkte en tredjedels miljon emigranter från Finland till Nordamerika. Basisten och sångerskan Aija Puurtinen har komponerat nya emigrantsånger som avspeglar emigrationens olika dimensioner och tidsperioder till Perttu Hemmings texter på finglish. Dessa berättar om det förflutna på ett nostalgiskt, stilla och roligt sätt. <br> <br>På konserten får vi höra material från albumet “Julmat Jäähyväiset” som släpps våren 2025 samt från de tre tidigare släppta albumen Brooklynin satu”, “Lännen maata” och “Sudbury Tango”!</p>", "en": "<p>Aija Puurtinen & Brooklynin Satu is a musical journey back in time to Finnish-American immigration and its psychological landscape.</p><p>Aija Puurtinen & Brooklynin Satu is a musical journey back in time to Finnish-American immigration and its psychological landscape. It features acoustic and semi-acoustic performances in both Finnish and “Fingelska”, drawing heavily on Finnish and American folk music to evoke the period. The performance is flavoured with folk, blues and even Jamaican elements. <br> <br>Before the Second World War, a third of a million immigrants left Finland for North America. Bassist and singer Aija Puurtinen has composed new immigrant songs based on Perttu Hemminki’s Finglish lyrics, reflecting the different dimensions and periods of immigration. They tell stories of the past in nostalgic, reflective and amusing ways. <br> <br>The concert will feature material from the album Julmat Jäähyväiset, which will be released in the spring of 2025, as well as from three previously released albums, Brooklynin satu, Lännen maata and Sudbury Tango!</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/02C1E36BE224AB92FA99E80ED995BAD0/Aija_Puurtinen_Brooklynin_Satu_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/02C1E36BE224AB92FA99E80ED995BAD0/Aija_Puurtinen_Brooklynin_Satu_", "en": "http://www.malmitalo.fi/en/events/event/02C1E36BE224AB92FA99E80ED995BAD0/Aija_Puurtinen_Brooklynin_Satu_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64831/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65333", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/amadeus-lundberg-mustalaisviulu-vuotalo-19567026/", "sv": "https://www.lippu.fi/event/amadeus-lundberg-mustalaisviulu-vuotalo-19567026/", "en": "https://www.lippu.fi/event/amadeus-lundberg-mustalaisviulu-vuotalo-19567026/" }, "price": { "fi": "35,90 € / 33,90 €", "sv": "35,90 € / 33,90 €", "en": "35,90 € / 33,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153595, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T11:14:05.270876Z", "last_modified_time": "2024-12-31T11:14:05.270892Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761787.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153595/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T11:14:05.237246Z", "last_modified_time": "2024-12-31T11:14:05.333526Z", "date_published": null, "start_time": "2025-04-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Amadeus Lundberg - mustalaisviulukonsertti", "sv": "Amadeus Lundberg - mustalaisviulukonsertti", "en": "Amadeus Lundberg - mustalaisviulukonsertti" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa kuulemaan parhaita mustalaismusiikin klassikoita niin Suomesta kuin kansainvälisiltä areenoilta, huippumuusikoiden esittämänä!", "sv": "Välkommen att höra zigenarmusikens bästa klassiker både från Finland och internationella arenor, framförda av toppmusiker!", "en": "Join us to hear the best gypsy music classics from Finland and international arenas, performed by top musicians!" }, "description": { "fi": "<p>Tervetuloa kuulemaan parhaita mustalaismusiikin klassikoita niin Suomesta kuin kansainvälisiltä areenoilta, huippumuusikoiden esittämänä!</p><p>Tämä romanimusiikin konsertti romanien kansallispäivän jälkimeiningeissä sisältää mm. Horttokaalon ja Gipsy Kingsin suosituimmat kappaleet.</p><p>Orkestroinnista vastaa nelihenkinen bändi, mukaan lukien Amadeus Lundbergin ainutlaatuinen kitaransoitto. Kapellimestarina toimii arvostettu harmonikkavirtuoosi Samuli Jokinen ja viulussa sädehtii viulutaiteilija Lotta Marie Virkkunen sekä taitava kontrabasisti Juuso Kilpeä antaa sykettä.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>", "sv": "<p>Välkommen att höra zigenarmusikens bästa klassiker både från Finland och internationella arenor, framförda av toppmusiker!</p><p>Denna konsert med rommusik i efterdyningarna till romernas nationaldag innefattar de populäraste låtarna av bland annat Horttokaalo och Gipsy Kings.</p><p>Ett fyra personers band svarar för orkestreringen, inklusive Amadeus Lundbergs unika gitarrspel. Som kapellmästare fungerar den uppskattade dragspelsvirtuosen Samuli Jokinen och på violin strålar violinkonstnären Lotta Marie Virkkunen, medan den skicklige kontrabasisten Juuso Kilpeä ger puls.</p><p>Längd: 2 t</p>", "en": "<p>Join us to hear the best gypsy music classics from Finland and international arenas, performed by top musicians!</p><p>This concert of Roma music following Roma National Day celebrations will include the most popular songs of Hortto Kaalo and the Gipsy Kings.</p><p>The instrumentation is in the hands of a four-piece band, including the unique guitar playing of Amadeus Lundberg. The conductor will be the acclaimed accordion virtuoso Samuli Jokinen, while violinist Lotta Marie Virkkunen will shine on the violin and Juuso Kilpeä, a skilled double bassist, will provide the pulse.</p><p>Duration: 2 hours</p>" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E3E7BAD50E465D5A0F14315B0F59E1AC/Amadeus_Lundberg_-_mustalaisviulukonsertti", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E3E7BAD50E465D5A0F14315B0F59E1AC/Amadeus_Lundberg_-_mustalaisviulukonsertti", "en": "http://www.vuotalo.fi/en/events/event/E3E7BAD50E465D5A0F14315B0F59E1AC/Amadeus_Lundberg_-_mustalaisviulukonsertti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65333/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64869", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/event/amadeus-lundberg-mustalaisviulu-malmitalo-19383747/", "sv": "https://www.lippu.fi/event/amadeus-lundberg-mustalaisviulu-malmitalo-19383747/", "en": "https://www.lippu.fi/event/amadeus-lundberg-mustalaisviulu-malmitalo-19383747/" }, "price": { "fi": "35,90 € / 34,70 €", "sv": "35,90 € / 34,70 €", "en": "35,90 € / 34,70 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153594, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T11:14:04.982738Z", "last_modified_time": "2024-12-31T11:14:04.982761Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760591.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T11:14:04.949582Z", "last_modified_time": "2024-12-31T11:14:05.041267Z", "date_published": null, "start_time": "2025-04-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Amadeus Lundberg - Mustalaisviulukonsertti", "sv": "Amadeus Lundberg - Mustalaisviulukonsertti", "en": "Amadeus Lundberg - Mustalaisviulukonsertti" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa kuulemaan parhaita mustalaismusiikin klassikoita niin Suomesta kuin kansainvälisiltä areenoilta, huippumuusikoiden esittämänä!", "sv": "Välkommen att höra zigenarmusikens bästa klassiker både från Finland och internationella arenor, framförda av toppmusiker!", "en": "Join us to hear the best gypsy music classics from Finland and international arenas, performed by top musicians!" }, "description": { "fi": "<p>Tervetuloa kuulemaan parhaita mustalaismusiikin klassikoita niin Suomesta kuin kansainvälisiltä areenoilta, huippumuusikoiden esittämänä!</p><p>Tämä romanimusiikin konsertti romanien kansallispäivän jälkimeiningeissä sisältää mm. Horttokaalon ja Gipsy Kingsin suosituimmat kappaleet.</p><p>Orkestroinnista vastaa nelihenkinen bändi, mukaan lukien Amadeus Lundbergin ainutlaatuinen kitaransoitto. Kapellimestarina toimii arvostettu harmonikkavirtuoosi Samuli Jokinen ja viulussa sädehtii viulutaiteilija Lotta Marie Virkkunen sekä taitava kontrabasisti Juuso Kilpeä antaa sykettä.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>", "sv": "<p>Välkommen att höra zigenarmusikens bästa klassiker både från Finland och internationella arenor, framförda av toppmusiker!</p><p>Denna konsert med rommusik i efterdyningarna till romernas nationaldag innefattar de populäraste låtarna av bland annat Horttokaalo och Gipsy Kings.</p><p>Ett fyra personers band svarar för orkestreringen, inklusive Amadeus Lundbergs unika gitarrspel. Som kapellmästare fungerar den uppskattade dragspelsvirtuosen Samuli Jokinen och på violin strålar violinkonstnären Lotta Marie Virkkunen, medan den skicklige kontrabasisten Juuso Kilpeä ger puls.</p><p>Längd: 2 t</p>", "en": "<p>Join us to hear the best gypsy music classics from Finland and international arenas, performed by top musicians!</p><p>This concert of Roma music following Roma National Day celebrations will include the most popular songs of Hortto Kaalo and the Gipsy Kings.</p><p>The instrumentation is in the hands of a four-piece band, including the unique guitar playing of Amadeus Lundberg. The conductor will be the acclaimed accordion virtuoso Samuli Jokinen, while violinist Lotta Marie Virkkunen will shine on the violin and Juuso Kilpeä, a skilled double bassist, will provide the pulse.</p><p>Duration: 2 h</p>" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/74EDD0D0A53D14F06840F36E1D4CF5F2/Amadeus_Lundberg_-_Mustalaisviulukonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/74EDD0D0A53D14F06840F36E1D4CF5F2/Amadeus_Lundberg_-_Mustalaisviulukonsertti", "en": "http://www.malmitalo.fi/en/events/event/74EDD0D0A53D14F06840F36E1D4CF5F2/Amadeus_Lundberg_-_Mustalaisviulukonsertti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64869/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65258", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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/helsingin-kulttuurikeskus-vuotalo/barlast-3801933/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/barlast-3801933/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/barlast-3801933/" }, "price": { "fi": "15 € /10 €", "sv": "15 € /10 €", "en": "15 € /10 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153408, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T13:14:11.187236Z", "last_modified_time": "2024-12-12T13:14:11.187259Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761659.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153408/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T13:14:11.140091Z", "last_modified_time": "2024-12-30T15:13:56.387454Z", "date_published": null, "start_time": "2025-01-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Barlast", "sv": "Barlast", "en": "Barlast" }, "location_extra_info": null, "short_description": { "fi": "Barlast on musiikillisen vuorovaikutuksen ja ilmaisun laboratorio.", "sv": "Barlast är ett lekfullt laboratorium för musikaliskt uttryck och kommunikation.", "en": "Barlast is a playful laboratory of musical communication and expression." }, "description": { "fi": "<p>Barlast on musiikillisen vuorovaikutuksen ja ilmaisun laboratorio.</p><p>Yhtyeen jäsenten monipuoliset taustat mahdollistavat kokonaisuuden, jossa yhdistyy pohjoismainen kansanmusiikki, nykymusiikki, jazz ja taiderock.</p><p>Yhtyeen johtaja ja basisti Philip Holm luo kokeellista musiikkia muun muassa kehittämällään räätäliiralla eli ompelukoneella, joka on viritetty kielisoittimeksi. Lyömäsoittaja-huilisti Minna Koskenlahti on tutkinut nyrkkeilyn ja rumpujen soiton yhteyttä, ja hän on kysytty muusikko sekä kansanmusiikki- että avantgarde-projekteissa. Puupuhaltaja Santte Salonen kirjoittaa musiikkia niin fantasiamaailmoihin, orkestereille kuin partymetalfolkkia esittävälle Ritva Nerolle. Kitaravelho Heikki Hänninen johtaa americana-yhtye Buko Shanea, ja hänen syvä rakkautensa amerikkalaiseen musiikkiin sen monissa muodoissa tuo vaikutteita Eric Dolphysta Townes van Zandtiin ja Frank Zappasta Swansiin.</p><p>Lopputulos on enemmän kuin osiensa summa. Barlastin musiikkia on kuvailtu spektri-ihmeeksi – fuusioksi, joka saattaa kuulostaa vaikealta paperilla, mutta onkin itse asiassa helppoa ja kiehtovaa kuunneltavaa.</p><p>Vuonna 2016 perustettu Barlast on julkaissut neljä albumia ja esiintynyt klubeilla, festivaaleilla ja showcase-festivaaleilla ympäri Eurooppaa sekä tehnyt kiertueen Japanissa. Parhaillaan yhtye työskentelee suomenruotsalaisen kansanlaulun ja paimenkutsun parissa hyödyntämällä tekoälyalgoritmien imitointia, jossa automaattisesti luodut laulut ovat osa yhtyeen uutta musiikkia.</p><p>Philip Holm - basso<br>Heikki Hänninen - kitarat<br>Minna Koskenlahti - lyömäsoittimet ja huilut<br>Santte Salonen – puupuhaltimet</p><p>Kesto n. 70 min. Ei väliaikaa.</p>", "sv": "<p>Barlast är ett lekfullt laboratorium för musikaliskt uttryck och kommunikation.</p><p>Ensemblens musik är en blandning av nordisk folkmusik, nutida musik, jazz och konstrock. Kombinationen möjliggörs av bandmedlemmarnas vilt olika bakgrunder:</p><p>När han inte uppträder med Barlast spelar bandledaren och kontrabasisten Philip Holm experimentell musik på gamla maskiner som gjorts om till instrument. Slagverkaren och flöjtisten Minna Koskenlahti har studerat sambandet mellan boxning och trumspel och är en efterfrågad musiker i både traditionella och avantgarde musikprojekt. Träblåsaren Santte Salonen tonsätter musikaliska fantasier och orkesterstycken och leder sitt partymetalfolk-band Ritva Nero. Gitarrkonstnären Heikki Hänninen leder Americana-bandet Buko Shane. Hans kärlek till amerikansk musik i alla dess former ger Barlast influenser från allt från Eric Dolphy till Townes van Zandt och Frank Zappa till Swans.</p><p>Resultatet är en helhet som är större än summan av dess delar. Barlasts musik har beskrivits som ett spektralt underverk - en fusion som kan låta svårbegriplig i teorin men som i praktiken är lätt och fängslande att lyssna på.</p><p>Barlast grundadets år 2016 och har sedan dess släppt fyra album samt uppträtt på klubbar, festivaler och showcasefestivaler runt om i Europa och Japan. För närvarande arbetar ensemblen med att träna AI-algoritmer för att imitera traditionell finlandssvensk sång och lockrop. Den automatiskt genererade sången ingår i deras nya musik.</p><p>Philip Holm – Kontrabas<br>Heikki Hänninen – Gitarrer<br>Minna Koskenlahti – Slagverk, flöjt<br>Santte Salonen – Träblåsinstrument</p><p>Längd ca 70 min. Ingen paus.</p>", "en": "<p>Barlast is a playful laboratory of musical communication and expression.</p><p>The Finnish ensemble's music is a blend of Nordic folk music, contemporary music, jazz and art rock, made possible only by the diverse backgrounds of the band members:</p><p>When not performing with Barlast, band leader and double bass player Philip Holm makes experimental music on old machines turned into instruments. Percussionist and flautist Minna Koskenlahti has studied the connections between boxing and drumming and is an in-demand musician in both traditional and avant-garde music projects. Woodwind player Santte Salonen composes musical fantasies and orchestral pieces and leads their party metal folk band Ritva Nero. Guitar wizard Heikki Hänninen leads the Americana band Buko Shane and his deep love for American music in its many forms brings influences of anything from Eric Dolphy to Townes van Zandt and Frank Zappa to Swans.</p><p>The result is a sum greater than its parts. Barlast's music has been described as a spectral wonder - a fusion that might sound difficult on paper but in fact is easy and captivating to listen to.<br>Since its foundation in 2016, Barlast has released four albums and performed in clubs, festivals and showcase festivals around Europe and Japan. Currently the group is working on training AI algorithms to imitate traditional Finnish-Swedish singing and herding calls. The automatically generated vocals are incorporated in their new music.</p><p>Philip Holm - double bass<br>Heikki Hänninen - guitars<br>Minna Koskenlahti - percussion and flutes<br>Santte Salonen – woodwinds</p><p>Duration apx. 70 min. No intermission.</p>" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/61E98F32639F539A6030534143B4CBAE/Barlast", "sv": "http://www.vuotalo.fi/sv/evenemang/event/61E98F32639F539A6030534143B4CBAE/Barlast", "en": "http://www.vuotalo.fi/en/events/event/61E98F32639F539A6030534143B4CBAE/Barlast" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65258/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65314", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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/klubb-ankdamm/klubb-ankdamm-micke-bjoerkloef-blue-strip-3798564/", "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-micke-bjoerkloef-blue-strip-3798564/", "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-micke-bjoerkloef-blue-strip-3798564/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T14:14:04.711058Z", "last_modified_time": "2024-12-30T14:14:04.711072Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761672.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153567/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T14:14:04.683259Z", "last_modified_time": "2024-12-30T14:14:04.774858Z", "date_published": null, "start_time": "2025-04-26T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Micke Björklöf & Blue Strip – Klubb Ankdamm", "sv": "Micke Björklöf & Blue Strip – Klubb Ankdamm", "en": "Micke Björklöf & Blue Strip – Klubb Ankdamm" }, "location_extra_info": null, "short_description": { "fi": "Palkittu Micke Björklöf & Blue Strip on yksi kansainvälisesti menestyneimmistä kotimaisista bluesrock-yhtyeistä.", "sv": "Bluesrock i april! Micke Björklöf & Blue Strip, det internationellt hyllade bluesrockbandet är på turné med sitt senaste album Colors Of Jealousy.", "en": "Award-winning Micke Björklöf & Blue Strip is one of the most internationally successful Finnish blues rock bands." }, "description": { "fi": "<p>Palkittu Micke Björklöf & Blue Strip on yksi kansainvälisesti menestyneimmistä kotimaisista bluesrock-yhtyeistä.</p><p>Björklöf on kokoonpanoillaan julkaissut 13 albumia ja esiintynyt lähes 20:ssä maassa. Tinkimätön oman polkunsa kulkija on vuosien mittaan raivannut tietää kohti alan kansainvälistä kärkeä.</p><p>Micke Björklöf & Blue Strip jatkaa menestyksekästä ”Colors Of Jealousy” kiertuettaan ensi talven ja kevään aikana. Luvassa on mielenkiintoinen kattaus bändin uran tuotannosta jossa keskiössä on uuden albumin materiaali.<br> <br>Bändin uusin albumijulkaisu ”Colors Of Jealousy” on ollut kansainvälinen arvostelumenestys ja kerännyt radiosoittoa maailmanlaajuisesti. Albumi nousi Brittein saarilla IBBA Radiolistan sijalle 1. heinäkuussa ja hätyytteli kärkisijoja myös Yhdysvalloissa Roots Music Report listalla sekä Australiassa ABARAC listalla.</p><p>Yhtye julkaisee tulevana talvena retrospektiivisen Outtakes albumin ennen julkaisemattomista kappaleista. Musiikillisesti bändi on pyrkinyt aina mielenkiintoiseen ja monipuoliseen ilmaisuun, ottaen vaikutteita genrerajoista välittämättä bluesin pysyessä kuitenkin aina ”sinisenä lankana”.</p><p>Energisenä livebändinä tunnettu Micke Björklöf & Blue Strip vie kuulijansa mielenkiintoiselle musiikilliselle matkalle josta ei vauhtia ja vaarallisia tilanteita puutu. Läsnä ovat niin New Orleansin kuumat rytmit kuin syvän Mississippi deltan blues. Levy levyltä bändi on pyrkinyt uusiutumaan musiikillisesti ja luomaan nahkansa tavalla tai toisella.<br> <br><i>“Hyvillä biiseillä, vahvalla solistilla ja maailmanluokan kitaristilla siunattu bändi pyrkii systemaattisesti ulos kliseistä. Lisäksi heitetään sekaan vielä artistin oma, persoonallinen mauste. Juuri näin Micke Björklöf sinisen saran kyntäjineen toimii – he vievät suomalaista bluesrockia eteenpäin olemalla yksi kiinnostavimmista ja kansainvälisimmistä bändeistämme”</i><br>– Esa Kuloniemi, Bluesministeri<br> <br>Bändi on keikkaillut Suomen lisäksi ahkerasti myös ulkomailla, yhtye on esiintynyt Keski-Euroopan keikkalavojen lisäksi mm. maailman pohjoisimmalla blues-festivaalilla Huippuvuorilla sekä Japanissa.</p><p>Kolme edellistä studioalbumia on tehty yhteistyössä kansainvälisten tuottajien kanssa. Äänityssessioita on ollut Lontoossa, New Orleansissa ja Walesissa, legendaarisella Rockfield studiolla. 2015 ilmestyneen viimeisimmän, Ain’t Bad Yet studioalbumin tuotti Grammy-palkittu John Porter, joka on työskennellyt yhdessä mm.Buddy Guyn, B.B.Kingin, Taj Mahalin, Keb Mon ja Santanan kanssa. Bändin 2018 julkaistu, saksassa taltioitu livealbumi ”Twentyfive Live At Blues Baltica\" oli todellinen arvostelumenestys niin kotimaassa kuin kansainvälisestikin.<br> <br><b>Micke Björklöf & Blue Strip</b><br>Micke Björklöf: laulu, huuliharppu, kitara<br>Lefty Leppänen: sähkö- ja resonaattori kitara, taustalaulu<br>Teemu Vuorela: rummut<br>Seppo Nuolikoski: basso, taustalaulu<br>Timo Roiko-Jokela: perkussiot, malletkat<br> <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30. <br>Kesto: n. 2 h. sis. väliaika<br>Liput à 20/15 € @ Lippu.fi sekä myös ovelta lippuautomaatilta.</p>", "sv": "<p>Bluesrock i april! Micke Björklöf & Blue Strip, det internationellt hyllade bluesrockbandet är på turné med sitt senaste album Colors Of Jealousy.</p><p>Det blir en energisk och musikaliskt mångsidig uppvisning av bandets karriär. Naturligtvis kommer det senaste albumet Colors Of Jealousy att spela en central roll. Albumet har toppat radiospellistorna i Storbritannien (#1), Australien, Frankrike och USA.</p><p>Micke Björklöf & Blue Strip är ett av de internationellt mest framgångsrika blues & roots/bluesrockbandet från Finland. Björklöf och hans band har släppt 12 album och uppträtt i ett 20-tal länder t.om på världens nordligaste bluesfestival Svalbard och i Japan. Micke Bjorklof & Blue Strip är kända som ett energiskt liveband med en stark solist och slidegitarrist i världsklass.</p><p>Bandets gitarrist Lefty Leppänen har hyllats som en av de bästa slidegitarristerna i Europa. Bandet har alltid strävat efter ett intressant och mångsidigt underhållning. Rik och jordnära blues med ett modernt utseende var finns nyanser av klassisk bluesrock, New Orleans heta rytmer och blues från det djupa Mississippideltat med en touch av gospel och soul. Bandets senaste studio skiva ”Colors Of Jealousy”, som släpptes 2023, har tagits emot mycket väl av både inhemska och internationella medier. Recensionerna har varit mycket positiva, mestadels till och med berömmer albumet. Albumet har toppat radiospelningslistorna i Storbritannien (#1), Australien, Frankrike och USA. Bandet nominerades i USA till The Independent Blues Awards 2024 i tre kategorier och var den enda europeiska artist som nominerades.</p><p>Under en karriär som sträcker sig över mer än trettio år har bandet samarbetat på flera album med internationella topproducenter. Inspelningar har ägt rum i London, New Orleans och i Wales, på legendariska Rockfield-studion. Ain't Bad Yet, som släpptes 2015, producerades av Grammy-belönade John Porter, som har arbetat t.o.m Buddy Guy, B.B.King, Taj Mahal, Keb Mo och Santana.</p><p>\"Ett band välsignat med bra låtar, en stark solist och en gitarrist i världsklass, strävar bandet efter att systematiskt bort från klichéerna. Plus, släng in artistens egen, personliga krydda. Det är precis så Micke Björklöf och hans band arbetar - de tar finsk bluesrock framåt genom att vara ett av de mest intressanta och internationella banden\" - Esa Kuloniemi, Bluesministeri, YLE Radio Suomi.</p><p>“Soulful Bluesrock, Dynamite vocals and Worldclass Slideguitar”, Bluebird Reviews, USA</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30. Längd: ca 2 h inkl. paus. Biljetter à 20/15 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>Award-winning Micke Björklöf & Blue Strip is one of the most internationally successful Finnish blues rock bands.</p><p>With his bands Björklöf has released 13 albums and performed in nearly 20 countries. Without compromise, he and his band have worked their way to the top of the international scene.</p><p>Micke Björklöf & Blue Strip will continue their successful \"Colors Of Jealousy\" tour next winter and spring. It will be a fascinating showcase of the band's career with a focus on the material from the new album. The hot rhythms of New Orleans and the blues of the deep Mississippi Delta are present. From album to album, the band has sought to renew itself musically.</p><p>The band's latest album, the critically acclaimed \"Colors Of Jealousy\" received a lot of international media attention and has garnered radio play worldwide. The album peaked at number 1 on the IBBA Blues Radio Chart in the UK in July and also topped the Roots Music Report chart in the USA and the ABARAC chart in Australia.</p><p>The band will release a retrospective Outtakes album of previously unreleased tracks in December. Musically, the band has always strived for interesting and varied expression, taking inspiration from genre boundaries while keeping the blues as the \"blue thread\". Known as an energetic live band Micke Björklöf & Blue Strip take their listeners on an interesting musical journey, all from the hot rhythms of New Orleans and the blues of the deep Mississippi Delta. From album to album, the band has sought to renew itself musically and to create its own skin in one way or another.</p><p>\"Blessed with good songs, a strong soloist and a world-class guitarist, the band strives to systematically out of clichés. And then throw in a few of the artist's own, personal spice. This is exactly how Micke Björklöf & Blue Strip work - they take Finnish blues rock forward by being one of our the most interesting and international bands\" - Esa Kuloniemi, Bluesminister</p><p>The three previous studio albums have been made in collaboration with international producers. The latest studio album, Ain't Bad Yet, released in 2015, was produced by Grammy Award-winning John Porter, who has worked with Buddy Guy, B.B. King, Taj Mahal, Keb Mo and Santana, among others. The band's 2018 live album \"Twentyfive Live At Blues Baltica\", recorded in Germany, was a real critical success both nationally and internationally.<br> <br><b>Micke Björklöf & Blue Strip</b><br>Micke Björklöf: vocals, harmonica, guitar<br>Lefty Leppänen: electric and slide guitar, backing vocals<br>Teemu Vuorela: drums<br>Seppo Nuolikoski: bass, backing vocals<br>Timo Roiko-Jokela: percussion, malletkat</p><p>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30. Duration: apx. 2 h. with intermission. Tickets à 20/15€ @ Lippu.fi and also from the ticket machine at the door.</p>" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/365C4D2DA1018362EFF0181B87DF14E4/Micke_Bjorklof_Blue_Strip", "sv": "http://www.vuotalo.fi/sv/evenemang/event/365C4D2DA1018362EFF0181B87DF14E4/Micke_Bjorklof_Blue_Strip", "en": "http://www.vuotalo.fi/en/events/event/365C4D2DA1018362EFF0181B87DF14E4/Micke_Bjorklof_Blue_Strip" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65314/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64762", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p7266/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T14:13:57.515462Z", "last_modified_time": "2024-12-30T14:13:57.515478Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760028.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-30T14:13:57.472103Z", "last_modified_time": "2024-12-30T14:13:57.592415Z", "date_published": null, "start_time": "2025-02-15T09:00:00Z", "end_time": "2025-02-15T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Annantalon taidelauantai: Barokkiateljee", "sv": "Annegårdens konstlördag: Barockateljé", "en": "Annantalo Art Saturday: Baroque studio" }, "location_extra_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Barokkiateljee</b></p><p>Barokki oli taidesuuntaus 1600-luvulla. Sen tunnusmerkkejä ovat koristeellisuus ja mahtipontisuus. Työpajassa virittäydymme barokin tunnelmiin pukeutumalla ja maalaamalla muotokuvia toisistamme. Barokkimusiikki luo ympärillemme juhlan tunnelmaa ja barokkimainen garderobi suhisee vaatteiden vaihtuessa ja siveltimien tanssiessa paperilla!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Barockateljé</b> <br>Barocken var en konstriktning på 1600-talet. Den kännetecknas av utsmyckning och storslagenhet. I den här workshoppen kommer vi i barockstämning genom att klä ut oss och måla porträtt av varandra. Barockmusik skapar en festlig stämning runt omkring oss och barockgarderoben prasslar när kläder byts och penslar dansar på papper!</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Baroque studio</b><br>Baroque was an art movement in the 17th century. Its main features include decorativeness and flamboyance. In this workshop, we tune in to the Baroque style by dressing up and painting portraits of each other. Baroque music creates a festive atmosphere around us while the baroque wardrobe buzzes as we change clothes and let our brushes dance on paper!</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F58516C876ACAA339D8BEFF46D9BF750/Annantalon_taidelauantai_Barokkiateljee", "sv": "http://www.annantalo.fi/sv/evenemang/event/F58516C876ACAA339D8BEFF46D9BF750/Annegardens_konstlordag_Barockatelj_", "en": "http://www.annantalo.fi/en/events/event/F58516C876ACAA339D8BEFF46D9BF750/Annantalo_Art_Saturday_Baroque_studio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64762/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65128", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153173, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:23.972836Z", "last_modified_time": "2024-12-03T14:17:23.972859Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764081.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153173/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-03T14:17:23.947594Z", "last_modified_time": "2024-12-30T12:14:04.391442Z", "date_published": null, "start_time": "2025-04-16T07:00:00Z", "end_time": "2025-04-16T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "location_extra_info": null, "short_description": { "fi": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.", "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.", "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult." }, "description": { "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>", "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>", "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace.</p><p>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DC4508394FF460687CAC15CAE04F4DDD/Naperokahvila", "sv": "http://www.annantalo.fi/sv/evenemang/event/DC4508394FF460687CAC15CAE04F4DDD/Smabarnskaf_", "en": "http://www.annantalo.fi/en/events/event/DC4508394FF460687CAC15CAE04F4DDD/Toddler_caf_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65128/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65127", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153172, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:23.111811Z", "last_modified_time": "2024-12-03T14:17:23.111832Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764079.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153172/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-03T14:17:23.081435Z", "last_modified_time": "2024-12-30T12:14:02.701031Z", "date_published": null, "start_time": "2025-04-02T07:00:00Z", "end_time": "2025-04-02T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "location_extra_info": null, "short_description": { "fi": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.", "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.", "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult." }, "description": { "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>", "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>", "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace.</p><p>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/200CBE2FE1F1F937C4535687B67A7980/Naperokahvila", "sv": "http://www.annantalo.fi/sv/evenemang/event/200CBE2FE1F1F937C4535687B67A7980/Smabarnskaf_", "en": "http://www.annantalo.fi/en/events/event/200CBE2FE1F1F937C4535687B67A7980/Toddler_caf_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65127/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65126", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153168, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:22.012033Z", "last_modified_time": "2024-12-03T14:17:22.012055Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764077.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153168/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-03T14:17:21.986149Z", "last_modified_time": "2024-12-30T12:14:00.895756Z", "date_published": null, "start_time": "2025-03-19T08:00:00Z", "end_time": "2025-03-19T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "location_extra_info": null, "short_description": { "fi": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.", "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.", "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult." }, "description": { "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>", "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>", "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace.</p><p>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E7828CDF20700E1F1B493BBA5A0725E0/Naperokahvila", "sv": "http://www.annantalo.fi/sv/evenemang/event/E7828CDF20700E1F1B493BBA5A0725E0/Smabarnskaf_", "en": "http://www.annantalo.fi/en/events/event/E7828CDF20700E1F1B493BBA5A0725E0/Toddler_caf_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65124", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153166, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:20.795694Z", "last_modified_time": "2024-12-03T14:17:20.795711Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764073.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153166/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-03T14:17:20.772021Z", "last_modified_time": "2024-12-30T12:13:57.982266Z", "date_published": null, "start_time": "2025-02-19T08:00:00Z", "end_time": "2025-02-19T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "location_extra_info": null, "short_description": { "fi": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.", "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.", "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult." }, "description": { "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>", "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>", "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace.</p><p>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/68A93A682EB7B25D7F767CC576D4416B/Naperokahvila", "sv": "http://www.annantalo.fi/sv/evenemang/event/68A93A682EB7B25D7F767CC576D4416B/Smabarnskaf_", "en": "http://www.annantalo.fi/en/events/event/68A93A682EB7B25D7F767CC576D4416B/Toddler_caf_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65124/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64761", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p7266/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T12:13:53.908868Z", "last_modified_time": "2024-12-30T12:13:53.908884Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760025.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-30T12:13:53.871892Z", "last_modified_time": "2024-12-30T12:13:54.033857Z", "date_published": null, "start_time": "2025-02-01T09:00:00Z", "end_time": "2025-02-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Annantalon taidelauantai: Kaikenlaista soppaa", "sv": "Annegårdens konstlördag: Alla sorters soppa", "en": "Annantalo Art Saturday: All kinds of soup" }, "location_extra_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään..", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään..</p><p><b>Kaikenlaista soppaa</b></p><p>Tykkäätkö kokata? Minkälaisista aineksista lempikeittosi koostuu? Talvella maistuu lämmin ruoka, kenties sekametelisoppa. Työskentely tapahtuu kuvataiteen keinoin kollasitekniikalla ja vesiliukoisilla väreillä. Saat oman annoksesi kotiin vietäväksi. Istahda laatimaan talven kuumin keittosi!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Alla sorters soppa</b><br>Tycker du om att laga mat? Vilka är ingredienserna i din favoritsoppa? På vintern smakar det bra med varm mat, kanske en blandoljudssoppa. Arbetet sker med hjälp av bildkonst, collageteknik och vattenlösliga färger. Du får ta din egen portion med dig hem. Sätt dig ner för att laga vinterns hetaste soppa!</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>All kinds of soup</b><br>Do you like to cook? What kind of ingredients does your favourite soup consist of? In the winter, all we want is warm food. Perhaps a soup made with a little bit of everything? We will work by means of visual arts with collage technology and water-soluble colours. You will get to take your portion home. Sit down and prepare your hottest winter soup!</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/91EC0E58C8DE0DF303F8A9BE46B63C20/Annantalon_taidelauantai_Kaikenlaista_soppaa", "sv": "http://www.annantalo.fi/sv/evenemang/event/91EC0E58C8DE0DF303F8A9BE46B63C20/Annegardens_konstlordag_Alla_sorters_soppa", "en": "http://www.annantalo.fi/en/events/event/91EC0E58C8DE0DF303F8A9BE46B63C20/Annantalo_Art_Saturday_All_kinds_of_soup" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64761/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ewxi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ewje/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-30T11:43:33.467636Z", "last_modified_time": "2024-12-30T11:43:33.467657Z", "date_published": null, "start_time": "2025-01-26T14:00:00Z", "end_time": "2025-05-25T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Vietnaminkielinen luku- ja laulupiiri", "sv": "Läs- och sångcirkel på vietnamesiska ", "en": "Vietnamese Read & Sing Circle" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "short_description": { "fi": "Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa. ", "sv": "Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. ", "en": "Come & enjoy children books and songs in Vietnamese with your kids. \n" }, "description": { "fi": "<p>Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa.</p><p>Valituissa tilaisuuksissa lukutuokion jälkeen on kausiteemaista askartelua ja piirtämistä.</p><p>Valmistelemme joitakin vietnamilaisia lastenkirjoja ja -lauluja, mutta voit vapaasti tuoda oman suosikkisi jaettavaksi muiden kanssa.</p><p>Kuukausittain sunnuntaina klo 16-17.30 Stagella</p><p><br></p><p>Järjestäjänä: VPF Parenting Club</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.</p><p>Utvalda sessioner kommer att följas av säsongsbetonat tema hantverk och teckning efter läsecirkeln.</p><p>Vi kommer att förbereda några vietnamesiska barnböcker och sånger, men ta gärna med dina egna favoriter för att dela med dig till andra.</p><p>månadsvis söndag kl. 16:00 - 17:30, Stage</p><p><br></p><p>VPF Parenting Club</p>", "en": "<p>Come & enjoy children books and songs in Vietnamese with your kids.</p><p>In selected events, there will be seasonal themed craft and drawing activities after the reading session.</p><p>We will prepare some Vietnamese children books and songs but feel free to bring your own favorite to share with others. </p><p>Monthly on Sundays 16:00 - 17:30, Stage</p><p><br></p><p>Organized by VPF Parenting Club</p>" }, "provider": { "fi": "VPF Parenting Club", "sv": "VPF Parenting Club", "en": "VPF Parenting Club" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ewxi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65038", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:733/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T10:14:25.161651Z", "last_modified_time": "2024-12-30T10:14:25.161677Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763675.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T10:14:25.119916Z", "last_modified_time": "2024-12-30T10:14:25.269990Z", "date_published": null, "start_time": "2025-03-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Kino Kuutamo: Piano – Maksuttomat maanantait", "sv": "Kino Kuutamo: Pianot – Kostnadsfria måndagar", "en": "Kino Kuutamo: The Piano – Free Mondays" }, "location_extra_info": null, "short_description": { "fi": "Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.", "sv": "Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.", "en": "This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love." }, "description": { "fi": "<p>Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45.</p><p>Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös.</p><p><b>Piano</b><br>Jane Campionin aistillinen kolmiodraama intohimosta, vallasta ja petoksesta sijoittuu 1850-luvun Uuteen Seelantiin. Mykkä Ada on myyty vaimoksi uudisasukas Alistairille. Hän saapuu uuteen kotimaahansa yhdessä tyttärensä ja rakkaan pianonsa kanssa. Piano on hänen ainoa ilmaisukeinonsa, mutta Alastairin mielestä sen kuljettaminen kotiin on liian vaikeaa, joten hän pakottaa Adan jättämään sen rannalle. Heidän naapurinsa Baines ostaa pianon, ja Ada saa soittaa kaipaamaansa instrumenttia antaessaan tälle pianotunteja. Heidän välilleen kehittyy erikoislaatuinen eroottinen suhde, jolla on arvaamattomia seurauksia.</p><p>Piano voitti kolme Oscaria oltuaan ehdolla kahdeksassa kategoriassa: Holly Hunter parhaasta naispääosasta, ensi kertaa näytellyt Anna Paquin parhaasta naissivuosasta ja Jane Campion parhaasta alkuperäisestä käsikirjoituksesta. Hunter voitti roolisuorituksestaan myös BAFTAn ja Golden Globen. Australian filmi-instituutin AFI-palkintoja elokuva voitti 11.</p><p>The New York Timesin kriitikot valitsivat Pianon vuonna 2004 yhdeksi kaikkien aikojen tuhannesta parhaasta elokuvasta maailmassa.</p><p>Uusi Seelanti, Australia, Ranska, 1993<br>Ikäraja: K16<br>Kesto: 2 tuntia<br>Kieli: englanti</p><p>Tekstitys: suomi<br>Vapaa pääsy</p>", "sv": "<p>Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45.</p><p>Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.</p><p><b>Pianot</b><br>Jane Campions sensuella triangeldrama om passion, makt och bedrägeri utspelas i 1850-talets Nya Zeeland. Den stumma Ada har sålts som hustru till nybyggaren Alistair. Hon ankommer till sitt nya hemland tillsammans med sin dotter och sitt älskade piano. Pianot är hennes enda sätt att uttrycka sig, men enligt Alastair är det för svårt att transportera hem det, så han tvingar Ada att lämna det på stranden. Deras granne Baines köper pianot, och Ada får spela sitt älskade instrument mot att hon ger denne pianolektioner. Ett säreget erotiskt förhållande utvecklas mellan dem, med oväntade följder.</p><p>Piano vann tre Oscarspris och nominerades i åtta kategorier: Holly Hunter för den bästa kvinnliga huvudrollen, Anna Paquin, som uppträdde för första gången, för bästa kvinnliga biroll och Jane Campion för bästa originalmanus. Hunter vann också en BAFTA och en Golden Globe för sin rollprestation. Filmen vann 11 av det australiska filminstitutets AFI-priser.</p><p>År 2004 utsåg kritikerna vid The New York Times Pianot till en av de tusen bästa filmerna genom alla tider i hela världen.<br>Nya Zeeland, Australien, Frankrike, 1993</p><p>Åldersgräns: F16<br>Längd: 2 timmar<br>Språk: engelska</p><p>Textning: finska<br>Fritt inträde</p>", "en": "<p>This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening from 17:00 to 17:45.</p><p>After the introduction, the free screening of the film begins at 18:00.</p><p><b>The Piano</b><br>Jane Campion’s sensual drama of passion, power and betrayal, centred around a love triangle, is set in 1850s New Zealand. Ada, who is mute, has been sold into marriage to Alistair, a settler. She arrives in her new country with her daughter and her beloved piano. The piano is her only means of expression, but Alastair finds it too difficult to carry home, so he forces Ada to leave it on the beach. Their neighbour Baines buys a piano, and Ada gets to play the instrument she misses while giving him piano lessons. An extraordinary erotic relationship develops between them, with unpredictable consequences.</p><p>The Piano won three Oscars after being nominated in eight categories: Holly Hunter for Best Actress in a Leading role, first-time actress Anna Paquin for Best Supporting Actress, and Jane Campion for Best Original Screenplay. Hunter also won a BAFTA and a Golden Globe for her performance. The film won 11 AFI awards from the Australian Film Institute.</p><p>In 2004, The Piano was selected by The New York Times critics as one of the world’s 1,000 best films of all time.<br>New Zealand, Australia, France, 1993</p><p>Age limit: 16+<br>Duration: 2 hours<br>Language: English</p><p>Subtitles: Finnish<br>Free admission</p>" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/94D63C4180436F4CCBB8FC996DB1A307/Kino_Kuutamo_Piano", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/94D63C4180436F4CCBB8FC996DB1A307/Kino_Kuutamo_Pianot", "en": "http://www.kanneltalo.fi/en/events/event/94D63C4180436F4CCBB8FC996DB1A307/Kino_Kuutamo_The_Piano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65038/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64915", "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:613/?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/event/la-strada-konsertti-kanneltalo-19482468/", "sv": "https://www.lippu.fi/event/la-strada-konsertti-kanneltalo-19482468/", "en": "https://www.lippu.fi/event/la-strada-konsertti-kanneltalo-19482468/" }, "price": { "fi": "38,50 € / 31 €", "sv": "38,50 € / 31 €", "en": "38,50 € / 31 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:30.590777Z", "last_modified_time": "2024-12-12T09:14:30.590795Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761634.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:30.552923Z", "last_modified_time": "2024-12-30T09:13:59.036294Z", "date_published": null, "start_time": "2025-04-05T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "La Strada: rakkaudella Italiasta", "sv": "La Strada: med kärlek från Italien", "en": "La Strada: with love from Italy" }, "location_extra_info": null, "short_description": { "fi": "La Strada-konserttiin on koottu rakkaimmat laulut Italiasta viihteestä oopperaan.", "sv": "La Strada-konserten samlar de mest älskade sångerna från Italien, från underhållning till opera.", "en": "The La Strada concert brings together some of Italy’s most beloved songs, from popular music to opera." }, "description": { "fi": "<p>La Strada-konserttiin on koottu rakkaimmat laulut Italiasta viihteestä oopperaan.</p><p>Konsertissa kuullaan mm. La donna e mobile, Poika varjoisilta kujilta, Puhu hiljaa rakkaudesta, La Strada, Bella notte, Mamma, Nessun dorma ja Hopeinen kuu.</p><p>Jyrki Anttilaa säestävät pianisti Anu Kosonen ja harmonikkataiteilija Petri Ikkelä.</p><p>Konsertti on saanut ylistävää palautetta ympäri Suomen ja nyt se on mahdollista päästä nauttimaan myös Kanneltalossa!</p><p>Kesto: 1 tunti 50 min (sisältäen 20 min väliajan)</p>", "sv": "<p>La Strada-konserten samlar de mest älskade sångerna från Italien, från underhållning till opera.</p><p>På konserten får vi höra bland annat La donna e mobile, Guaglione, Speak Softly Love, La Strada, Bella notte, Mamma, Nessun dorma och Guarda che luna.</p><p>Jyrki Anttila ackompanjeras av pianisten Anu Kosonen och dragspelskonstnären Petri Ikkelä.</p><p>Konserten har fått lysande respons runt om i Finland, och nu kan man också njuta av den på Gamlasgården!</p><p>Längd: 1 h 50 min. (inklusive en paus på 20 minuter)</p>", "en": "<p>The La Strada concert brings together some of Italy’s most beloved songs, from popular music to opera.</p><p>The concert will feature music such as “La donna e mobile\", “Poika varjoisilta kujilta”, “Puhu hiljaa rakkaudesta”, “La Strada”, “Bella Notte”, “Mamma”, “Nessun Dorma” and “Hopeinen kuu”.</p><p>Jyrki Anttila will be accompanied by pianist Anu Kosonen and accordionist Petri Ikkelä.</p><p>The concert has received rave reviews all over Finland, and now you can enjoy it at Kanneltalo, too!</p><p>Duration: 1 hour 50 min (including a 20-minute intermission)</p>" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/19C7B16ADF91FE1C1E1428189C28BE4B/La_Strada_rakkaudella_Italiasta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/19C7B16ADF91FE1C1E1428189C28BE4B/La_Strada_med_karlek_fran_Italien", "en": "http://www.kanneltalo.fi/en/events/event/19C7B16ADF91FE1C1E1428189C28BE4B/La_Strada_with_love_from_Italy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64915/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65022", "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/eventseries/name-3555406", "sv": "https://www.lippu.fi/eventseries/name-3555406", "en": "https://www.lippu.fi/eventseries/name-3555406" }, "price": { "fi": "22 € / 19 € / 17 €", "sv": "22 € / 19 € / 17 €", "en": "22 € / 19 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T09:13:56.153358Z", "last_modified_time": "2024-12-30T09:13:56.153373Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763525.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T09:13:56.124659Z", "last_modified_time": "2024-12-30T09:13:56.217152Z", "date_published": null, "start_time": "2025-03-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Nättinassut", "sv": "Nättinassut", "en": "Nättinassut" }, "location_extra_info": null, "short_description": { "fi": "Nättinassut on kuudesta muusikosta koostuva yhtye, jonka tyylilajina on konemausteinen rock-pop!", "sv": "Nättinassut är ett band som består av sex musiker, och vars stilart är rock-pop med maskinkrydda!", "en": "Nättinassut is a band of six musicians who play pop-rock with a touch of electronic music!" }, "description": { "fi": "<p>Nättinassut on kuudesta muusikosta koostuva yhtye, jonka tyylilajina on konemausteinen rock-pop!</p><p>Yhtyeen elämänmakuisissa kappaleissa kuuluu ihmisyyden koko kirjo. Helsingistä lähtöisin oleva bändi on kerännyt kiitosta voimakkaista live-esiintymisistään ja musiikistaan, joka rikkoo genrerajoja. Tarjolla on asennetta, taitoa ja sielua eli Nättinassuja kaikilla herkuilla!</p>", "sv": "<p>Nättinassut är ett band som består av sex musiker, och vars stilart är rock-pop med maskinkrydda!</p><p>Bandets låtar smakar av livet och mänsklighetens brokiga mångfald. Bandet som är hemma från Helsingfors har fått uppskattning för sina starka liveframträdanden och sin musik som går över genregränserna. Attityd, skicklighet och själfullhet utlovas, det vill säga Nättinassut med alla kryddor!</p>", "en": "<p>Nättinassut is a band of six musicians who play pop-rock with a touch of electronic music!</p><p>The band’s vibrant songs embrace the full spectrum of humanity. Hailing from Helsinki, the band has garnered praise for their powerful live performances and genre-breaking music. There’s attitude, skill and soul being served up here – in other words, Nättinassut with all the trimmings!</p>" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4137EB4260D0CA76D945FCD7D865B80F/Nattinassut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4137EB4260D0CA76D945FCD7D865B80F/Nattinassut", "en": "http://www.kanneltalo.fi/en/events/event/4137EB4260D0CA76D945FCD7D865B80F/Nattinassut" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65022/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65021", "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:105/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/__/sirkus-sampo-2/#tribe-tickets", "sv": "https://nukketeatterisampo.fi/__/sirkus-sampo-2/#tribe-tickets", "en": "https://nukketeatterisampo.fi/__/sirkus-sampo-2/#tribe-tickets" }, "price": { "fi": "9 € / 20 €", "sv": "9 € / 20 €", "en": "9 € / 20 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153559, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T09:13:55.428839Z", "last_modified_time": "2024-12-30T09:13:55.428854Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763523.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153559/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-30T09:13:55.392701Z", "last_modified_time": "2024-12-30T09:13:55.519879Z", "date_published": null, "start_time": "2025-03-05T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Sirkus Sampo", "sv": "Sirkus Sampo", "en": "Sirkus Sampo" }, "location_extra_info": null, "short_description": { "fi": "Nukketeatteri Sampon sirkuksessa marionetit heräävät eloon ja täyttävät estradin musiikilla, laululla ja nukketeatterin taialla.", "sv": "I dockteatern Sampos cirkus vaknar marionetterna till liv och fyller estraden med musik, sång och dockteaterns magi.", "en": "In the Sampo Puppet Theatre Circus, marionettes come to life and fill the stage with music, singing and the magic of puppet theatre." }, "description": { "fi": "<p>Nukketeatteri Sampon sirkuksessa marionetit heräävät eloon ja täyttävät estradin musiikilla, laululla ja nukketeatterin taialla.</p><p>Esiintyjäkaartissa nähdään taitavia veitsenheittäjiä, huimia pyörätaitureita, uskomattoman akrobaattisia koiria ja ehkä siellä häivähtää haamukin… Tervetuloa lumoutumaan Sampon satumaisesta maailmasta! Esitys esittelee erilaisia marionetteja, Sampon tapaan elävän musiikin säestyksellä.</p><p>Suunnittelu, ohjaus: Iivo Barić</p><p>Valosuunnittelu: Immanuel Pax<br>Puvustus: Kristiina Jokinen<br>Kuvat & video: Nikke Puskala</p><p>Sanaton esitys sopii kaikenikäisille<br>Kesto 30 min</p>", "sv": "<p>I dockteatern Sampos cirkus vaknar marionetterna till liv och fyller estraden med musik, sång och dockteaterns magi.</p><p>I artistuppställningen får vi se skickliga knivkastare, hisnande cykelkonstnärer, otroligt akrobatiska hundar och kanske även skymtar av ett spöke... Välkommen att förtrollas av Sampos sagolika värld! Föreställningen presenterar olika marionetter till ackompanjemang av levande musik i Sampos stil.</p><p>Design, regi: Iivo Barić</p><p>Ljusdesign: Immanuel Pax<br>Kostymdesign: Kristiina Jokinen<br>Bilder & video: Nikke Puskala</p><p>Den ordlösa föreställningen lämpar sig för alla åldrar<br>Längd 30 min.</p>", "en": "<p>In the Sampo Puppet Theatre Circus, marionettes come to life and fill the stage with music, singing and the magic of puppet theatre.</p><p>The list of performers includes skilled knife throwers, amazing cyclists, incredibly acrobatic dogs and maybe even a ghost... Come and be enchanted by Sampo’s fairytale world! The show features a variety of marionettes, accompanied by live music, just like Sampo. <br>Designed, directed by: Iivo Barić</p><p>Lighting design: Immanuel Pax<br>Costumes: Kristiina Jokinen<br>Images & video: Nikke Puskala</p><p>This silent performance is suitable for all ages!<br>Duration: 30 min</p>" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C704F1E5EB3E6C03FB7028986649B452/Sirkus_Sampo", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C704F1E5EB3E6C03FB7028986649B452/Sirkus_Sampo", "en": "http://www.kanneltalo.fi/en/events/event/C704F1E5EB3E6C03FB7028986649B452/Sirkus_Sampo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65021/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64881", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152938, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-04T10:14:52.079675Z", "last_modified_time": "2024-11-04T10:14:52.079691Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759425.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152938/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-11-04T10:14:52.002512Z", "last_modified_time": "2024-12-30T09:13:49.293308Z", "date_published": null, "start_time": "2025-01-25", "end_time": "2025-03-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Sanna Pelliccioni & Eppu Nuotio: Sinä päivänä – näyttely vapaudesta", "sv": "Sanna Pelliccioni & Eppu Nuotio: Sinä päivänä (Den dagen) – en utställning om frihet", "en": "Sanna Pelliccioni & Eppu Nuotio: Sinä päivänä – näyttely vapaudesta – (On that day – an exhibition about freedom)" }, "location_extra_info": null, "short_description": { "fi": "Sinä päivänä -näyttely perustuu Eppu Nuotion kirjoittamaan ja Sanna Pelliccionin kuvittamaan samannimiseen kuvakirjaan, joka kertoo vapaudesta ja yhteisöllisyydestä.", "sv": "Utställningen Sinä päivänä grundar sig på bilderboken med samma namn, som är skriven av Eppu Nuotio och illustrerad av Sanna Peliccioni. Boken berättar om frihet och gemenskap.", "en": "The Sinä päivänä exhibition is based on the picture book of the same name, written by Eppu Nuotio and illustrated by Sanna Pelliccioni, which is about freedom and community." }, "description": { "fi": "<p>Sinä päivänä -näyttely perustuu Eppu Nuotion kirjoittamaan ja Sanna Pelliccionin kuvittamaan samannimiseen kuvakirjaan, joka kertoo vapaudesta ja yhteisöllisyydestä.</p><p>Kirjan ja näyttelyn esikuva on Vapauden ketju: 1989 yli kaksi miljoonaa ihmistä otti toisiaan kädestä ja muodosti ketjun läpi Viron, Latvian ja Liettuan vaatiakseen vapautta – ja saivat sen.</p><p>Toiminnallisessa näyttelyssä maataan vapauden niityllä suuren keltaisen auringon alla, etsitään avaimia, tutkaillaan kuvituksia ja vanhoja valokuvia. Näyttelyssä myös askarrellaan paperinukkeketjuja ja mietitään mitä kaikkea voi tehdä yhdessä, vaan ei yksin.</p><p>Kuvitukset: Sanna Pelliccioni<br>Tekstit: Eppu Nuotio<br>Käännökset: Peep Ihasalu<br>Äänimaailma: Suunnittelu Eppu Nuotio, Marju Lauristinin puhe Mariann Nagatsu,<br>laulun sävellys ja piano Timo Klemettinen, Laulu Henri Piispanen, Ulla Piispanen<br>Tuotanto: Sanna Pelliccioni ja Eppu Nuotio<br>Kiitokset Suomen Viron-instituutti, FOT, Silvi Puvi, Anne Pikkov, Kerttu Sillaste,<br>Haapsalun lastenkirjasto</p>", "sv": "<p>Utställningen Sinä päivänä grundar sig på bilderboken med samma namn, som är skriven av Eppu Nuotio och illustrerad av Sanna Peliccioni. Boken berättar om frihet och gemenskap.</p><p>Förebilden för boken och utställningen är den Baltiska kedjan: år 1989 tog över två miljoner människor varandra i handen och skapade en kedja genom Estland, Lettland och Litauen för att kräva frihet – och fick den. I den funktionella utställningen ligger vi på frihetens ängar under en stor gul sol, söker nycklar, undersöker illustrationer och gamla fotografier. På utställningen pysslar vi även kedjor av pappersdockor och funderar på allt det vi kan göra tillsammans, men inte ensamma.</p><p>Illustrationer: Sanna Pelliccioni<br>Texter: Eppu Nuotio<br>Översättningar: Peep Ihasalu<br>Ljudlandskap: Design Eppu Nuotio, Marju Lauristins tal Mariann Nagatsu, komposition av sången och piano Timo Klemettinen, Sång Henri Piispanen, Ulla Piispanen</p><p>Produktion: Sanna Pelliccioni ja Eppu Nuotio<br>Tack till Suomen Viron-instituutti, FOT, Silvi Puvi, Anne Pikkov, Kerttu Sillaste, barnbiblioteket i Haapsalu</p>", "en": "<p>The Sinä päivänä exhibition is based on the picture book of the same name, written by Eppu Nuotio and illustrated by Sanna Pelliccioni, which is about freedom and community.</p><p>The book and the exhibition are inspired by the Baltic Chain: In 1989, more than two million people joined hands and formed a chain through Estonia, Latvia and Lithuania to demand their freedom – and they got it. In this functional exhibition, you’ll lie down in the meadow of freedom under a big yellow sun, look for keys, and examine illustrations and old photographs. The exhibition also includes making chains of paper dolls and thinking about all the things you can do together, but not alone..</p><p>Illustrations: Sanna Pelliccioni<br>Texts: Eppu Nuotio<br>Translations: Peep Ihasalu<br>Audio: Design by Eppu Nuotio, speech by Marju Lauristin, Mariann Nagatsu,<br>song composition and piano by Timo Klemettinen, vocals by Henri Piispanen and Ulla Piispanen<br>Production: Sanna Pelliccioni and Eppu Nuotio<br>Thanks to the Finnish Institute in Tallinn, FOT, Silvi Puvi, Anne Pikkov, Kerttu Sillaste,<br>Haapsalu Children’s Library</p>" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/02195ACE29B37204955148C19A4746B0/Sanna_Pelliccioni_Eppu_Nuotio_Sina_paivana_nayttely_vapaudesta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/02195ACE29B37204955148C19A4746B0/Sanna_Pelliccioni_Eppu_Nuotio_Sina_paivana_Den_dagen_en_utstallning_om_frihet", "en": "http://www.kanneltalo.fi/en/events/event/02195ACE29B37204955148C19A4746B0/Sanna_Pelliccioni_Eppu_Nuotio_Sina_paivana_nayttely_vapaudesta_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64881/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19453, "next": "