Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=215&weekday=6%2C7
{ "meta": { "count": 7180, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=216&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=214&weekday=6%2C7" }, "data": [ { "id": "kulke:63809", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/a-la-malmi-pykaeri-malmitalo-18646720/", "sv": "https://www.lippu.fi/event/a-la-malmi-pykaeri-malmitalo-18646720/", "en": "https://www.lippu.fi/event/a-la-malmi-pykaeri-malmitalo-18646720/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-13T12:13:11.807615Z", "last_modified_time": "2024-06-13T12:13:11.807632Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753130.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-13T12:13:11.777578Z", "last_modified_time": "2024-12-20T01:13:54.841025Z", "date_published": null, "start_time": "2024-10-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pykäri + Kardemimmit – A la Malmi", "sv": "Pykäri + Kardemimmit – A la Malmi", "en": "Pykäri + Kardemimmit – A la Malmi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Monipuolinen indieartisti huipentaa perjantain klubi-illan! Lämmittelijänä maailman tunnetuin kanteleyhtye Kardemimmit.", "sv": "Den mångsidiga indieartisten värmer upp fredagens klubbkväll!", "en": "A versatile indie artist to brighten up Friday night's club night!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ABFD2C6876DAE10B47281F8E626817D2/Pykari_Kardemimmit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/ABFD2C6876DAE10B47281F8E626817D2/Pykari_Kardemimmit", "en": "http://www.malmitalo.fi/en/events/event/ABFD2C6876DAE10B47281F8E626817D2/Pykari_Kardemimmit" }, "description": { "fi": "<p>Monipuolinen indieartisti huipentaa perjantain klubi-illan! Lämmittelijänä maailman tunnetuin kanteleyhtye Kardemimmit.</p><p>Pykärin uniikki tapa koota yhteen mielenkiintoisia teemoja, tuotantoja ja sanoituksia on vaikuttanut Suomen indie-skenessä jo vuosituhannen alkupuolelta lähtien.</p><p>Aiemmin urallaan Pykäri lyöttäytynyt musiikillisesti yhteen esimerkiksi Lauri Haavin ja F:n kanssa ja vaikuttaa Karin Mäkirannan kanssa indiepop-yhtye Babelissa. Hän on myös pokannut alternative-Emman ja tuottanut musiikkia muun muassa rap-yhtye Ruger Hauerille.</p><p>Mukana myös maailman tunnetuin kanteleyhtye Kardemimmit, joka julkaisi juuri tuoreimman albuminsa. Kaikilla yhtyeen jäsenillä on tutkinto kansanmusiikista, ja perinteen vahva tuntemus kuuluu Kardemimmien musiikin taustana. Sävellykset ja sanoitukset eivät kuitenkaan laatikoissa viihdy, vaan inspiraatiota on haettu muun muassa Sufjan Stevensiltä, Kate Bushilta ja Moderatilta.</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p><p>Kesto 1 t</p>", "sv": "<p>Den mångsidiga indieartisten värmer upp fredagens klubbkväll!</p><p>Pykäris unika sätt att sammanföra intressanta teman, produktioner och texter har påverkat den finländska indiescenen sedan början av millenniet.</p><p>Tidigare i karriären har Pykäri bland annat samarbetat musikaliskt med Lauri Haav och F, och är medlem i indiepopbandet Babel tillsammans med Karin Mäkiranta. Han har också knipit en alternative-Emma och producerat musik för bland annat rapbandet Ruger Hauer.</p>", "en": "<p>A versatile indie artist to brighten up Friday night's club night!</p><p>Pykäri's unique way of combining interesting themes, production and lyrics has had an impact on the Finnish indie scene since the early noughties.</p><p>Pykäri has teamed up musically with Lauri Haavi and F, for example, and works with Karin Mäkiranta as indiepop band Babel. He has also been awarded an Emma for alternative music and produced music for rap band Ruger Hauer, among others.</p><p>Also featuring as the warm-up act: the world’s most renowned kantele ensemble, Kardemimmit, who have just released their latest album. All members of the group hold degrees in folk music, and their deep knowledge of tradition is reflected in the background of their music. However, the compositions and lyrics aren’t confined to traditional boxes, drawing inspiration from artists like Sufjan Stevens, Kate Bush, and Moderat.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63809/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63651", "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: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/the-weight-of-being-sexy-3669024/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/the-weight-of-being-sexy-3669024/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/the-weight-of-being-sexy-3669024/" }, "description": null, "price": { "fi": "20 € / 10 €", "sv": "20 € / 10 €", "en": "20 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151968, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T12:13:57.454358Z", "last_modified_time": "2024-07-30T12:13:57.454383Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751884.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151968/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-30T09:13:57.494809Z", "last_modified_time": "2024-12-20T01:13:54.742114Z", "date_published": null, "start_time": "2024-10-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "the weight of being sexy – Pimeä Hedelmä X Amanda & Lydia", "sv": "the weight of being sexy – Pimeä Hedelmä X Amanda & Lydia", "en": "the weight of being sexy – Pimeä Hedelmä X Amanda & Lydia" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "The weight of being sexy -tanssiesitys syventyy seksikkyyteen, sen kokemuksellisuuteen, performatiivisuuteen ja näistä nousevaan kehollisuuteen.", "sv": "The weight of being sexy är en dansföreställning som utforskar sexighet, dess erfarenhetsmässighet, performativitet och den kroppslighet som uppstår ur den.", "en": "The weight of being sexy delves into the experience of sex appeal, the performativity of it, and the corporeality these create." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/84CBCF8A51FBFF7D309693385C1DA2A9/the_weight_of_being_sexy", "sv": "http://www.caisa.fi/sv/evenemang/event/84CBCF8A51FBFF7D309693385C1DA2A9/the_weight_of_being_sexy", "en": "http://www.caisa.fi/en/events/event/84CBCF8A51FBFF7D309693385C1DA2A9/the_weight_of_being_sexy" }, "description": { "fi": "<p>The weight of being sexy -tanssiesitys syventyy seksikkyyteen, sen kokemuksellisuuteen, performatiivisuuteen ja näistä nousevaan kehollisuuteen.</p><p>Tanssijat tutkivat liikkeellisesti seksikkyyteen liittyviä latauksia, odotuksia, nautintoja ja epävarmuuksia. Viettelevyyden läpi avautuu rehellisen toteava inhimillisyys. Teos jatkaa Pimeä Hedelmä -bändin ja queer-art-duo Amanda & Lydian yhteistyötä ja kietoo yhteen heidän praktiikoitaan tanssin ja koreografian sekä rap-musiikin parista.</p><p>Teoksen valosuunnittelusta vastaa Luca Sirviö, pukusuunnittelusta Joona Huotari ja äänisuunnittelusta Pimeä Hedelmä -yhtyeen tuottaja-dj Olli Tiikkainen.</p><p>Haluutsä punkkuu tai valkkarii vai…?</p><p>Kesto: n. 1 t<br>K18, ei suositella lapsille<br>Kieli: puhuttu suomi, englanninkielinen käännös saatavilla<br>Teoksessa käytetään kovaa ääntä, mahdollisesti vilkkuvia valoja. Esiintyjät liikkuvat lähellä katsojia, mutta eivät kosketa heitä. <br>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p><p>Koreografia & esiintyminen: Kaisa Nieminen & Vane Virta (Pimeä Hedelmä), queer-art -duo Amanda & Lydia <br>Äänisuunnittelu: Olli Tiikkainen (Pimeä Hedelmä) <br>Valosuunnittelu: Luca Sirviö <br>Pukusuunnittelu: Joona Huotari</p><p><b>Amanda & Lydia </b>on vuonna 2015 perustettu queer-performanssitaideduo, joka yhdistelee taiteessaan voguingia, burleskia ja drag-taidetta. He toimivat aktiivisesti LGBTQIA+-vogue/ballroom-kulttuurin parissa ja kuuluvat Fem Queens of Finland -performanssiryhmään.</p><p><b>Kaisa Nieminen</b> on tanssija ja koreografi, räppäri Pimeä Hedelmä -bändissä. Hänen tanssitaustansa on hiphopissa, punkingissa/waackingissa. Hän valmistui koreografian maisteriksi Inter-University for Dance Berliinistä (HZT) vuonna 2019.</p><p><b>Vane Virta</b> on tanssija-koreografi, rap-artisti ja elokapinallinen. Hän on kiinnostunut aktivismista käytännön ruohonjuuritasolla sekä sen taiteellisista mahdollisuuksista esitystaiteessa. Virta on valmistunut tanssitaiteen kandidaatiksi Tukholman taideyliopistolta (DOCH) vuonna 2017.</p><p><b>Olli Tiikkainen</b> on tuottaja, säveltäjä ja väitöskirjatutkija. Tiikkaisen musiikillinen tuotanto kattaa niin hiphopin, elektronisen tanssimusiikin kuin ambientinkin. Pimeä Hedelmä -yhtyeessä Tiikkainen toimii tuottajana, keikka-dj:nä ja ajoittaisena suunsa availijana.</p><p><b>Luca Sirviö</b> on Helsingissä asuva freelance-valosuunnittelija, joka valmistui teatteritaiteen maisteriksi vuonna 2019. Hän työskentelee enimmäkseen nykytanssin ja teatterin parissa.</p><p><b>Joona Huotari</b> on pukusuunnittelija ja taiteilija, joka on työskennellyt monipuolisesti musiikkivideoiden, television, muodin, teatterin, sirkuksen ja oopperan parissa jo vuodesta 2010.</p>", "sv": "<p>The weight of being sexy är en dansföreställning som utforskar sexighet, dess erfarenhetsmässighet, performativitet och den kroppslighet som uppstår ur den.</p><p>Genom rörelse utforskar dansarna de laddningar, förväntningar, njutningar och osäkerheter som är förknippade med sexighet. Genom förförelsen öppnar sig en ärligt konstaterande mänsklighet. Verket är en fortsättning på samarbetet mellan bandet Pimeä Hedelmä och queer-art-duon Amanda & Lydia, och väver samman deras praktik inom dans, koreografi och rapmusik.</p><p>Luca Sirviö ansvarar för ljusdesignen, Joona Huotari för kostymdesignen och Pimeä Hedelmä-bandets producent och dj Olli Tiikkainen för ljuddesignen.</p><p>Vill du ha rödvin eller vitvin eller...?</p><p>Längd: ca 1 h<br>Ålder: 18<br>Språk: talad finska, engelsk översättning tillgänglig <br>I verket ingår högt ljud, eventuellt blinkande ljus. Artisterna rör sig nära publiken, men vidrör dem inte.</p><p>Koreografi & framförande: Kaisa Nieminen & Vane Virta (Pimeä Hedelmä), queer-art-duon Amanda & Lydia <br>Ljuddesign: Olli Tiikkainen (Pimeä Hedelmä) <br>Ljusdesign: Luca Sirviö <br>Kostymdesign: Joona Huotari</p><p><b>Amanda & Lydia</b> är en queer-performanskonst-duo som grundades år 2015 och som i sin konst kombinerar voguing, burlesk och drag art. De är aktiva inom LGBTQIA+-vogue/ballroom-kulturen och är en del av performansgruppen Fem Queens of Finland.</p><p><b>Kaisa Nieminen</b> är dansare, koreograf, och rappare i bandet Pimeä Hedelmä. Hennes dansbakgrund är inom hiphop, punking/waacking. Hon utexaminerades från Inter-University for Dance Berlin (HZT) år 2019 som magister i koreografi.</p><p><b>Vane Virta</b> är dansare, koreograf, rap-artist och medlem i Elokapina. Hon är intresserad av aktivism på en praktisk gräsrotsnivå och dess konstnärliga potential inom scenkonsten. Virta utexaminerades som kandidat i dans från Stockholms konstnärliga högskola (DOCH) år 2017.</p><p><b>Olli Tiikkainen</b> är producent, kompositör och doktorand. Tiikkainens musikaliska produktion omfattar hiphop, elektronisk dansmusik och ambient. I Pimeä Hedelmä arbetar Tiikkainen som producent, spelnings-dj och tidvis öppnar han även munnen.</p><p><b>Luca Sirviö</b> är en freelance-ljusdesigner som bor i Helsingfors. Han utexaminerades som magister i teaterkonst år 2019. Han arbetar mest med modern dans och teater.</p><p><b>Joona Huotari</b> är en kostymdesigner och konstnär som sedan 2010 har arbetat mångsidigt med musikvideor, television, mode, teater, cirkus och opera.</p>", "en": "<p>The weight of being sexy delves into the experience of sex appeal, the performativity of it, and the corporeality these create.</p><p>In the piece the dancers explore the tensions, expectations, pleasures and insecurities of being sexy. The piece continues the collaboration of the band Pimeä Hedelmä and the queer-art duo Amanda & Lydia by entwining their practices in dance, choreography, and rap music.</p><p>Through the exploration of seduction the performers travel through different moods from highly performative to mundane. The premiere takes place at the Kutomo XS-festival. The light design is carried out by Luca Sirviö, the costume design by Joona Huotari, and the sound production by producer-DJ Olli Tiikkainen from Pimeä Hedelmä.</p><p>Want some red or white wine or…?</p><p>Duration: approximately 1 h<br>Age: 18<br>Language: Finnish, English translation available<br>Tickets: 20 € / 10 €, Lippu.fi<br>Loud sounds, possibly flashing lights. The performers move close to the audience, but do not touch them.</p><p>Choreography & performance: Kaisa Nieminen & Vane Virta (Pimeä Hedelmä), queer art duo Amanda & Lydia<br>Sound designer: Olli Tiikkainen (Pimeä Hedelmä)<br>Light designer: Luca Sirviö <br>Costume designer: Joona Huotari <br>Production & residencies: Ehkä production /Nykytaidetila Kutomo (Turku)<br>Funding: Ehkä ry, Taiteen edistämiskeskus</p><p><b>Amanda & Lydia</b> is a 2015 founded, bold and unapologetic dance-/performance art duo that draws from the Queer- and Ballroom-culture. In the center of Amanda & Lydia’s art is sensual and soft aesthetic in hand with feminine power and confidence. Amanda & Lydia are also part of the performance group, Fem Queens of Finland.</p><p><b>Kaisa Nieminen</b> is a dancer, choreographer and rapper in the band Pimeä Hedelmä. Her background is in street dance; hip hop, waacking/punking and this background can be seen in her artistic work. Nieminen graduated with an MA in Choreography from Inter-University for Dance Berlin (HZT) in 2019.</p><p><b>Vane Virta</b> is a dancer, choreographer, rapper and an environmental activist. They are interested in the direct action within activism as well as the performative and artistic possibilities of it. From 2017 Virta holds a BA in Dance Performance from DOCH, Stockholm University of the Arts.</p><p><b>Olli Tiikkainen</b> is a producer, composer and doctoral researcher. The musical production of Tiikkainen ranges from hiphop to electronic dance music and ambient. In Pimeä Hedelmä, Tiikkainen is a producer, dj and an occasional vocalist.</p><p><b>Luca Sirviö</b> (she/her) is a Helsinki based lighting designer. She works mainly in the field of contemporary performance with interest in the overlap of genres and the oscillation between the recognizable and the unknown. Sirviö also makes and performs music with her band Teini-Pää.</p><p><b>Joona Huotari</b> is a costume designer and artist that has worked in a wide range of projects since 2010. His work has reached many audiences through music videos, television, events, fashion, theatre, circus and opera.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63651/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64260", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-vuotalo-18890760/#tab=", "sv": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-vuotalo-18890760/#tab=", "en": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-vuotalo-18890760/#tab=" }, "description": null, "price": { "fi": "36,80 €", "sv": "36,80 €", "en": "36,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151826, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T15:13:19.788994Z", "last_modified_time": "2024-07-24T15:13:19.789006Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749381.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151826/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T15:13:19.768912Z", "last_modified_time": "2024-12-20T01:13:54.644534Z", "date_published": null, "start_time": "2024-10-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": "EASY 50 FLY EAGLE FLY", "sv": "EASY 50 FLY EAGLE FLY", "en": "EASY 50 FLY EAGLE FLY" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suomen vanhin ja tunnetuin EAGLES-tribuuttibändi juhlii kuluvana vuonna myös Vuotalossa!", "sv": "EASY The Eagles Tribute Band är ett äkta 70-talsband som har gjort en stark comeback!", "en": "EASY The Eagles Tribute Band is an authentic 70's band that has made a strong comeback" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4FC3B787F13673E27ED376955332E1C1/EASY_50_FLY_EAGLE_FLY", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4FC3B787F13673E27ED376955332E1C1/EASY_50_FLY_EAGLE_FLY", "en": "http://www.vuotalo.fi/en/events/event/4FC3B787F13673E27ED376955332E1C1/EASY_50_FLY_EAGLE_FLY" }, "description": { "fi": "<p>Suomen vanhin ja tunnetuin EAGLES-tribuuttibändi juhlii kuluvana vuonna myös Vuotalossa!</p><p>Vuonna 2024 <br>- EASYn perustamisesta on kulunut 50 vuotta<br>- EASYn comebackista on kulunut 10 vuotta</p><p><b>EASY The Eagles Tribute Band</b><br>Bändi nimeltä Musakatit perustettiin vuonna 1974. <br>Pian bändin jäsenet huomasivat, että nimi edusti huonosti yhtyeen tyyliä ja musiikkia. Suosikki-lehden nimiehdotuskilpailun tuloksena bändi sai nyt uuden nimen, EASY.<br>Yhtye keikkaili ahkerasti seitsemän vuoden ajan tehden yli 400 keikkaa.<br> <br>Pitkän tauon jälkeen yhtye teki yllättävän comebackin esiintymällä kesällä 2014Tribute Band Festivaaleilla Helsingissä, esittäen Eagles-yhtyeen musiikkia. Menestyksekkään comebackin innostamana \"pojat\" päättivät jatkaa jälleen keikkailua.</p><p>Nykyään EASY esittää konserteissa/ keikoilla palvomaansa Eagles-yhtyeen musiikkia, siksi nimeen on lisätty tarkennus ”The Eagles Tribute Band”.</p><p>EASYn kokoonpanoon kuuluu nykyään kolme alkuperäisjäsentä: Petteri Kokljuschkin, Sami Javne, Roni Kamras<br>ja kaksi nuoremman polven huippulaulajakitaristia <br>Lappe Holopainen ja Tomi Juustila sekä upeaääninen pianisti Katri Silolahti.<br> <br>EASYN JUHLAVUOSI on sujunut ikimuistoisesti. Salit ovat täyttyneet kiitettävästi ja tunnelma on ollut paikoin lähes hurmoksellinen.</p><p>EASYN juhlavuosi huipentuu Vuotalon K18 Klubi-illassa pidettävään päätöskonserttiin.<br>Tarjoiluista vastaa Café Pokkari.</p>", "sv": "<p>EASY The Eagles Tribute Band är ett äkta 70-talsband som har gjort en stark comeback!</p><p>Ursprungligen uppträdde Easy under namnet Musakatit, men namnet ändrades till Easy efter en läsaromröstning i tidningen Suosikki. Ända från början spelade bandet främst coverlåtar, särskilt Eagles produktion. Före sitt långa uppehåll turnerade Easy flitigt och släppte flera singlar samt lp-albumet EASY. Albumet innehöll också bandets egen produktion.</p><p>I dag har EASY uppdaterat ensemblen en aning. Förutom de tre ursprungliga medlemmarna Petteri Kokljuschkin (bas), Roni Kamras (gitarr och sång) och Sami Javne (trummor och sång) består bandet av två musiker från den yngre generationen: Erno Laitinen (sologitarr och sång), Teemu Aitoaho (sologitarr och sång) och som gästmedlem vid konserter Katri Silolahti (keyboard, akustisk gitarr och sång).</p>", "en": "<p>EASY The Eagles Tribute Band is an authentic 70's band that has made a strong comeback</p><p>Easy initially performed as Musakatit, changing their name to Easy after a reader vote in Suosikki magazine. From the beginning, the band played mainly cover songs, and especially material by the Eagles. Before a long break, Easy toured hard and released several singles as well as one album, EASY. The album also included the band's own material.</p><p>Nowadays, EASY has slightly changed its members. In addition to the three original members Petteri Kokljuschki (bass), Roni Kamras (guitar and vocals) and Sami Javne (drums and vocals), the band features two musicians from the younger generation: Erno Laitinen (lead guitar and vocals), Teemu Aitoaho (lead guitar and vocals) and as a guest member at concerts, Katri Silolahti (keyboards, acoustic guitar and vocals).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64260/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64648", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": 152729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-04T09:13:34.902061Z", "last_modified_time": "2024-10-04T09:13:34.902072Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758843.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-04T09:13:34.887717Z", "last_modified_time": "2024-12-20T01:13:53.883050Z", "date_published": null, "start_time": "2024-10-24", "end_time": "2024-12-31", "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": "Mitä kuuluu Stoa? 40 puhelua menneille vuosikymmenille – Stoa 40!", "sv": "Hur går det Stoa? 40 samtal till tidigare decennier – Stoa 40!", "en": "How’s it going, Stoa? 40 phone calls to past decades – Stoa 40!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Stoan puhelinkopeista avautuu kuulokuva menneisiin vuosikymmeniin. Mitä Stoa on merkinnyt alueen ihmisille? Miten Stoa sai nimensä ja kenen kriitikon kengät kopisivat kylmiä väreitä aiheuttaen Stoan käytävillä?", "sv": "I Stoas telefonhyttar öppnas ett ljudlandskap till gångna decennier. Vad har Stoa betytt för människorna i området? Hur fick Stoa sitt namn och vilken kritikers steg längs Stoas korridorer gav folk kalla rysningar?", "en": "Stoa’s phone booths offer an audio link to past decades. What has Stoa meant to people in the area? How did Stoa get its name, and which critic’s footsteps had people ducking for cover throughout Stoa's corridors?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3425FB6C5E4760A9FAAF4CC05D3D1C10/Mita_kuuluu_Stoa_40_puhelua_menneille_vuosikymmenille", "sv": "http://www.stoa.fi/sv/evenemang/event/3425FB6C5E4760A9FAAF4CC05D3D1C10/Hur_gar_det_Stoa_40_samtal_till_tidigare_decennier", "en": "http://www.stoa.fi/en/events/event/3425FB6C5E4760A9FAAF4CC05D3D1C10/How_s_it_going_Stoa_40_phone_calls_to_past_decades" }, "description": { "fi": "<p>Stoan puhelinkopeista avautuu kuulokuva menneisiin vuosikymmeniin. Mitä Stoa on merkinnyt alueen ihmisille? Miten Stoa sai nimensä ja kenen kriitikon kengät kopisivat kylmiä väreitä aiheuttaen Stoan käytävillä?</p><p>Stoan asiakkaat ja henkilökunta ovat kertoneet muistojaan Stoasta, joista Kipinän nuoret ovat toteuttaneet moniäänisen ääniteoksen. Ota puhelinluettelo käteen ja soita vaikka 1990-luvun nuorisotalolle, jossa opeteltiin tekemään uunijäätelöä. <br> <br>Ääniteoksen toteutuksessa ovat olleet mukana Itäkeskuksen kirjasto, työväenopisto, Stoan kulttuuripalvelut ja Kipinä</p>", "sv": "<p>I Stoas telefonhyttar öppnas ett ljudlandskap till gångna decennier. Vad har Stoa betytt för människorna i området? Hur fick Stoa sitt namn och vilken kritikers steg längs Stoas korridorer gav folk kalla rysningar?</p><p>Stoas kunder och personal har delat med sig av sina minnen från Stoa, och utifrån dessa har Kipinäs ungdomar skapat ett polyfoniskt ljudverk. Ta tag i en telefonkatalog och ring exempelvis till 1990-talets ungdomsgård, där de lärde sig att tillreda ugnsglass.</p><p>Östra centrums bibliotek, finska arbetarinstitutet, Stoas kulturtjänster och Kipinä har deltagit i produktionen av ljudverket.</p>", "en": "<p>Stoa’s phone booths offer an audio link to past decades. What has Stoa meant to people in the area? How did Stoa get its name, and which critic’s footsteps had people ducking for cover throughout Stoa's corridors?</p><p>Stoa’s customers and staff have shared their memories of Stoa, which Kipinä’s young people have used to create a sound artwork with many voices. Pick up the phone book and call the youth centre of the 1990s, where they were learning how to make Baked Alaska.</p><p>The audio work was produced by Itäkeskus Library, the Adult Education Centre, Stoa Cultural Services and Kipinä.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64648/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64572", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T10:15:00.302535Z", "last_modified_time": "2024-09-23T10:15:00.302548Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756003.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T10:15:00.258794Z", "last_modified_time": "2024-12-20T01:13:53.665245Z", "date_published": null, "start_time": "2024-10-24", "end_time": "2024-11-02", "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": "Stoa 40!", "sv": "Stoa 40!", "en": "Stoa 40!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vuosi 1984 toi itähelsinkiläisille oman kulttuuritalon. Nyt on aika juhlistaa Stoan 40-vuotissynttäreitä!", "sv": "År 1984 fick östra Helsingfors ett eget kulturhus. Nu är det dags att fira Stoas 40-årsdag!", "en": "The people of East Helsinki received their Cultural Centre in 1984. It's time to celebrate Stoa's 40th anniversary!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_", "sv": "http://www.stoa.fi/sv/evenemang/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_", "en": "http://www.stoa.fi/en/events/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_" }, "description": { "fi": "<p>Vuosi 1984 toi itähelsinkiläisille oman kulttuuritalon. Nyt on aika juhlistaa Stoan 40-vuotissynttäreitä!</p><p>Tule mukaan vaikka joka päivä juhlaviikon ajan: luvassa on tanssia ja brunssia, ensi-iltaa ja avajaisia, luentokimaraa ja open-mic-stagea, viulumusiikkia vauvaperheille ja kauhua kakaroille. <br> <br>Kanssamme pääset muistelemaan menneitä ja tarttumaan tähän hetkeen, ihastelemaan vesi- ja valotaidetta, nauramaan Itäkuskukseen ja sukeltamaan syvällisiinkin pohdintoihin elämästä ja kuolevaisuudesta. <br> <br>Stoan juhlapöytä on katettu herkullisella ohjelmalla, kutsumme juuri sinut mukaan!</p><p><b>Stoa 40! –juhlaviikon ohjelmaa</b></p><p><b>to 24.10.</b><br>klo 14–15 Askartelutuokio kirjastossa<br>klo 15–18 Ars Moriendi 2024 – Lainaa filosofi, Stoan galleria<br>klo 16–18 Mitä kuuluu Stoa? -teoksen avajaiset + synttärijuhla<br>200 ensimmäiselle kaupunkilaiselle tarjolla kakkua ja kahvia Stoan aulassa, tervetuloa!<br>klo 17 Stoan kansainvälinen kuoro esiintyy Stoan aulassa</p><p><b>pe 25.10.</b><br>klo 16–19 Taivu kuin taikina (Kirjastossa)<br>klo 19 Itäkuskus stand up -klubi & Yalla Collective (Stoan aula, vapaa pääsy)</p><p><b>la 26.10.</b><br>klo 10–16 Arkkitehtuuria laatikon ulkopuolella –penkkipaja Musiikkisalissa<br>klo 10–13 Tiitiäisjuhlat (kirjasto)<br>klo 12–15 Brunssi Stoan katon alla <br>klo 14–21 Halloween-leffoja nuorille nuorten toimintatalo Kipinän takatilassa<br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>su 27.10.</b><br>klo 12–18 Arkkitehtuuria laatikon ulkopuolella -penkkipaja Stoan aukiolla<br>klo 15 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>ma 28.10.</b><br>klo 11–12 Tutustu espanjan kieleen Stoan aulassa<br>klo 14–15 Stoan lausujat tervehtivät kävijöitä ikuisin lausein Stoan aulassa<br>klo 14.15–14.30 LadyAfro-esitys Stoan aulassa<br>klo 15–17 Runonselittäjän vastaanotto Stoan aulassa<br>klo 15.30–15.45, 16–16.15 ja 16.30–16.45 / 3 x hengähdyshetki Musiikkisalissa<br>klo 17–18 Itä-Helsingin historiaa: Aikamatka 1700-luvun Mellunkylään Stoan aulassa<br>klo 17–20 Origami-työpaja Stoan aulassa<br>klo 18.30–19.30 Futista ja kulttuurihistoriaa Saksassa Stoan aulassa</p><p><b>ti 29.10.</b><br>klo 10–11 Pienten aamut (kirjasto)<br>klo 13–15 Päivädisko +50 (Stoan aula)<br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>ke 30.10.</b><br>klo 10–11 Metridisco Stoan aulassa <br>klo 13, 14.30 ja 16<br>Viulumusiikkia vauvaperheiden tahtiin <br>klo 14–17 Lainaa filosofi <br>klo 17–19 Iltateellä Stoassa: Taidetauko-työpaja<br>klo 17.30–19.30 Kuolema-keskiviikon keskustelut - Filocafé <br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>to 31.10.</b><br>klo 9 Kirjailijavieraana Arttu Unkari (kirjasto)<br>klo 13–14 Askartelutuokio (kirjasto)<br>klo 15–18 Lainaa filosofi<br>klo 18–20 IT IS OPEN STAGE</p><p><b>pe 1.11.</b><br>klo 13–15 Kohtaamiskahvila (Kirjastossa)<br>klo 14 Kaamea HalloweenKahoot<br>klo 18–20 Kipinä x Stoa goes Nuorten uuden musiikin ilta (vol. 4)</p><p><b>la 2.11.</b><br>klo 16–19 Kauhua kakaroille<br>Klo 16-19 Opus Company: Lightsphere-valoteos Stoan aukiolla<br>Klo 16.30 ja klo 18 Mutaveijarit ja Töölö Brass Band teatterisalissa<br>Klo 16–19 Tip Top Walkersin kuolleiden päivän hahmot<br>Klo 16.30–17.30 ja klo 18-18.45 Disco Stoan aulassa, DJ Blurred Boy ja DJ Pyry Aalto <br>Työpajat klo 16–18.30<br>•Hämärän hiipijät<br>•Valomaalaus<br>•Kosmista hiekkaa<br>•Glittertatuoinnit<br>Kirjastossa:<br>klo 16–18.30 Kammokuja (kirjasto)<br>klo 16–19 Kauhua kiireestä kynnenpäähän!<br>Työväenopistolla:<br>klo 16–19 Hurjan hauskat naamiot- ja Tupsumonsteri -työpajat (Työväenopisto)<br>klo 16–19 Espanjaa hauskasti Halloween-hengessä (Työväenopisto)</p><p>Lisäksi Itäkeskuksen kirjastossa esillä 40-vuotiskirja-/levynäyttely ja runo-olohuone.</p><p><u><a href=\"https://www.stoa.fi/fi/tapahtumat/?q=stoa%2040&st=2024-10-15&et=2025-07-15&el=44&show=40” >Katso juhlaviikon ohjelmien tarkemmat tiedot tapahtumakalenterista</a></u></p>", "sv": "<p>År 1984 fick östra Helsingfors ett eget kulturhus. Nu är det dags att fira Stoas 40-årsdag!</p><p>Du är välkommen att besöka oss alla dagar under hela veckan: vi utlovar dans och brunch, premiärer och vernissager, föreläsningscocktail och open-mic-stage, violinmusik för familjer med bebisar och skräck för rackarungar. <br> <br>Hos oss får du minnas det förflutna och ta vara på nuet, beundra vatten- och ljuskonst, skratta åt Itäkuskus och dyka ner i djupa reflektioner om livet och dödligheten. <br> <br>Stoas festbord är dukat med ett utsökt program, vi bjuder in just dig!</p><p><b>Program för jubileumsveckan Stoa 40!</b></p><p><b>to 24.10.</b><br>kl. 14–15 Pysselstund på biblioteket<br>kl. 15–18 Ars Moriendi 2024 – Låna en filosof, Stoas galleri<br>kl. 16–18 Vernissage + födelsedagsfest för verket Mitä kuuluu Stoa? (Hur går det Stoa?)<br>Vernissage för stadsbor i Stoas lobby: Tårta och kaffe till de 200 första.<br>kl. 17 Stoas internationella kör uppträder i Stoas lobby</p><p><b>fre 25.10.</b><br>kl. 16–19 Smidig som en deg (i biblioteket)<br>kl. 19 Itäkuskus stand up-klubb (Stoas lobby, fritt inträde)</p><p><b>lö 26.10.</b><br>kl. 10–16 Arkitektur utanför boxen – bänkworkshop i Musiksalen<br>kl. 10–13 Tiitiäinenfest (biblioteket)<br>kl. 12–15 Brunch under Stoas tak<br>kl. 14–21 Halloweenfilmer för unga i bakre rummet till de ungas aktivitetshus Kipinä<br>kl. 19 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>sö 27.10.</b><br>kl. 12–18 Arkitektur utanför boxen – bänkworkshop på Stoaplatsen<br>kl. 15 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>må 28.10.</b><br>kl. 11–12 Upptäck det spanska språket Stoas lobby<br>kl. 14–15 Stoas recitatörer hälsar besökare välkomna med eviga fraser i Stoas lobby<br>kl. 14.15–14.30 LadyAfro-uppträdande i Stoas lobby<br>kl. 15–17 Diktförklararens mottagning<br>kl. 15.30–15.45, 16–16.15 och 16.30–16.45 / 3 x andrum Musiksalen<br>kl. 17–18 Östra Helsingfors historia: Tidsresa till 1700-talets Mellungsby Stoas lobby<br>kl. 17–20 Origami-workshop i Stoas lobby<br>kl. 18.30–19.30 Fotboll och kulturhistoria i Tyskland Stoas lobby</p><p><b>ti 29.10.</b><br>kl. 10–11 Morgon för barn (biblioteket)<br>kl. 13–15 Dagsdisko +50 (Stoas lobby)<br>kl. 19 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>ons 30.10.</b><br>kl. 10–11 Meterdisko i Stoas lobby<br>kl. 13, 14.30 och 16<br>Violinmusik i takt med babyfamiljer<br>kl. 14–17 Låna en filosof<br>kl. 17–19 Kvällste på Stoa: Konstpaus-workshop<br>kl. 17.30–19.30 Diskussioner på dödsonsdagen – Filocafé<br>kl. 19 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>to 31.10.</b><br>kl. 9 Arttu Unkari som författargäst (biblioteket)<br>kl. 13–14 Pysselstund (biblioteket)<br>kl. 15–18 Låna en filosof<br>kl. 18–20 IT IS OPEN STAGE</p><p><b>fre 1.11.</b><br>kl. 13–15 Mötescafé (i biblioteket)<br>kl. 14 Kuslig HalloweenKahoot<br>klo 18–20 Kipinä x Stoa goes Nya musikens kväll för unga (vol. 4)</p><p><b>lö 2.11.</b><br>kl. 16–19 Skräck för rackarungar<br>Kl. 16-19 Opus Company: Ljusverket Lightsphere på Stoaplatsen<br>Kl. 16.30 och kl. 18 Mutaveijarit och Tölö Brass Band i teatersalen<br>Kl. 16–19 Tip Top Walkers de dödas dag-figurer<br>Kl. 16.30–17.30 och kl. 18–18.45 Disko i Stoas lobby, DJ Blurred Boy och DJ Pyry Aalto<br>Workshoppar kl. 16–18.30<br>•Skymningssmygare<br>•Ljusmålning<br>•Kosmisk sand<br>•Glittertatueringar<br>I biblioteket<br>kl. 16–18.30 Skräckgränden (biblioteket)<br>kl. 16–19 Skräck från topp till tå!<br>kl. 16–19 Workshopparna Vilt roliga masker och Tofsmonster (Finska arbetarinstitutet)<br>kl. 16–19 Spanska i skojig Halloween-anda (Finska arbetarinstitutet)</p><p>Dessutom finns på Östra Centrums bibliotek en 40-årsboks-/skivutställning och ett diktvardagsrum.</p>", "en": "<p>The people of East Helsinki received their Cultural Centre in 1984. It's time to celebrate Stoa's 40th anniversary!</p><p>Join us every day during the festive week: dance and brunch, premieres and opening ceremonies, lecture clubs and open-mic stages, violin music for baby families and horror for the kids. <br> <br>With us, reminisce about the past and seize the moment, admire the water and light art, laugh at Itäkuskus and dive into deep reflections on life and mortality. <br> <br>The banquet table at Stoa is set with a delicious programme, we invite you to join us!</p><p><b>Stoa 40! Anniversary Week Programme</b></p><p><b>Tuesday, 24 October</b><br>14:00–15:00 Crafting session at the library<br>15:00–18:00 Ars Moriendi 2024 – Borrow a Philosopher, Stoa gallery<br>16:00–18:00 Opening of the ‘How’s it Going, Stoa?’ artwork and birthday party<br>Opening ceremony for city residents in the Stoa lobby: Cake and coffee for the first 200 guests.<br>17:00 Stoa’s international choir performs in Stoa’s lobby</p><p><b>Friday, 25 October</b><br>16:00–19:00 Bend Like Dough (at the library)<br>19:00 Itäkuskus Stand Up Club (Stoa lobby, free entry)</p><p><b>Saturday, 26 October</b><br>10:00–16:00 Architecture Outside the Box bench-making workshop in the Music Hall<br>10:00–13:00 Tiitiäisjuhlat poetry event (library)<br>12:00–15:00 Brunch under Stoa’s roof<br>14:00–21:00 Halloween movies for young people in the back room of the Kipinä Youth Activity House<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Sunday, 27 October</b><br>12:00–18:00 Architecture Outside the Box bench-making workshop at the Stoa square<br>15:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Monday, 28 October</b><br>11:00–12:00 Introduction to Spanish, Stoa lobby<br>14:00–15:00 Stoa’s reciters greet visitors with timeless lines, Stoa lobby<br>14:15–14:30 LadyAfro performance, Stoa lobby<br>15:00 - 17:00 Poetry interpreter’s reception<br>15:30–15:45, 16:00–16:15 and 16:30–16:45 / 3 x break in the Music Hall<br>17:00–18:00 History of East Helsinki: Time travel to 18th-century Mellunkylä, Stoa lobby<br>17:00–20:00 Origami Workshop, Stoa lobby<br>18:30–19:30 Football and Cultural History in Germany, Stoa Lobby</p><p><b>Tuesday, 29 October</b><br>10:00–11:00 Mornings for little kids (library)<br>13:00–15:00 Daytime disco, 50+ (Stoa lobby)<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Wednesday, 30 October</b><br>10:00–11:00 Metridisco in the Stoa lobby<br>13:00, 14:30 and 16:00<br>Violin music for families with babies<br>14:00–17:00 Borrow a Philosopher<br>17:00–19:00 Evening Tea at Stoa: Art Break workshop<br>17:30–19:30 Death Wednesday discussions – Filocafé<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Thursday, 31 October</b><br>9:00 Guest author Arttu Unkari (library)<br>13:00–14:00 Crafting session (library)<br>15:00–18:00 Borrow a Philosopher<br>18:00–20:00 IT IS OPEN STAGE</p><p><b>Friday, 1 November</b><br>13:00–15:00 Meeting Café (at the library)<br>14:00 Spooky HalloweenKahoot<br>18:00–20:00 Kipinä x Stoa evening of new music for young people (vol. 4)</p><p><b>Saturday, 2 November</b><br>16:00–19:00 Kauhua kakaroille kids’ Halloween event<br>16:00–19:00 Opus Company: Lightsphere light artwork at Stoa square<br>16:30 and 18:00 Mutaveijarit and Töölö Brass Band in the theatre hall<br>16:00–19:00 Tip Top Walkers’ Day of the Dead characters<br>16:30–17:30 and 18:00–18:45 in the Disco Stoa lobby, DJ Blurred Boy and DJ Pyry Aalto<br>Workshops from 16:00 to 18:30<br>• Twilight Creepers<br>• Light painting<br>• Cosmic sand<br>• Glitter tattoos<br>In the library<br>16:00–18:30 Kammokuja Fright Alley (library)<br>16:00–19:00 Horror from head to fingernail!<br>16:00–19:00 Frightfully Fun Masks and Tassel Monster workshops (Adult Education Centre)<br>16:00–19:00 Have fun learning Spanish with a Halloween twist (Adult Education Centre)</p><p>In addition, the Itäkeskus Library will feature a 40th anniversary book/album exhibition and a poetry lounge.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64572/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64696", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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": 152858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-23T09:14:46.013880Z", "last_modified_time": "2024-10-23T09:14:46.013898Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759296.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-23T09:14:45.962841Z", "last_modified_time": "2024-12-20T01:13:52.645971Z", "date_published": null, "start_time": "2024-10-23", "end_time": "2024-12-01", "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": "Deepa Panchamia: Valon aallot – Stoa 40! Tekstiiliteos Stoan aulassa", "sv": "Deepa Panchamia: Valon aallot (Vågor av ljus) – Stoa 40! Textilverk i lobbyn till Stoa", "en": "Deepa Panchamia: Valon aallot – Stoa 40! Textile installation at Stoa lobby" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.", "sv": "Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.", "en": "‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot", "sv": "http://www.stoa.fi/sv/evenemang/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_Vagor_av_ljus_", "en": "http://www.stoa.fi/en/events/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_" }, "description": { "fi": "<p>Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.</p><p>Kääntyessään aallot paljastavat tasapainon hiljaisuuden ja liikkeen, edistymisen ja heijastuksen välillä – korostaen ajan jatkuvaa, alati muuttuvaa luonnetta. Yhdessä toisiinsa kietoutuvat aallot luovat eteerisen valon ja muodon tanssin, joka symboloi Stoan jatkuvaa matkaa.</p><p><b>Deepa Panchamia</b> on Lontoossa vuonna 1981 syntynyt ja nykyään Suomessa asuva tekstiilitaiteilija. Hän luo kangasveistoksia, installaatioita ja puettavaa taidetta. Hänen työnsä sulattaa geometrian omiin kangastekniikoihin ja matematiikkaan uusien muotojen ja muotojen tutkimiseksi.</p><p>Suomeen vuonna 2012 muuttaessaan hän on omaksunut suomalaisen maiseman vaikutteita ja sisällyttänyt sen luonnon kauneutta luomuksiinsa.</p><p>Hänen töitään on ollut esillä kansainvälisesti, mukaan lukien Premio Valcellina Award Italiassa, 7th Triennaal of Contemporary Textile Art Belgiassa, 100% Design Lontoossa, Cheongju International Craft Biennale Etelä-Koreassa, Revelations: International Fine Craft and Creation Biennaali Pariisi, Contextile – Contemporary Textile Art Biennaali Portugalissa ja Fiskars Village Art & Design Biennale, Suomi.</p>", "sv": "<p>Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.</p><p>När vågorna vänder visar de en balans mellan stillhet och rörelse, framsteg och reflektion – vilket belyser tidens konstanta, ständigt föränderliga natur. De sammanflätade vågorna skapar en eterisk dans av ljus och form, som symboliserar Stoas ständiga resa.</p><p>Deepa Panchamia är en textilkonstnär som föddes i London 1981 och som för närvarande bor i Finland. Hon skapar skulpturer, installationer och konst som man kan klä på sig. I hennes arbete förenas geometri med hennes egen tygteknik och matematik för att utforska nya former.</p><p>Sedan hon flyttade till Finland år 2012 har hon tagit intryck av det finska landskapet och införlivat dess naturliga skönhet i sina skapelser.</p><p>Hennes verk har ställts ut internationellt, bland annat på Premio Valcellina Award i Italien, 7th Triennaal of Contemporary Textile Art i Belgien, 100% Design i London, Cheongju International Craft Biennale i Sydkorea, Revelations: International Fine Craft and Creation Biennale i Paris, Contextile – Contemporary Textile Art Biennale i Portugal och Fiskars Village Art & Design Biennale, Finland.</p>", "en": "<p>‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time.</p><p>As they twist and turn, the waves reveal the balance between stillness and movement, progress and reflection—highlighting the continuous, ever-changing nature of time. Together, the intertwining waves create an ethereal dance of light and form, symbolizing Stoa’s ongoing journey.</p><p>Deepa Panchamia is a textile artist, born in London in 1981 and now living in Finland. She creates fabric sculptures, installations, and wearable art. Her work fuses geometry with her own fabric techniques and mathematics to explore new shapes and forms.</p><p>Since moving to Finland in 2012, she has embraced the influence of the Finnish landscape, incorporating its natural beauty into her creations.</p><p>Her work has been exhibited internationally, including at the Premio Valcellina Award in Italy, the 7th Triennial of Contemporary Textile Art in Belgium, 100% Design in London, the Cheongju International Craft Biennale in South Korea, Revelations: International Fine Craft and Creation Biennial in Paris, Contextile – Contemporary Textile Art Biennial in Portugal, and the Fiskars Village Art & Design Biennale, Finland.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64696/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64245", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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": 151812, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T13:13:17.502289Z", "last_modified_time": "2024-07-24T13:13:17.502305Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748952.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T13:13:17.475916Z", "last_modified_time": "2024-12-20T01:13:52.035504Z", "date_published": null, "start_time": "2024-10-07", "end_time": "2024-11-01", "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": "Vuotalosta Villaan – taiteilijatalo säteilee", "sv": "Från Nordhuset till Villan – konstnärshuset skiner", "en": "From Vuotalo to Villa – the artist house radiates" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.", "sv": "Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.", "en": "A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F322A2E20442B061B43E0665541B04C6/Vuotalosta_Villaan_taiteilijatalo_sateilee", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F322A2E20442B061B43E0665541B04C6/Fran_Nordhuset_till_Villan_konstnarshuset_skiner", "en": "http://www.vuotalo.fi/en/events/event/F322A2E20442B061B43E0665541B04C6/From_Vuotalo_to_Villa_the_artist_house_radiates" }, "description": { "fi": "<p>Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.</p><p>Taiteilijatalossa on 52 asuntoa ja toista sataa asukasta. Eri alojen taiteilijoista suuri joukko on kuvataiteilijoita, jotka käyttävät mitä moninaisimpia tekniikoita ja materiaaleja taideteoksissaan. Taiteilijatalon vieressä oleva vanha huvila, Villa Lill Kallvik, on osa taloa.</p><p>Vuotalosta Villaan – taiteilijatalo säteilee -näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia Vuotalon galleriassa ja Villa Lill Kallvikissa. Tervetuloa näkemään ja kokemaan paikallisten tekijöiden kuvataiteen laaja kirjo!</p><p>Näyttelyn taiteilijat: <br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme (performanssi)</p><p>Villa Lill Kallvikin aukioloajat: ke–pe 12–18 ja la–su 11–17</p><p><b>Tule mukaan myös näyttelykävelyille ja koe näyttelyyn liittyvä performanssi!</b></p><p>Performanssi to 10.10. klo 19, lähtö Vuotalon aulasta.</p><p>Näyttelykävelyt perjantaisin<br>18.10. / to 24.10. / pe 1.11. klo 17–18, lähtö Vuotalon galleriasta.</p><p>Tapahtumakuvan tiedot:<br>Vasemmalla: Rosalia Janovic: Monimuotoisuus, Diversity Keskellä: Tiina Heiska: Japanese room, kuvaaja Jussi Tiainen Oikealla: Pekka Sassi: Green, abstrakti värikertomus (video)</p>", "sv": "<p>Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.</p><p>Konstnärshuset har 52 lägenheter och ett drygt hundratal boende. En stort del av konstnärerna som representerar olika konstarter är bildkonstnärer, som använder en mängd olika tekniker och material i sina konstverk. Den gamla villan som ligger invid konstnärshuset, Villa Lill Kallvik, är en del av huset.</p><p>Utställningen Från Nordhuset till Villan – konstnärshuset skiner presenterar nya verk av husets bildkonstnärer i Nordhusets galleri och Villa Lill Kallvik. Välkommen att se och uppleva mångsidig bildkonst av lokala konstnärer!</p><p>Konstnärerna:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik öppettider: ons–fre 12–18 och lör–sön 11–17</p>", "en": "<p>A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists.</p><p>The Artist House has 52 apartments and over 100 residents. A large group of the artists, who are from different fields, are visual artists, who use diverse techniques and materials in their artworks. The old villa next to the Artist House, Villa Lill Kallvik, is a part of it.</p><p>The From Vuotalo to Villa – Artist House Radiates exhibition showcases the recent works of the house's visual artists at Vuotalo Gallery and Villa Lill Kallvik. Come and experience the vast array of visual arts by local creators!</p><p>Artists:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik opening hours: Wed–Fri 12–18 and Sat–Sun 11–17</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55oorva", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T10:25:42.155132Z", "last_modified_time": "2024-12-19T10:28:39.746862Z", "date_published": null, "start_time": "2025-01-11T12:00:00Z", "end_time": "2025-01-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "WeCode platforming järjestämä IT-alan verkostoitumistapahtuma", "en": "The WeCode Networking Event" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": { "fi": "WeCode platform", "en": "WeCode platform" }, "short_description": { "fi": "Tervetuloa WeCode platforming järjestämään IT-alan verkostoitumistapahtumaan 11.1. klo 14-17", "en": "Welcome to take in the WeCode Networking Event on 11th of January at 14-17 o clock." }, "info_url": null, "description": { "fi": "<p>WeCode platforming järjestämän IT-alan verkostoitumistapahtuman tarkoituksena on saattaa yhteen IT-alalla jo työskentelevät ja IT-työpaikkoja etsivät henkilöt. Tapahtumassa voi tavata uusia ihmisiä, jakaa kokemuksia ja oppia toisiltaan rennossa ympäristössä. Etsitpä sitten neuvoja, tutkit työmahdollisuuksia tai haluat vain luoda yhteyksiä muihin alan ammattilaisiin, tämä tapahtuma on täydellinen paikka aloittaa. Kasvatetaan IT-yhteisöä yhdessä!</p><p>Tapahtuma on englanninkielinen. Tervetuloa!</p>", "en": "<p>The WeCode Networking Event is a friendly gathering designed to bring together people who are already working in the IT sector and those looking for IT jobs. It’s a great chance to meet new people, share experiences, and learn from each other in a relaxed environment. Whether you’re looking for advice, exploring job opportunities, or just want to connect with others in the industry, this event is a perfect place to start. Let’s grow our IT community together!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uo6e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uon4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uory/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uovu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uozu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:25:57.481195Z", "last_modified_time": "2024-12-19T10:24:25.331916Z", "date_published": null, "start_time": "2025-01-17T14:00:00Z", "end_time": "2025-05-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55aulju", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulvy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-19T10:05:32.579759Z", "last_modified_time": "2024-12-19T10:05:32.579781Z", "date_published": null, "start_time": "2025-01-18T10:00:00Z", "end_time": "2025-01-18T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vauvajamit", "en": "Jamming Babies" }, "location_extra_info": { "fi": "Lippulaivan kirjasto", "en": "Lippulaivan kirjasto" }, "provider": null, "short_description": { "fi": "Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu. Tervetuloa mukaan!", "en": "Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder. Welcome!" }, "info_url": null, "description": { "fi": "<p>Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu.</p><p><br></p><p>Vauvaperheille suunnatuissa riemukkaissa tuokioissa lauletaan ja lorutellaan, katsotaan ja kuunnellaan.</p><p> </p><p>Tule viettämään vauvasi kanssa ihastuttava hetki musiikin parissa. Tapahtuman kesto on 30 minuuttia, jonka jälkeen voit jäädä vielä fiilistelemään ja juttelemaan ohjaajien kanssa.</p><p> </p><p>Ohjelma sopii kaikille vauvoille ja heidän perheilleen! Sisältö on suunniteltu vauvoille, mutta mukaan ovat tervetulleita myös isommat sisarukset.</p><p>Tapahtumaan ei ole ennakkoilmoittautumista.</p>", "en": "<p>Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder.</p><p><br></p><p>Aimed at families with babies, this joyful session is all about singing and chattering, watching and listening.</p><p><br></p><p>Come and spend a delightful moment with your baby in the midst of music. The event lasts for 30 minutes, after which you can stay and enjoy a chat with the instructors.</p><p><br></p><p>The programme is suitable for all babies and their families! The content is designed for babies, but older siblings are also welcome.</p><p><br></p><p>There is no pre-registration for this event.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55aulta", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulvy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-19T10:05:32.343828Z", "last_modified_time": "2024-12-19T10:05:32.343856Z", "date_published": null, "start_time": "2025-01-18T09:00:00Z", "end_time": "2025-01-18T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vauvajamit", "en": "Jamming Babies" }, "location_extra_info": { "fi": "Lippulaivan kirjasto", "en": "Lippulaivan kirjasto" }, "provider": null, "short_description": { "fi": "Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu. Tervetuloa mukaan!", "en": "Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder. Welcome!" }, "info_url": null, "description": { "fi": "<p>Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu.</p><p><br></p><p>Vauvaperheille suunnatuissa riemukkaissa tuokioissa lauletaan ja lorutellaan, katsotaan ja kuunnellaan.</p><p> </p><p>Tule viettämään vauvasi kanssa ihastuttava hetki musiikin parissa. Tapahtuman kesto on 30 minuuttia, jonka jälkeen voit jäädä vielä fiilistelemään ja juttelemaan ohjaajien kanssa.</p><p> </p><p>Ohjelma sopii kaikille vauvoille ja heidän perheilleen! Sisältö on suunniteltu vauvoille, mutta mukaan ovat tervetulleita myös isommat sisarukset.</p><p>Tapahtumaan ei ole ennakkoilmoittautumista.</p>", "en": "<p>Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder.</p><p><br></p><p>Aimed at families with babies, this joyful session is all about singing and chattering, watching and listening.</p><p><br></p><p>Come and spend a delightful moment with your baby in the midst of music. The event lasts for 30 minutes, after which you can stay and enjoy a chat with the instructors.</p><p><br></p><p>The programme is suitable for all babies and their families! The content is designed for babies, but older siblings are also welcome.</p><p><br></p><p>There is no pre-registration for this event.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55aulvy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulta/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-19T10:05:31.379102Z", "last_modified_time": "2024-12-19T10:05:31.379125Z", "date_published": null, "start_time": "2025-01-18T09:00:00Z", "end_time": "2025-01-18T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vauvajamit", "en": "Jamming Babies" }, "location_extra_info": { "fi": "Lippulaivan kirjasto", "en": "Lippulaivan kirjasto" }, "provider": null, "short_description": { "fi": "Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu. Tervetuloa mukaan!", "en": "Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder. Welcome!" }, "info_url": null, "description": { "fi": "<p>Vauvajamit, Jamming Babies, on vauvan ja aikuisen yhteinen elämys – toiminnallinen musiikkituokio, josta ei iloa ja ihmeteltävää puutu.</p><p><br></p><p>Vauvaperheille suunnatuissa riemukkaissa tuokioissa lauletaan ja lorutellaan, katsotaan ja kuunnellaan.</p><p> </p><p>Tule viettämään vauvasi kanssa ihastuttava hetki musiikin parissa. Tapahtuman kesto on 30 minuuttia, jonka jälkeen voit jäädä vielä fiilistelemään ja juttelemaan ohjaajien kanssa.</p><p> </p><p>Ohjelma sopii kaikille vauvoille ja heidän perheilleen! Sisältö on suunniteltu vauvoille, mutta mukaan ovat tervetulleita myös isommat sisarukset.</p><p>Tapahtumaan ei ole ennakkoilmoittautumista.</p>", "en": "<p>Jamming Babies is a shared experience for baby and adult - an activity-based music session with no shortage of joy and wonder.</p><p><br></p><p>Aimed at families with babies, this joyful session is all about singing and chattering, watching and listening.</p><p><br></p><p>Come and spend a delightful moment with your baby in the midst of music. The event lasts for 30 minutes, after which you can stay and enjoy a chat with the instructors.</p><p><br></p><p>The programme is suitable for all babies and their families! The content is designed for babies, but older siblings are also welcome.</p><p><br></p><p>There is no pre-registration for this event.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aulvy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55aul4i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T09:18:55.167890Z", "last_modified_time": "2024-12-19T09:18:55.167911Z", "date_published": "2024-12-19T09:03:00Z", "start_time": "2025-01-08T06:00:00Z", "end_time": "2025-02-01T18: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": "Näyttely: Arki miehityksen alla Länsirannalla", "sv": "Utställning: Arki miehityksen alla Länsirannalla", "en": "Art exhibition: Arki miehityksen alla Länsirannalla" }, "location_extra_info": { "fi": "Näyttelyparvi (kirjaston lehtisalissa)", "sv": "Utställningsloftet (i bibliotekets tidningssal)", "en": "Exhibition loft (in the library’s reading room)" }, "provider": { "fi": "Leena Sillanpää", "sv": "Leena Sillanpää", "en": "Leena Sillanpää" }, "short_description": { "fi": "Valokuvanäyttely kuvaa miehitetyn Palestiinalaisalueen asukkaiden arkista selviytymiskamppailua miehityksen alla.", "sv": "Välkommen att besöka Leena Sillanpääs utställning \"Arki miehityksen alla Länsirannalla\" i Hagalund biblioteken.", "en": "Art exhibition \"Arki miehityksen alla Länsirannalla\" by Leena Sillanpää in Tapiola Library." }, "info_url": null, "description": { "fi": "<p>Valokuvanäyttely kuvaa miehitetyn Palestiinalaisalueen asukkaiden arkista selviytymiskamppailua miehityksen alla. Israelin sotilaallinen miehitys vaikeuttaa palestiinalaisten elämää monin tavoin rikkoen heidän ihmisoikeuksiaan sekä kansainvälisen oikeuden sääntöjä. Pääosa kuvista on otettu Jordanlaakson alueelta Länsirannalta. Jordanjoen laaksossa palestiinalaisten päivittäiseen elämään vaikuttavat häirintä siirtokunnista, toistuvat sotilasharjoitukset sekä systemaattiset rajoitukset vedensaantiin sekä rakentamiseen.</p><p>Näyttelyn kuvat ovat EAPPI-tarkkailijana toimineen Leena Sillanpään ottamia Länsirannalla. EAPPI (Ecumenical Accompaniment Programme in Palestine and Israel) on kansainvälinen ohjelma, jonka puitteissa vapaaehtoiset ihmisoikeustarkkailijat seuraavat ihmisoikeustilannetta ruohonjuuritasolla, raportoivat siitä sekä tarjoavat suojelevaa läsnäoloa paikallisille. Suomessa EAPPI-ohjelmaa koordinoi Kirkon Ulkomaanapu. Ohjelman päämääränä on väkivallan kierteen katkaiseminen, miehityksen päättyminen ja oikeudenmukainen rauha.</p><p>***</p><p>Länsirannalla ihmisoikeustarkkailijana toiminut Leena Sillanpää on tavattavissa Tapiolan kirjaston Heikki-tilassa torstaina 9.1.2025 klo 17.30. Tule kuulemaan ihmisoikeustarkkailijoiden kokemuksia Länsirannalla ja keskustelemaan alueen tilanteesta.</p>", "sv": "<p>Välkommen att besöka Leena Sillanpääs utställning \"Arki miehityksen alla Länsirannalla\" i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Arki miehityksen alla Länsirannalla\" by Leena Sillanpää in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55aul4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj54s5xt4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xhu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xlq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xpu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T08:55:57.037715Z", "last_modified_time": "2024-12-19T08:55:57.037734Z", "date_published": null, "start_time": "2025-01-28T11:30:00Z", "end_time": "2025-04-22T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ritvan Salonki", "sv": "Ritvas Salong", "en": "Ritva's Salon" }, "location_extra_info": { "fi": "Mauri", "sv": "Mauri", "en": "Mauri" }, "provider": null, "short_description": { "fi": "Ritvan salongissa keskustellaan kirjallisuudesta suomen kielellä.", "sv": "I Ritvas salong diskuteras litteratur på finska.", "en": "In Ritva's salon, literature is discussed in Finnish." }, "info_url": null, "description": { "fi": "<p>Ritvan salongissa keskustellaan kirjallisuudesta suomen kielellä.</p><p>Tiistaina 28.1.2025 klo 13.30 - 15.30</p><p>Kirjana Anni Kytömäki: Mirabilis, Gummerus 2024, 688 s</p><p>Tiistaina 25.2.2025 klo 13.30 - 15.30</p><p>Kirjana Pirkko Saisio: Suliko, Siltala 2024, 411 s</p><p>Tiistaina 25.3.2025 klo 13.30 - 15.30</p><p>Kirjana Han Kang: Valkoinen kirja, Gummerus 2021, 111 s, suom. Taru Salminen</p><p>Tiistaina 22.4.2025 klo 13.30 - 15.30</p><p>Kirjana Paul Auster: Baumgartner, Tammi 2024/wsoy, 204 s, suom. Arto Schroderus</p><p><br></p><p>Lisätietoja: Ritva Laine, kirjallisuuspiirin vetäjä, ritva.laine@kotiportti.fi</p><p>Lämpimästi tervetuloa luottamukselliseen keskustelun piiriin!</p>", "sv": "<p>I Ritvas salong diskuteras litteratur på finska.</p>", "en": "<p>In Ritva's salon, literature is discussed in Finnish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xt4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj54s5ypa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agivj5egxa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5xxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5x4i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5yai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5yei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5yiq/?format=api" } ], "images": [ { "id": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T08:35:34.012876Z", "last_modified_time": "2024-12-19T08:35:34.012897Z", "date_published": null, "start_time": "2025-01-15T15:30:00Z", "end_time": "2025-05-07T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu kevätkaudella 2025 keskiviikkoisin klo 17.30 - 19.00 Apaja-tilassa: </p><p> </p><p>15.1. Paolo Cognetti: Kahdeksan vuorta </p><p>12.2. Kyung-sook Shin: Jään luoksesi </p><p>12.3. Kirja ilmoitetaan myöhemmin </p><p>9. 4. Kirja ilmoitetaan myöhemmin </p><p>7.5. Kirja ilmoitetaan myöhemmin </p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54s5ypa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj54fibfe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fiaty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fiaxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fia34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibam/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T08:17:32.942321Z", "last_modified_time": "2024-12-19T08:17:32.942344Z", "date_published": null, "start_time": "2025-01-29T12:00:00Z", "end_time": "2025-05-28T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!</p><p>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!</p><p>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.</p><p>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.</p><p>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.</p><p>Nähdään!</p><p><br></p><p><strong>Kirjat</strong></p><p>Ke 29.1. Slaughterhouse-Five or The children's crusade by Kurt Vonnegut </p><p>Ke 26.2. The guest list by Lucy Foley </p><p>Ke 26.3. The years by Annie Ernaux </p><p>Ke 30.4. The Blue Hour by Paula Hawkins </p><p>Ke 28.5. Sea of Tranquility by Emily St. John Mandel</p>", "en": "<p>Join the Fun at the Sello Library English Book Club!</p><p>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!</p><p> </p><p>📚 **What:** Sello Library English Book Club</p><p>📅 **When:** Last Wednesdays of the month</p><p>🕑 **Time:** 2 PM to 3:30 PM</p><p>📍 **Where:** Elina Room</p><p><br></p><p>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.</p><p>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.</p><p>See you there!</p><p><br></p><p><strong>Books</strong></p><p>29th Jan Slaughterhouse-Five or The children's crusade by Kurt Vonnegut </p><p>26th Feb The guest list by Lucy Foley </p><p>26th Mar The years by Annie Ernaux </p><p>30th Apr The Blue Hour by Paula Hawkins </p><p>28th May Sea of Tranquility by Emily St. John Mandel</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibfe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj54fibjq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T07:47:21.300902Z", "last_modified_time": "2024-12-19T07:47:21.300923Z", "date_published": "2024-12-19T07:42:00Z", "start_time": "2025-01-08T06:00:00Z", "end_time": "2025-01-31T18: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": "Näyttely: KUIKKAJÄRVI", "sv": "Utställning: KUIKKAJÄRVI", "en": "Art exhibition: KUIKKAJÄRVI" }, "location_extra_info": { "fi": "Näyttelyseinä Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "provider": { "fi": "Pekka Lehtonen", "sv": "Pekka Lehtonen", "en": "Pekka Lehtonen" }, "short_description": { "fi": "Pekka Lehtosen näyttely KUIKKAJÄRVI on esillä Tapiolan kirjastossa.", "sv": "Välkommen att besöka Pekka Lehtonens utställning \"KUIKKAJÄRVI\" i Hagalund biblioteken.", "en": "Art exhibition \"KUIKKAJÄRVI\" by Pekka Lehtonen in Tapiola Library." }, "info_url": null, "description": { "fi": "<p>Valokuvanäyttelyssä KUIKKAJÄRVI on maisema- ja lintukuvia isolta keskisuomalaiselta järveltä. Järvellä elää noin 150 kuikkaparia. Pekka Lehtonen on kuikkatutkija ja julkaissut vuonna 2019 yhdessä Martti Perämäen kanssa kirjan Lähikuvassa kuikka. Kirja oli vuoden luontikirjaehdokkaana 2019. Siinä kerrotaan kuikan biologiasta ja elintavoista.</p><p>Lehtonen on saavuttanut kansainvälisen valokuvataiteilijan tittelin EFIAP. Hän on pitänyt Kuikkajärvi -näyttelyn lisäksi valokuvanäyttelyt Saariston lumoa ja Lumoava Japani ja osallistunut useisiin yhteisnäyttelyihin. Sadat hänen kuvansa ovat saavuttaneet palkintosijan valokuvakilpailuissa.</p>", "sv": "<p>Välkommen att besöka Pekka Lehtonens utställning \"KUIKKAJÄRVI\" i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"KUIKKAJÄRVI\" by Pekka Lehtonen in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibjq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj54ficuy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiwtrfqnu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibwy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fib2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fib6m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54ficca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54ficf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54ficju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54ficni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54ficre/?format=api" } ], "images": [ { "id": 150686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:46:10.676506Z", "last_modified_time": "2024-04-19T07:46:10.676525Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fiona.jpg", "name": "", "cropping": "38,0,442,403", "photographer_name": "", "alt_text": "Lukukoira Fiona", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T07:40:56.810800Z", "last_modified_time": "2024-12-19T07:40:56.810824Z", "date_published": null, "start_time": "2025-01-15T12:00:00Z", "end_time": "2025-05-21T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukulemmikki Fiona", "sv": "Läshund Fiona", "en": "Reading dog Fiona" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule tapaamaan lukulemmikkiä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "info_url": null, "description": { "fi": "<p>Tule tapaamaan lukulemmikkiä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54ficuy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj54fieee", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiwtrfqnu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fic4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidaq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fidyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fid4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fieaq/?format=api" } ], "images": [ { "id": 150686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:46:10.676506Z", "last_modified_time": "2024-04-19T07:46:10.676525Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fiona.jpg", "name": "", "cropping": "38,0,442,403", "photographer_name": "", "alt_text": "Lukukoira Fiona", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T07:38:40.444241Z", "last_modified_time": "2024-12-19T07:38:40.444271Z", "date_published": null, "start_time": "2025-01-08T16:00:00Z", "end_time": "2025-05-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukulemmikki Fiona", "sv": "Läshund Fiona", "en": "Reading dog Fiona" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule tapaamaan lukulemmikkiä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "info_url": null, "description": { "fi": "<p>Tule tapaamaan lukulemmikkiä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fieee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj53xpxzu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57onm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpxni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpxxa/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-12-19T07:11:34.450928Z", "last_modified_time": "2024-12-19T07:11:34.450950Z", "date_published": null, "start_time": "2024-12-27T15:00:00Z", "end_time": "2024-12-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "JOULULOMA: Pingistä nuorille ", "sv": "jullov: Pingis för ungdomar", "en": "Christmas holidays: Ping Pong for Youth" }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": null, "short_description": { "fi": "Joululomalla pöytätennis Espoo Ry:n Mika Räsänen tulee peluuttamaan nuoria kirjastolle. ", "sv": "Under jullovet kommer Mika Räsänen från Espoo Bordtennisförening för att spela pingis med ungdomarna på biblioteket.", "en": "During the christmas holidays, Mika Räsänen from Espoo Table Tennis Club will come to play ping pong with the youth at the library." }, "info_url": null, "description": { "fi": "<strong>PINGISTÄ KIBESSÄ!</strong><p><br></p><p>Joululomalla pöytätennis Espoo Ry:n Mika Räsänen tulee peluuttamaan nuoria kirjastolle. Luvassa on rentoa pelailua, tutustumista pingikseen ja PALJON kierteisiä palloja. Olit sitten aloitteleva tai jo enemmän pingistä pelannut; tämä setti sopii molemmille!</p>\n<strong>Perjantaina 27.12. klo 17-19 Kibessä</strong>\n<strong>Maanantaina 30.12. klo 17-19 Kibessä</strong>", "sv": "<p>Under jullovet kommer Mika Räsänen från Espoo Bordtennisförening för att spela pingis med ungdomarna på biblioteket.</p><p><br></p><p>Det blir avslappnat spel, en introduktion till pingis och MASSOR av skruvade bollar. Oavsett om du är nybörjare eller mer erfaren, passar detta program för båda!</p><p><br></p>\n<strong>Fredag 27.12. kl. 17-19 i Kibe</strong>\n<strong>Måndag 30.12. kl. 17-19 i Kibe</strong>", "en": "<p>During the Christmas holidays, Mika Räsänen from Espoo Table Tennis Club will come to play ping pong with the youth at the library.</p><p>Expect casual games, an introduction to ping pong, and LOTS of spin shots. Whether you're a beginner or more experienced, this event is perfect for both!</p>\n<strong>Friday 27.12. from 5:00 PM to 7:00 PM in Kibe</strong>\n<strong>Monday 30.12. from 5:00 PM to 7:00 PM in Kibe</strong><p><br></p><p><br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj53xpxzu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }