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=293
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=294", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=292" }, "data": [ { "id": "espoo_le:agmk23dxde", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dwvy/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2024-03-13T08:52:37.532917Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-07T13:00:02.528167Z", "last_modified_time": "2025-02-07T13:00:02.528186Z", "date_published": null, "start_time": "2025-02-11T16: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, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>", "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "name": { "fi": "SPR:n kielikahvila ", "sv": "Finskt språkcafé ", "en": "Finnish Language Cafe " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxde/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65591", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "44,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/name-19801994" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T11:13:16.825349Z", "last_modified_time": "2025-02-07T11:13:16.825363Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765415.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201402/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-07T11:13:16.809224Z", "last_modified_time": "2025-02-07T11:13:16.864729Z", "date_published": null, "start_time": "2025-05-11T12: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, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B6D67A7C4E1A0B147D34D1DAE8D64C80/Jari_Sillanpaa_-_30_vuotta_estradilla" }, "provider_contact_info": null, "short_description": { "fi": "Jari Sillanpään päähän painettiin se jaloin tangokruunu 30 vuotta sitten. Hän täytti samana vuonna 30 vuotta, joka tekee sen, että tänä vuonna juhlitaan tuplasti, kun elokuussa mittariin tulee 60 täyteen!" }, "description": { "fi": "<p>Jari Sillanpään päähän painettiin se jaloin tangokruunu 30 vuotta sitten. Hän täytti samana vuonna 30 vuotta, joka tekee sen, että tänä vuonna juhlitaan tuplasti, kun elokuussa mittariin tulee 60 täyteen!</p><p>\"Jari Sillanpää – 30 vuotta estradilla\" -konserttikiertue on upea läpileikkaus Jarin konserteista vuosien varrelta. Luvassa on unohtumaton ilta, täynnä Jarin tunnetuimpia hittejä ja rakastettuja lainakappaleita maailmalta – esitettynä ainutlaatuisella tunteella ja karismalla, joka on hurmannut yleisöjä jo vuosikymmenten ajan.</p><p>Lavalla Jaria säestää huikea kuusihenkinen orkesteri, joka koostuu Suomen huippumuusikoista. Tämä ilta on kunnianosoitus Jarin upealle uralle ja samalla musiikin juhlaa parhaimmillaan. Tule mukaan kokemaan ikimuistoinen konserttielämys!</p><p>Ja tämä on vasta alkua vuoden tuplajuhlalle, sillä konserttikiertue saa jatkoa syksyllä!</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>" }, "provider": { "fi": "Bridgehead Productions Ltd Oy" }, "name": { "fi": "Jari Sillanpää - 30 vuotta estradilla" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65591/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64767", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201401, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T11:13:15.526327Z", "last_modified_time": "2025-02-07T11:13:15.526341Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760131.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201401/?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-02-07T11:13:15.509399Z", "last_modified_time": "2025-02-07T11:13:15.573076Z", "date_published": null, "start_time": "2025-04-26T08:00:00Z", "end_time": "2025-04-26T11: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, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annantalon_taidelauantai_Pyorat_vauhdissa", "sv": "http://www.annantalo.fi/sv/evenemang/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annegardens_konstlordag_Hjul_i_rorelse", "en": "http://www.annantalo.fi/en/events/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annantalo_Art_Saturday_Wheels_in_action" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Pyörät vauhdissa</b></p><p>Mikä se on, joka pyörät surraten perässä tulla vaapottaa? Aa aa ankka, sii sii siili vai keti keti kettu? Tule keksimään ja valmistamaan mukana vedettävä, pyörillä kulkeva ihme ja kumma. Siitä voi tulla pienoisveistos. Se voi olla luonnosta, saduista tai tarinoista muotonsa saanut olento. Tämä pyörillä kulkeva keksintö rakennetaan mm puuseppien työskentelystä syntyneistä ylijäämä palikoista ja luonnonmateriaaleista, kuten kävyt, oksat ja tammenterhot.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Hjul i rörelse</b><br>Vad är det som vaggar bakom mig med snurrande hjul? A a ankan, i i igelkotten eller re re räven? Kom och uppfinn och bygg en förunderlig varelse som man dra bakom sig på hjul. Det kan bli en liten skulptur! Det kan vara en varelse från naturen, sagor eller berättelser. Denna hjulförsedda uppfinning byggs bland annat av rester från snickares arbete och naturmaterial såsom kottar, kvistar och ekollon.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Wheels in action</b><br>What is it that comes with the wheels buzzing, wobbling behind you? Da da duck, mo mo mole or foxy foxy fox? Come invent with us and create your own draggable, wheeled wondrous creature. Maybe a small sculpture? It can be a creature inspired by nature, fairy tales or stories. This wheeled invention is built, for example, from surplus blocks left over from carpenters and natural materials, such as cones, branches and acorns.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>" }, "provider": null, "name": { "fi": "Annantalon taidelauantai: Pyörät vauhdissa", "sv": "Annegårdens konstlördag: Hjul i rörelse", "en": "Annantalo Art Saturday: Wheels in action" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64767/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65023", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/jussu-poyhonen/jussu-poeyhoenen-helsinki-3787509/", "sv": "https://www.lippu.fi/artist/jussu-poyhonen/jussu-poeyhoenen-helsinki-3787509/", "en": "https://www.lippu.fi/artist/jussu-poyhonen/jussu-poeyhoenen-helsinki-3787509/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T15:14:44.018173Z", "last_modified_time": "2024-12-03T15:14:44.018193Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763527.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153223/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-03T15:14:43.983607Z", "last_modified_time": "2025-02-07T11:13:10.566798Z", "date_published": null, "start_time": "2025-03-15T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3FDBBB54F81BF925D5C4FCCEC5CC0432/Jussu_Poyhonen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3FDBBB54F81BF925D5C4FCCEC5CC0432/Jussu_Poyhonen", "en": "http://www.kanneltalo.fi/en/events/event/3FDBBB54F81BF925D5C4FCCEC5CC0432/Jussu_Poyhonen" }, "provider_contact_info": null, "short_description": { "fi": "Jussu Pöyhönen tunnetaan parhaiten yli 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä ja yhtyeen lukuisten hittien tekijänä.", "sv": "Jussu Pöyhönen är mest känd för sin 30-åriga karriär som frontman för bandet Suurlähettiläät och upphovsman till bandets talrika hittar.", "en": "Jussu Pöyhönen is best known for his more than 30-year career as the frontman of the band Suurlähettiläät and the author of many of their hits." }, "description": { "fi": "<p>Jussu Pöyhönen tunnetaan parhaiten yli 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä ja yhtyeen lukuisten hittien tekijänä.</p><p>Emmalla ja useilla kulta- ja platinalevyllä palkitun Suurlähettiläiden lisäksi hän on julkaissut neljä soololevyä, viimeisimpänä Pinnalla-albumin vuonna 2023.</p><p>Tällä keikalla Jussu esittää laajasta tuotannostaan biisejä koko uransa varrelta, Suurlähettiläiden hittejä unohtamatta. Kokeneena esiintyjänä – myös teatterin puolelta – ja karismaattisena tarinankertojana tunnetun Jussun esiintymiset ovat vangitsevia ja päätyvät lähes poikkeuksetta yhteislauluun.</p><p>Riku Rajamaa tunnetaan parhaiten Sunrise Avenuen riveistä, tekee vakaata jälkeä myös sooloartistina.<br>Laura Airaksinen on rauhallisesti omaa uraansa rakentanut pianisti / solisti - hän on mm ollut Juha Vainio - sanoituskilpailun ehdokkaana 2023.</p><p>Kokoonpano:<br>Jussu Pöyhönen, laulu, kitara<br>Riku Rajamaa, kitara, laulu<br>Laura Airaksinen, piano, laulu</p><p>Kesto 75 min, ei väliaikaa</p>", "sv": "<p>Jussu Pöyhönen är mest känd för sin 30-åriga karriär som frontman för bandet Suurlähettiläät och upphovsman till bandets talrika hittar.</p><p>Utöver Suurlähettiläät som belönades med ett Emma-pris och flera guld- och platinaskivor har han släppt fyra soloalbum, senast albumet Pinnalla år 2023.</p><p>På denna spelning framför Jussu låtar ur sin breda produktion från hela sin karriär, utan att glömma Suurlähettilääts hittar. Jussu, en erfaren artist även inom teater och en karismatisk historieberättare, är fängslande på scenen och framträdandena slutar nästan alltid med allsång.</p><p>Riku Rajamaa är mest känd från bandet Sunrise Avenue, och gör också ett stadigt intryck som soloartist.<br>Laura Airaksinen är en pianist / solist som lugnt har byggt upp sin karriär – hon har bland annat varit nominerad i Juha Vainio-tävlingen för textförfattare år 2023.</p><p>Ensemble:<br>Jussu Pöyhönen, sång, gitarr<br>Riku Rajamaa, gitarr, sång<br>Laura Airaksinen, piano, sång</p><p>Längd: 75 min.</p>", "en": "<p>Jussu Pöyhönen is best known for his more than 30-year career as the frontman of the band Suurlähettiläät and the author of many of their hits.</p><p>In addition to Suurlähettiläät, which has been awarded an Emma and had several gold and platinum albums, he has released four solo albums, most recently the album Pinnalla in 2023.</p><p>At this show, Jussu will perform songs from his extensive catalogue from throughout his career, while not forgetting the hits of the Suurlähettiläät. As an experienced performer – who is also versed in theatre – and a charismatic storyteller, Jussu’s performances are captivating and almost invariably end in a sing-along.</p><p>Riku Rajamaa is best known for his time with Sunrise Avenue, but also has a solid track record as a solo artist.<br>Laura Airaksinen is a pianist/vocalist who has been quietly building her career – she was a candidate for the Juha Vainio songwriting competition 2023.</p><p>Ensemble:<br>Jussu Pöyhönen, vocals, guitar<br>Riku Rajamaa, guitar, vocals<br>Laura Airaksinen, piano, vocals</p><p>Duration: 75 mins.</p>" }, "provider": null, "name": { "fi": "Jussu Pöyhönen", "sv": "Jussu Pöyhönen", "en": "Jussu Pöyhönen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65023/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65578", "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 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189617, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T12:13:48.319882Z", "last_modified_time": "2025-02-03T12:13:48.319927Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759008.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189617/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T12:13:48.307607Z", "last_modified_time": "2025-02-07T11:13:08.879770Z", "date_published": null, "start_time": "2025-03-01T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E24D9C660FAE663BC39E1134CF357BA/A_Complete_Unknown_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E24D9C660FAE663BC39E1134CF357BA/A_Complete_Unknown_7_", "en": "http://www.malmitalo.fi/en/events/event/8E24D9C660FAE663BC39E1134CF357BA/A_Complete_Unknown_7_" }, "provider_contact_info": null, "short_description": { "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita." }, "description": { "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "A Complete Unknown (7) – Kino Helios", "sv": "A Complete Unknown (7) – Kino Helios", "en": "A Complete Unknown (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65575", "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 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189495, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T11:13:52.461848Z", "last_modified_time": "2025-02-03T11:13:52.461863Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759004.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189495/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T11:13:52.446012Z", "last_modified_time": "2025-02-07T11:13:08.480752Z", "date_published": null, "start_time": "2025-02-28T13: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/20842838647BE6CCE100F134535CFF1A/Bridget_Jones_Mad_About_the_Boy_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/20842838647BE6CCE100F134535CFF1A/Bridget_Jones_Mad_About_the_Boy_7_", "en": "http://www.malmitalo.fi/en/events/event/20842838647BE6CCE100F134535CFF1A/Bridget_Jones_Mad_About_the_Boy_7_" }, "provider_contact_info": null, "short_description": { "fi": "Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin." }, "description": { "fi": "<p>Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin.</p><p>Bridget Jones valloitti kirjahyllyt Helen Fieldingin ilmiöksi nousseessa romaanissa Bridget Jones – elämäni sinkkuna, josta tuli maailmanlaajuinen bestseller ja menestyselokuva. Lontoossa asuva ja uraa luova sinkkunainen Bridget käänsi vastoinkäymiset voitokseen ja pääsi viimein naimisiin huippuasianajaja Mark Darcyn kanssa ja heidän poikavauvansa äidiksi. Onni koitti vihdoinkin.</p><p>Mutta elokuvassa Bridget Jones: Mad About the Boy Bridget on jälleen kerran yksin. Hän on jäänyt leskeksi neljä vuotta sitten Markin saatua surmansa hyväntekeväisyystyössä Sudanissa. Nyt hän on 9-vuotiaan Billyn ja 4-vuotiaan Mabelin yksinhuoltajaäiti, jonka tunne-elämä on jumissa eräänlaisessa limbossa ja joka kasvattaa lapsiaan uskollisten ystävien ja jopa entisen rakastajansa Daniel Cleaverin (Hugh Grant) tuella.</p><p>Kaikki painostavat Bridgetiä avaamaan uudelleen oven elämään ja rakkauteen: läheiset ystävät Shazzer, Jude ja Tom, työkaveri Miranda, oma äiti - ja jopa hänen gynekologinsa tohtori Rawlings (Oscar®-voittaja Emma Thompson). Bridget palaa töihin ja rekisteröityy deittisovellukseen, saaden kannoilleen komean ja innokkaan nuorukaisen (White Lotusista tuttu Leo Woodall). Taiteillessaan työn, kodin ja romanssin välillä Bridget kohtaa arvostelua lasten koulukavereiden täydellisten äitien taholta, huolehtii Billystä tämän surressa isänsä poismenoa ja joutuu noloihin tilanteisiin poikansa pätemisenhaluisen opettajan (Oscar®-ehdokas Chiwetel Ejiofor) kanssa.</p><p>Elokuvan Bridget Jones: Mad About the Boy on ohjannut Michael Morris (To Leslie, Better Call Saul) ja käsikirjoittanut BAFTA-ehdokas Helen Fielding oman romaaninsa pohjalta, yhteistyökumppaneinaan Emmy-voittaja Abi Morgan (Rautarouva, Eric) ja Oscar®-ehdokas Dan Mazer (I Give It a Year, Bridget Jones’s Baby).</p><p>Ikäraja: 7<br>Kesto: 125 min.<br>Ensi-ilta: 14.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "Bridget Jones: Mad About the Boy (7) – Kino Helios", "sv": "Bridget Jones: Mad About the Boy (7) – Kino Helios", "en": "Bridget Jones: Mad About the Boy (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65575/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65577", "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 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189616, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T12:13:47.672586Z", "last_modified_time": "2025-02-03T12:13:47.672598Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759002.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189616/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T12:13:47.653106Z", "last_modified_time": "2025-02-07T11:13:08.133594Z", "date_published": null, "start_time": "2025-02-26T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_", "en": "http://www.malmitalo.fi/en/events/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_" }, "provider_contact_info": null, "short_description": { "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita." }, "description": { "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "A Complete Unknown (7) – Kino Helios", "sv": "A Complete Unknown (7) – Kino Helios", "en": "A Complete Unknown (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65577/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65574", "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 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189493, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T11:13:51.587173Z", "last_modified_time": "2025-02-03T11:13:51.587188Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758999.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189493/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T11:13:51.570429Z", "last_modified_time": "2025-02-07T11:13:07.659554Z", "date_published": null, "start_time": "2025-02-22T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1B8B77833487869AAAEBAB6088D2D63/Bridget_Jones_Mad_About_the_Boy_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1B8B77833487869AAAEBAB6088D2D63/Bridget_Jones_Mad_About_the_Boy_7_", "en": "http://www.malmitalo.fi/en/events/event/F1B8B77833487869AAAEBAB6088D2D63/Bridget_Jones_Mad_About_the_Boy_7_" }, "provider_contact_info": null, "short_description": { "fi": "Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin." }, "description": { "fi": "<p>Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin.</p><p>Bridget Jones valloitti kirjahyllyt Helen Fieldingin ilmiöksi nousseessa romaanissa Bridget Jones – elämäni sinkkuna, josta tuli maailmanlaajuinen bestseller ja menestyselokuva. Lontoossa asuva ja uraa luova sinkkunainen Bridget käänsi vastoinkäymiset voitokseen ja pääsi viimein naimisiin huippuasianajaja Mark Darcyn kanssa ja heidän poikavauvansa äidiksi. Onni koitti vihdoinkin.</p><p>Mutta elokuvassa Bridget Jones: Mad About the Boy Bridget on jälleen kerran yksin. Hän on jäänyt leskeksi neljä vuotta sitten Markin saatua surmansa hyväntekeväisyystyössä Sudanissa. Nyt hän on 9-vuotiaan Billyn ja 4-vuotiaan Mabelin yksinhuoltajaäiti, jonka tunne-elämä on jumissa eräänlaisessa limbossa ja joka kasvattaa lapsiaan uskollisten ystävien ja jopa entisen rakastajansa Daniel Cleaverin (Hugh Grant) tuella.</p><p>Kaikki painostavat Bridgetiä avaamaan uudelleen oven elämään ja rakkauteen: läheiset ystävät Shazzer, Jude ja Tom, työkaveri Miranda, oma äiti - ja jopa hänen gynekologinsa tohtori Rawlings (Oscar®-voittaja Emma Thompson). Bridget palaa töihin ja rekisteröityy deittisovellukseen, saaden kannoilleen komean ja innokkaan nuorukaisen (White Lotusista tuttu Leo Woodall). Taiteillessaan työn, kodin ja romanssin välillä Bridget kohtaa arvostelua lasten koulukavereiden täydellisten äitien taholta, huolehtii Billystä tämän surressa isänsä poismenoa ja joutuu noloihin tilanteisiin poikansa pätemisenhaluisen opettajan (Oscar®-ehdokas Chiwetel Ejiofor) kanssa.</p><p>Elokuvan Bridget Jones: Mad About the Boy on ohjannut Michael Morris (To Leslie, Better Call Saul) ja käsikirjoittanut BAFTA-ehdokas Helen Fielding oman romaaninsa pohjalta, yhteistyökumppaneinaan Emmy-voittaja Abi Morgan (Rautarouva, Eric) ja Oscar®-ehdokas Dan Mazer (I Give It a Year, Bridget Jones’s Baby).</p><p>Ikäraja: 7<br>Kesto: 125 min.<br>Ensi-ilta: 14.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "Bridget Jones: Mad About the Boy (7) – Kino Helios", "sv": "Bridget Jones: Mad About the Boy (7) – Kino Helios", "en": "Bridget Jones: Mad About the Boy (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65574/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65576", "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 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189614, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T12:13:46.860179Z", "last_modified_time": "2025-02-03T12:13:46.860191Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758996.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189614/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T12:13:46.836829Z", "last_modified_time": "2025-02-07T11:13:07.367467Z", "date_published": null, "start_time": "2025-02-21T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B60DCC438805420BC507C7C87F6EA27D/A_Complete_Unknown_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B60DCC438805420BC507C7C87F6EA27D/A_Complete_Unknown_7_", "en": "http://www.malmitalo.fi/en/events/event/B60DCC438805420BC507C7C87F6EA27D/A_Complete_Unknown_7_" }, "provider_contact_info": null, "short_description": { "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita." }, "description": { "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "A Complete Unknown (7) – Kino Helios", "sv": "A Complete Unknown (7) – Kino Helios", "en": "A Complete Unknown (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65576/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65573", "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 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 189491, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T11:13:49.762802Z", "last_modified_time": "2025-02-03T11:13:49.762815Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758987.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189491/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-03T11:13:49.747178Z", "last_modified_time": "2025-02-07T11:13:05.886544Z", "date_published": null, "start_time": "2025-02-14T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6FCF875B855BDA0927D5209DE48E8286/Bridget_Jones_Mad_About_the_Boy_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6FCF875B855BDA0927D5209DE48E8286/Bridget_Jones_Mad_About_the_Boy_7_", "en": "http://www.malmitalo.fi/en/events/event/6FCF875B855BDA0927D5209DE48E8286/Bridget_Jones_Mad_About_the_Boy_7_" }, "provider_contact_info": null, "short_description": { "fi": "Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin." }, "description": { "fi": "<p>Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin.</p><p>Bridget Jones valloitti kirjahyllyt Helen Fieldingin ilmiöksi nousseessa romaanissa Bridget Jones – elämäni sinkkuna, josta tuli maailmanlaajuinen bestseller ja menestyselokuva. Lontoossa asuva ja uraa luova sinkkunainen Bridget käänsi vastoinkäymiset voitokseen ja pääsi viimein naimisiin huippuasianajaja Mark Darcyn kanssa ja heidän poikavauvansa äidiksi. Onni koitti vihdoinkin.</p><p>Mutta elokuvassa Bridget Jones: Mad About the Boy Bridget on jälleen kerran yksin. Hän on jäänyt leskeksi neljä vuotta sitten Markin saatua surmansa hyväntekeväisyystyössä Sudanissa. Nyt hän on 9-vuotiaan Billyn ja 4-vuotiaan Mabelin yksinhuoltajaäiti, jonka tunne-elämä on jumissa eräänlaisessa limbossa ja joka kasvattaa lapsiaan uskollisten ystävien ja jopa entisen rakastajansa Daniel Cleaverin (Hugh Grant) tuella.</p><p>Kaikki painostavat Bridgetiä avaamaan uudelleen oven elämään ja rakkauteen: läheiset ystävät Shazzer, Jude ja Tom, työkaveri Miranda, oma äiti - ja jopa hänen gynekologinsa tohtori Rawlings (Oscar®-voittaja Emma Thompson). Bridget palaa töihin ja rekisteröityy deittisovellukseen, saaden kannoilleen komean ja innokkaan nuorukaisen (White Lotusista tuttu Leo Woodall). Taiteillessaan työn, kodin ja romanssin välillä Bridget kohtaa arvostelua lasten koulukavereiden täydellisten äitien taholta, huolehtii Billystä tämän surressa isänsä poismenoa ja joutuu noloihin tilanteisiin poikansa pätemisenhaluisen opettajan (Oscar®-ehdokas Chiwetel Ejiofor) kanssa.</p><p>Elokuvan Bridget Jones: Mad About the Boy on ohjannut Michael Morris (To Leslie, Better Call Saul) ja käsikirjoittanut BAFTA-ehdokas Helen Fielding oman romaaninsa pohjalta, yhteistyökumppaneinaan Emmy-voittaja Abi Morgan (Rautarouva, Eric) ja Oscar®-ehdokas Dan Mazer (I Give It a Year, Bridget Jones’s Baby).</p><p>Ikäraja: 7<br>Kesto: 125 min.<br>Ensi-ilta: 14.2.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "name": { "fi": "Bridget Jones: Mad About the Boy (7) – Kino Helios", "sv": "Bridget Jones: Mad About the Boy (7) – Kino Helios", "en": "Bridget Jones: Mad About the Boy (7) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65573/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65487", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "35 € / 39 €", "sv": "35 € / 39 €", "en": "35 € / 39 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/vuotalo-naistenpaeivaen-juhlakonsertti-naised-koeoegis-vuotalo-19755609/", "sv": "https://www.lippu.fi/event/vuotalo-naistenpaeivaen-juhlakonsertti-naised-koeoegis-vuotalo-19755609/", "en": "https://www.lippu.fi/event/vuotalo-naistenpaeivaen-juhlakonsertti-naised-koeoegis-vuotalo-19755609/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 164931, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T11:15:13.304250Z", "last_modified_time": "2025-01-23T11:15:13.304267Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764871.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/164931/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T11:15:13.273213Z", "last_modified_time": "2025-02-06T15:13:06.136304Z", "date_published": null, "start_time": "2025-03-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3282DB76B3A153EC1463BB6E6056A85D/Naised_Koogis", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3282DB76B3A153EC1463BB6E6056A85D/Naised_Koogis", "en": "http://www.vuotalo.fi/en/events/event/3282DB76B3A153EC1463BB6E6056A85D/Naised_Koogis" }, "provider_contact_info": null, "short_description": { "fi": "Tule viettämään naistenpäivää Vuotalossa 8.3 klo 18 virolaisen Naised Köögis -yhtyeen musiikin tahdissa. Uhke ja vaba! Ylpeä ja Vapaa!", "sv": "Välkommen att fira kvinnodagen i Nordhuset i Helsingfors den 8.3 kl. 18.00 med den estniska musikgruppen Naised Köögis – Kvinnorna i köket!", "en": "Welcome to celebrate Women’s Day at Vuotalo, Helsinki, on 8 March at. 6 pm with the Naised Köögis band!" }, "description": { "fi": "<p>Tule viettämään naistenpäivää Vuotalossa 8.3 klo 18 virolaisen Naised Köögis -yhtyeen musiikin tahdissa. Uhke ja vaba! Ylpeä ja Vapaa!</p><p>Naised Köögis (Naiset Keittiössä) on virolainen naisyhtye, joka ammentaa inspiraationsa elämän suurista ja pienistä asioista. Yhtyeen sanoitukset ovat täynnä huumoria ja heidän musiikilliset valintansa ovat usein yllättäviä. Yhtyeen juuret ovat syvällä kansanmusiikin perinteissä, ja heidän rohkea tyylinsä, tuoreet, mukaansatempaavat ja nasevat esityksensä ovat tehneet heistä Virossa arvostetun live-orkesterin.</p><p>Yhtyeen nimi viittaa keittiöön rentona tilana, jossa ihmiset kokoontuvat ja luovuus pääsee valloilleen. Naised Köögis -yhtyeen neljäs albumi, \"Kordub kõik all päikese\" (Ei mitään uutta auringon alla) julkaistiin 2022.</p><p>Laulud elujulgusest ja armastusest, argielust ja unistustest, naistest ja meestest läbi oma elukogemuse ja sooja huumoriprisma – tähistame naistepäeva koos ansambliga Naised Köögis 8. märtsil kell 18.00 Vuotalos, Helsingis!</p><p><b>Naised Köögis:</b><br>Katrin Laidre – laulu, haitari, kantele, basso<br>Kristiina Ehin – laulu, haitari, tamburiini<br>Sofia Joons – laulu, viulu, kitara, rummut<br>Kairi Leivo – laulu, basso, tamburiini</p><p>Kesto: 1 tunti 20 minuuttia, väliaika on</p>", "sv": "<p>Välkommen att fira kvinnodagen i Nordhuset i Helsingfors den 8.3 kl. 18.00 med den estniska musikgruppen Naised Köögis – Kvinnorna i köket!</p><p>Sånger om livsmod och kärlek, om vardagsliv och drömmar, om kvinnor och män kryddade med livserfarenheter och varm humor.</p><p>Laulud elujulgusest ja armastusest, argielust ja unistustest, naistest ja meestest läbi oma elukogemuse ja sooja huumoriprisma – tähistame naistepäeva koos ansambliga Naised Köögis 8. märtsil kell 18.00 Vuotalos, Helsingis!</p>", "en": "<p>Welcome to celebrate Women’s Day at Vuotalo, Helsinki, on 8 March at. 6 pm with the Naised Köögis band!</p><p>Naised Köökis (Women in the Kitchen) is an Estonian female band that draws its inspiration from the big and small things in life. The band’s lyrics are full of humour and their musical choices are often surprising. The band’s roots are deep in folk music traditions, and their bold style, fresh, engaging and snappy performances have made them a valued live orchestra in Estonia.</p><p>The name of the band refers to the kitchen as a relaxed space where people gather and creativity can be unleashed. Naised Köögis band’s fourth album, \"Kordub kõik all päikese\" (Nothing New Under the Sun) was released in 2022.</p><p>Naised Köögis:<br>Katrin Laidre – vocals, accordion, kantele, bass<br>Kristiina Ehin – vocals, accordion, tambourine<br>Sofia Joons – vocals, violin, guitar, drums<br>Kairi Leivo – vocals, bass, tambourine</p>" }, "provider": null, "name": { "fi": "Naised Köögis", "sv": "Naised Köögis", "en": "Naised Köögis" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65487/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65512", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T14:15:04.881456Z", "last_modified_time": "2025-01-24T14:15:04.881473Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765025.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T14:15:04.850563Z", "last_modified_time": "2025-02-06T15:13:05.142125Z", "date_published": null, "start_time": "2025-03-03", "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, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/052068C0E1AFEB4FB8192ACF71B36DB2/Vesa_Linna_Sininen_sinfonia_Oodi_vedelle", "sv": "http://www.vuotalo.fi/sv/evenemang/event/052068C0E1AFEB4FB8192ACF71B36DB2/Vesa_Linna_Sininen_sinfonia_Oodi_vedelle", "en": "http://www.vuotalo.fi/en/events/event/052068C0E1AFEB4FB8192ACF71B36DB2/Vesa_Linna_Blue_Symphony_Ode_to_Water" }, "provider_contact_info": null, "short_description": { "fi": "Sininen sinfonia -näyttely on tietokirjailija ja valokuvaaja Vesa Linnan oodi vedelle.", "sv": "Utställningen Sininen sinfonia är fackboksförfattaren och fotografen Vesa Linnas ode till vattnet.", "en": "The Blue Symphony exhibition is the ode of non-fiction writer and photographer Vesa Linna to water." }, "description": { "fi": "<p>Sininen sinfonia -näyttely on tietokirjailija ja valokuvaaja Vesa Linnan oodi vedelle.</p><p>Näyttelyn valokuvat ovat Vesa Linnan Sininen sinfonia -tietokirjasta, jossa sukelletaan veden saloihin ja valotetaan tämän yhdisteen erityislaatuisuutta.</p><p>Vesi on meille helposti arkipäiväinen asia, mutta usein ihmeellisempi kuin voimme aavistaa. Se on myös kaiken elämän perusta maapallolla. Maailmassa ei olisi ensimmäistäkään ihmistä, eläintä tai kasvia ilman vettä. Jopa happi, jota hengitämme, on peräisin vedestä.</p><p>Vesa Linna on kiitosta saanut visualisti, joka toimii tietokirjojen kirjoittamisen lisäksi ammattivalokuvaajana. Linna on aikaisemmin julkaissut muun muassa tietokirjat Helsingin ja Suomenlinnan historiasta sekä musiikista.</p><p>Näyttely on Vuotalon 2. kerroksessa, vitriinikäytävällä.</p>", "sv": "<p>Utställningen Sininen sinfonia är fackboksförfattaren och fotografen Vesa Linnas ode till vattnet.</p><p>Fotografierna i utställningen är hämtade från Vesa Linnas faktabok Sininen sinfonia, där vi dyker ner i vattnets mysterier och belyser den speciella karaktären för detta ämne.</p><p>Vatten kan lätt bli väldigt vardagligt, men är ofta mer mirakulöst än vi kan föreställa oss. Det är också grunden till allt liv på jorden. Utan vatten skulle det inte finnas en enda människa, ett enda djur eller en enda växt i världen. Till och med syret vi andas kommer från vatten.</p><p>Vesa Linna är en hyllad visualist som förutom att skriva facklitteratur även arbetar som professionell fotograf. Linna har tidigare gett ut faktaböcker om bland annat Helsingfors och Sveaborgs historia samt om musik.</p>", "en": "<p>The Blue Symphony exhibition is the ode of non-fiction writer and photographer Vesa Linna to water.</p><p>The photographs in the exhibition are from Vesa Linna's Blue Symphony non-fiction book, which dives into the secrets of water and sheds light on the uniqueness of this compound.</p><p>We easily consider water an everyday element, and yet it is often more miraculous than we can imagine. It is also the foundation of all life on Earth. There would not be a single human, animal or plant in the world without water. Even the oxygen we breathe comes from water.</p><p>Vesa Linna is an acclaimed visualist who works not only as a non-fiction writer, but also as a professional photographer. Among others, Linna has previously published non-fiction books on the history of Helsinki and Suomenlinna as well as music.</p>" }, "provider": null, "name": { "fi": "Vesa Linna: Sininen sinfonia – Oodi vedelle", "sv": "Vesa Linna: Sininen sinfonia – Oodi vedelle – Den blå synfonin – En ode till vattnet", "en": "Vesa Linna: Blue Symphony – Ode to Water" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65512/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "linkedevents:agg-122", "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:105/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65409/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65410/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-06T14:13:25.845595Z", "last_modified_time": "2025-02-06T14:13:25.845619Z", "date_published": null, "start_time": "2025-02-17T08:00:00Z", "end_time": "2025-02-18T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa animoimaan talvilomalla!", "sv": "Välkommen animera på vinterlovet!", "en": "Welcome to animate on your Winter Holiday!" }, "description": { "fi": "<p>Tervetuloa animoimaan talvilomalla!</p><p>Kaksipäiväisessä työpajassa tutustutaan stopmotion-animaation tekemiseen. Käytössä ovat tabletit ja ohjelmina ovat Stopmotion Pro ja Procreate. Työpajassa on lyhyt lounastauko (klo 11.30–12), joten lapsille kannattaa pakata eväitä ja juomapullo mukaan.<br> <br>Työpajan ohjaajana toimii taidekasvattaja Kristina Laine.<br> <br><b>Ilmoittautuminen</b><br>Työpaja on maksuton, mutta vaatii sitovan ilmoittautumisen. Paikkoja on rajatusti.</p><p>Ilmoittaudu tästä linkistä:<br>https://forms.office.com/e/7YZuf8PaQ9<br> <br>Tila: Maissi<br>Kielet: suomi ja englanti tarvittaessa<br>Ohjaaja: Kristina Laine</p>", "sv": "<p>Välkommen animera på vinterlovet!</p><p>I den två dagar långa verkstaden får du lära dig hur man gör en stopmotion-animation. Verkstaden innehåller en kort lunchrast (kl. 11.30–12), så packa gärna mat och dryck för barnen.</p><p>Anmäl dig på denna länk:: https://forms.office.com/e/7YZuf8PaQ9</p>", "en": "<p>Welcome to animate on your Winter Holiday!</p><p>In the two-day workshop, you will learn about making stop motion animation. The workshop has a short lunch break (11:30 a.m. to 12 noon), so we recommend packing snacks and a drink for the children.</p><p>Sign up at this link: https://forms.office.com/e/7YZuf8PaQ9</p>" }, "provider": null, "name": { "fi": "Animoin! – Animaatiotyöpaja 7–12-vuotiaille lapsille TÄYNNÄ ", "sv": "Jag animerar! – Animationsverkstad för barn mellan 7 och 12 år ", "en": "I animate! – Animation workshop for children aged 7–12 FULL " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65540", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 174766, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-28T14:14:30.349021Z", "last_modified_time": "2025-01-28T14:14:30.349038Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765065.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174766/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-28T14:14:30.300301Z", "last_modified_time": "2025-02-06T14:13:08.205638Z", "date_published": null, "start_time": "2025-02-01", "end_time": "2025-02-28", "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, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/073251B57BE10D5CFEBAA7846F5796BD/Sanna_Liisanantti_Elamanpolulla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/073251B57BE10D5CFEBAA7846F5796BD/Sanna_Liisanantti_Elamanpolulla", "en": "http://www.kanneltalo.fi/en/events/event/073251B57BE10D5CFEBAA7846F5796BD/Sanna_Liisanantti_Elamanpolulla" }, "provider_contact_info": null, "short_description": { "fi": "Jokaisella meistä on oma polkumme, jolla tapahtuneet kokemukset kulkevat mukanamme muistoissamme.", "sv": "Var och en av oss har sin egen väg, där vi bär med oss de upplevelser vi varit med om i minnet.", "en": "Each of us has our own path, through which the experiences that we have had accompany us in our memories." }, "description": { "fi": "<p>Jokaisella meistä on oma polkumme, jolla tapahtuneet kokemukset kulkevat mukanamme muistoissamme.</p><p>Kuinka paljon historiaa kätkeytyy pitkään eläneen ihmisen elämäntarinaan?</p><p>“Mennyt aika kiinnostaa minua juuri tavallisen ihmisen kokemana, ei vuosilukuina ja valtaapitäneiden nimiluetteloina. Menneen ajan arkiset visuaaliset elementit, kuparipannut, puuhellat ja rintamamiestalot kiehtovat minua valtavasti. Myös nykyaikaan sijoittuvien kuvien tekeminen on ollut antoisaa, koska rypyt ja harmaat hiukset kertovat viisaudesta. Olen halunnut kuvillani tuoda esille omaa näkemystäni vanhenemisen kauneudesta ja auttaa löytämään sen hyvät puolet.</p><p>Nämä kuvat olen tehnyt käsin piirtäen ja maalaten, mikä näkyy jäljessä. Samoin elämä jättää meihin jälkiä, joita ei voi tietokoneella jälkikäteen siistiä. Nämä jäljet ovat niitä tarinoita, joita haluan kuulla ja haluan kerrottavan nuoremmille sukupolville sekä jaettavan samoja kokeneiden kanssa.\" Sanna Liisanantti kertoo.</p><p>Teokset esillä Kanneltalon kahvilassa.</p><p>Vapaa pääsy.</p>", "sv": "<p>Var och en av oss har sin egen väg, där vi bär med oss de upplevelser vi varit med om i minnet.</p><p>Hur mycket historia döljer sig i livshistorien för en person som har levt länge?</p><p>“Jag är intresserad av det förflutna så som det upplevs av den vanliga människan, inte av årtal och namnlistor på makthavare. De vardagliga visuella elementen från en svunnen tid, kopparpannor, träspisar och frontmannahus fascinerar mig enormt. Det har också varit givande att ta bilder som placerar sig i samtiden, eftersom rynkorna och det grå håret är tecken på visdom. Genom mina bilder har jag velat uttrycka min egen syn på skönheten i åldrandet och hjälpa att upptäcka de goda i det.</p><p>Dessa bilder är ritade och målade för hand, vilket också syns. På samma sätt lämnar livet spår efter sig som inte kan snyggas upp med en dator i efterhand. Dessa spår är de historier jag vill höra och berätta för yngre generationer och dela med andra som har upplevt samma saker.”</p>", "en": "<p>Each of us has our own path, through which the experiences that we have had accompany us in our memories.</p><p>How much history is hidden in the life story of a long-lived person?</p><p>“I am interested in the past time as experienced by ordinary people, not as years and lists of names of those in power. The everyday visual elements of the past, copper pans, wood stoves and traditional houses fascinate me immensely. Making pictures that are set in modern times has also been rewarding, because wrinkles and grey hair tell about wisdom. I have wanted to use my pictures to bring out my own vision of the beauty of ageing and to help find what is good in it.</p><p>I have made these pictures by drawing and painting by hand, which shows in them. Similarly, life leaves us traces that cannot be cleaned up with a computer afterwards. These traces are the stories I want to hear and to be told to younger generations and shared with those who have experienced the same.”</p>" }, "provider": null, "name": { "fi": "Sanna Liisanantti – Elämänpolulla – Haagan Taideseura", "sv": "Sanna Liisanantti – Elämänpolulla – Haagan Taideseura", "en": "Sanna Liisanantti – Elämänpolulla – Haagan Taideseura" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65455", "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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154886, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:14:58.511476Z", "last_modified_time": "2025-01-16T09:14:58.511494Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764819.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154886/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:14:58.479346Z", "last_modified_time": "2025-02-06T13:14:21.486995Z", "date_published": null, "start_time": "2025-02-08T12: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, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/55CDFAAEF3B21AE2286A4E58E06AD3CA/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/55CDFAAEF3B21AE2286A4E58E06AD3CA/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/55CDFAAEF3B21AE2286A4E58E06AD3CA/Children_s_Inclusive_Dance_Class_" }, "provider_contact_info": null, "short_description": { "fi": "Kaaos Companyn lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "description": { "fi": "<p>Kaaos Companyn lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "provider": null, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64730", "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/kulke:758/?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": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/malmijazz/malmijazz-dalindeo-3755419/", "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-dalindeo-3755419/", "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-dalindeo-3755419/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-30T11:15:06.782314Z", "last_modified_time": "2024-10-30T11:15:06.782330Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759366.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-30T11:15:06.732752Z", "last_modified_time": "2025-02-06T13:14:20.683620Z", "date_published": null, "start_time": "2025-02-06T17: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C0EBC02FC4667611DE934EE49F3EB496/Dalind_o_LOPPUUNMYYTY_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C0EBC02FC4667611DE934EE49F3EB496/Dalind_o_UTSALD_", "en": "http://www.malmitalo.fi/en/events/event/C0EBC02FC4667611DE934EE49F3EB496/Dalind_o_SOLD_OUT_" }, "provider_contact_info": null, "short_description": { "fi": "Kulttiyhtye Dalindèo julkaisi vuonna 2024 kuudennen albuminsa Tropicalia Nordica. Albumin musiikki on rajatonta, energistä, viihdyttävää ja psykedeelistä rautalanka-jazzia Emma-palkitun Kallio-levyn tyyliin.", "sv": "Kultbandet Dalindèo hämtar underhållande, psykedelisk och Emma-belönad ståltrådsjazz till Malms kulturhus.", "en": "Cult band Dalindèo will bring their entertaining, psychedelic, and Emma Award-winning electric-guitar-driven (rautalanka) jazz to Malmitalo." }, "description": { "fi": "<p>Kulttiyhtye Dalindèo julkaisi vuonna 2024 kuudennen albuminsa Tropicalia Nordica. Albumin musiikki on rajatonta, energistä, viihdyttävää ja psykedeelistä rautalanka-jazzia Emma-palkitun Kallio-levyn tyyliin.</p><p>”Tämä on meidän tähän asti modernein ja energisin levy ja musiikki on ihan täyttä Dalindèoa mutta uusilla, kiehtovilla mausteilla. Kyseessä on postmoderni surf-jazz-levy maasta, jossa ei voi surffata!”, kertoo bändiliideri <b>Valtteri Laurell Pöyhönen.</b></p><p>Levyn on tuottanut Pöyhösen kanssa <b>Olli Palmunen</b>, joka on työskennellyt mm. <b>Karri Koiran</b> ja <b>Yeboyahin</b> kanssa. Palmusen näkemyksen ja miksausten ansiosta Tropicalia Nordican soundi on parhaalla mahdollisella tavalla \"tätä päivää\" ja silti ajatonta ja eeppistä.</p><p>Säveltäjä-kitaristi Valtterin Laurell Pöyhösen vuonna 2004 perustama Dalindèo-sekstetti on yksi pitkäikäisimpiä kotimaisia jazz-yhtyeitä. Yli 200 konsertin kokemuksella Dalindèo tunnetaan räjähtävänä ja viihdyttävänä live-yhtyeenä, jonka fanikunta on laajentunut huomattavasti perinteisen jazz-yleisön ulkopuolelle.</p><p><b>Kokoonpano</b><br>Valtteri Laurell Pöyhönen: sähkökitara ja sävellykset <br>Jose Mäenpää: trumpetti ja koskettimet <br>Pope Puolitaival: tenorisaksofoni <br>Pekka Lehti: kontrabasso <br>Rasmus Pailos: lyömäsoittimet <br>Jaska Lukkarinen: rummut<br> <br><b>MalmiJazz</b> tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p><p>Kesto: 2 h, sisältää 20 min. väliajan</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-19738760/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Kultbandet Dalindèo hämtar underhållande, psykedelisk och Emma-belönad ståltrådsjazz till Malms kulturhus.</p><p>År 2024 släppte bandet sitt sjätte album Tropicalia Nordica. Albumets musik är gränslös, energisk, underhållande och psykedelisk ståltrådsjazz i stil med det Emma-belönade Kallio-albumet.</p><p>“Detta är vårt hittills modernaste och mest energiska album, och musiken är Dalindèo för fullt men med nya, fascinerande kryddor. Det handlar om ett postmodernt surf-jazz-album från ett land där det inte går att surfa!”, berättar bandledaren Valtteri Laurell Pöyhönen. <br>Olli Palmunen som bland annat har jobbat med Karri Koira och Yeboyah har producerat albumet tillsammans med Pöyhönen. Tack vare Palmunens vision och mixning är Tropicalia Nordicas sound “helt i tiden” på bästa möjliga sätt, och ändå tidlöst och episkt.</p><p>Dalindèo-sextetten som grundades av kompositören och gitarristen Valtteri Laurell Pöyhönen år 2004 är ett av de mest långlivade inhemska jazzbanden. Med en erfarenhet på över 200 konserter är Dalindèo känt som ett explosivt och underhållande liveband, vars fankrets har utvidgats märkbart utöver den traditionella jazzpubliken.</p><p><b>Ensemble</b><br>Valtteri Laurell Pöyhönen: elgitarr och kompositioner <br>Jose Mäenpää: trumpet och keyboard <br>Pope Puolitaival: tenorsaxofon <br>Pekka Lehti: kontrabas <br>Rasmus Pailos: slagverk <br>Jaska Lukkarinen: trummor<br> <br>MalmiJazz bjuder på ett brett utbud av jazzmusikens stilarter i en förstklassig konserthusmiljö. Den upphöjningsbara, numrerade läktaren erbjuder varje konsertbesökare en bekväm sittplats och en bra utsikt över scenen. De utmärkta akustik-, ljudåtergivnings- och ljusförhållandena i Malmsalen garanterar en konsertupplevelse av hög kvalitet.</p><p>Längd: 2 timmar, inklusive en paus på 20 min.</p>", "en": "<p>Cult band Dalindèo will bring their entertaining, psychedelic, and Emma Award-winning electric-guitar-driven (rautalanka) jazz to Malmitalo.</p><p>In 2024, the band released their sixth album, Tropicalia Nordica. The music on the album is unbounded, energetic, entertaining and psychedelic instrumental jazz in the style of their Emma Award-winning Kallio album.</p><p>“This is our most modern and energetic album yet. The music is pure Dalindèo, but with new, exciting flavours. It’s a postmodern surf-jazz record from a country where you can’t actually surf!” says band leader Valtteri Laurell Pöyhönen. <br>Pöyhönen produced the album with Olli Palmunen, who has worked with Karri Koira and Yeboyah, among others. Thanks to Palmunen’s vision and mixing, Tropicalia Nordica’s sound is that of “today” in the best possible sense, yet still timeless and epic.</p><p>Founded in 2004 by composer-guitarist Valtteri Laurell Pöyhönen, the Dalindèo sextet is one of the longest-lived Finnish jazz bands. With over 200 concerts under their belt, Dalindèo are known as an explosive and entertaining live band whose fan base has expanded well beyond the traditional jazz audience.</p><p><b>Ensemble:</b><br>Valtteri Laurell Pöyhönen: electric guitar and compositions <br>Jose Mäenpää: trumpet and keyboards <br>Pope Puolitaival: tenor saxophone <br>Pekka Lehti: upright bass <br>Rasmus Pailos: percussion instruments <br>Jaska Lukkarinen: drums<br> <br>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p><p>Duration: 2 hours, including a 20 min intermission</p>" }, "provider": null, "name": { "fi": "Dalindèo (LOPPUUNMYYTY) – MalmiJazz", "sv": "Dalindèo (UTSÅLD) – MalmiJazz", "en": "Dalindèo (SOLD OUT) – MalmiJazz" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64730/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dxqe", "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: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:agmk23dynm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-06T10:44:52.910672Z", "last_modified_time": "2025-02-06T10:44:52.910689Z", "date_published": null, "start_time": "2025-05-30T14:30:00Z", "end_time": "2025-05-30T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "provider": null, "name": { "fi": "Lippulaivan kirjaston lasten perjantaileffa", "sv": "Lippulaivabibliotekets fredagsfilm för barn", "en": "Lippulaiva library's movie screening for children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxqe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dx6i", "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: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:agmk23dynm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-06T10:44:52.790459Z", "last_modified_time": "2025-02-06T10:44:52.790474Z", "date_published": null, "start_time": "2025-05-23T14:30:00Z", "end_time": "2025-05-23T16: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "provider": null, "name": { "fi": "Lippulaivan kirjaston lasten perjantaileffa", "sv": "Lippulaivabibliotekets fredagsfilm för barn", "en": "Lippulaiva library's movie screening for children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dx6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dynm", "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: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, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dx6i/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-06T10:44:49.892172Z", "last_modified_time": "2025-02-06T10:44:49.892189Z", "date_published": null, "start_time": "2025-02-07T15:30:00Z", "end_time": "2025-05-30T16: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "provider": null, "name": { "fi": "Lippulaivan kirjaston lasten perjantaileffa", "sv": "Lippulaivabibliotekets fredagsfilm för barn", "en": "Lippulaiva library's movie screening for children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dynm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:d10b39a9-01dd-4145-b0c0-8cf7255e776f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?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:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "99" }, "description": { "fi": "Tämä on hurjan hyvä hinta." }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=Mktest_0602202597185714" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 198134, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-06T10:28:54.091600Z", "last_modified_time": "2025-02-06T10:28:54.091616Z", "name": "testikuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/7165da71-02e2-ef11-a731-000d3ab40ef6", "cropping": "", "photographer_name": "Hillegaard von Linssi", "alt_text": "testialt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/198134/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?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:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "created_time": "2025-02-06T10:28:51.627198Z", "last_modified_time": "2025-02-06T10:28:55.071330Z", "date_published": "2025-02-06T10:19:14Z", "start_time": "2025-02-08T07:00:00Z", "end_time": "2025-02-08T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": 11, "enrolment_start_time": "2025-01-27T08:00:00+02:00", "enrolment_end_time": "2025-02-07T08:00:00+02:00", "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Lyhyt kuvaus FI" }, "description": { "fi": "<div><div>Pitkä kuvaus FI</div></div>" }, "provider": { "fi": "Business Helsinki" }, "name": { "fi": "Mktest 06022025 (p3 maksullisuuden ruksi poistettu)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:d10b39a9-01dd-4145-b0c0-8cf7255e776f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27560, "next": "