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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=34
{ "meta": { "count": 32397, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=35", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=33" }, "data": [ { "id": "espoo_le:agozxhstem", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsu7i/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-14T07:40:25.842791Z", "last_modified_time": "2026-04-14T07:40:25.842804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/815b3371-5216-44d1-85fa-d15011a31813.png", "name": "", "cropping": "329,0,1916,1587", "photographer_name": "", "alt_text": "Kuvituskuva kolmesta ihmisestä keskustelemassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824107/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-04-14T07:51:10.539088Z", "last_modified_time": "2026-04-14T07:51:10.539201Z", "date_published": null, "start_time": "2026-05-29T13:00:00Z", "end_time": "2026-05-29T15: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, "provider": null, "short_description": { "fi": "Tule sunnittelemaan Sellon kirjaston Mörkö-tilaa!" }, "description": { "fi": "<p>Sellon kirjaston uusi Mörkö-tila saa muodonmuutoksen ja nyt sinä voit vaikuttaa siihen, miltä uusi tila näyttää! Tilassa on avoimet ovet toukokuussa perjantaisin klo 16-18. Tilan uudistus tapahtuu syksyllä 2026. </p><p><br></p><p>Ideointi-illat klo 16-18:</p><p>8.5.</p><p>15.5.</p><p>22.5.</p><p>29.5.</p>" }, "info_url": null, "name": { "fi": "Mörkö-tilan ideointi-ilta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhstem/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhsttq", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsu7i/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-14T07:40:25.842791Z", "last_modified_time": "2026-04-14T07:40:25.842804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/815b3371-5216-44d1-85fa-d15011a31813.png", "name": "", "cropping": "329,0,1916,1587", "photographer_name": "", "alt_text": "Kuvituskuva kolmesta ihmisestä keskustelemassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824107/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-04-14T07:51:10.357650Z", "last_modified_time": "2026-04-14T07:51:10.357664Z", "date_published": null, "start_time": "2026-05-22T13:00:00Z", "end_time": "2026-05-22T15: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, "provider": null, "short_description": { "fi": "Tule sunnittelemaan Sellon kirjaston Mörkö-tilaa!" }, "description": { "fi": "<p>Sellon kirjaston uusi Mörkö-tila saa muodonmuutoksen ja nyt sinä voit vaikuttaa siihen, miltä uusi tila näyttää! Tilassa on avoimet ovet toukokuussa perjantaisin klo 16-18. Tilan uudistus tapahtuu syksyllä 2026. </p><p><br></p><p>Ideointi-illat klo 16-18:</p><p>8.5.</p><p>15.5.</p><p>22.5.</p><p>29.5.</p>" }, "info_url": null, "name": { "fi": "Mörkö-tilan ideointi-ilta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsttq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhsuby", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsu7i/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-14T07:40:25.842791Z", "last_modified_time": "2026-04-14T07:40:25.842804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/815b3371-5216-44d1-85fa-d15011a31813.png", "name": "", "cropping": "329,0,1916,1587", "photographer_name": "", "alt_text": "Kuvituskuva kolmesta ihmisestä keskustelemassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824107/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-04-14T07:51:10.174277Z", "last_modified_time": "2026-04-14T07:51:10.174292Z", "date_published": null, "start_time": "2026-05-15T13:00:00Z", "end_time": "2026-05-15T15: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, "provider": null, "short_description": { "fi": "Tule sunnittelemaan Sellon kirjaston Mörkö-tilaa!" }, "description": { "fi": "<p>Sellon kirjaston uusi Mörkö-tila saa muodonmuutoksen ja nyt sinä voit vaikuttaa siihen, miltä uusi tila näyttää! Tilassa on avoimet ovet toukokuussa perjantaisin klo 16-18. Tilan uudistus tapahtuu syksyllä 2026. </p><p><br></p><p>Ideointi-illat klo 16-18:</p><p>8.5.</p><p>15.5.</p><p>22.5.</p><p>29.5.</p>" }, "info_url": null, "name": { "fi": "Mörkö-tilan ideointi-ilta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsuby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhsuri", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsu7i/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-14T07:40:25.842791Z", "last_modified_time": "2026-04-14T07:40:25.842804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/815b3371-5216-44d1-85fa-d15011a31813.png", "name": "", "cropping": "329,0,1916,1587", "photographer_name": "", "alt_text": "Kuvituskuva kolmesta ihmisestä keskustelemassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824107/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-04-14T07:51:09.926598Z", "last_modified_time": "2026-04-14T07:51:09.926613Z", "date_published": null, "start_time": "2026-05-08T13:00:00Z", "end_time": "2026-05-08T15: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, "provider": null, "short_description": { "fi": "Tule sunnittelemaan Sellon kirjaston Mörkö-tilaa!" }, "description": { "fi": "<p>Sellon kirjaston uusi Mörkö-tila saa muodonmuutoksen ja nyt sinä voit vaikuttaa siihen, miltä uusi tila näyttää! Tilassa on avoimet ovet toukokuussa perjantaisin klo 16-18. Tilan uudistus tapahtuu syksyllä 2026. </p><p><br></p><p>Ideointi-illat klo 16-18:</p><p>8.5.</p><p>15.5.</p><p>22.5.</p><p>29.5.</p>" }, "info_url": null, "name": { "fi": "Mörkö-tilan ideointi-ilta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsuri/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhsu7i", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhstem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsttq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsuby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsuri/?format=api" } ], "images": [ { "id": 1824107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-14T07:40:25.842791Z", "last_modified_time": "2026-04-14T07:40:25.842804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/815b3371-5216-44d1-85fa-d15011a31813.png", "name": "", "cropping": "329,0,1916,1587", "photographer_name": "", "alt_text": "Kuvituskuva kolmesta ihmisestä keskustelemassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824107/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-04-14T07:51:09.223382Z", "last_modified_time": "2026-04-14T07:51:09.223399Z", "date_published": null, "start_time": "2026-05-08T13:00:00Z", "end_time": "2026-05-29T15: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, "provider": null, "short_description": { "fi": "Tule sunnittelemaan Sellon kirjaston Mörkö-tilaa!" }, "description": { "fi": "<p>Sellon kirjaston uusi Mörkö-tila saa muodonmuutoksen ja nyt sinä voit vaikuttaa siihen, miltä uusi tila näyttää! Tilassa on avoimet ovet toukokuussa perjantaisin klo 16-18. Tilan uudistus tapahtuu syksyllä 2026. </p><p><br></p><p>Ideointi-illat klo 16-18:</p><p>8.5.</p><p>15.5.</p><p>22.5.</p><p>29.5.</p>" }, "info_url": null, "name": { "fi": "Mörkö-tilan ideointi-ilta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsu7i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68377", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1801315, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-07T08:13:27.231123Z", "last_modified_time": "2026-04-07T08:13:27.231137Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777739.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1801315/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-07T08:13:27.105917Z", "last_modified_time": "2026-04-14T07:13:21.805819Z", "date_published": null, "start_time": "2026-08-13", "end_time": "2026-09-26", "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, "provider": null, "short_description": { "fi": "Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?", "sv": "Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?", "en": "Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?" }, "description": { "fi": "<p>Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?</p><p>Kohti tuntematonta kutsuu sinut hyppäämään seikkailuun!</p><p>Kuvituksella on tärkeä tehtävä sanojen henkiin puhaltamisessa. Katso vaikka itse! Näet ehkä arvoituksellisia paikkoja, outoja otuksia, valoa ja varjoa, taikavoimaisia käärmeitä, kiehtovia riimumerkkejä. Pitkäsen kuvat tihkuvat jännitystä, uhkaa ja vaaraakin. Uskallatko katsoa kuvaa, tarttua kirjaan ja suunnata kohti tuntematonta?</p><p>Lapsille ja nuorille suunnattu näyttely- ja tapahtumakokonaisuus on koottu Pasi Pitkäsen laajasta kuvitustuotannosta. Näyttelyyn on valikoitu kuvia kirjasarjoista, joissa Pitkänen on tasavahvana tekijänä kirjailijoiden rinnalla: Pate (Timo Parvela), Kepler62 (Timo Parvela ja Bjørn Sortland), Paavali Pattinen (Hannele Lampela) sekä Ouroboros (Silja Sillanpää).</p><p>Näyttely on avoinna 13.8.-26.9.2026.</p><p>Näyttelyn oheisohjelmaa suunnataan kouluille ja perheille.</p><p>Kansainvälisenä lukutaitopäivänä 8.9. järjestetään koululaisille tapahtuma-aamu ja lauantaina 19.9. perhepäivä, joissa molemmissa Pasi Pitkänen on mukana.</p><p>Maanantaiaamupäivisin näyttelytila on varattu koululaisten työpajatyöskentelyyn.</p><p>Pasi Pitkänen on monipuolinen kuvittaja, kirjailija ja graafikko, jonka kuvitukset ovat saavuttaneet myös kansainvälistä menestystä. Pitkänen on valmistunut graafiseksi suunnittelijaksi Aalto-yliopistosta ja työskennellyt kuvittajana, hahmosuunnittelijana ja graafikkona Rovio Entertainmentilla.</p><p>Nykyisin hän toimii freelancekuvittajana ja asuu osan vuodesta Japanissa.</p><p>Näyttelyn ja tapahtumakokonaisuuden ovat tuottaneet Vuotalon kulttuuripalveluista Salla Fornaro ja Vuosaaren kirjastosta Emilia Kämäräinen yhteistyössä Pasi Pitkäsen kanssa.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?</p><p>Mot det okända bjuder in dig på ett äventyr! Illustrationer är viktiga för att ge liv åt orden. Se själv! Du kanske ser mystiska platser, konstiga varelser, ljus och skugga, magiska ormar och fascinerande runrad. Pitkänens bilder ångar av spänning, hot och även fara. Vågar du titta på bilden, fatta tag i boken och gå mot det okända?</p><p>Utställnings- och evenemangshelheten för barn och unga består av Pasi Pitkänens omfattande illustrationsproduktion. Utställningen innehåller ett urval av bilder från bokserier där Pitkänen är en jämbördig upphovsman vid sidan av författarna: Pate (Timo Parvela), Kepler62 (Timo Parvela och Bjørn Sortland), Paavali Pattinen (Hannele Lampela) samt Ouroboros (Silja Sillanpää).</p><p>Utställningen är öppen 13.8–26.9.2026. Programmet i anslutning till utställningen är avsett för skolor och familjer. På Internationella läskunnighetsdagen 8.9 ordas en evenemangsmorgon för skolelever och lördagen 19.9 en familjedag. Pasi Pitkänen deltar i båda evenemangen. På måndagsförmiddagar är utställningslokalen reserverad för verkstäder för skolelever.</p><p>Pasi Pitkänen är en mångsidig illustratör, författare och grafiker, vars illustrationer också har rönt internationell framgång. Pitkänen tog examen som grafisk designer vid Aalto-universitetet och har arbetat som illustratör, figurdesigner och grafiker på Rovio Entertainment. För närvarande arbetar han som frilansillustratör och bor en del av året i Japan.</p><p>Utställningen och evenemangshelheten har producerats av Salla Fornaro från Nordhusets kulturtjänster och Emilia Kämäräinen från Nordsjö bibliotek i samarbete med Pasi Pitkänen.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?</p><p>Kohti tuntematonta (‘Towards the unknown’) invites you to jump into the adventure! Illustration plays an important role in bringing words to life. See for yourself! You may see mysterious places, strange creatures, light and shadow, magical snakes and fascinating runic characters. Pitkänen's illustrations exude excitement, threat and even some danger. Do you dare look at the image, pick up a book and head into the unknown?</p><p>The exhibition and event for children and young people is a compilation of Pasi Pitkänen's extensive illustrations. The exhibition includes a selection of images from book series in which Pitkänen is an equal creator alongside the authors: Pate (Timo Parvela), Kepler62 (Timo Parvela and Bjørn Sortland), Paavali Pattinen (Hannele Lampela) and Ouroboros (Silja Sillanpää).</p><p>The exhibition is open from 13 August to 26 September 2026. The accompanying programme to the exhibition is aimed at schools and families. On International Literacy Day on 8 September, Vuotalo will host a morning of events for schoolchildren, and on Saturday 19 September, the centre will host a family day, both with Pasi Pitkänen. On Monday mornings, the exhibition space will be reserved for workshops for schoolchildren.</p><p>Pasi Pitkänen is a versatile illustrator, writer and graphic designer whose works have also achieved international success. Pitkänen graduated as a graphic designer from Aalto University and has worked as an illustrator, character designer and graphic designer at Rovio Entertainment. He now works as a freelance illustrator and lives in Japan for part of the year.</p><p>The exhibition and the event have been produced by Salla Fornaro from Vuotalo’s cultural services and Emilia Kämäräinen from Vuosaari Library in collaboration with Pasi Pitkänen.</p><p>The exhibition and events are free of charge.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8507968AAAC8B1844AA2E54CC8975FFA/Mot_det_okanda", "en": "http://www.vuotalo.fi/en/events/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta_Towards_the_unknown_" }, "name": { "fi": "Kohti tuntematonta – Pasi Pitkäsen kuvituksia huimista seikkailuista", "sv": "Mot det okända – Pasi Pitkänens illustrationer av svindlande äventyr", "en": "Kohti tuntematonta (‘Towards the unknown’) – Pasi Pitkänen's illustrations of dizzying adventures" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68377/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68383", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1803410, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-08T09:14:02.269723Z", "last_modified_time": "2026-04-08T09:14:02.269742Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787862.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1803410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-08T09:14:02.115010Z", "last_modified_time": "2026-04-14T07:13:21.451553Z", "date_published": null, "start_time": "2026-06-24T16:00:00Z", "end_time": "2026-08-12T16:45: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, "provider": null, "short_description": { "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2026 opetellaan jälleen paritansseja!", "sv": "Från foxtrot till fusku, från jenka till samba, från vals till tango! Sommaren 2026 lär vi oss pardanser igen!", "en": "From foxtrot to single-time swing, jenkka to samba and waltz to tango! In the summer of 2026, we will once again be learning partner dances!" }, "description": { "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon! Kesällä 2026 opetellaan jälleen paritansseja!</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta.</p><p>Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy!</p><p>Mukaan tanssimaan voi tulla milloin vain.</p><p>Opetuksesta vastaavat koulutetut tanssinopettajat. Sateen sattuessa tanssitaan Vuotalon aulassa.</p><p>Kesän 2026 kaupunkitanssit tanssitaan Vuotorilla keskiviikkoisin klo 19–19.45.</p><p>Vapaa pääsy!</p>", "sv": "<p>Från foxtrot till fusku, från jenka till samba, från vals till tango! Sommaren 2026 lär vi oss pardanser igen!</p><p>I stadsdanserna får du helt avgiftsfritt träna olika pardanser under handledning. Du behöver inga förhandskunskaper, ingen anmälan eller ens en danspartner – den får du på plats!</p><p>Du kan komma med och dansa när du vill. För undervisningen ansvarar utbildade danslärare. Om det regnar dansar vi i Nordhusets entréhall.</p><p>Stadsdanserna sommaren 2026 ordnas på Nortorg onsdagar kl. 19–19.45.</p><p>Språk: finska</p><p>Fritt inträde!</p>", "en": "<p>From foxtrot to single-time swing, jenkka to samba and waltz to tango! In the summer of 2026, we will once again be learning partner dances!</p><p>The Dancing in the City sessions offer opportunities to practise different partner dances with guidance and completely free of charge. <br>No prior skills, registration or even a dance partner are required – we have plenty of them to offer!</p><p>You can join in any time. The instructors are trained dance teachers. In the event of rain, the dancing will take place in the lobby of Vuotalo.</p><p>The Dancing in the City events of summer 2026 will be held on Vuotori Square on Wednesdays from 19.00 to 19.45.</p><p>Language: Finnish</p><p>Free entry!</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A422EBD6216723573BF0CB8ED1DC2FF7/Kaupunkitanssit_Vuotorilla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A422EBD6216723573BF0CB8ED1DC2FF7/Stadsdans_pa_Nortorg", "en": "http://www.vuotalo.fi/en/events/event/A422EBD6216723573BF0CB8ED1DC2FF7/Dancing_in_the_City_at_Vuotori_Square" }, "name": { "fi": "Kaupunkitanssit Vuotorilla – klo 19-19.45", "sv": "Stadsdans på Nortorg – klo 19-19.45", "en": "Dancing in the City at Vuotori Square – klo 19-19.45" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68383/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhsvqa", "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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824108, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-14T06:41:53.920724Z", "last_modified_time": "2026-04-14T06:41:53.920738Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/786c6736-872e-4936-8c4e-51a0fd84b6f8.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Mustavalkoinen kuva Andania-laivasta.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824108/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T06:38:34.940323Z", "last_modified_time": "2026-04-14T06:42:14.454607Z", "date_published": "2026-04-14T06:27:00Z", "start_time": "2026-04-25T13:30:00Z", "end_time": "2026-04-25T14: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, "provider": { "fi": "April Jazz Festival", "sv": "April Jazz Festival", "en": "April Jazz Festival" }, "short_description": { "fi": "Suo, kuokka ja jatsi - esitelmässä misteri Taneli Pyysalo suorittaa ennen illan konserttia kevyen sukelluksen Jazz-Suomen kulttuurihistoriaan.", "sv": "I föredraget Suo, kuokka ja jatsi gör misteri Taneli Pyysalo, före kvällens konsert, en kort och lätt resa in i den finländska jazzens kulturhistoria.", "en": "In the presentation Swamp, Hoe and Jazz, Mister Taneli Pyysalo takes a short and easy dive into the cultural history of Finnish jazz before the evening concert." }, "description": { "fi": "<p><strong>Lauantaina 25.4. klo 16:30-17:30 Tapiolan kirjaston tapahtumatila Kaijassa.</strong></p><p>Historiaan perehtyneiden hyvin tietämän tarinan mukaan jazz-musiikki saapui maahamme 4. kesäkuuta 1926 amerikansuomalaisia koto-Suomeen vierailulle tuoneen Andania-laivan orkesterin jäsenten mukana. Tätä jazzin - tai ainakin muutamien jazzin soittamiseen kykenevien muusikoiden aivan kirjaimellistakin rantautumista maahamme pidetään niin merkittävänä yksittäisenä tapahtumana, että vuonna 2026 on katsottu aiheelliseksi juhlistaa suomalaisen jazz-musiikin 100- vuotista taivalta.</p><p>Huhuja jazzista oli kantautunut jo 1920-luvun alusta asti. Jazz-ilmiön uskottiin pilaavan nuorison ja turmelevan länsimaisen sivistyksen. Kansamme käsitys jazzista perustuikin lähinnä saksalaisia esikuviaan matkivien kotikutoisten orkesterien meluisiin esityksiin ja lehdistön häväistyskirjoituksiin. Kuultuaan Andanian muusikoiden soitantaa muuttui suomalaisten tanssimuusikoiden käsitys jazzista ja sen soittamisesta kertakuulemalla ja vähitellen tätä modernin ajan musiikkia opittiin meilläkin paitsi soittamaan, myös arvostamaan.</p><p>On ilmeistä että tässä musiikinlajissa oli - ja on yhä - jotain sellaista joka on vedonnut kuulijoihin siinä määrin, että maassamme vielä sata vuotta myöhemminkin soitetaan ja kuunnellaan jazzia. Useampia festivaaleja, tapahtumia ja klubeja on jazzin ystävien iloksi perustettu, ja jazzia on voinut opiskella jo pitkään tohtoritasolle asti. Onpa maassamme monia sellaisiakin henkilöitä, jotka ovat pystyneet elättämään itsensä pääasiassa jazzia soittamalla. Siitä, onko kulloinkin soitettava musiikki jazzia ei ole sen sijaan vielä päästy täydelliseen yhteisymmärrykseen, vaikkakin useimmat kansalaisemme nykyään kaiketi sentään hyväksyvät jazzin musiikiksi. </p><p>Millainen on ollut jazz-Suomen satavuotinen taival? Minkälaiset ihmiset jazzia ovat ryhtyneet kuuntelemaan ja miksi? Ketkä jazzia ovat soittaneet (ja miksi…)? Missä jazzia on soitettu ja kuunneltu, miten jazzin soittaminen on ajan saatossa kehittynyt ja miten jazziin on suhtauduttu? Mitä on apuraha-jazz? Miltä näytti -30 luvun Jazz-tyttö?</p><p>Jazz-musiikin historia ei meilläkään ole pelkkiä vuosilukuja, tapahtumia ja nimiä, vaan toisiinsa kietoutuvien ilmiöiden kiehtova kudelma. Suo, kuokka ja jatsi - esitelmässä misteri Taneli Pyysalo suorittaa ennen illan konserttia kevyen sukelluksen Jazz-Suomen kulttuurihistoriaan, ja auttaa kuulijaa missä kaikessa he ovatkaan osallisina.</p><p>Järjestäjä: April Jazz Festival</p>", "sv": "<p>I föredraget Suo, kuokka ja jatsi gör misteri Taneli Pyysalo, före kvällens konsert, en kort och lätt resa in i den finländska jazzens kulturhistoria.</p><p>Evenemanget är på finska.</p>", "en": "<p>In the presentation Swamp, Hoe and Jazz, Mister Taneli Pyysalo takes a short and easy dive into the cultural history of Finnish jazz before the evening concert.</p><p>The event is in Finnish.</p>" }, "info_url": { "fi": "https://www.apriljazz.fi", "sv": "https://www.apriljazz.fi", "en": "https://www.apriljazz.fi" }, "name": { "fi": "Suo, kuokka ja jatsi – Satavuotinen Jazz-Suomi", "sv": "Suo, kuokka ja jatsi – Hundra år av finländsk jazz (på Finska)", "en": "Swamp, Hoe and Jazz – One Hundred Years of Finnish Jazz (in Finnish)" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhsvqa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20865004", "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: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-967155/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-20865004/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-20865004/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-20865004/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 152460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T10:16:44.815531Z", "last_modified_time": "2024-09-18T10:16:44.815551Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_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/152460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-23T20:16:36.358394Z", "last_modified_time": "2026-04-13T23:14:57.582161Z", "date_published": null, "start_time": "2026-04-13T15: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän." }, "description": { "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en" }, "name": { "fi": "Kiviä Taskussa" }, "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:20865004/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20841356", "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-3613405/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20841356/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20841356/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20841356/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.062378Z", "last_modified_time": "2025-02-17T11:16:41.062398Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/veljeni-leijonamieli-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/235429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-20T07:16:00.761382Z", "last_modified_time": "2026-04-13T23:14:57.478528Z", "date_published": null, "start_time": "2026-04-13T15: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä." }, "description": { "fi": "<p>Astrid Lindgren<br><strong>VELJENI LEIJONAMIELI</strong></p><p>”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä. Tämä tarina on niin kuin satu, ja vähän myös kummitusjuttu, mutta kaikki on kuitenkin totta.” Astrid Lindgrenin Veljeni Leijonamieli on rakastettu klassikkosatu, maaginen fantasia veljeksistä, jotka kantavat toisiaan vaikeuksien yli. Se on tarina rohkeudesta, veljeydestä ja rakkaudesta. Se on huikea seikkailu, jossa jokainen löytää rohkeutensa.</p><p>Veljeni Leijonamieli kertoo kahdesta veljeksestä, Korpusta (Alexander Wendelin) ja Joonatanista (Mikko Kauppila). Isoveli Joonatan kuolee pelastaessaan sairasta veljeään Korppua tulipalolta, ja pian menehtyy myös Korppu. Veljekset matkaavat lyhyen maanpäällisen elämänsä jälkeen kauniiseen maahan, Nangijalaan, jossa he taistelevat yhdessä pahan voimia vastaan. Matkasta tulee huima ja jännittävä seikkailu, jonka aikana pelokkaasta Korpusta kasvaa rohkea Leijonamieli.</p><p>Veljeni Leijonamieli kertoo surusta kauniisti ja kasvaa maagiseksi fantasiaseikkailuksi, joka on täynnä rohkeutta ja toivoa. Se kertoo valtavasta rakkaudesta, joka voittaa pelot ja jopa kuoleman.</p><p>Astrid Lindgrenin Veljeni Leijonamielen suurelle näyttämölle ohjaa Jakob Höglund. Esitys yhdistelee musiikkiteatteria, nukketeatteria ja koreografiaa fantastiseksi, visuaalisesti henkeäsalpaavaksi kokonaisuudeksi.</p><p>Rooleissa: Mikko Kauppila, Alexander Wendelin, Laura Alajääski, Sofia Hilli, Tuukka Leppänen, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Sanna Majuri, Kari Mattila, Reetta Moilanen, Unto Nuora, Samuli Pajunen, Mikko Paloniemi, Tiina Peltonen, Elena Rekola, Inka Tiitinen, Riina Tikkanen, Risto Kaskilahti, Kalle Lähde</p><p>Muusikko: Senni Valtonen<br>Dramatisointi: Alexander Mørk-Eidem<br>Ohjaus: Jakob Höglund<br>Koreografia: Jakob Höglund & työryhmä<br>Ohjaajan ja koreografin assistentti: Johanna Elovaara<br>Tekstin sovitus, käännös ja laulutekstit: Rasmus Arikka<br>Sävellys ja äänisuunnittelu: Stefan Johansson<br>Lavastus: Vilma Mattila<br>Pukusuunnittelu: Heidi Wikar<br>Valo- ja videosuunnittelu: Toni Haaranen ja William Iles<br>Naamioinnin suunnittelu: Milja Mensonen<br>Nukkien suunnittelu: Heini Maaranen<br>Dramaturgi: Ari-Pekka Lahti<br>Lauluvalmennus: Jukka Nylund<br>Apulaislavastaja: Riku Suvitie</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=en" }, "name": { "fi": "Veljeni Leijonamieli" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20841356/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn6wdfnfq", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6wdfrcu/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494615, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-23T13:00:30.640792Z", "last_modified_time": "2026-01-23T13:00:30.640808Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f0c3555f-88c2-48e8-a916-6ccb59075d73.jpg", "name": "", "cropping": "169,0,769,600", "photographer_name": "", "alt_text": "Kaksit tyttöä hyppää auringonlaskussa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494615/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-23T13:04:56.175922Z", "last_modified_time": "2026-04-13T15:19:46.158491Z", "date_published": null, "start_time": "2026-04-14T12:00:00Z", "end_time": "2026-04-14T15: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, "provider": { "fi": "Espoon Tyttöjen Talo ja Espoon Kaupunginkirjasto ", "sv": "Espoon Tyttöjen Talo och Esbo Stads Bibliotek ", "en": "Espoon Tyttöjen Talo and Espoo City Library " }, "short_description": { "fi": "Ryhmä yli 10-vuotiaille tytöille sukupuolen moninaisuus huomioiden. Ryhmä toteutetaan yhteistyössä Espoon Tyttöjen Talon kanssa. ", "sv": "Grupp för flickor över 10 år med hänsyn till könsmångfald. Gruppen genomförs i samarbete med Espoon Tyttöjen Talo. ", "en": "A group for girls over 10 years old, taking gender diversity into account. The group is carried out in collaboration with Espoon Tyttöjen Talo. " }, "description": { "fi": "<p>Tytöille tarjotaan oma tila, jossa voi tehdä itselle mieluisia asioita ja keskustella turvallisten aikuisten kanssa itseä pohdituttavista asioista. Rento ja hauska ryhmä, jonka ohjelma perustuu osallisuuteen. Myös palveluohjausta tarvittaessa. </p>", "sv": "<p>Flickorna får ett eget utrymme där de kan göra saker de tycker om och prata med trygga vuxna om saker som de funderar på. En avslappnad och rolig grupp där programmet baseras på delaktighet. Även servicevägledning erbjuds vid behov. </p>", "en": "<p>Girls are provided with their own space where they can do activities they enjoy and talk with trusted adults about things they are thinking about. A relaxed and fun group, with a program based on participation. Service guidance is also available if needed. </p>" }, "info_url": null, "name": { "fi": "Girls Time", "sv": "Girls Time", "en": "Girls Time" }, "provider_contact_info": null, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6wdfnfq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68405", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:24.449090Z", "last_modified_time": "2026-04-13T14:13:14.605861Z", "date_published": null, "start_time": "2026-08-25T13:30:00Z", "end_time": "2027-05-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laajan oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8591034D7377114974D6665F13B79D1A/Sydkustens_ordkonstskola_Skildringscheferna", "sv": "http://www.annantalo.fi/sv/evenemang/event/8591034D7377114974D6665F13B79D1A/Sydkustens_ordkonstskola_Skildringscheferna", "en": "http://www.annantalo.fi/en/events/event/8591034D7377114974D6665F13B79D1A/Sydkustens_ordkonstskola_Skildringscheferna" }, "name": { "fi": "Sydkustens ordkonstskola: Skildringscheferna – 16–18-vuotiaat, 2008-2010 syntyneet", "sv": "Sydkustens ordkonstskola: Skildringscheferna – 16–18-åringar, född 2008-2010", "en": "Sydkustens ordkonstskola: Skildringscheferna – 16–18-year-olds, born 2008-2010" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68405/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68409", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:26.693824Z", "last_modified_time": "2026-04-13T13:13:27.035766Z", "date_published": null, "start_time": "2026-08-28T12:30:00Z", "end_time": "2027-05-14T14: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laajan oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7663EAC9470321D6EE7090E71BAD309A/Sydkustens_ordkonstskola_Premiumpoeterna", "sv": "http://www.annantalo.fi/sv/evenemang/event/7663EAC9470321D6EE7090E71BAD309A/Sydkustens_ordkonstskola_Premiumpoeterna", "en": "http://www.annantalo.fi/en/events/event/7663EAC9470321D6EE7090E71BAD309A/Sydkustens_ordkonstskola_Premiumpoeterna" }, "name": { "fi": "Sydkustens ordkonstskola: Premiumpoeterna – 16–18-vuotiaat, 2008-2010 syntyneet", "sv": "Sydkustens ordkonstskola: Premiumpoeterna – 16–18-åringar, född 2008-2010", "en": "Sydkustens ordkonstskola: Premiumpoeterna – 16–18-year-olds, born 2008-2010" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68409/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68408", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:26.149934Z", "last_modified_time": "2026-04-13T13:13:26.504295Z", "date_published": null, "start_time": "2026-08-28T12:00:00Z", "end_time": "2027-05-13T13: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laajan oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/38B621B942079058FE7DBFFBBFE5B32C/Sydkustens_ordkonstskola_Berattelsebossarna", "sv": "http://www.annantalo.fi/sv/evenemang/event/38B621B942079058FE7DBFFBBFE5B32C/Sydkustens_ordkonstskola_Berattelsebossarna", "en": "http://www.annantalo.fi/en/events/event/38B621B942079058FE7DBFFBBFE5B32C/Sydkustens_ordkonstskola_Berattelsebossarna" }, "name": { "fi": "Sydkustens ordkonstskola: Berättelsebossarna – 13–15-vuotiaat, 2011-2013 syntyneet", "sv": "Sydkustens ordkonstskola: Berättelsebossarna – 13–15-åringar, född 2011-2013", "en": "Sydkustens ordkonstskola: Berättelsebossarna – 13–15-year-olds, born 2011-2013" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68407", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:25.591922Z", "last_modified_time": "2026-04-13T13:13:25.973182Z", "date_published": null, "start_time": "2026-08-27T12:30:00Z", "end_time": "2027-05-13T14: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laajan oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/502C750EBEDBD4A227708BD010BCE1E7/Sydkustens_ordkonstskola_Manusmastarna", "sv": "http://www.annantalo.fi/sv/evenemang/event/502C750EBEDBD4A227708BD010BCE1E7/Sydkustens_ordkonstskola_Manusmastarna", "en": "http://www.annantalo.fi/en/events/event/502C750EBEDBD4A227708BD010BCE1E7/Sydkustens_ordkonstskola_Manusmastarna" }, "name": { "fi": "Sydkustens ordkonstskola: Manusmästarna – 11–12-vuotiaat, 2014-2015 syntyneet", "sv": "Sydkustens ordkonstskola: Manusmästarna – 11–12-åringar, född 2014-2015", "en": "Sydkustens ordkonstskola: Manusmästarna – 11–12-year-olds, born 2014-2015" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68407/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68406", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:24.989766Z", "last_modified_time": "2026-04-13T13:13:25.400808Z", "date_published": null, "start_time": "2026-08-27T12:00:00Z", "end_time": "2027-05-13T13: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laajan oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9C98CB7532E542433A8D1F323C57D2D4/Sydkustens_ordskola_Storyskaparna", "sv": "http://www.annantalo.fi/sv/evenemang/event/9C98CB7532E542433A8D1F323C57D2D4/Sydkustens_ordskola_Storyskaparna", "en": "http://www.annantalo.fi/en/events/event/9C98CB7532E542433A8D1F323C57D2D4/Sydkustens_ordskola_Storyskaparna" }, "name": { "fi": "Sydkustens ordskola: Storyskaparna – 9–10-vuotiaat, 2016-2017 syntyneet", "sv": "Sydkustens ordskola: Storyskaparna – 9–10-åringar, född 2016-2017", "en": "Sydkustens ordskola: Storyskaparna – 9–10-year-olds, born 2016-2017" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68404", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:23.343629Z", "last_modified_time": "2026-04-13T13:13:23.721435Z", "date_published": null, "start_time": "2026-08-25T12:30:00Z", "end_time": "2027-05-11T14: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8E37C0B7A8C1729F2911E9A42FC8B095/Sydkustens_ordkonstskola_Genregenierna", "sv": "http://www.annantalo.fi/sv/evenemang/event/8E37C0B7A8C1729F2911E9A42FC8B095/Sydkustens_ordkonstskola_Genregenierna", "en": "http://www.annantalo.fi/en/events/event/8E37C0B7A8C1729F2911E9A42FC8B095/Sydkustens_ordkonstskola_Genregenierna" }, "name": { "fi": "Sydkustens ordkonstskola: Genregenierna – 13–15-vuotiaat, 2011-2013 syntyneet", "sv": "Sydkustens ordkonstskola: Genregenierna – 13–15-åringar, född 2011-2013", "en": "Sydkustens ordkonstskola: Genregenierna – 13–15-year-olds, born 2011-2013" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68404/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68402", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:22.757383Z", "last_modified_time": "2026-04-13T13:13:23.136907Z", "date_published": null, "start_time": "2026-08-25T12:00:00Z", "end_time": "2027-05-11T13: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84B3F37880530690C65598E4FB0FBB14/Sydkustens_ordkonstskola_Textspexarna", "sv": "http://www.annantalo.fi/sv/evenemang/event/84B3F37880530690C65598E4FB0FBB14/Sydkustens_ordkonstskola_Textspexarna", "en": "http://www.annantalo.fi/en/events/event/84B3F37880530690C65598E4FB0FBB14/Sydkustens_ordkonstskola_Textspexarna" }, "name": { "fi": "Sydkustens ordkonstskola: Textspexarna – 11–12-vuotiaat, 2014-2015 syntyneet", "sv": "Sydkustens ordkonstskola: Textspexarna – 11–12-åringar, född 2014-2015", "en": "Sydkustens ordkonstskola: Textspexarna – 11–12-year-olds, born 2014-2015" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68402/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68401", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:22.150042Z", "last_modified_time": "2026-04-13T13:13:22.547873Z", "date_published": null, "start_time": "2026-08-24T14:00:00Z", "end_time": "2027-05-10T15: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84F17232D38D8E67EE789C8C82E940DA/Sydkustens_ordskola_Skriftstojarna", "sv": "http://www.annantalo.fi/sv/evenemang/event/84F17232D38D8E67EE789C8C82E940DA/Sydkustens_ordskola_Skriftstojarna", "en": "http://www.annantalo.fi/en/events/event/84F17232D38D8E67EE789C8C82E940DA/Sydkustens_ordskola_Skriftstojarna" }, "name": { "fi": "Sydkustens ordskola: Skriftstojarna – 7–8-vuotiaat, 2018-2019 syntyneet", "sv": "Sydkustens ordskola: Skriftstojarna – 7–8-åringar, född 2018-2019", "en": "Sydkustens ordskola: Skriftstojarna – 7–8-year-olds, born 2018-2019" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68401/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68400", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:21.652567Z", "last_modified_time": "2026-04-13T13:13:21.978998Z", "date_published": null, "start_time": "2026-08-24T13:00:00Z", "end_time": "2027-05-17T14: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, "provider": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4C5A8CCFA7D94C38F96E4AF5917445B7/Sydkustens_ordkonstskola_Sagospirarna", "sv": "http://www.annantalo.fi/sv/evenemang/event/4C5A8CCFA7D94C38F96E4AF5917445B7/Sydkustens_ordkonstskola_Sagospirarna", "en": "http://www.annantalo.fi/en/events/event/4C5A8CCFA7D94C38F96E4AF5917445B7/Sydkustens_ordkonstskola_Sagospirarna" }, "name": { "fi": "Sydkustens ordkonstskola: Sagospirarna – 6-vuotiaat, 2020 syntyneet", "sv": "Sydkustens ordkonstskola: Sagospirarna – 6-åringar, född 2020", "en": "Sydkustens ordkonstskola: Sagospirarna – 6-year-olds, born 2020" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68400/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }