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=70
{ "meta": { "count": 32757, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=71", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=69" }, "data": [ { "id": "lippupiste:20936949", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849162/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20936949/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20936949/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20936949/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:29.901832Z", "last_modified_time": "2025-03-17T22:17:29.901845Z", "url": "https://www.lippu.fi/obj/mam/finland/2b/f1/aleksisuomesta222-tickets_369143_3117420_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-11T10:15:38.642642Z", "last_modified_time": "2026-03-01T00:14:18.559991Z", "date_published": null, "start_time": "2026-02-28T11: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, "description": { "fi": "<p>Ari-Pekka Lahti<br><strong>ALEKSI SUOMESTA</strong></p><p>Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024). Näytelmä on Ari-Pekka Lahden sovitus Tuomas Kyrön samannimisestä kirjasta (WSOY, 2023), joka oli myös Tietokirjallisuuden Finlandia-palkintoehdokas.</p><p>Isovanhempiensa maatilalla Oulussa lapsuuttaan viettänyt, suomalaisen äidin ja senegalilaisen isän poika päättää tehdä itsestään sotilaan, ja lähtee 18-vuotiaana muukalaislegioonaan. Hän palvelee Afganistanissa ja useissa Afrikan maissa. Ukrainaan hän lähtee ensimmäisten vapaaehtoisten joukossa vuonna 2022, palaa välillä Suomeen, mutta lähtee uudestaan Ukrainaan syksyllä 2024, jossa hän menehtyy vuoden viimeisten päivien aikana.</p><p>Näytelmää on valmisteltu yhteistyössä Aleksi Lysanderin kanssa ja hänen toiveensa oli, että esitys toteutetaan ja siitä tulee mahdollisimman rehellinen kuvaus sodan jäljistä ja siitä, miten sota ei koskaan ole oikea ratkaisu.</p><p>Rooleissa: Roderick Kabanga, Eetu Känkänen</p><p>Kirjailija: Tuomas Kyrö<br>Dramatisointi: Ari-Pekka Lahti<br>Ohjaus: Tuomas Rinta-Panttila<br>Lavastus, valo- ja videosuunnittelu: Mika Haaranen<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Aleksi Suomesta" }, "short_description": { "fi": "Ari-Pekka Lahti ALEKSI SUOMESTA Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024)." }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20936949/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20800550", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3843763/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kuka-kaappasi-auringon-helsingin-kaupunginteatteri-studio-pasila-20800550/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kuka-kaappasi-auringon-helsingin-kaupunginteatteri-studio-pasila-20800550/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kuka-kaappasi-auringon-helsingin-kaupunginteatteri-studio-pasila-20800550/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 278140, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-27T23:16:54.753845Z", "last_modified_time": "2025-02-27T23:16:54.753860Z", "url": "https://www.lippu.fi/obj/mam/finland/93/46/hkt-kuka-kaappasi-auringon-tickets_362232_3070654_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/278140/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-13T14:14:45.380519Z", "last_modified_time": "2026-03-01T00:14:18.435964Z", "date_published": null, "start_time": "2026-02-28T11: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, "description": { "fi": "<p>Mauri Kunnas – Liila Jokelin – Lauri Schreck<br><strong>KUKA KAAPPASI AURINGON </strong></p><p>Väinölän taivaalla aurinko paistaa kultaisena. Niin kultaisena, että Pohjolan ahne Louhi saa idean: jos ryöstäisikin auringon ja takoisi sen kultakolikoiksi!</p><p>Louhi susijoukkoineen vangitsee auringon luolaan ja Väinölässä tulee kylmä. Pohjolassa sen sijaan on läkähdyttävän kuuma, kun kahlittu aurinko porottaa vihaisena luolassaan.</p><p>Mutta auringolla on voima, jolle edes Louhi ei mahda mitään. Ahneinkin oppii, mikä elämässä on oikeasti tärkeää.</p><p>Mauri Kunnaksen samannimiseen lastenkirjaan perustuvan upouuden lasten musiikkinäytelmän ohjaa ja dramatisoi <strong>Liila Jokelin</strong>, joka on myös säveltänyt näytelmän musiikin yhdessä <strong>Lauri Schreckin</strong> kanssa.</p><p>Tässä energisessä musiikkinäytelmässä paahdetaan rockia ja näyttäviä taistelukoreografioita koko näyttämön täydeltä! Esityksessä hehkuu Mauri Kunnaksen tunnistettava maailma. Näytelmän huumori, viisaus ja oivaltavuus lämmittävät pitkään.</p><p>Rooleissa: Juha Jokela, Sami Paasila, Sanna Majuri, Arttu Kapulainen, Inkeri Raittila, Sanna Saarijärvi, Antti Timonen, Laura Alajääski</p><p>Kirjailija: Mauri Kunnas<br>Dramatisointi, ohjaus ja sävellys: Liila Jokelin<br>Sävellys: Lauri Schreck<br>Koreografia: Arvo Jean-Michael Ärlig<br>Lavastus ja puvut: Katariina Kirjavainen<br>Naamioinnin suunnittelu: Ronja Nylund<br>Valosuunnittelu: Teppo Saarinen<br>Äänisuunnittelu: Riku-Pekka Kellokoski<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Sanna Niemeläinen<br>Oikeuksien valvoja: Agency North</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Kuka Kaappasi Auringon" }, "short_description": { "fi": "Mauri Kunnas – Liila Jokelin – Lauri Schreck KUKA KAAPPASI AURINGON Väinölän taivaalla aurinko paistaa kultaisena." }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20800550/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20776480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776480/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776480/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776480/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T15:15:05.063956Z", "last_modified_time": "2026-03-01T00:14:18.304398Z", "date_published": null, "start_time": "2026-02-28T11: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, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "en": "Let'S Play Business" }, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21033055", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3594382/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033055/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033055/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033055/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:44.559638Z", "last_modified_time": "2025-02-17T11:16:44.559655Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-02T17:14:16.589319Z", "last_modified_time": "2026-03-01T00:14:18.177789Z", "date_published": null, "start_time": "2026-02-28T08: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, "description": { "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Vappu Nalbantoglu, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Mollin Iltahepuli" }, "short_description": { "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta." }, "provider_contact_info": null, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033055/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokh75gzy", "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": [], "images": [ { "id": 1495005, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T10:56:07.990174Z", "last_modified_time": "2026-02-28T10:56:07.990188Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b5cd8f27-178d-487f-ae44-0b5e632bb5d4.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Anna Soudakova", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-28T10:56:16.367750Z", "last_modified_time": "2026-02-28T10:56:16.367769Z", "date_published": null, "start_time": "2026-04-16T14:00:00Z", "end_time": "2026-04-16T16: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, "description": { "fi": "<p>Sellon kirjaston kirjailijavierailunsa aikana Anna kertoo omasta matkastaan kirjailijaksi, kirjailijuudesta Suomessa sekä puhuu itselleen tärkeistä teemoista, jotka heijastuvat hänen kirjoissaan. Vierailu pidetään sekä suomen ja venäjän kielellä.</p><p><br></p><p>Anna on syntynyt v. 1983 Leningradissa taiteilijaperheeseen. Hän muutti 8-vuotiaana muutti perheensä kanssa Suomeen suomalaisten sukujuuriensa ansiosta.</p><p>Anna on valmistunut Turun yliopistosta filosofian maisteriksi aineinaan ranskan, venäjän sekä suomen kielen filologia ja pedagogiikka. Hän opettaa suomen kieltä peruskoulussa Vantaalla.</p><p>Hänen esikoisromaaninsa Mitä männyt näkevät ilmestyi v. 2020. Se perustuu hänen isoisänsä elämäntarinaan ja kertoo tämän vanhempien katoamisesta Stalinin vainoihin. Annan toinen romaani Varjele varjoani ilmestyi v. 2022. Siinä seurataan kahden naisen, äidin ja tyttären, maahanmuuttomatkaa. Romaanin tarina keskittyy kysymään, mitä maahanmuuttaja jättää taakseen ja miten hän voi löytää oman paikkansa uudessa elämässään. Haikara levittää siipensä on Annan kolmas romaani, joka katsoo Valko-Venäjälle, tutkii sen historiaa ja samalla kahden sisaruksen, veljen ja siskon, kotimaansa varjostamaa tarinaa.</p><p><br></p><p>Ання родилась в 1983г. в Ленинграде в семье художников. В возрасте восьми лет она переехала вместе с родителями в Финляндию, благодаря своих финским корням.</p><p>Анна окончила университет города Турку по французской, русской и финской филологии и педагогике. На данный момент она преподает финский язык в общеобразовательной школе в Вантаа.</p><p>Ее первый роман Mitä männyt näkevät (Что видят сосны) вышел в 2020 году. В нем она рассказывает историю своего дедушки и его родителей, расстрелянных во время Сталинских репрессий. Второй роман Анны, Varjele varjoani (Сохрани мою тень), вышел в 2022 году. Он рассказывает историю двух женщин, матери и дочери, и прослеживает их путь эмиграции. Haikara levittää siipensä (Аист расправляет крылья) – это третий роман Анны, вышедший в 2024 году. Он рассказывает историю брата и сестры, которых разлучает их родина Беларусь.</p><p>Анну завораживают языки и то, как они, каждый по-своему, отображают окружающий мир. Есть невероятная тайна в том, как отдельные слова могут складываться в фразы, а фразы превращаться в истории.</p><p>Во время творческой встречи в библиотеке Селло, Анна расскажет о своем литературном пути, о писательской деятельности в Финляндии, и поговорит на важные для нее темы, которые отражаются в ее книгах.</p><p>Встреча будет проходить на финском и русском языках.</p>", "sv": "<p>Under sitt besök kommer Anna att berätta om sin resa som författare. Evenemanget kommer att hållas på både finska och ryska.</p>", "en": "<p>During her author visit, Anna will talk about her journey to becoming a writer. The event will be held in both Finnish and Russian.</p>" }, "info_url": null, "provider": null, "name": { "fi": "Kirjailijavieras Anna Soudakova", "sv": "Författare Anna Soudakova", "en": "Author Anna Soudakova" }, "short_description": { "fi": "Kirjailijavierailunsa aikana Anna kertoo omasta matkastaan kirjailijaksi. Tapahtuma pidetään sekä suomen ja venäjän kielellä.", "sv": "Under sitt besök kommer Anna att berätta om sin resa som författare. Evenemanget kommer att hållas på både finska och ryska.", "en": "During her author visit, Anna will talk about her journey to becoming a writer. The event will be held in both Finnish and Russian." }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokh75gzy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl5l4", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p14710/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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:agokhsl6jy/?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": [ { "id": 1490116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:41:28.628680Z", "last_modified_time": "2025-01-30T08:53:02.449159Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "Ali Al-Zaini", "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-28T10:14:16.104865Z", "last_modified_time": "2026-02-28T10:14:16.104884Z", "date_published": null, "start_time": "2026-03-08T11:00:00Z", "end_time": "2026-03-08T12: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, "description": { "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. </p><p>Kuva: Ali Al-Zaini</p>", "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. </p><p>Foto: Ali Al-Zaini</p>", "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams.</p><p>Photo: Ali Al-Zaini</p>" }, "info_url": null, "provider": null, "name": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "short_description": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl5l4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl564", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p14710/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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:agokhsl6jy/?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": [ { "id": 1490116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:41:28.628680Z", "last_modified_time": "2025-01-30T08:53:02.449159Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "Ali Al-Zaini", "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-28T10:14:15.953981Z", "last_modified_time": "2026-02-28T10:14:15.954000Z", "date_published": null, "start_time": "2026-03-01T11:00:00Z", "end_time": "2026-03-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. </p><p>Kuva: Ali Al-Zaini</p>", "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. </p><p>Foto: Ali Al-Zaini</p>", "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams.</p><p>Photo: Ali Al-Zaini</p>" }, "info_url": null, "provider": null, "name": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "short_description": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl6jy", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p14710/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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:agokhsl5l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl564/?format=api" } ], "images": [ { "id": 1490116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:41:28.628680Z", "last_modified_time": "2025-01-30T08:53:02.449159Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "Ali Al-Zaini", "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-28T10:14:15.408598Z", "last_modified_time": "2026-02-28T10:14:15.408616Z", "date_published": null, "start_time": "2026-03-01T11:00:00Z", "end_time": "2026-03-08T12: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, "description": { "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. </p><p>Kuva: Ali Al-Zaini</p>", "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. </p><p>Foto: Ali Al-Zaini</p>", "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams.</p><p>Photo: Ali Al-Zaini</p>" }, "info_url": null, "provider": null, "name": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "short_description": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl6jy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl6wi", "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:p4354/?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": [ { "id": 1495003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T10:03:17.081620Z", "last_modified_time": "2026-02-28T10:03:17.081637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/206122ce-5a6d-47ac-92f0-0303492d1167.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Piirroshahmoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495003/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-28T10:10:40.282653Z", "last_modified_time": "2026-02-28T10:10:40.282673Z", "date_published": null, "start_time": "2026-05-19T12:00:00Z", "end_time": "2026-05-19T13: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, "description": { "fi": "<p>Luo henkilökohtainen kirjanmerkki käyttämällä värejä, kollaasimateriaaleja ja koriste-elementtejä. Täydellinen kirjan ystäville ja luoville mielille kaiken ikäisille – ja ihana seuralainen seuraavalle kirjastokäynnillesi!</p><p>Lapset voivat osallistua vapaasti ja jäädä niin pitkäksi aikaa kuin haluavat.</p>", "en": "<p>Create a personalised bookmark using colours, collage materials, and decorative elements. Perfect for book lovers and creative minds of all ages - and a lovely companion for your next library visit!</p><p>Children can join freely and stay as long as they wish.</p>" }, "info_url": null, "provider": { "fi": "Familia ry", "en": "Familia ry" }, "name": { "fi": "Askartelua - Tee oma kirjanmerkki", "en": "Make Your Own Bookmark" }, "short_description": { "fi": "Luo henkilökohtainen kirjanmerkki käyttämällä värejä, kollaasimateriaaleja ja koriste-elementtejä. ", "en": "Create a personalised bookmark using colours, collage materials, and decorative elements." }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Makerspace" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl6wi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl7bu", "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:p4354/?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": [ { "id": 1495003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T10:03:17.081620Z", "last_modified_time": "2026-02-28T10:03:17.081637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/206122ce-5a6d-47ac-92f0-0303492d1167.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Piirroshahmoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495003/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-28T10:07:34.631368Z", "last_modified_time": "2026-02-28T10:07:34.631386Z", "date_published": null, "start_time": "2026-04-21T12:00:00Z", "end_time": "2026-04-21T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Suunnittele paperinen ikkuna ja piirrä siihen unelmiesi näkymä. Mitä näkisit, jos voisit katsoa ulos mihin tahansa maailmassa – tai jopa mielikuvituksesi maailmaan? Luova ja leikkisä taideaktiviteetti, joka kannustaa tarinankerrontaan ja itsensä ilmaisemiseen.</p><p>Voit tulla paikalle milloin tahansa tapahtuman aikana ja luoda omaan tahtiisi.</p>", "en": "<p>Design a paper window and draw your dream view inside. What would you see if you could look out onto anywhere in the world - or even into your imagination? A creative and playful art activity that encourages storytelling and self-expression.</p><p>Drop in anytime during the session and create at your own pace.</p>" }, "info_url": null, "provider": { "fi": "Familia ry", "en": "Familia ry" }, "name": { "fi": "Askartelua - Dream View -paperiset ikkunat", "en": "Dream View Paper Windows" }, "short_description": { "fi": "Suunnittele paperinen ikkuna ja piirrä siihen unelmiesi näkymä.", "en": "Design a paper window and draw your dream view inside." }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Makerspace" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl7bu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl7me", "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:p4354/?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": [ { "id": 1495003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T10:03:17.081620Z", "last_modified_time": "2026-02-28T10:03:17.081637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/206122ce-5a6d-47ac-92f0-0303492d1167.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Piirroshahmoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495003/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-28T10:03:27.803425Z", "last_modified_time": "2026-02-28T10:03:27.803445Z", "date_published": null, "start_time": "2026-03-24T13:00:00Z", "end_time": "2026-03-24T14: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, "description": { "fi": "<p>Luo oma pörröinen olento puuvillapalloista, paperista ja runsaalla mielikuvituksella! Lapset voivat suunnitella hauskan, ujon, rohkean tai täysin hassun hahmon ja herättää sen eloon väreillä ja yksityiskohdilla.</p><p>Tämä on rento, vapaamuotoinen taidetyöpaja, johon lapset voivat liittyä milloin tahansa ja jäädä niin pitkäksi aikaa kuin haluavat.</p>", "en": "<p>Create your own fluffy creature using cotton balls, paper, and lots of imagination! Children can design a funny, shy, brave, or completely silly character and bring it to life with colours and details.</p><p>This is a relaxed, drop-in art session where children can join at any time and stay as long as they like.</p>" }, "info_url": null, "provider": { "fi": "Familia ry", "en": "Familia ry" }, "name": { "fi": "Askartelua - Puuvillapallo olennot", "en": "Cotton Ball Creatures" }, "short_description": { "fi": "Luo oma pörröinen olento puuvillapalloista, paperista ja runsaalla mielikuvituksella! ", "en": "Create your own fluffy creature using cotton balls, paper, and lots of imagination!" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Makerspace" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl7me/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agokhsl7xe", "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:p11617/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?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": [ { "id": 1495004, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-28T09:24:18.518851Z", "last_modified_time": "2026-02-28T09:24:18.518866Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f2a44cf9-1f60-47fb-ad55-235b31b31330.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa nuoria eri etnisistä ryhmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495004/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-02-28T09:25:48.448850Z", "last_modified_time": "2026-02-28T09:25:48.448868Z", "date_published": null, "start_time": "2026-03-16T14:00:00Z", "end_time": "2026-03-16T17: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, "description": { "fi": "<p>Rasisminvastainen viikko (16.-21.3.2026) alkaa Sellon kirjastosta! Tule mukaan osoittamaan tukesi turvalliselle ja rasismista vapaalle nuoruudelle Suomessa. Tapahtumasta löytyy inspiroivaa tekemistä ja ohjelmaa kaikille.</p><p>Ohjelmassa on vauhdikkaita Shuffle dance -esityksiä, nauruhermoja kutkuttavaa stand up’ia, nuorten bändi <strong>Upstair Attic</strong>. Lisäksi tietoiskuja vertaistoiminnasta eri toimijoilta: <strong>MunDuo Familia ry, Mixed Finns –yhteisö ja POC-lukupiiri. </strong></p><p><br></p><p>Nonstoppina: Valokuvausseinä, POC-kirjanäyttely ja vinkkejä antirasistiseen toimintaan.</p><p>Tapahtuma avaavat <strong>Zakaria Maadidi & Luukas Määttänen </strong>Espoon Nuorisovaltuustosta ja sen juontajina toimivat<strong> Zalfa Yehia ja Mariam Umor.</strong> </p><p>Tapahtuma on suunnattu nuorille ja se toteutetaan yhdessä nuorten kanssa.</p><p>Zero Racism! Muutos meistä kaikista. </p><p><strong>Yhteistyössä: </strong>Anti-Racism Week (March 16–21, 2026) kicks off at the Sello Library! Come and show your support for a safe and racism-free youth in Finland. The event offers inspiring activities and programs for everyone.</p><p>The program includes energetic Shuffle dance performances, laugh-out-loud stand-up comedy, and the youth band Upstair Attic. In addition, there will be information sessions on peer activities from various organizations: MunDuo Familia ry, the Mixed Finns community, and the POC reading circle.</p><p><br></p><p>Non-stop: Photo wall, POC book exhibition, and tips for anti-racist action.</p><p>The event will be opened by Zakaria Maadidi & Luukas Määttänen from the Espoo Youth Council and hosted by Zalfa Yehia and Mariam Umor. </p><p>The event is aimed at young people and is being organized in collaboration with young people.</p><p>Zero Racism! Change starts with all of us. </p><p>In cooperation with: Yhteiset Lapsemme ry, Sello Library, and Nuorisotila Pointti.</p><p>Full program and further information: www.yhteisetlapsemme.fi </p><p><strong>, Sellon kirjasto ja Nuorisotila Pointti. </strong></p><p>Koko ohjelma ja lisätietoja:<a href=\" www.yhteisetlapsemme.fi \"> www.yhteisetlapsemme.fi </a></p>", "sv": "<p>ntirasismveckan (16–21 mars 2026) startar på Sello-biblioteket! Kom och visa ditt stöd för en trygg och rasismfri ungdom i Finland. Evenemanget erbjuder inspirerande aktiviteter och program för alla.</p><p>Programmet innehåller fartfyllda shuffle-dansuppvisningar, rolig stand-up-komedi och det unga bandet <strong>Upstair Attic.</strong> Dessutom kommer det att hållas informationssessioner om kamrataktiviteter från olika organisationer: <strong>MunDuo Familia ry, Mixed Finns-gemenskapen och POC-läscirkeln.</strong></p><p><br></p><p>Non-stop: Fotovägg, POC-bokutställning och tips för antirasistiska åtgärder.</p><p>Evenemanget öppnas av <strong>Zakaria Maadidi & Luukas Määttänen</strong> från Espoo Youth Council och leds av<strong> Zalfa Yehia och Mariam Umor.</strong> </p><p>Evenemanget riktar sig till ungdomar och organiseras i samarbete med ungdomar.</p><p>Noll tolerans mot rasism! Förändringen börjar med oss alla. </p><p><strong>I samarbete med: Yhteiset Lapsemme ry, Sello-biblioteket och Nuorisotila Pointti.</strong></p><p>Hela programmet och mer information: <a href=\"www.yhteisetlapsemme.fi \">www.yhteisetlapsemme.fi </a></p>", "en": "<p>Anti-Racism Week (March 16–21, 2026) kicks off at the Sello Library! Come and show your support for a safe and racism-free youth in Finland. The event offers inspiring activities and programs for everyone.</p><p>The program includes energetic Shuffle dance performances, laugh-out-loud stand-up comedy, and the youth band<strong> Upstair Attic.</strong> In addition, there will be information sessions on peer activities from various organizations: <strong>MunDuo Familia ry, the Mixed Finns community, and the POC reading circle.</strong></p><p><br></p><p>Non-stop: Photo wall, POC book exhibition, and tips for anti-racist action.</p><p>The event will be opened by <strong>Zakaria Maadidi & Luukas Määttänen </strong>from the Espoo Youth Council and hosted by <strong>Zalfa Yehia and Mariam Umor.</strong> </p><p>The event is aimed at young people and is being organized in collaboration with young people.</p><p>Zero Racism! Change starts with all of us. </p><p><strong>In cooperation with: Yhteiset Lapsemme ry, Sello Library, and Nuorisotila Pointti.</strong></p><p>Full program and further information: <a href=\"www.yhteisetlapsemme.fi \">www.yhteisetlapsemme.fi </a></p>" }, "info_url": null, "provider": { "fi": "Yhteiset Lapsemme ry", "sv": "Yhteiset Lapsemme ry", "en": "Yhteiset Lapsemme ry" }, "name": { "fi": "ZERO RACISM! Muutos alkaa meistä", "sv": "ZERO RACISM! Förändringen börjar med oss", "en": "ZERO RACISM! Change begins with us" }, "short_description": { "fi": " Tule mukaan osoittamaan tukesi turvalliselle ja rasismista vapaalle nuoruudelle Suomessa. Tapahtumasta löytyy inspiroivaa tekemistä ja ohjelmaa kaikille.", "sv": "Kom och visa ditt stöd för en trygg och rasismfri ungdom i Finland. Evenemanget erbjuder inspirerande aktiviteter och program för alla.", "en": "Come and show your support for a safe and racism-free youth in Finland. The event offers inspiring activities and programs for everyone." }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agokhsl7xe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20843257", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843257/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843257/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843257/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.926542Z", "last_modified_time": "2025-02-17T11:16:43.926559Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-20T07:15:51.320598Z", "last_modified_time": "2026-02-28T00:15:35.594302Z", "date_published": null, "start_time": "2026-02-27T17: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, "description": { "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p>Yhteistyössä W&T Comedyn kanssa.</p>", "en": "<p><strong>CLUB ACT!ONE</strong></p>" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "en": "Club Act!One K-18" }, "short_description": { "fi": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi." }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20843257/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20864880", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010519/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/status-quo-helsingin-kaupunginteatteri-lilla-teatern-20864880/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/status-quo-helsingin-kaupunginteatteri-lilla-teatern-20864880/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/status-quo-helsingin-kaupunginteatteri-lilla-teatern-20864880/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1491206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-27T17:16:07.832538Z", "last_modified_time": "2025-10-27T17:16:07.832555Z", "url": "https://www.lippu.fi/obj/mam/finland/a9/b4/hkt-status-quo-tickets_459562_3693281_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-23T20:16:13.227959Z", "last_modified_time": "2026-02-28T00:15:35.470834Z", "date_published": null, "start_time": "2026-02-27T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Maja Zade<br><strong>STATUS QUO</strong></p>", "sv": "<p>I Status quo är kvinnorna chefer och männen kokar kaffet. Vi följer Mikael, en ung man i början av sin karriär, som navigerar genom en rad yrken – från fastighetsmäklare till apotekspraktikant och skådespelare på en teater. Överallt möts han av samma mönster: diskriminering, manipulation och sexuella närmanden. Hemma sköter Mikael hushållet och försöker vara en god partner, men i ett samhälle där kvinnorna bestämmer är varje Mikael inget mer än en Micke.</p><p>Maja Zades pjäs skildrar med fyndig komik hur bekanta roller och världar blir absurda när man vänder upp och ner på könsrollerna.</p><p>På scen: Alexander Wendelin, Vuokko Hovatta, Peter Kanerva, Pia Runnakko, Joachim Wigelius, Alexandra Gustafsson</p><p>Uppföranderätt: Agency North / Colombine Teaterförlag<br>Översättning: Gunilla Hemming<br>Regi: Jakob Höglund<br>Scenografi, dräktdesign och design av dockor: Heini Maaranen<br>Dockinstruktör: Riina Tikkanen<br>Ljusdesign: Ainu Palmu<br>Komposition och ljuddesign: Tony Sikström<br>Maskdesign: Jaana Nykänen<br>Dramaturg: Henna Piirto<br>Videodesign: Katinka Ebbe <br></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/status-quo-4010519/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/status-quo-4010519/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/status-quo-4010519/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Status Quo" }, "short_description": { "sv": "Maja Zade STATUS QUO I Status quo är kvinnorna chefer och männen kokar kaffet." }, "provider_contact_info": null, "location_extra_info": { "fi": "Lilla Teatern" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864880/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20776479", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776479/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776479/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776479/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T15:15:04.826888Z", "last_modified_time": "2026-02-28T00:15:35.348631Z", "date_published": null, "start_time": "2026-02-27T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "en": "Let'S Play Business" }, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3853425", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?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/andre-wickstrom-30-vuotta-lavalla-eika-loppua-nay-helsingin-kaupunginteatteri-arena-nayttamo-20942432/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-eika-loppua-nay-helsingin-kaupunginteatteri-arena-nayttamo-20942432/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-eika-loppua-nay-helsingin-kaupunginteatteri-arena-nayttamo-20942432/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003480/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20942432/?format=api" } ], "images": [ { "id": 368526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-19T10:17:42.167361Z", "last_modified_time": "2025-03-19T10:17:42.167377Z", "url": "https://www.lippu.fi/obj/mam/finland/62/8a/aw222-tickets_370394_3126857_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T08:18:13.804507Z", "last_modified_time": "2026-02-27T21:15:21.494464Z", "date_published": null, "start_time": "2025-11-22T15:00:00Z", "end_time": "2026-02-27", "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, "description": { "fi": "<p><strong>ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY!</strong></p><p>Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta! Se on pidempi aika kuin moni parisuhde kestää, ja rehellisesti sanottuna, enemmän nauruakin se on tuottanut.</p><p>Tässä juhlashow’ssa André palaa lavalle entistä viisaampana (tai ainakin keski-ikäisenä) ja tarjoilee parhaat palat vuosikymmenten varrelta – sekä tietenkin täysin uutta materiaalia, koska vanhojen juttujen kierrätys kuuluu vain politiikkaan. Illan aikana selviää muun muassa, miten suomenruotsalainen hillitty olemus on kaikkea muuta kuin tönkkösuolattu hapansilakka.</p><p>Tämä ilta on täynnä nostalgiaa, yllätyksiä ja ennen kaikkea naurua – sillä vaikka maailma muuttuu, yksi asia pysyy: André Wickström osaa yhä naurattaa meitä paremmin kuin meidän oma elämä. Tervetuloa juhlimaan 30 vuotta komiikkaa ja elämänviisautta (kantapäänkin kautta hankittuna)!</p><p>Liput: Peruslippu 35€ ja opisk/eläk/varushlö/työtön 30€, Esteetönlippu 35€ sis. avustajalipun<br>Hinnat sisältävät palvelumaksut!</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-eikae-loppua-naey-3853425/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-eikae-loppua-naey-3853425/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-eikae-loppua-naey-3853425/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "", "sv": "André Wickström 30 Vuotta Lavalla" }, "short_description": { "fi": "ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY! Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3853425/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20942432", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3853425/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-eika-loppua-nay-helsingin-kaupunginteatteri-arena-nayttamo-20942432/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-eika-loppua-nay-helsingin-kaupunginteatteri-arena-nayttamo-20942432/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/andre-wickstrom-30-vuotta-lavalla-eika-loppua-nay-helsingin-kaupunginteatteri-arena-nayttamo-20942432/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 368526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-19T10:17:42.167361Z", "last_modified_time": "2025-03-19T10:17:42.167377Z", "url": "https://www.lippu.fi/obj/mam/finland/62/8a/aw222-tickets_370394_3126857_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T16:15:24.952341Z", "last_modified_time": "2026-02-27T21:14:29.665085Z", "date_published": null, "start_time": "2026-02-27T17: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, "description": { "fi": "<p><strong>ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY!</strong></p><p>Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta! Se on pidempi aika kuin moni parisuhde kestää, ja rehellisesti sanottuna, enemmän nauruakin se on tuottanut.</p><p>Tässä juhlashow’ssa André palaa lavalle entistä viisaampana (tai ainakin keski-ikäisenä) ja tarjoilee parhaat palat vuosikymmenten varrelta – sekä tietenkin täysin uutta materiaalia, koska vanhojen juttujen kierrätys kuuluu vain politiikkaan. Illan aikana selviää muun muassa, miten suomenruotsalainen hillitty olemus on kaikkea muuta kuin tönkkösuolattu hapansilakka.</p><p>Tämä ilta on täynnä nostalgiaa, yllätyksiä ja ennen kaikkea naurua – sillä vaikka maailma muuttuu, yksi asia pysyy: André Wickström osaa yhä naurattaa meitä paremmin kuin meidän oma elämä. Tervetuloa juhlimaan 30 vuotta komiikkaa ja elämänviisautta (kantapäänkin kautta hankittuna)!</p><p>Liput: Peruslippu 35€ ja opisk/eläk/varushlö/työtön 30€, Esteetönlippu 35€ sis. avustajalipun<br>Hinnat sisältävät palvelumaksut!</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-eikae-loppua-naey-3853425/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-eikae-loppua-naey-3853425/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/andre-wickstrom/andre-wickstroem-30-vuotta-lavalla-eikae-loppua-naey-3853425/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "André Wickström 30 Vuotta Lavalla - Eikä Loppua Näy!" }, "short_description": { "fi": "ANDRÉ WICKSTRÖM 30 VUOTTA LAVALLA – EIKÄ LOPPUA NÄY! Hyvät naiset, herrat ja kaikki huumorin ystävät – Andre Wickström on tehnyt stand-upia jo huikeat 30 vuotta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20942432/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoj6r3bmq", "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: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" } ], "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": [ { "id": 1495002, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-27T12:41:36.387674Z", "last_modified_time": "2026-02-27T12:41:36.387691Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/588d61b5-355a-417c-a21d-ba98789ad08e.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Marianne Maans ja Marjaana Puurtinen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-27T12:41:46.461696Z", "last_modified_time": "2026-02-27T17:37:46.075405Z", "date_published": null, "start_time": "2026-05-23T12:00:00Z", "end_time": "2026-05-23T13: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, "description": { "fi": "<p>Soi torpat ja salongit II -konserttikokonaisuus tulkitsee Varsinais-Suomen ja Turunmaan saariston eri aikojen perinnemusiikkia nykyaikaisina sovituksina. Kaksi viulua, suomen- ja ruotsinkielinen laulu ja kaksikielinen kerrontasitovat esiintyjät ja yleisön osaksi kansanmusiikin ikiaikaista jatkumoa. Teoksessa saariston, kylien ja kaupunkien musiikillinen äänimaisema on yhtäaikaisesti sekä mennyttä että tässä hetkessä syntyvää.</p><p>Konserttikokonaisuus on jatkoa duon edelliselle Soi torpat ja salongit -teokselle (2019-2024), jolloin duo perehtyi tuhansiin maakunnan perinnemusiikkia sisältäviin nuotteihin ja äänitteisiin mm. Sibelius-museon, Suomalaisen Kirjallisuuden Seuran, Kansalliskirjaston, Svenska litteratursällskapet i Finlandin sekä Svenskt visarkivin (Ruotsi) arkistoista. Uusi produktio jatkaa mittavaa ja kielirajat ylittävää kartoitustyötä.</p><p><strong>Marianne Maans</strong> on toiminut ammattikansanmuusikkona 1990-luvun lopusta alkaen laaja-alaisesti eri musiikkiprojektien toteuttajana ja on suomenruotsalaisen kansanmusiikkiperinteen asiantuntija.<strong> Marjaana Puurtinen </strong>on varsinaissuomalaisen kansanmusiikin voimahahmo, joka on säveltänyt ja sovittanut musiikkia mm. useisiin suuriin kansantanssiteoksiin.</p><p>Teoksen kierrätysvaatteista valmistetut asut on suunnitellut<strong> Marjo Haapasalo.</strong> Monipuolinen konserttikokonaisuus soveltuu erilaisiin tiloihin ja tilaisuuksiin sekä laajalle kohdeyleisölle.</p>", "sv": "<p>Spel i stuga och salong II är en föreställning med folkmusik från Åboland och Egentliga Finland. Med två violiner, sång på svenska och finska, samt ett tvåspråkigt berättande knyts publiken och de uppträdande till folkmusikens fortgåendetidsförlopp. I skärgårdens, byarnas och städernas musikaliska ljudlandskap är närvarande både ett modernt nyskapande och det förgångna.</p><p>Konserthelheten är en uppföljning av duons tidigare Spel i stuga och salong -produktion (2019-2024) och omfattar ett förarbete med kartläggning och genomgång av arkivmaterial bestående av tusentals noter och inspelningar från tryckta källor och arkiv vid bl.a. Sibeliusmuséet, Finska litteratursällskapet, Nationalbiblioteket, Svenska litteratursällskapet i Finland samt Svenskt visarkiv (Sverige). Produktionen omfattar resultatet av ett fortsatt omfattande kartläggningsarbete över språkgränserna.</p><p><strong>Marianne Maans</strong> är en professionell folkmusiker och sakkunnig inom den finlandssvenska folkmusiken. Hon har sedan 1990-talet verkat mångsidigt som musiker och med förverkligande av musikaliska projekt. <strong>Marjaana Puurtinen</strong> är en drivande kraft inom folkmusiken i Egentliga Finland. Hon har bl.a. ansvarat för musiken till flera större förverkligade dansverk.</p><p>Produktionens dräkter har skapats av returmaterial av dräktdesigner <strong>Marjo Haapasalo</strong>. Den tvåspråkiga konserthelheten lämpar sig för framförande i olika utrymmen och tillfällen för en bred målgrupp.</p>", "en": "<p>The concert series Soi torpat ja salongit II (Playing Barns and Salons II) interprets traditional music from different periods in Southwest Finland and the Turku archipelago in modern arrangements. Two violins, Finnish and Swedish vocals, and bilingual narration draw the performers and audience into the timeless continuum of folk music. In this work, the musical soundscape of the archipelago, villages, and towns is both a thing of the past and something that is being created in the present moment.</p><p><br></p><p>The concert series is a continuation of the duo's previous work, Soi torpat ja salongit (2019-2024), in which the duo familiarized themselves with thousands of sheet music and recordings of traditional music from the province, including those from the archives of the Sibelius Museum, the Finnish Literature Society, the National Library, Svenska litteratursällskapet i Finland, and Svenskt visarkiv (Sweden). The new production continues the extensive and cross-linguistic mapping work. Marianne Maans has been a professional folk musician since the late 1990s, working on a wide range of music projects.</p><p><br></p><p><strong>Marianne Maans</strong> has been a professional folk musician since the late 1990s, working on a wide range of music projects and is an expert on the Finnish-Swedish folk music tradition. <strong>Marjaana Puurtinen</strong> is a leading figure in Southwest Finnish folk music, who has composed and arranged music for several major folk dance productions, among other things.</p><p>The costumes for the performance, made from recycled clothing, were designed by <strong>Marjo Haapasalo</strong>. This versatile concert program is suitable for a variety of venues and occasions and appeals to a wide audience.</p><p><br></p><p><br></p>" }, "info_url": null, "provider": null, "name": { "fi": "Soi torpat ja salongit II - konsertti", "sv": "Spel i stuga och salong II - konsert", "en": "Soi torpat ja salongit II - concert" }, "short_description": { "fi": "Kaksikielinen kansanmusiikkiteos", "sv": "En tvåspråkig folkmusikföreställning", "en": "Bilingual ( Finnish and Swedish) folk music piece" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoj6r3bmq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agojjdi4vm", "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:agggfz67zy/?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": [ { "id": 1494948, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-25T10:34:53.606466Z", "last_modified_time": "2026-02-25T10:34:53.606481Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d435b46b-c91c-4867-a1e0-16a793974332.jpg", "name": "", "cropping": "296,0,1204,909", "photographer_name": "Jukka Klemetti", "alt_text": "Munakoiso ja kesäkurpitsa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-25T10:35:06.852190Z", "last_modified_time": "2026-02-27T13:18:40.280995Z", "date_published": "2026-02-25T10:31:00Z", "start_time": "2026-03-02T06:00:00Z", "end_time": "2026-03-27T18: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, "description": { "fi": "<p>Tarkastelen näyttelyn maalauksissa elämän katoavaisuutta ja runsauden hetkiä. Realistisesti maalaamani hedelmät ja vihannekset symboloivat elämän kukoistusta, kun taas pääkallot muistuttavat sen rajallisuudesta.</p><p>Teokset kutsuvat katsojan pysähtymään, pohtimaan ajan kulumista ja elämän arvoa – kauneutta ja kuolevaisuutta rinnakkain.</p><p>Jukka Klemetti</p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "info_url": null, "provider": { "fi": "Jukka Klemetti", "sv": "Jukka Klemetti", "en": "Jukka Klemetti" }, "name": { "fi": "Näyttely: Memento mori / Jukka Klemetti", "sv": "Utställning: Memento mori / Jukka Klemetti", "en": "Art exhibition: Memento mori / Jukka Klemetti" }, "short_description": { "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "provider_contact_info": null, "location_extra_info": { "fi": "Näyttelyseinä Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agojjdi4vm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agny4wh2ua", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wh6ia/?format=api" }, "event_status": "EventCancelled", "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": [ { "id": 1494379, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-05T12:12:05.181591Z", "last_modified_time": "2026-01-05T12:12:05.181609Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bebb8b79-b7ee-4f94-bb4c-ef822dd3ef01.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Lasten elokuva -teksti ja popcornia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494379/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-05T12:18:36.300019Z", "last_modified_time": "2026-02-27T12:48:01.670148Z", "date_published": null, "start_time": "2026-02-28T10:00:00Z", "end_time": "2026-02-28T12: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, "description": { "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p><br></p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets VOX-utrymme varje lördag kl. 12:00. Ta med egen dryck och snacks! Filmen är på finska. </p><p><br></p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's VOX space every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p><br></p><p>Welcome to the movie! </p>" }, "info_url": null, "provider": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wh2ua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }