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 normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=176&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 10851, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=177&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=175&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:63550", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/" }, "description": null, "price": { "fi": "15 € / 11 €", "sv": "15 € / 11 €", "en": "15 € / 11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150922, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-02T14:12:49.065576Z", "last_modified_time": "2024-05-02T14:12:49.065589Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749149.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150922/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-02T14:12:49.052657Z", "last_modified_time": "2024-05-28T12:12:49.942467Z", "date_published": null, "start_time": "2024-06-06T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Post Breakers’ Revenge", "sv": "Post Breakers’ Revenge", "en": "Post Breakers’ Revenge" }, "description": { "fi": "<p>Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?</p><p>Post Breakers’ Revenge on työryhmä, joka on tutkinut breakdancen liikekielen ja tanssijan identiteetin suhdetta ikääntymiseen. Lavalla esiintyvät työryhmän jäsenet <b>Anniina Sono-Tikka</b> ja <b>Antti Uimonen.</b></p><p>Esitysten jälkeen on keskustelutilaisuus, jossa mukana myös työryhmän kolmas jäsen <b>Dennis Nylund.</b></p><p>Esitykset ovat jatkumoa Post Breakers’ Revenge -ryhmän vuonna 2023 alkaneelle tutkimusprojektille, jonka pohjalta valmistui videohaastatteluiden sarja osana URB 23 -festivaalia.</p>", "sv": "<p>Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?</p><p>Post Breakers' Revenge är en arbetsgrupp som har utforskat förhållandet mellan breakdancens rörelsespråk och dansarens identitet i relation till åldrande.</p><p>Medlemmarna i arbetsgruppen <b>Anniina Sono-Tikka</b> och <b>Antti Uimonen</b> uppträder på scenen.</p><p>Uppträdandena följs av ett diskussionsevenemang i vilken arbetsgruppens tredje medlem <b>Dennis Nylund</b> deltar.</p><p>Föreställningarna är en fortsättning på gruppen Post Breakers' Revenge:s forskningsprojekt, som inleddes 2023 och fungerade som grund för en serie videointervjuer inom ramen för URB 23-festivalen.</p>", "en": "<p>What happens to breakdance and the breaker when the dance style is approached by means of performance art?</p><p>Post Breakers’ Revenge is a working group that has studied the relationship of the movement language in breakdance and the dancer’s identity to aging.</p><p>The members of the working group <b>Anniina Sono-Tikka</b> and <b>Antti Uimonen</b> will perform on the stage.</p><p>After the presentations, there will be a discussion session, which will also be attended by the third member of the working group, <b>Dennis Nylund.</b></p><p>The presentations are a continuation of the Post Breakers’ Revenge research project started in 2023, on the basis of which a series of video interviews was completed as part of the URB 23 festival.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5627C8C1372A5F096F01EB42F616906A/Post_Breakers_Revenge", "sv": "http://www.stoa.fi/sv/evenemang/event/5627C8C1372A5F096F01EB42F616906A/Post_Breakers_Revenge", "en": "http://www.stoa.fi/en/events/event/5627C8C1372A5F096F01EB42F616906A/Post_Breakers_Revenge" }, "short_description": { "fi": "Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?", "sv": "Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?", "en": "What happens to breakdance and the breaker when the dance style is approached by means of performance art?" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63550/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63549", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/" }, "description": null, "price": { "fi": "15 € / 11 €", "sv": "15 € / 11 €", "en": "15 € / 11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-02T14:12:48.885763Z", "last_modified_time": "2024-05-02T14:12:48.885802Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745624.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-02T14:12:48.854956Z", "last_modified_time": "2024-05-28T12:12:49.721184Z", "date_published": null, "start_time": "2024-06-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Post Breakers’ Revenge – Ensi-ilta", "sv": "Post Breakers’ Revenge – Premiär", "en": "Post Breakers’ Revenge – Premier" }, "description": { "fi": "<p>Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?</p><p>Post Breakers’ Revenge on työryhmä, joka on tutkinut breakdancen liikekielen ja tanssijan identiteetin suhdetta ikääntymiseen. Lavalla esiintyvät työryhmän jäsenet <b>Anniina Sono-Tikka</b> ja <b>Antti Uimonen.</b></p><p>Esitysten jälkeen on keskustelutilaisuus, jossa mukana myös työryhmän kolmas jäsen <b>Dennis Nylund.</b></p><p>Esitykset ovat jatkumoa Post Breakers’ Revenge -ryhmän vuonna 2023 alkaneelle tutkimusprojektille, jonka pohjalta valmistui videohaastatteluiden sarja osana URB 23 -festivaalia.</p>", "sv": "<p>Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?</p><p>Post Breakers' Revenge är en arbetsgrupp som har utforskat förhållandet mellan breakdancens rörelsespråk och dansarens identitet i relation till åldrande. Medlemmarna i arbetsgruppen <b>Anniina Sono-Tikka</b> och </b>Antti Uimonen</b> uppträder på scenen.</p><p>Uppträdandena följs av ett diskussionsevenemang i vilken arbetsgruppens tredje medlem <b>Dennis Nylund</b> deltar.</p><p>Föreställningarna är en fortsättning på gruppen Post Breakers' Revenge:s forskningsprojekt, som inleddes 2023 och fungerade som grund för en serie videointervjuer inom ramen för URB 23-festivalen.</p>", "en": "<p>What happens to breakdance and the breaker when the dance style is approached by means of performance art?</p><p>Post Breakers’ Revenge is a working group that has studied the relationship of the movement language in breakdance and the dancer’s identity to aging.</p><p>The members of the working group <b>Anniina Sono-Tikka</b> and <b>Antti Uimonen</b> will perform on the stage.</p><p>After the presentations, there will be a discussion session, which will also be attended by the third member of the working group,<b>Dennis Nylund.</b></p><p>The presentations are a continuation of the Post Breakers’ Revenge research project started in 2023, on the basis of which a series of video interviews was completed as part of the URB 23 festival.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/05683657120CC140899ED2674A41A151/Post_Breakers_Revenge", "sv": "http://www.stoa.fi/sv/evenemang/event/05683657120CC140899ED2674A41A151/Post_Breakers_Revenge", "en": "http://www.stoa.fi/en/events/event/05683657120CC140899ED2674A41A151/Post_Breakers_Revenge" }, "short_description": { "fi": "Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?", "sv": "Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?", "en": "What happens to breakdance and the breaker when the dance style is approached by means of performance art?" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63904", "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: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-27T17:12:45.469447Z", "last_modified_time": "2024-05-27T17:12:45.469461Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744063.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151306/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-27T17:12:45.437399Z", "last_modified_time": "2024-05-27T17:12:45.552386Z", "date_published": null, "start_time": "2024-05-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ett sista race (Viimeinen startti) – Onsdagsbio", "sv": "Ett sista race – Onsdagsbio", "en": "Ett sista race – Onsdagsbio" }, "description": { "fi": "<p>Viimeinen startti on tähtiä täynnä elokuva, jossa vauhtia ja kovia kierroksia riittää halki Ruotsin. Suomenkielinen tekstitys.</p><p>Koko elämänsä lain väärällä puolella elänyt Street racing -legenda Dennis on päättänyt aloittaa vastuullisen ja rauhallisen elämän. Suunnitelmat keskeytyvät pian Dennisin saadessa tietää, että hänen tyttärensä Hanna aikoo osallistua ajokilpailuun uuden poikaystävänsä Charlien kanssa. Pysäyttääkseen Hannan Dennis ja hänen ex-vaimonsa Tove starttaavat takaa-ajoon saadakseen tyttärensä kotiin. Siitä alkaa henkeäsalpaava kisa,</p><p>Ohjaaja on Edward af Sillén ja päärooleissa nähdään David Hellenius, Malin Åkerman, Jonas Karlsson, Johan Glans, Peter Dalle, Johan Ulveson, Ola Forssmed, Elsa Öhrn, Malte Gardinger sekä Sara Soulié. Kesto on 115 min. ja ääniraita on ruotsiksi ja tekstitys suomeksi. Ikäraja on K7 ja pääsy on vapaa.<br>Järjestäjänä Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Den stjärnspäckade komedin ETT SISTA RACE tar oss med fart, fläkt och höga varvtal genom Sverige.</p><p>Filmen berättar historien om streetracing-legenden Dennis, som levt hela sitt liv på fel sida om lagen. Han har nu bestämt sig för att börja leva det ansvarsfulla och stilla livet. Något som snart bryts upp när Dennis får reda på att hans dotter Hanna ska delta i ett race med sin nya kille Charlie. För att stoppa Hanna beger sig Dennis och hans ex-fru Tove ut på en resa för att hämta hem dottern. Det är början på ett hisnande sista race.</p><p>För regin står Edward af Sillén och i huvudrollerna ser vi David Hellenius, Malin Åkerman, Jonas Karlsson, Johan Glans, Peter Dalle, Johan Ulveson, Ola Forssmed, Elsa Öhrn, Malte Gardinger och finlandssvenska Sara Soulié. Filmen är 115 min. lång med svenskt tal och finsk text. Åldersgränsen är 7 och inträdet är fritt.<br>Arrangör är Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>A street racing legend Dennis who neglected his marriage and 16 year old daughter Hanna. One day he finds out that his daughter will participate in a race with her new boyfriend. To stop Hanna, Dennis and his ex-wife Tove go on a trip.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race_Viimeinen_startti_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race", "en": "http://www.vuotalo.fi/en/events/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race" }, "short_description": { "fi": "Viimeinen startti on tähtiä täynnä elokuva, jossa vauhtia ja kovia kierroksia riittää halki Ruotsin. Suomenkielinen tekstitys.", "sv": "Den stjärnspäckade komedin ETT SISTA RACE tar oss med fart, fläkt och höga varvtal genom Sverige.", "en": "A street racing legend Dennis who neglected his marriage and 16 year old daughter Hanna. One day he finds out that his daughter will participate in a race with her new boyfriend. To stop Hanna, Dennis and his ex-wife Tove go on a trip." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63904/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63123", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3601047", "en": "https://www.lippu.fi/eventseries/3601047" }, "description": null, "price": { "fi": "38,30 €", "en": "38,30 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-28T10:14:11.962307Z", "last_modified_time": "2024-02-28T10:14:11.962326Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745131.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-28T10:14:11.934573Z", "last_modified_time": "2024-05-26T16:13:07.438716Z", "date_published": null, "start_time": "2024-05-31T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kanan Gill", "en": "Kanan Gill" }, "description": { "fi": "<p>Winner of the Punch Line Bangalore Competition, <b>Kanan Gill</b>, has long been one of the most popular comedians in his native country of India. He then rose to global fame with the YouTube series \"Pretentious Movie Reviews\" where he reviewed flawed old Bollywood films in a witty manner. Kanan has toured across India and around the world in Singapore, Hong Kong, Dubai, Bangkok, Vietnam, the UK, The Netherlands, North America and Australia. His stand-up special \"Keep it Real\" is widely regarded as one of the best in the history of Indian stand-up.</p><p>Age limit: K-16</p><p>Duration about 85 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>", "en": "<p>Winner of the Punch Line Bangalore Competition, <b>Kanan Gill</b>, has long been one of the most popular comedians in his native country of India. He then rose to global fame with the YouTube series \"Pretentious Movie Reviews\" where he reviewed flawed old Bollywood films in a witty manner. Kanan has toured across India and around the world in Singapore, Hong Kong, Dubai, Bangkok, Vietnam, the UK, The Netherlands, North America and Australia. His stand-up special \"Keep it Real\" is widely regarded as one of the best in the history of Indian stand-up.</p><p>Age limit: K-16</p><p>Duration about 85 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "W&T Comedy", "en": "W&T Comedy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C74A997EAADC0418B8543E2101FCD5B2/Kanan_Gill_", "en": "http://www.savoyteatteri.fi/en/events/event/C74A997EAADC0418B8543E2101FCD5B2/Kanan_Gill_" }, "short_description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63123/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63227", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-18434764/" }, "description": null, "price": { "fi": "16,50 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12865, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T14:14:17.365914Z", "last_modified_time": "2024-03-15T14:14:17.365930Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746130.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12865/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T14:14:17.343273Z", "last_modified_time": "2024-05-25T09:12:41.757569Z", "date_published": null, "start_time": "2024-05-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Peppi Pitkätossu – Balettikoulu Anne Hirvosen kevätnäytös" }, "description": { "fi": "<p>Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun.</p><p>Esiintyjinä ovat koulun kaikki oppilaat pienistä lapsista aikuisiin.</p><p>Esityksen kesto 1 h.</p><p>Liput: 16,50 € / 10 €</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2487F382B58C2AEFC9E23C3D189827D0/Peppi_Pitkatossu" }, "short_description": { "fi": "Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63227/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63226", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-18434760/" }, "description": null, "price": { "fi": "16,50 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12864, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T14:14:17.061892Z", "last_modified_time": "2024-03-15T14:14:17.061912Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746129.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T14:14:17.030336Z", "last_modified_time": "2024-05-25T09:12:41.617716Z", "date_published": null, "start_time": "2024-05-25T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Peppi Pitkätossu – Balettikoulu Anne Hirvosen kevätnäytös" }, "description": { "fi": "<p>Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun.</p><p>Esiintyjinä ovat koulun kaikki oppilaat pienistä lapsista aikuisiin.</p><p>Esityksen kesto 1 h.</p><p>Liput: 16,50 € / 10 €</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8F71794FBDB87173669F46A916F2F29E/Peppi_Pitkatossu" }, "short_description": { "fi": "Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63690", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151109, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-13T11:12:52.171835Z", "last_modified_time": "2024-05-13T11:12:52.171854Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744897.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-13T11:12:52.157445Z", "last_modified_time": "2024-05-24T09:12:49.975912Z", "date_published": null, "start_time": "2024-06-12T17:00:00Z", "end_time": "2024-06-12T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Illallinen Malmin taivaan alla – Malmin tapahtumakesä", "sv": "Middag under Malms himmel – Malms evenemangssommar", "en": "Dinner under the Malmi sky – Malmi Summer of Events" }, "description": { "fi": "<p>Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen Ala-Malmin puiston kauneuteen. Pitkä illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle. Paikat täynnä!</p><p>Kutsu siis mukaan ystäväsi ja pakkaa mukaasi ruoat, juomat ja astiat – keskiviikkona 12.6. kippistetään yhdessä rakkaalle Helsingille!</p><p>Osallistuminen on maksutonta. Kiitos ilmoittautuneille ja yhteisessä ruokapöydässä nähdään! Pöytäpaikkojen lisäksi piknikiä voi tulla viettämään Ala-Malmin puiston nurmikoille ilman ennakkoilmoittautumista.</p><p>Illallisen lomassa esiintyy touko-yhtye, jonka jazzahtavat soinnut huikkaavat huikealle päivälle kiitoksensa. Olet lämpimästi tervetullut yhteisen illallispöydän äärelle!</p>", "sv": "<p>Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord i den vackra Nedre Malms park. Det långa middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand.</p><p>Bjud alltså in dina vänner och packa med dig maten, dryckerna och kärlen – onsdagen den 12 juni skålar vi tillsammans för vårt kära Helsingfors!</p><p>Deltagande är avgiftsfritt. Anmälan är full.</p><p>Det finns ett begränsat antal av bordsplatser, men om de blir fyllda kan man komma och ha en picknick på gräsmattan i Nedre Malms park.</p><p>Under middagen spelar bandet touko, vars jazzliknande tongångar tackar den fina dagen. Du är varmt välkommen till det gemensamma middagsbordet!</p>", "en": "<p>Dinner under the Malmi sky invites local residents to eat at the same table in the beautiful Ala-Malmi Park. We will set a long dinner table for a hundred people with reservations.</p><p>Invite your friends and pack your own picnic food, drinks and plates – let’s raise a glass together on Wednesday, 12 June to our wonderful city, Helsinki!</p><p>Participation is free of charge. There is a limited number of seats, but even when they’re all gone, you can join everyone for a picnic in Ala-Malmi Park. The registration for the event is full.</p><p>The dinner will feature the music of the band, touko, whose jazzy tunes will be a highlight of this fantastic day. Join us all at the same table!</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Illallinen_Malmin_taivaan_alla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Middag_under_Malms_himmel", "en": "http://www.malmitalo.fi/en/events/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Dinner_under_the_Malmi_sky" }, "short_description": { "fi": "Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen Ala-Malmin puiston kauneuteen. Pitkä illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle. Paikat täynnä!", "sv": "Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord i den vackra Nedre Malms park. Det långa middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand.", "en": "Dinner under the Malmi sky invites local residents to eat at the same table in the beautiful Ala-Malmi Park. We will set a long dinner table for a hundred people with reservations." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63690/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63884", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T11:13:02.592603Z", "last_modified_time": "2024-05-23T11:13:02.592619Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746039.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T11:13:02.575869Z", "last_modified_time": "2024-05-23T13:12:47.332604Z", "date_published": null, "start_time": "2024-08-24T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.</p><p><b>Ylä-Malmin vaiheita kävellen</b><br>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisessa miljöössä, johon tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Tule mukaan nostalgiselle kierrokselle läpi rakkaan kaupunginosamme tarinaa!</p><p>Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala. Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Fritt inträde, ingen förhandsanmälan.</p>", "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/621EED4A96E2F73BAE8381473FF13C6A/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/621EED4A96E2F73BAE8381473FF13C6A/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/621EED4A96E2F73BAE8381473FF13C6A/A_peaceful_walk_down_memory_lane_at_Malmi" }, "short_description": { "fi": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.", "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61585", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6432, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.632056Z", "last_modified_time": "2024-02-06T13:23:43.654076Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738570.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.610979Z", "last_modified_time": "2024-05-23T13:12:41.900931Z", "date_published": null, "start_time": "2024-05-26T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIERE" }, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61584", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.517678Z", "last_modified_time": "2024-02-06T13:23:43.557372Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738569.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.493294Z", "last_modified_time": "2024-05-23T13:12:41.816699Z", "date_published": null, "start_time": "2024-05-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIERE" }, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61583", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.347140Z", "last_modified_time": "2024-02-06T13:23:43.188036Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738568.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.327226Z", "last_modified_time": "2024-05-23T13:12:41.504610Z", "date_published": null, "start_time": "2024-05-24T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIERE" }, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61582", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.218990Z", "last_modified_time": "2024-02-06T13:23:43.009397Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738567.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.182500Z", "last_modified_time": "2024-05-23T13:12:41.293778Z", "date_published": null, "start_time": "2024-05-23T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIERE" }, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61679", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3554510", "sv": "https://www.lippu.fi/eventseries/3554510", "en": "https://www.lippu.fi/eventseries/3554510" }, "description": null, "price": { "fi": "33,50 €/48,50 € 2 pvä", "sv": "33,50 €/48,50 € 2 pvä", "en": "33,50 €/48,50 € 2 pvä" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-15T12:13:54.724772Z", "last_modified_time": "2024-02-06T13:23:43.370405Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739295.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-13T17:13:41.677056Z", "last_modified_time": "2024-05-23T11:12:56.589247Z", "date_published": null, "start_time": "2024-05-25T09:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsinki Lit – Käännöskirjallisuusfestivaali 10 vuotta", "sv": "Helsinki Lit – Litteraturfestivalen", "en": "Helsinki Lit" }, "description": { "fi": "<p>Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.</p><p>Järjestäjä tiedottaa: ”Lauantaina 25.5. ohjelma alkaa klo 12.30 TOISIN KUIN LIPPU:FI:N FYYSISISSÄ TULOSTELIPUISSA ON ILMOITETTU. Lipuissa lulee klo 13:00. Väärä aikataulu lipuissa johtuu teknisestä virheestä jota ei Early Bird -lipunmyynnin ja sen jälkeisen aikataulujen välttämättömien, kirjailijavieraiden omien myöhemmin ilmenneiden aikataulujen jälkeen voitu ennakoida ajoissa. Suuret pahoittelut virheestä. Tulkaa ajoissa paikalle, ohjelma alkaa jo klo 12:30.”</p><p>Lisätietoja: https://helsinki-lit.fi/</p><p>***</p><p>Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa</p><p>Helsinki Lit -käännöskirjallisuusfestivaali juhlii tulevana keväänä kymmenvuotista taivaltaan. 10-vuotisjuhlafestivaali järjestetään 24.-25. toukokuuta Savoy-teatterissa, josta koko Helsinki Lit -festivaalin menestyksekäs taival vuosikymmen sitten alkoi.</p><p>Helsinki Litissä on kymmenen vuoden aikana vieraillut kymmeniä kansainvälisiä kirjalijatähtiä Nobel-voittajista Booker- ja Pulitzer-palkittuihin. Tänä vuonna Helsinki Lit sai vieraakseen muun muassa juuri kirjallisuuden Nobel-palkinnon voittaneen Annie Ernaux’n ja festivaalin liput myytiin ennakosta loppuun jo maaliskuun 2023 aikana.</p><p>10-vuotisjuhlavuoden koko ohjelma julkaistaan helmikuussa 2024. Mukana tulee tuttuun tapaan jälleen olemaan nimekkäitä kansainvälisiä kirjailijavieraita, joiden kanssa keskustelevat valitut kotimaiset kirjailijat, toimittajat ja vaikuttajat. Tänä vuonna luvassa on myös erityistä juhlaohjelmaa ja tunnelmakoosteita vuosien varrelta. <br>Juhlafestivaalilla mukana olevat kustantajat ja festivaalin muut yhteistyökumppanit ja tukijat julkaistaan helmikuun ohjelmajulkistuksen yhteydessä.</p><p>Permanto paikat ovat K18. Parveke on sallittu kaiken ikäisille.</p>", "sv": "<p>Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern</p><p>Den internationella litteraturfestivalen Helsinki Lit ordnas nästa år för tionde gången. Festivalen äger rum den 24-25 maj 2024, på Savoyteatern i Helsingfors, där också den första festivalen hölls 2015.</p><p>Under ett decennium har festivalen fått besök av en mängd internationella stjärnor, däribland tidigare Nobelpristagare, Pulitzer-, Booker- och Finlandiavinnare. I våras gästades Helsinki Lit av den färska nobelpristagaren Annie Ernaux, och då var festivalen var utsåld redan i mars.</p><p>Programmet för nästa år publiceras i februari 2024. Även denna gång bjuder Helsinki Lit på flera stora internationella författarnamn, som intervjuas av inhemska författare och journalister. Tioårsjubileet kommer även att uppmärksammas i programmet.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>The Helsinki Lit translation literature festival celebrates its 10th anniversary at Savoy Theatre in May – tickets now on sale</p><p>The Helsinki Lit translation literature festival will celebrate its 10th anniversary next spring. The 10th anniversary festival will take place at Savoy Theatre on 24–25 May, where Helsinki Lit’s successful run began a decade ago. The tickets are now on sale.</p><p>Over the past ten years, Helsinki Lit has hosted dozens of international literary stars, from Nobel Prize winners to Booker and Pulitzer Prize winners. In 2023, Helsinki Lit hosted Annie Ernaux, who had just won the Nobel Prize for Literature, and tickets for the festival sold out in advance during March 2023.</p><p>The full programme for the 10th anniversary will be published in February 2024. As usual, the festival will host internationally renowned author guests, who will participate in discussions with selected Finnish authors, journalists and influencers. This year, there will also be a special festive programme and atmospheric compilations from over the years.</p><p>The publishers and other partners and supporters of the festival will be announced when the programme is published in February.</p><p>The stalls will only be allowed for over 18s. The balcony will be allowed for people of all ages.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "Helsingin kirjallisuusfestivaali ry", "sv": "Helsingin kirjallisuusfestivaali ry", "en": "Helsingin kirjallisuusfestivaali ry" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit", "en": "http://www.savoyteatteri.fi/en/events/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit" }, "short_description": { "fi": "Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.", "sv": "Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61679/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63879", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151280, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T09:13:20.390535Z", "last_modified_time": "2024-05-23T09:13:20.390556Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746037.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151280/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T09:13:20.333185Z", "last_modified_time": "2024-05-23T09:13:20.475200Z", "date_published": null, "start_time": "2024-08-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ala-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 18 ja kestää noin klo 19.30 saakka.</p><p>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa.</p><p>Kävelykierros liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på finska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 18 och varar fram till cirka kl. 19.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala.</p><p>Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p>", "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 18 pm and lasts until roughly 19:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half. The walking tour is in Finnish.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1F99FEB3937BF5E131A055204B7A4FC/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1F99FEB3937BF5E131A055204B7A4FC/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/D1F99FEB3937BF5E131A055204B7A4FC/A_peaceful_walk_down_memory_lane_at_Malmi" }, "short_description": { "fi": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ala-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 18 ja kestää noin klo 19.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på finska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 18 och varar fram till cirka kl. 19.30.", "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 18 pm and lasts until roughly 19:30 pm." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63879/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63876", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151277, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T07:12:44.491874Z", "last_modified_time": "2024-05-23T07:12:44.491890Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753352.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151277/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T07:12:44.473347Z", "last_modified_time": "2024-05-23T08:19:41.674281Z", "date_published": null, "start_time": "2024-06-01T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen matka Balkanin sydämeen – Musiikkitalon terassilla" }, "description": { "fi": "<p>Valmistaudu musiikilliseen matkaan, jollaista ei ole toista! Balkanilaisen musiikin cover-yhtye kuljettaa sinut Balkanin sydämeen.</p><p>Monipuolinen ohjelmisto kattaa koko Balkanin alueen sydäntä särkevistä balladeista Balkanin kansantansseihin ja sen ulkopuolelle.<br> <br>Aarne Toivonen, rummut<br>Sara Majidi Nejad, Qanun<br>Devina Boughton, trumpetti<br>Vasileios Katopodis, basso<br>Chrysa Panagiotopoulou, laulu</p><p><b>HUOM! Konsertti järjestetään Musiikkitalon terassilla.</b></p><p>Vapaa pääsy.<br> <br>Konsertti on osa Global Club Nights-sarjaa.</p><p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallinen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius- Akateemian globaalin musiikin osaston ja Kulttuurikeskus Caisan kanssa.</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD8E2AEC1AB4A0C3DE04745F1CAEA298/Musiikillinen_matka_Balkanin_sydameen" }, "short_description": { "fi": "Valmistaudu musiikilliseen matkaan, jollaista ei ole toista! Balkanilaisen musiikin cover-yhtye kuljettaa sinut Balkanin sydämeen." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63876/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63323", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150732, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-22T13:13:17.115226Z", "last_modified_time": "2024-04-22T13:13:17.115241Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748979.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150732/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-22T13:13:17.098994Z", "last_modified_time": "2024-05-22T12:12:53.015055Z", "date_published": null, "start_time": "2024-06-04T08:00:00Z", "end_time": "2024-06-04T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tiistain lounasjamit" }, "description": { "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C126DEF35FC895A65C139D5E1BE055D4/Tiistain_lounasjamit" }, "short_description": { "fi": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63323/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63322", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150731, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-22T13:13:16.442930Z", "last_modified_time": "2024-04-22T13:13:16.442987Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748977.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150731/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-22T13:13:16.424674Z", "last_modified_time": "2024-05-22T12:12:51.936321Z", "date_published": null, "start_time": "2024-05-28T08:00:00Z", "end_time": "2024-05-28T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tiistain lounasjamit" }, "description": { "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/64EE8089C1690599A4B87EEB0E03DA7B/Tiistain_lounasjamit" }, "short_description": { "fi": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63319", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150728, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-22T13:13:12.277326Z", "last_modified_time": "2024-04-22T13:13:12.277342Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748971.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150728/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-22T13:13:12.261393Z", "last_modified_time": "2024-05-22T12:12:47.857891Z", "date_published": null, "start_time": "2024-05-07T08:00:00Z", "end_time": "2024-05-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tiistain lounasjamit" }, "description": { "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A31670EAE19F45D07905F3F8BED38F6D/Tiistain_lounasjamit" }, "short_description": { "fi": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63319/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:263f3806-972d-4d59-9683-a161a4160b25", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:33373/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_kv_referenssitestaus_2251728974150" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-22T10:03:17.128705Z", "last_modified_time": "2024-05-22T10:03:17.128722Z", "date_published": "2024-05-22T09:14:30Z", "start_time": "2024-05-23T11:22:00Z", "end_time": "2024-05-24T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-22T10:00:00+03:00", "enrolment_end_time": "2024-05-23T00:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "LE kv referenssitestaus 22.5" }, "description": { "fi": "<div><p>Testataan referenssejä</p></div>" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "Järjestäjä" }, "info_url": null, "short_description": { "fi": "Testataan referenssejä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:263f3806-972d-4d59-9683-a161a4160b25/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63499", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150882, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-29T09:13:37.281111Z", "last_modified_time": "2024-04-29T09:13:37.281125Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746561.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150882/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-29T09:13:37.255732Z", "last_modified_time": "2024-05-22T08:13:28.485999Z", "date_published": null, "start_time": "2024-05-26T08:00:00Z", "end_time": "2024-05-26T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Big Band Marathon", "sv": "Big Band Marathon", "en": "Big Band Marathon" }, "description": { "fi": "<p>Espan Big Band Marathon tulee taas! Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.</p><p><b>Päivän aikataulu:</b></p><p>klo 11 Vaskivuori Big Band<br>klo 12 Vuoksi Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Gramofoni Big Band<br>klo 15 Ladies First Big Band</p>", "sv": "<p>Esplanadens Big Band Marathon kommer igen! Fem fantastiska band presenterar en mångsidig dukning av big band-musik från grooviga sommarhittar till traditionella big band-kompositioner.</p><p>kl. 11 Vaskivuori Big Band<br>kl. 12 Vuoksi Big Band<br>kl. 13 Ebeli Big Band<br>kl. 14 Gramofoni Big Band<br>kl. 15 Ladies First Big Band</p>", "en": "<p>Espa’s Big Band Marathon is here again! Five amazing ensembles will perform a diverse selection of big band music from groovy summer hits to traditional big band tunes.</p><p>klo 11 Vaskivuori Big Band<br>klo 12 Vuoksi Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Gramofoni Big Band<br>klo 15 Ladies First Big Band</p>" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon", "sv": "http://www.espanlava.fi/sv/evenemang/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon", "en": "http://www.espanlava.fi/en/events/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon" }, "short_description": { "fi": "Espan Big Band Marathon tulee taas! Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.", "sv": "Esplanadens Big Band Marathon kommer igen! Fem fantastiska band presenterar en mångsidig dukning av big band-musik från grooviga sommarhittar till traditionella big band-kompositioner.", "en": "Espa’s Big Band Marathon is here again! Five amazing ensembles will perform a diverse selection of big band music from groovy summer hits to traditional big band tunes." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }