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&page=271
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=272", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=270" }, "data": [ { "id": "kulke:64835", "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": [], "price": { "fi": "28,90 € / 22,80 € / 17,80 €", "sv": "28,90 € / 22,80 € / 17,80 €", "en": "28,90 € / 22,80 € / 17,80 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/erikhokkanenusalumisudetfin/", "sv": "https://www.lippu.fi/artist/erikhokkanenusalumisudetfin/", "en": "https://www.lippu.fi/artist/erikhokkanenusalumisudetfin/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T15:14:10.748511Z", "last_modified_time": "2024-12-09T15:14:10.748524Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760451.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T15:14:10.723749Z", "last_modified_time": "2025-01-27T09:15:10.798257Z", "date_published": null, "start_time": "2025-01-28T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTU Erik Hokkanen (US) & Lumisudet", "sv": "INSTÄLLT Erik Hokkanen (US) & Lumisudet", "en": "CANCELLED Erik Hokkanen (US) & Lumisudet" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB8625267CA9CB68DC23ACE37CF21E3A/PERUTTU_Erik_Hokkanen_US_Lumisudet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BB8625267CA9CB68DC23ACE37CF21E3A/INSTALLT_Erik_Hokkanen_US_Lumisudet", "en": "http://www.malmitalo.fi/en/events/event/BB8625267CA9CB68DC23ACE37CF21E3A/CANCELLED_Erik_Hokkanen_US_Lumisudet" }, "description": { "fi": "<p>Erik Hokkanen (US) ja Lumisudet konsertti 28.1.2025 Malmitalolla on peruuntunut sairaskohtauksen vuoksi.</p><p>- Lippupiste palauttaa rahat asiakkaille<br>- Liput tulee palauttaa 28.2.2025 mennessä.</p><p>Lippurahojen palautuksia voi hakea tämän verkkolinkin kautta: https://web.lippu.fi/palautus/</p><p>Liput voi palauttaa myös postitse osoitteeseen:</p><p>Lippupiste Oy / ”Tapahtuman nimi” palautus<br>Kansikatu 5<br>33100 Tampere</p><p>-</p><p>Teksasin viuluvelho Erik Hokkanen kiertää jälleen Lumisusiensa kera Pohjoismaissa! Koe hypnoottinen ja riemastuttava sekoitus swingiä ja kansanmusiikkia Malmitalossa.</p><p>Teksasilainen western swing ja kaustislainen kansanmusiikki yhdistyvät herkullisesti Erik Hokkasen ja Lumisusien yhteisessä musisoinnissa. Yhteistyö sai alkunsa 1980-luvun lopussa, kun kolmannen polven amerikansuomalainen Erik Hokkanen tutustui suomalaisiin kansanmuusikoihin.</p><p>”Koen olevani siunattu saadessani työskennellä ja soittaa kaikkien veljieni kanssa yhä uudelleen. On minulle tärkeää palata Suomeen aina, kun voin, ja esiintyä Suomen parhaiden muusikoiden kanssa. Se on kunnia ja etuoikeus, josta olen ikuisesti kiitollinen.”<br>– Erik Hokkanen</p><p><b>Erik Hokkanen & Lumisudet ovat:</b></p><p>Erik Hokkanen - laulu, kitara ja viulu<br>Petri Hakala - mandoliini ja kitara<br>Arto Järvelä - viulu ja snare<br>Tapani Varis - basso ja munniharppu</p><p>Kesto: 1 tunti, 15 min</p>", "sv": "<p>Konsert den 28 januari 2025 på Malmitalo har ställts in på grund av sjukdom.</p><p>- Lippupiste återbetalar kundernas pengar<br>- Biljetter måste lämnas tillbaka senast den 28 februari 2025.</p><p>Biljettåterbetalning kan begäras via denna webblänk: https://web.lippu.fi/palautus/</p><p>-</p><p>Western swing från Texas och folkmusik från Kaustinen bildar en läcker kombination i Erik Hokkanens och Lumisudets gemensamma musicerande. Samarbetet fick sin början i slutet av 1980-talet, då den tredje generationens amerikafinländare Erik Hokkanen bekantade sig med finländska folkmusiker.</p><p>“Jag känner mig välsignad då jag får jobba och spela med alla min bröder om och om igen. Det är viktigt för mig att få återvända till Finland alltid när jag kan, och framträda med de bästa musikerna i Finland. Det är en ära och ett privilegium som jag är evigt tacksam över.”<br>– Erik Hokkanen</p><p><b>Erik Hokkanen & Lumisudet är:</b></p><p>Erik Hokkanen - sång, gitarr och fiol<br>Petri Hakala - mandolin och gitarr<br>Arto Järvelä - fiol och snare<br>Tapani Varis - bas och mungiga</p>", "en": "<p>Erik Hokkanen (US) and Lumisudet concert on 28.1.2025 at Malmitalo has been cancelled due to illness.</p><p>- Lippupiste will refund customers<br>- Tickets must be returned by 28.2.2025.</p><p>Ticket refunds can be requested via this web link: https://web.lippu.fi/palautus/</p><p>-</p><p>Texas-style western swing and folk music from Kaustinen are delightfully combined in the music of Erik Hokkanen and Lumisudet. The collaboration began in the late 1980s when Erik Hokkanen, a third-generation American Finn, met Finnish folk musicians.</p><p>“I feel blessed to be able to work and play with all my brothers again and again. It’s important for me to come back to Finland whenever I can and perform with the best musicians in Finland. It is an honour and a privilege for which I am eternally grateful.”<br>– Erik Hokkanen</p><p><b>Erik Hokkanen & Lumisudet are:</b></p><p>Erik Hokkanen – vocals, guitar and violin<br>Petri Hakala – mandolin and guitar<br>Arto Järvelä – violin and snare<br>Tapani Varis – bass and jaw harp</p>" }, "provider_contact_info": null, "short_description": { "fi": "Erik Hokkanen (US) ja Lumisudet konsertti 28.1.2025 Malmitalolla on peruuntunut sairaskohtauksen vuoksi.", "sv": "Konsert den 28 januari 2025 på Malmitalo har ställts in på grund av sjukdom.", "en": "Erik Hokkanen (US) and Lumisudet concert on 28.1.2025 at Malmitalo has been cancelled due to illness." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64835/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65514", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T15:15:26.289241Z", "last_modified_time": "2025-01-24T15:15:26.289259Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761014.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T15:15:26.256249Z", "last_modified_time": "2025-01-24T15:15:26.374142Z", "date_published": null, "start_time": "2025-04-09T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HOW Radio: Global Club Nights – Katja Thomson", "sv": "HOW Radio: Global Club Nights – Katja Thomson", "en": "HOW Radio: Global Club Nights – Katja Thomson" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights" }, "description": { "fi": "<p>Katja Thomson on vieraana HOW Radiossa.</p><p>Hän toimii musiikkikasvatuksen lehtorina sekä tutkijana Taideyliopiston Sibelius-Akatemian Music Education, Professionalism, and Eco-Politics -hankkeessa (EcoPolitics, 2021–2025).</p><p>Hän on työskennellyt laajasti musiikkikasvattajana ja taiteilijana kouluissa, yhtyeissä, teatterissa ja erilaisissa yhteisöllisissä ympäristöissä.</p><p>Katja on Euroopan konservatorioiden liiton (AEC) Empowering Artists as Makers in Society (ARTEMIS) -työryhmän puheenjohtaja, joka keskittyy monimuotoisuuteen, inkluusioon ja sukupuolten tasa-arvoon.</p><p>Vuonna 2021 hän väitteli tohtoriksi tutkimuksella, joka käsitteli yhtyeprojektia, johon osallistui pakolaistaustaisia ja maahanmuuttajataustaisia muusikoita sekä Sibelius-Akatemian opiskelijoita.</p><p>Katja asui Isossa-Britanniassa vuosina 1996–2011 ja on kehittänyt luovia ja osallistavia musiikkikasvatusohjelmia Suomessa, Isossa-Britanniassa, Brasiliassa ja Filippiineillä.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: www.helsinkiopenwaves.com</p>", "sv": "<p>Katja Thomson är lektor i musikpedagogik och forskare i projektet Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021–2025) vid Konstuniversitetets Sibelius-Akademi.</p><p>Hon har arbetat omfattande som musikpedagog och artist i skolor, band, teatrar och olika samhällsmiljöer.</p><p>Katja är ordförande för arbetsgruppen Empowering Artists as Makers in Society (ARTEMIS) i det europeiska förbundet för konservatorier (AEC), som fokuserar på mångfald, inkludering och jämställdhet mellan könen.</p><p>År 2021 doktorerade hon med en undersökning om ett bandprojekt som involverade musiker med flykting- och invandrarbakgrund och studerande från Sibelius-Akademin.</p><p>Katja bodde i Storbritannien under åren 1996–2011 och har utvecklat kreativa och inkluderande program i musikpedagogik i Finland, Storbritannien, Brasilien och Filippinerna.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på www.helsinkiopenwaves.com</p>", "en": "<p>Dr. Katja Thomson is a Lecturer in Music Education and a researcher in the project Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021-2025) at the Sibelius Academy of the University of the Arts Helsinki, Finland.</p><p>She has worked extensively as a music educator and artist in schools, ensembes, theatre and various community settings. Katja is the chair of the Diversity, Inclusion and Gender Equality working group for Empowering Artists as Makers in Society (ARTEMIS) of the European Association of Conservatoires (AEC). <br>In 2021 she completed her doctoral dissertation on an ensemble project including musicians with refugee and immigrant background and students from the Sibelius Academy. <br>Katja lived in the UK 1996-2011 and has developed music education programmes promoting creative, participatory music practices in Finland, UK, Brazil and the Philippines. <br><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: www.helsinkiopenwaves.com</p>" }, "provider_contact_info": null, "short_description": { "fi": "Katja Thomson on vieraana HOW Radiossa.", "sv": "Katja Thomson är lektor i musikpedagogik och forskare i projektet Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021–2025) vid Konstuniversitetets Sibelius-Akademi.", "en": "Dr. Katja Thomson is a Lecturer in Music Education and a researcher in the project Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021-2025) at the Sibelius Academy of the University of the Arts Helsinki, Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65428", "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: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: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:p1235/?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": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153719, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-13T09:14:40.299275Z", "last_modified_time": "2025-01-13T09:14:40.299291Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758963.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153719/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-13T09:14:40.274465Z", "last_modified_time": "2025-01-24T15:15:06.182469Z", "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, "name": { "fi": "Ei koskaan yksin (12) – Kino Helios", "sv": "Ei koskaan yksin (12) – Kino Helios", "en": "Ei koskaan yksin (12) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_", "en": "http://www.malmitalo.fi/en/events/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_" }, "description": { "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65428/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64736", "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:46/?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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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:p38064/?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:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153668, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T12:15:17.824633Z", "last_modified_time": "2025-01-03T12:15:17.824651Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759547.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153668/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-03T12:15:17.798179Z", "last_modified_time": "2025-01-24T13:14:32.451928Z", "date_published": null, "start_time": "2025-02-28", "end_time": "2025-05-03", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pumpulimuisto", "sv": "Bomullsminnen", "en": "Cotton Memories" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Pumpulimuisto", "sv": "http://www.annantalo.fi/sv/evenemang/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Bomullsminnen", "en": "http://www.annantalo.fi/en/events/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Cotton_Memories" }, "description": { "fi": "<p>Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.</p><p>Pumpulimuisto on Pehmeät materiaalit nykytaiteessa -kurssin näyttely. Aalto-yliopiston taiteiden ja suunnittelun korkeakoulun Taiteen ja median laitoksen valinnaisiin opintoihin kuuluva kurssi - lempinimeltään Pehmikset - on ollut opinto-ohjelmassa vuodesta 2011 alkaen.<br> <br>Pumpulimuisto koostuu eri tekniikoin kurssin aikana toteutetuista teoksista. Opiskelijat ovat tutustuneet tekstiilimateriaalien ja -tekniikoiden käyttöön nykytaiteessa luentojen, taiteilijavierailujen ja oman taiteellisen työskentelyn avulla. Näyttelyn teokset ja teema syntyvät opiskelijaryhmän ideoiden pohjalta.</p><p>Vapaa pääsy</p><p><b>Näyttelyn avajaiset 27.2. klo 17-19 - Tervetuloa!</b></p>", "sv": "<p>Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.</p><p>Bomullsminnen är en utställning av Aalto-universitetets konst- och designskolas institution för konst och medias kurs Mjuka material inom samtidskonsten. Den valbara kursen med smeknamnet Mjuksaker har varit en del av studieprogrammet sedan 2011.<br> <br>De studerande har introducerats till användningen av textilmaterial och -tekniker i samtida konst genom föreläsningar, konstnärsbesök och eget konstnärligt arbete. Utställningens verk och tema bygger på studerandegruppens idéer.</p>", "en": "<p>Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials.</p><p>Cotton Memories is an exhibition of the Soft materials in contemporary art course at the Aalto University School of Arts, Design and Architecture. The course, which is part of optional studies and nicknamed Softies, has been in the study programme since 2011.<br> <br>Students have become familiar with the use of textile materials and techniques in contemporary art through lectures, artist visits and their own artistic work. The works and theme of the exhibition are based on the ideas of the student group.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.", "sv": "Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.", "en": "Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64736/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d244", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d3py/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-01-15T13:50:20.831856Z", "last_modified_time": "2025-01-24T11:28:13.422669Z", "date_published": null, "start_time": "2025-05-30T08:00:00Z", "end_time": "2025-05-30T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Baby Kino", "sv": "Baby Kino", "en": "Baby Kino " }, "provider": null, "info_url": null, "description": { "fi": "<p>ELOKUVAT: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Rouva Harris lähtee Pariisiin </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Pikkunaisia </p><p><br></p><p> -Babykino on tarkoitettu vanhemmille/hoitajille ja vauvoille. </p><p>-Elokuvat on valittu aikuisten kokoelmasta, mutta ne ovat ikärajaltaan sallittuja (S). </p><p>-Babykino on maksuton ja se järjestetään Ison Omenan kirjaston VOX-tilassa. </p><p>-Elokuvan äänet ovat normaalia hiljaisemmalla ja tilassa on himmeä valaistus. </p><p>-Tilassa on erilaisia sohvia ja tuoleja, sekä vesipiste ja mikro. Omat eväät on sallittu! </p><p>-Lastenhoitohuone löytyy tilan läheisyydestä kirjaston lastenosastolta neuvolan päädystä. </p><p>-Voit tuoda mukanasi oman alustan vauvalle, esimerkiksi kantokassin tai turvaistuimen, jossa vauvasi voi nukkua elokuvan aikana. </p><p>-Vauvan äänet eivät häiritse elokuvan aikana! </p>", "sv": "<p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino är för föräldrar/vårdare och bebisar.</p><p>Filmerna är valda från vuxenkollektionen men är tillåtna för alla åldrar (S).</p><p>Babykino är gratis och arrangeras i VOX-rummet på Iso Omena-biblioteket.</p><p>Ljudnivån på filmen är lägre än normalt, och belysningen i rummet är dämpad.</p><p>I rummet finns olika soffor och stolar, en vattenkran och en mikrovågsugn. Egna snacks är tillåtna!</p><p>Ett skötrum finns i närheten av bibliotekets barnavdelning vid rådgivningens ände.</p><p>Du kan ta med en egen underlag för din bebis, till exempel en bärväska eller bilstol, där din bebis kan sova under filmen.</p><p>Bebisens ljud stör inte under filmen!</p>", "en": "<p>Films: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino is intended for parents/caregivers and babies.</p><p>The movies are selected from the adult collection but are rated suitable for all ages (S).</p><p>Babykino is free of charge and takes place in the VOX room at Iso Omena Library.</p><p>The movie audio is quieter than usual, and the room has dim lighting.</p><p>The space features various sofas and chairs, a water station, and a microwave. You’re welcome to bring your own snacks!</p><p>A baby care room is located near the library's children's section at the end of the health center.</p><p>You can bring your own mat for the baby, such as a carrycot or car seat, where your baby can sleep during the movie.</p><p>Baby sounds won’t disturb the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Babykinoon Ison Omenan kirjastoon joka kuukauden viimeisenä perjantaina! ", "sv": "Välkommen till Babykino på Iso Omena-biblioteket den sista fredagen i varje månad!", "en": "Welcome to Babykino at Iso Omena Library on the last Friday of each month!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d3py", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d244/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-01-15T13:50:18.768298Z", "last_modified_time": "2025-01-24T11:28:07.938990Z", "date_published": null, "start_time": "2025-01-31T09:00:00Z", "end_time": "2025-05-30T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Baby Kino", "sv": "Baby Kino", "en": "Baby Kino " }, "provider": null, "info_url": null, "description": { "fi": "<p>ELOKUVAT: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Rouva Harris lähtee Pariisiin </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Pikkunaisia </p><p><br></p><p> -Babykino on tarkoitettu vanhemmille/hoitajille ja vauvoille. </p><p>-Elokuvat on valittu aikuisten kokoelmasta, mutta ne ovat ikärajaltaan sallittuja (S). </p><p>-Babykino on maksuton ja se järjestetään Ison Omenan kirjaston VOX-tilassa. </p><p>-Elokuvan äänet ovat normaalia hiljaisemmalla ja tilassa on himmeä valaistus. </p><p>-Tilassa on erilaisia sohvia ja tuoleja, sekä vesipiste ja mikro. Omat eväät on sallittu! </p><p>-Lastenhoitohuone löytyy tilan läheisyydestä kirjaston lastenosastolta neuvolan päädystä. </p><p>-Voit tuoda mukanasi oman alustan vauvalle, esimerkiksi kantokassin tai turvaistuimen, jossa vauvasi voi nukkua elokuvan aikana. </p><p>-Vauvan äänet eivät häiritse elokuvan aikana! </p>", "sv": "<p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino är för föräldrar/vårdare och bebisar.</p><p>Filmerna är valda från vuxenkollektionen men är tillåtna för alla åldrar (S).</p><p>Babykino är gratis och arrangeras i VOX-rummet på Iso Omena-biblioteket.</p><p>Ljudnivån på filmen är lägre än normalt, och belysningen i rummet är dämpad.</p><p>I rummet finns olika soffor och stolar, en vattenkran och en mikrovågsugn. Egna snacks är tillåtna!</p><p>Ett skötrum finns i närheten av bibliotekets barnavdelning vid rådgivningens ände.</p><p>Du kan ta med en egen underlag för din bebis, till exempel en bärväska eller bilstol, där din bebis kan sova under filmen.</p><p>Bebisens ljud stör inte under filmen!</p>", "en": "<p>Films: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino is intended for parents/caregivers and babies.</p><p>The movies are selected from the adult collection but are rated suitable for all ages (S).</p><p>Babykino is free of charge and takes place in the VOX room at Iso Omena Library.</p><p>The movie audio is quieter than usual, and the room has dim lighting.</p><p>The space features various sofas and chairs, a water station, and a microwave. You’re welcome to bring your own snacks!</p><p>A baby care room is located near the library's children's section at the end of the health center.</p><p>You can bring your own mat for the baby, such as a carrycot or car seat, where your baby can sleep during the movie.</p><p>Baby sounds won’t disturb the movie!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Babykinoon Ison Omenan kirjastoon joka kuukauden viimeisenä perjantaina! ", "sv": "Välkommen till Babykino på Iso Omena-biblioteket den sista fredagen i varje månad!", "en": "Welcome to Babykino at Iso Omena Library on the last Friday of each month!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d3py/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d4o4", "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:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:06:50.742171Z", "last_modified_time": "2025-01-24T11:23:04.370929Z", "date_published": null, "start_time": "2025-05-24T09:00:00Z", "end_time": "2025-05-24T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten lauantaileffa", "sv": "Barnens lördagsfilm", "en": "Kids’ Saturday Movie" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>", "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>", "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>" }, "provider_contact_info": null, "short_description": { "fi": "k-7 elokuvia suomeksi", "sv": "Filmer med åldersgräns 7 år på finska", "en": "Movies for children over 7 years old in Finnish" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4o4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d424", "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:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:06:50.930286Z", "last_modified_time": "2025-01-24T11:23:04.074973Z", "date_published": null, "start_time": "2025-05-31T09:00:00Z", "end_time": "2025-05-31T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten lauantaileffa", "sv": "Barnens lördagsfilm", "en": "Kids’ Saturday Movie" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>", "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>", "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>" }, "provider_contact_info": null, "short_description": { "fi": "k-7 elokuvia suomeksi", "sv": "Filmer med åldersgräns 7 år på finska", "en": "Movies for children over 7 years old in Finnish" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d424/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d5he", "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:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4cm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4o4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d424/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:06:43.080952Z", "last_modified_time": "2025-01-24T11:22:52.488725Z", "date_published": null, "start_time": "2025-01-18T10:00:00Z", "end_time": "2025-05-31T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten lauantaileffa", "sv": "Barnens lördagsfilm", "en": "Kids’ Saturday Movie" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>", "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>", "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>" }, "provider_contact_info": null, "short_description": { "fi": "k-7 elokuvia suomeksi", "sv": "Filmer med åldersgräns 7 år på finska", "en": "Movies for children over 7 years old in Finnish" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64814", "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:348/?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": [], "price": { "fi": "39 € / 36 €", "sv": "39 € / 36 €", "en": "39 € / 36 €" }, "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-finnair-pilots-big-band-feat-diandra-come-fly-with-me-malmitalo-19374599/", "sv": "https://www.lippu.fi/event/malmitalo-finnair-pilots-big-band-feat-diandra-come-fly-with-me-malmitalo-19374599/", "en": "https://www.lippu.fi/event/malmitalo-finnair-pilots-big-band-feat-diandra-come-fly-with-me-malmitalo-19374599/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153593, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T11:14:04.064635Z", "last_modified_time": "2024-12-31T11:14:04.064652Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760294.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153593/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T11:14:04.023956Z", "last_modified_time": "2025-01-24T11:09:42.581436Z", "date_published": null, "start_time": "2025-04-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LOPPUUNMYYTY Finnair Pilots’ Big Band feat. Diandra – Come fly with me!", "sv": "SLUTSÅLD Finnair Pilots’ Big Band feat. Diandra – Come fly with me!", "en": "SOLD OUT Finnair Pilots’ Big Band feat. Diandra – Come fly with me!" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/38062944BE2434ECB14D5848C8DFE4B9/LOPPUUNMYYTY_Finnair_Pilots_Big_Band_feat_Diandra_Come_fly_with_me_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/38062944BE2434ECB14D5848C8DFE4B9/SLUTSALD_Finnair_Pilots_Big_Band_feat_Diandra_Come_fly_with_me_", "en": "http://www.malmitalo.fi/en/events/event/38062944BE2434ECB14D5848C8DFE4B9/SOLD_OUT_Finnair_Pilots_Big_Band_feat_Diandra_Come_fly_with_me_" }, "description": { "fi": "<p>Finnair Pilots’ Big Band solistinaan upea Diandra vievät meidät musiikilliselle matkalle ympäri maailmaa.</p><p>Konsertin ohjelmassa on viihdemusiikin helmiä eri vuosikymmeniltä. Konsertin toisena laulusolistina toimii Finnairin laulava lentäjä Mikael Konttinen.</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p><p>HUOM! Suuren kysynnän vuoksi tulossa samanlainen päiväkonsertti klo 15, liput tulevat myyntiin pian.</p>", "sv": "<p>Finnair Pilots’ Big Band med den härliga Diandra som solist tar med oss på en musikalisk resa runt världen.</p><p>Konsertens program innehåller pärlor från underhållningsmusikens olika årtionden. Som andra sångsolist på konserten fungerar Finnairs sjungande pilot Mikael Konttinen.</p><p>Längd: 1 h 45 min., inklusive en paus på 20 minuter</p>", "en": "<p>The Finnair Pilots’ Big Band, featuring the amazing Diandra on vocals, will take us on a musical journey around the world.</p><p>The concert will feature pop music gems from different decades. Finnair’s singing pilot, Mikael Konttinen, will be the second featured vocalist in the concert.</p><p>Duration: 1 h 45 min, incl. 20 min intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Finnair Pilots’ Big Band solistinaan upea Diandra vievät meidät musiikilliselle matkalle ympäri maailmaa.", "sv": "Finnair Pilots’ Big Band med den härliga Diandra som solist tar med oss på en musikalisk resa runt världen.", "en": "The Finnair Pilots’ Big Band, featuring the amazing Diandra on vocals, will take us on a musical journey around the world." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64814/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65090", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:42.194640Z", "last_modified_time": "2025-01-24T11:09:42.194658Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763841.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166311/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-24T11:09:42.169987Z", "last_modified_time": "2025-01-24T11:09:42.265627Z", "date_published": null, "start_time": "2025-04-03T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Alakoulukino: Vonkka (7)", "sv": "Alakoulukino: Vonkka (7)", "en": "Alakoulukino: Vonkka (7)" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A63D932EA4E66CAB32651DF12F3F483A/Alakoulukino_Vonkka_7_", "sv": "http://www.stoa.fi/sv/evenemang/event/A63D932EA4E66CAB32651DF12F3F483A/Alakoulukino_Vonkka_7_", "en": "http://www.stoa.fi/en/events/event/A63D932EA4E66CAB32651DF12F3F483A/Alakoulukino_Vonkka_7_" }, "description": { "fi": "<p>Vonkka perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin.</p><p>Elokuva kertoo siitä, miten maailman suurimmasta keksijästä, taikurista ja suklaatehtailijasta tuli tuntemamme, rakastettu Villi Vonkka.</p><p>Vonkka tarjoaa huumaavan sekoituksen taikaa ja musiikkia, kaaosta ja tunnetta, joka kerrotaan suurella sydämellä ja huumorilla. Timothée Chalamet esittää pääosaa tässä vastustamattoman vauhdikkaassa ja kekseliäässä laajakangasspektaakkelissa. Vonkalla on loputtomasti ideoita ja hän on päättänyt muuttaa maailmaa herkullinen suupala kerrallaan ja samalla todistaa, että parhaat asiat elämässä alkavat unelmasta – ja että joka onnekseen tapaa Villi Vonkan huomaa, että mikä tahansa on mahdollista.<br> <br>Ikäsuositus: K-7<br>Kesto: 117 min<br>Kieli: englanti, tekstitetty suomeksi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset https://kultus.fi/fi/</p>" }, "provider_contact_info": null, "short_description": { "fi": "Vonkka perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65090/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65091", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:35.941028Z", "last_modified_time": "2025-01-24T11:09:35.941049Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763842.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166309/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-01-24T11:09:35.898140Z", "last_modified_time": "2025-01-24T11:09:36.032991Z", "date_published": null, "start_time": "2025-03-10T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yläkoulukino: Suomeen juurtuneet – asiantuntijavieraana Ervin Latimer Jr.", "sv": "Yläkoulukino: Suomeen juurtuneet", "en": "Yläkoulukino: Suomeen juurtuneet" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/09164E4E23D369CF6DF6339A1BE4DBCB/Ylakoulukino_Suomeen_juurtuneet", "sv": "http://www.stoa.fi/sv/evenemang/event/09164E4E23D369CF6DF6339A1BE4DBCB/Ylakoulukino_Suomeen_juurtuneet", "en": "http://www.stoa.fi/en/events/event/09164E4E23D369CF6DF6339A1BE4DBCB/Ylakoulukino_Suomeen_juurtuneet" }, "description": { "fi": "<p>Shawn Huff ja Ervin Latimer Jr. ovat 1970-luvulla Suomeen saapuneiden afroamerikkalaisten koripallopelaajien (Leon Huff ja Ervin Latimer Sr.) lapsia.</p><p>He ovat kasvaneet suomalaisiksi yhteiskunnallisiksi ja poliittisiksi vaikuttajiksi isiensä periksiantamattomuuden, kunnianhimoisuuden ja rasististen lähtökohtien kautta.</p><p>Suomeen juurtuneet on dokumenttielokuva isien ja poikien välisistä suhteista ja suomalaisuuteen juurtumisesta. Pojat kanavoivat hiljaisten isien kokemukset toimintaan ja molemmat sukupolvet taistelevat tahoillaan tasa-arvoisemman maailman puolesta.</p><p>”Sä voit olla ihan mitä vaan.”<br> <br>Kesto: 1 h 52 min</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset www.kultus.fi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Shawn Huff ja Ervin Latimer Jr. ovat 1970-luvulla Suomeen saapuneiden afroamerikkalaisten koripallopelaajien (Leon Huff ja Ervin Latimer Sr.) lapsia." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65452", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:30.599542Z", "last_modified_time": "2025-01-24T11:09:30.599560Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761440.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166308/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-24T11:09:30.545584Z", "last_modified_time": "2025-01-24T11:09:30.710086Z", "date_published": null, "start_time": "2025-02-18T09:00:00Z", "end_time": "2025-02-19T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hupsansaa ry: Hulvaton aurinkomatka -elämystila ja työpajat – Talvilomatekemistä", "sv": "Hupsansaa ry: Fantastisk solresa – upplevelserum och workshoppar – Sportlovsaktiviteter", "en": "Hupsansaa ry: Fun-filled holiday in the sun experiential space and workshops – Winter break activities" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Hulvaton_aurinkomatka_-elamystila_ja_tyopajat", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Fantastisk_solresa_upplevelserum_och_workshoppar", "en": "http://www.malmitalo.fi/en/events/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Fun-filled_holiday_in_the_sun_experiential_space_and_workshops" }, "description": { "fi": "<p>Tervetuloa ti 18.2. ja ke 19.2. klo 11–13 Malmitalon talviloman askartelupajoihin ja aarteiden ongintaan!</p><p>Lähdetään talvilomalla Hulvattomalle aurinkomatkalle! Kimaltava meri kutsuu kalastamaan! Mitä aarteita merestä voisi onkia? Kokeile kalastusta veikeällä lötköpötkö-ongella, nappaakohan kala?</p><p>Aurinkomatkalla voi loikoilla pehmoisella hiekkarannalla, uiskennella jättimäisellä donitsilla ja nauttia aurinkovarjojen loisteesta. Aurinkomatkan pääsylippuun sisältyy pääsy rannalle, seilailua aalloilla, aarteiden ongintaa sekä askartelua!</p><p>Askartelutyöpajoissa tehdään mm. pomppivat auringot, sulaneet jäätelötötteröt ja veikeät kiikarit!</p><p>Loihditaan pomppivista ja värikkäistä auringoista pieni pallopeli, jolla voi harjoitella leikin kautta myös motorisia taitoja. Muotoillaan sulaneita jäätelötötteröitä ja valmistetaan värikkäistä kartioista veikeät kiikarit.</p><p>Askartelutyöpajoissa hyödynnetään kierrätysmateriaaleja.</p><p>Paikka: Kokoushuone 2 ja parvi</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen till Malms kulturhus ti 18.2. och onsdag 19.2. kl. 11–13 till sportlovets pysselworkshoppar och att meta skatter!</p><p>På sportlovet åker vi på en Fantastisk solresa! Det glittrande havet bjuder in till fiske! Vilka skatter kan vi meta upp ur havet? <br>Pröva på fiske med simnudelspö, nappar det?</p><p>På solresan kan man ligga och gona sig på en mjuk sandstrand, simma med en jättedonits och njuta av parasollernas färgglans. Entrébiljetten till solresan innehåller tillgång till stranden, segling på vågor, mete av skatter och pyssel!</p><p>I pysselworkshopparna lagar vi bland annat studsande solar, smälta glasstrutar och skojiga kikare!<br>Vi trollar fram ett litet bollspel av studsande och färgglada solar, med hjälp av vilket vi även kan öva våra motoriska färdigheter via lek. Vi formar smälta glasstrutar och lagar skojiga kikare av färgglada koner.</p><p>I pysselworkshopparna använder vi återvunna material.</p><p>Plats: Mötesrum 2 och balkongen</p><p>Fritt inträde!</p>", "en": "<p>Join us on Tue, 18 Feb and Wed, 19 Feb, from 11:00 to 13:00 for craft workshops and fishing for treasure during winter break at Malmitalo!</p><p>Let’s go on a Fun-filled holiday in the sun during the winter break! The sparkling sea invites you to go fishing! What treasures might you catch from the sea? Try your hand at fishing with a fun pool-noodle pole! Will you catch a fish?</p><p>The sunny holiday lets you lounge on a soft sandy beach, splash around on a giant doughnut and enjoy the glow of sunshades. The sunny holiday admission ticket includes access to the beach, sailing on the waves, fishing for treasures and crafting!</p><p>The craft workshops include making bouncing suns, melted ice cream cones and funny binoculars!<br>We’ll have a small ball game with the bouncing and colourful suns, which you can use to practise motor skills through playing. We’ll sculpt melted ice cream cones and turn the colourful cones into whimsical binoculars.</p><p>The craft workshops will make use of recycled materials.</p><p>Location: Meeting room 2 and loft</p><p>Admission is free!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa ti 18.2. ja ke 19.2. klo 11–13 Malmitalon talviloman askartelupajoihin ja aarteiden ongintaan!", "sv": "Välkommen till Malms kulturhus ti 18.2. och onsdag 19.2. kl. 11–13 till sportlovets pysselworkshoppar och att meta skatter!", "en": "Join us on Tue, 18 Feb and Wed, 19 Feb, from 11:00 to 13:00 for craft workshops and fishing for treasure during winter break at Malmitalo!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65452/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d5ta", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6ai/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 151380, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-06-07T11:33:18.307680Z", "last_modified_time": "2024-06-07T11:33:18.307701Z", "name": "Kuva: Unsplash", "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg", "cropping": "106,0,534,427", "photographer_name": "", "alt_text": "Kuvassa musta konsoliohjain", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-24T10:17:34.973942Z", "last_modified_time": "2025-01-24T10:17:34.973956Z", "date_published": null, "start_time": "2025-05-20T13:00:00Z", "end_time": "2025-05-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "K-12 nuortenilta", "sv": "K-12 Ungdomarnas kväll", "en": "K-12 youth night" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>", "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>", "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.", "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.", "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. " }, "location_extra_info": { "fi": "Messi", "sv": "Messi", "en": "Messi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5ta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d6ai", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5ta/?format=api" } ], "images": [ { "id": 151380, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-06-07T11:33:18.307680Z", "last_modified_time": "2024-06-07T11:33:18.307701Z", "name": "Kuva: Unsplash", "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg", "cropping": "106,0,534,427", "photographer_name": "", "alt_text": "Kuvassa musta konsoliohjain", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-24T10:17:28.861047Z", "last_modified_time": "2025-01-24T10:17:28.861063Z", "date_published": null, "start_time": "2025-01-28T14:00:00Z", "end_time": "2025-05-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "K-12 nuortenilta", "sv": "K-12 Ungdomarnas kväll", "en": "K-12 youth night" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>", "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>", "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.", "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.", "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. " }, "location_extra_info": { "fi": "Messi", "sv": "Messi", "en": "Messi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6ai/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d6nm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wih4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-08T13:45:05.852783Z", "last_modified_time": "2025-01-24T08:29:51.610422Z", "date_published": null, "start_time": "2025-05-21T11:30:00Z", "end_time": "2025-05-21T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "provider": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "provider_contact_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6nm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d6zq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wih4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-08T13:45:06.829613Z", "last_modified_time": "2025-01-24T08:29:51.510591Z", "date_published": null, "start_time": "2025-05-23T11:30:00Z", "end_time": "2025-05-23T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "provider": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "provider_contact_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6zq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65002", "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": [], "price": { "fi": "47,90 €", "sv": "47,90 €", "en": "47,90 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/matchbox/", "sv": "https://www.lippu.fi/artist/matchbox/", "en": "https://www.lippu.fi/artist/matchbox/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153333, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T15:14:09.591932Z", "last_modified_time": "2024-12-09T15:14:09.591945Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153333/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T15:14:09.567379Z", "last_modified_time": "2025-01-23T14:13:35.757637Z", "date_published": null, "start_time": "2025-01-23T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LOPPUUNMYYTY Matchbox (UK)", "sv": "SLUTSÅLD Matchbox (UK)", "en": "SOLD OUT Matchbox (UK)" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9651157B5C47F668F5F87A837A7C258/LOPPUUNMYYTY_Matchbox_UK_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9651157B5C47F668F5F87A837A7C258/SLUTSALD_Matchbox_UK_", "en": "http://www.malmitalo.fi/en/events/event/D9651157B5C47F668F5F87A837A7C258/SOLD_OUT_Matchbox_UK_" }, "description": { "fi": "<p>Legendaarinen rockabilly-yhtye nyt Malmitalolla!</p><p>Matchbox on harvoja jo 1970-luvulla nähtyjä yhtyeitä, joiden kokoonpano on edelleen sama kuin suurimpien hittien päivinä. Yhtye oli suosionsa huipulla Suomessa 1980-luvun alun rockabilly-boomin aikana.</p><p>Yhtyeen suosittuja kappaleita ovat muun muassa ”Rockabilly Rebel ja ”Midnight Dynamos”.</p><p>Esiintymiset TV:ssä ja kiertueilla mm. Jerry Lee Lewisin, Johnny Cashin ja Chuck Berryn kaltaisten suuruuksien kanssa vain vahvistivat bändin asemaa. Näitä vuosia seuranneen hiljaisemman kauden jälkeen yhtye palasi lavoille uuden rockabilly-boomin nostaessa päätään vuonna 1996 ja on edelleen tällä tiellä keikkaillen Isossa-Britanniassa ja muualla Euroopassa.</p><p>Suomeen yhtye saapuu tammikuussa 2025 ja ensimmäinen keikka järjestetään Helsingin Malmitalossa.<br> <br>Kokoonpano 2024:<br>Graham Fenton - Lead Vocalist,<br>Steve Bloomfield - Lead Guitar / vocals,<br>Jimmy Redhead - Drums / vocals,<br>Gordon Scott - Rhythm Guitar / vocals,<br>Fred Poke - Bass / vocals<br> <br>Kesto: 1 t 15 min, ei väliaikaa</p>", "sv": "<p>Det legendariska rockabilly-bandet på Malms kulturhus!</p><p>Matchbox räknas bland de få band som redan sågs på 1970-talet och vars ensemble fortfarande är densamma som då de stora hittarna släpptes. Bandet var som populärast i Finland under rockabilly-boomen i början av 1980-talet.</p><p>Bandets populära låtar inkluderar “Rockabilly Rebel” och “Midnight Dynamos”. Framträdanden i TV och turnéer med bland annat sådana storheter som Jerry Lee Lewis, Johnny Cash och Chuck Berry stärkte bandets ställning ytterligare. Efter den tystare period som följde på dessa år återvände bandet till scenen med den nya rockabilly-boomen år 1996, och är fortfarande på den vägen med spelningar i Storbritannien och på andra håll i Europa.</p><p>Bandet kommer till Finland i januari 2025, och den första spelningen ordnas i Malms kulturhus i Helsingfors.<br> <br>Ensemble 2024:<br>Graham Fenton - Lead Vocalist,<br>Steve Bloomfield - Lead Guitar / vocals,<br>Jimmy Redhead - Drums / vocals,<br>Gordon Scott - Rhythm Guitar / vocals,<br>Fred Poke - Bass / vocals<br> <br>Längd 1 h 15 min., ingen paus</p>", "en": "<p>Legendary rockabilly band now at Malmitalo!</p><p>Matchbox is one of the few bands dating back to the 1970s whose line-up remains the same as when they had their biggest hits. The band was at the peak of its popularity in Finland during the rockabilly boom of the early 1980s.</p><p>The band’s popular songs include “Rockabilly Rebel” and “Midnight Dynamos”. Appearances on TV and tours with big names like Jerry Lee Lewis, Johnny Cash and Chuck Berry only strengthened the band’s position. After a quieter period following these years, the band returned to the stage as the new rockabilly boom took hold in 1996 and continues on this journey, touring Great Britain and elsewhere in Europe.</p><p>The band will arrive in Finland in January 2025, and their first show will take place at Malmitalo in Helsinki.<br> <br>Line-up in 2024:<br>Graham Fenton – Lead Vocalist,<br>Steve Bloomfield – Lead Guitar / vocals,<br>Jimmy Redhead – Drums / vocals,<br>Gordon Scott – Rhythm Guitar / vocals,<br>Fred Poke – Bass / vocals<br> <br>Duration: 1 h 15 min, no intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Legendaarinen rockabilly-yhtye nyt Malmitalolla!", "sv": "Det legendariska rockabilly-bandet på Malms kulturhus!", "en": "Legendary rockabilly band now at Malmitalo!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64734", "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:46/?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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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:p38064/?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:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152843, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-21T12:15:20.180498Z", "last_modified_time": "2024-10-21T12:15:20.180519Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759432.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152843/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-10-21T12:15:20.136671Z", "last_modified_time": "2025-01-23T14:13:29.708830Z", "date_published": null, "start_time": "2024-11-30", "end_time": "2025-03-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kristina Laine: Taidenaamiot – Ajatukset Artefakteiksi", "sv": "Kristina Laine: Konstmasker – Tankar till artefakter", "en": "Kristina Laine: Art Masks – From Ideas to Artefacts" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Taidenaamiot_Ajatukset_Artefakteiksi", "sv": "http://www.annantalo.fi/sv/evenemang/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Konstmasker_Tankar_till_artefakter", "en": "http://www.annantalo.fi/en/events/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Art_Masks_From_Ideas_to_Artefacts" }, "description": { "fi": "<p>Kristina Laineen näyttely koostuu lukuisista erilaisista naamioista.</p><p>Vuosien aikana tehdyt naamiot edustavat aineettomia asioita, jotka ovat ottaneet esineen muodon. Niistä on tullut artefakteja – symbolisia esineitä, joista kukin edustaa jotakin, esimerkiksi tiettyä olotilaa tai tunnetta.</p><p>Näyttelyn naamiot on toteutettu useilla eri tekniikoilla pääosin luonnosta kerätyistä tai kierrätetyistä materiaaleista.</p><p><i>”Naamiot leikittelevät kasvon ja persoonan muuttumisen mahdollisuuksilla. Ne edustavat yhteyttä näkymättömiin siteisiin: muihin ihmisiin ja maailmaan – sukupolvien ketjun kautta menneeseen aikaan ulottuviin yhteyksiin. Naamiot voisivat kenties olla väline, jonka avulla voisi saada yhteyden luontoon tai omaan itseen.”</i></p><p>Kristina on monialainen taiteilija, joka työskentelee kuvataiteen ja animaation parissa. Häntä kiehtovat kuvakerronta ja erityisesti symboliikka.</p><p><b>Näyttelyn avajaiset perjantaina 29.11.2024 klo 17–19, tervetuloa!</b></p><p><b>HUOM! 5.2. klo 13:30-18:00 näyttely on tilapäisesti suljettu <br>lyhytelokuvan kuvausten vuoksi.</b></p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kesän 2024 aikana hakuun tuli 126 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kolme näyttelyä eteläpäädyn galleriaan.</p>", "sv": "<p>Kristina Laines utställning består av flera olika masker.</p><p>De masker som Laine gjort under åren representerar immateriella saker som har tagit formen av objekt. De har blivit artefakter – symboliska föremål av vilka var och en representerar något, ett visst tillstånd eller en viss känsla.</p><p>Maskerna i utställningen har tillverkats med flera olika tekniker, främst av material som plockats från naturen eller återvunnits.</p><p><i>”Maskerna leker med möjligheter att ändra ansiktet och personan. De representerar kontakten med osynliga band: andra människor och världen – med förbindelser som går tillbaka till de gångna tiderna genom kedjan av generationer. Maskerna kunde kanske vara ett verktyg med vilket jag kunde få kontakt med naturen eller mig själv.”</i></p><p>Kristina är en multidisciplinär konstnär som arbetar med bildkonst och animation. Hon fascineras av bildspråk och särskilt symbolik.</p><p><b>Vernissage fredagen 29.11 2024 klo 17–19, välkommen!</b></p><p>Utställningen har valts till repertoaren genom Annegårdens öppna ansökan. Under sommaren 2024 lämnades in 126 ansökningar av vilka Annegårdens elevråd valde tre utställningar till galleriet i södra gaveln.</p>", "en": "<p>Kristina Laine’s exhibition consists of many different masks.</p><p>Made over the course of several years, the masks represent intangible things that have taken the form of an object. They have become artefacts, objects that each represent something, a particular state of affairs or emotion.</p><p>The masks in the exhibition have been realised with several different techniques, mainly from materials collected from nature or recycled materials.</p><p><i>‘Masks play with the possibilities of changing one’s face and personality. They represent a connection to invisible bonds with other people and the world – connections through the chain of generations to the past. Masks can be a tool to connect with nature or yourself.’</i></p><p>Kristina is a multidisciplinary artist who works with visual arts and animation. She is fascinated by visual narratives and symbolism in particular.</p><p><b>The exhibition will open on Friday, 29 November at 17–19, welcome!</b></p><p>The exhibition has been selected for the programme through Annantalo’s open call. During the summer of 2024, 126 applications were submitted, from which Annantalo’s student jury selected three exhibitions for the gallery at the south end of the building.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kristina Laineen näyttely koostuu lukuisista erilaisista naamioista.", "sv": "Kristina Laines utställning består av flera olika masker.", "en": "Kristina Laine’s exhibition consists of many different masks." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65504", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165016, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T12:14:59.574011Z", "last_modified_time": "2025-01-23T12:14:59.574035Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761780.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165016/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T12:14:59.540134Z", "last_modified_time": "2025-01-23T12:14:59.685268Z", "date_published": null, "start_time": "2025-03-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tiistaimatinea: Inkerinsuomalaiset – miksi he ovat nyt ajankohtaisia? – FT Hanna-Riitta Toivanen-Kola", "sv": "Tisdagsmatiné: Ingermanlandsfinnar – varför är de aktuella nu? – FD Hanna-Riitta Toivanen-Kola", "en": "Tuesday Matinee: Ingrian Finns – why are they a timely topic now? – PhD Hanna-Riitta Toivanen-Kola" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D592B01C08CB420171C9636EE894EE01/Tiistaimatinea_Inkerinsuomalaiset_miksi_he_ovat_nyt_ajankohtaisia_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D592B01C08CB420171C9636EE894EE01/Tisdagsmatin_Ingermanlandsfinnar_varfor_ar_de_aktuella_nu_", "en": "http://www.vuotalo.fi/en/events/event/D592B01C08CB420171C9636EE894EE01/Tuesday_Matinee_Ingrian_Finns_why_are_they_a_timely_topic_now_" }, "description": { "fi": "<p>Miksi presidentti Mauno Koivisto kutsui inkeriläiset Suomeen? Miksi he ovat ajankohtainen vähemmistö juuri nyt?</p><p>Tule kuuntelemaan Hanna-Riitta Toivanen-Kolan luento aiheesta.</p><p>Kieli: suomi<br>Kesto: 1,5 tuntia</p><p>Vapaa pääsy</p>", "sv": "<p>Varför bjöd president Mauno Koivisto in ingermanlandsfinnar till Finland? Varför är de en aktuell minoritet just nu?</p><p>Kom och lyssna på Hanna-Riitta Toivanen-Kolas föreläsning om temat.</p><p>Längd: 1,5 timmar</p><p>Språk: finska</p>", "en": "<p>Why did President Mauno Koivisto invite the Ingrians to Finland? Why are they a timely minority right now?</p><p>Come and listen to Hanna-Riitta Toivanen-Kola’s lecture on the topic.</p><p>Language: Finnish<br>Duration: 1.5 hours</p><p>Language: Finnish</p>" }, "provider_contact_info": null, "short_description": { "fi": "Miksi presidentti Mauno Koivisto kutsui inkeriläiset Suomeen? Miksi he ovat ajankohtainen vähemmistö juuri nyt?", "sv": "Varför bjöd president Mauno Koivisto in ingermanlandsfinnar till Finland? Varför är de en aktuell minoritet just nu?", "en": "Why did President Mauno Koivisto invite the Ingrians to Finland? Why are they a timely minority right now?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27031, "next": "