Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?event_type=General%2CCourse&format=api&page=21
https://linkedevents.api.test.hel.ninja/v1/event/?event_type=General%2CCourse&format=api&page=22", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?event_type=General%2CCourse&format=api&page=20" }, "data": [ { "id": "enkora:73844_3683041", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40838/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73844" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:47:34.570000Z", "last_modified_time": "2025-08-08T08:49:22.760822Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-10-07T14:30:00Z", "end_time": "2025-10-07T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T16:30:00+03:00", "enrolment_end_time": "2025-10-21T00:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Tyttöjen uimakoulu, Jatkouimakoulu 2 (25m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2 för flickor, över 7-åringar (25 m simkunnighet krävs)", "en": "Advanced swimming school 2 for girls (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille tytöille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä. Vanhemmat eivät pääse uimahalliin sisälle. Lapset liikkuvat uimaopettajan kanssa.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga flickor som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar. Föräldrar får inte vistas i simhallen. Barnen rör sig tillsammans med en simlärare.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for girls aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles. Parents are not allowed to enter the swimming hall. The children exercise with a swimming instructor.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844_3683041/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73844_3683040", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40838/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73844" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:47:34.336203Z", "last_modified_time": "2025-08-08T08:49:22.584704Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-09-30T14:30:00Z", "end_time": "2025-09-30T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T16:30:00+03:00", "enrolment_end_time": "2025-10-21T00:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Tyttöjen uimakoulu, Jatkouimakoulu 2 (25m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2 för flickor, över 7-åringar (25 m simkunnighet krävs)", "en": "Advanced swimming school 2 for girls (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille tytöille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä. Vanhemmat eivät pääse uimahalliin sisälle. Lapset liikkuvat uimaopettajan kanssa.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga flickor som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar. Föräldrar får inte vistas i simhallen. Barnen rör sig tillsammans med en simlärare.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for girls aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles. Parents are not allowed to enter the swimming hall. The children exercise with a swimming instructor.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844_3683040/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73844_3683039", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40838/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73844" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:47:34.106144Z", "last_modified_time": "2025-08-08T08:49:22.413468Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-09-23T14:30:00Z", "end_time": "2025-09-23T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T16:30:00+03:00", "enrolment_end_time": "2025-10-21T00:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Tyttöjen uimakoulu, Jatkouimakoulu 2 (25m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2 för flickor, över 7-åringar (25 m simkunnighet krävs)", "en": "Advanced swimming school 2 for girls (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille tytöille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä. Vanhemmat eivät pääse uimahalliin sisälle. Lapset liikkuvat uimaopettajan kanssa.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga flickor som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar. Föräldrar får inte vistas i simhallen. Barnen rör sig tillsammans med en simlärare.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for girls aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles. Parents are not allowed to enter the swimming hall. The children exercise with a swimming instructor.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844_3683039/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73844_3683038", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40838/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73844" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:47:33.870409Z", "last_modified_time": "2025-08-08T08:49:22.246880Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-09-16T14:30:00Z", "end_time": "2025-09-16T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T16:30:00+03:00", "enrolment_end_time": "2025-10-21T00:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Tyttöjen uimakoulu, Jatkouimakoulu 2 (25m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2 för flickor, över 7-åringar (25 m simkunnighet krävs)", "en": "Advanced swimming school 2 for girls (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille tytöille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä. Vanhemmat eivät pääse uimahalliin sisälle. Lapset liikkuvat uimaopettajan kanssa.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga flickor som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar. Föräldrar får inte vistas i simhallen. Barnen rör sig tillsammans med en simlärare.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for girls aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles. Parents are not allowed to enter the swimming hall. The children exercise with a swimming instructor.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844_3683038/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73844_3683037", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40838/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73844" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:47:33.637912Z", "last_modified_time": "2025-08-08T08:49:22.054750Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-09-09T14:30:00Z", "end_time": "2025-09-09T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T16:30:00+03:00", "enrolment_end_time": "2025-10-21T00:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Tyttöjen uimakoulu, Jatkouimakoulu 2 (25m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2 för flickor, över 7-åringar (25 m simkunnighet krävs)", "en": "Advanced swimming school 2 for girls (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille tytöille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä. Vanhemmat eivät pääse uimahalliin sisälle. Lapset liikkuvat uimaopettajan kanssa.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga flickor som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar. Föräldrar får inte vistas i simhallen. Barnen rör sig tillsammans med en simlärare.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for girls aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles. Parents are not allowed to enter the swimming hall. The children exercise with a swimming instructor.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844_3683037/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73844_3683036", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40838/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73844" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:47:33.384907Z", "last_modified_time": "2025-08-08T08:49:21.880225Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-09-02T14:30:00Z", "end_time": "2025-09-02T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T16:30:00+03:00", "enrolment_end_time": "2025-10-21T00:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Tyttöjen uimakoulu, Jatkouimakoulu 2 (25m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2 för flickor, över 7-åringar (25 m simkunnighet krävs)", "en": "Advanced swimming school 2 for girls (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille tytöille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä. Vanhemmat eivät pääse uimahalliin sisälle. Lapset liikkuvat uimaopettajan kanssa.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga flickor som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar. Föräldrar får inte vistas i simhallen. Barnen rör sig tillsammans med en simlärare.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for girls aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles. Parents are not allowed to enter the swimming hall. The children exercise with a swimming instructor.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73844_3683036/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679731/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679735/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679736/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679737/?format=api" } ], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:51.057301Z", "last_modified_time": "2025-08-08T08:48:24.295481Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-10-27T14:00:00Z", "end_time": "2025-12-08T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat [ma klo 16:00 - 16:45]", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs) [må kl. 16:00 - 16:45]", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds [mo at 16:00 - 16:45]" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679737", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:52.754236Z", "last_modified_time": "2025-08-08T08:48:24.151403Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-12-08T14:00:00Z", "end_time": "2025-12-08T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679737/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679736", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:52.519998Z", "last_modified_time": "2025-08-08T08:48:23.986124Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-12-01T14:00:00Z", "end_time": "2025-12-01T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679736/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679735", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:52.271044Z", "last_modified_time": "2025-08-08T08:48:23.819927Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-11-24T14:00:00Z", "end_time": "2025-11-24T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679735/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679734", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:52.032255Z", "last_modified_time": "2025-08-08T08:48:23.654054Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-11-17T14:00:00Z", "end_time": "2025-11-17T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:51.796478Z", "last_modified_time": "2025-08-08T08:48:23.483587Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-11-10T14:00:00Z", "end_time": "2025-11-10T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:51.563354Z", "last_modified_time": "2025-08-08T08:48:23.311610Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-11-03T14:00:00Z", "end_time": "2025-11-03T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "enkora:73623_3679731", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:40774/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17551/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623/?format=api" }, "event_status": "EventScheduled", "type_id": "Course", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "46.00€" }, "description": null, "info_url": { "fi": "https://liikuntakauppa.hel.fi/helsinginkaupunki/ng/shop/reservations/100/-/-/-/-/-/73623" } } ], "data_source": "enkora", "publisher": "ahjo:u021600", "sub_events": [], "images": [ { "id": 151956, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-30T06:30:51.474668Z", "last_modified_time": "2024-07-30T06:30:51.474686Z", "name": "Uimakoulut", "url": "https://liikunta2.content.api.hel.fi/uploads/sites/9/2024/06/a1ed6f25-enkora-alapoista-uimakoulut.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "enkora", "publisher": "ahjo:u021600", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-27T21:40:51.320297Z", "last_modified_time": "2025-08-08T08:48:23.139404Z", "date_published": "2025-07-27T21:00:00Z", "start_time": "2025-10-27T14:00:00Z", "end_time": "2025-10-27T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-08-11T17:30:00+03:00", "enrolment_end_time": "2025-12-08T00:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": { "fi": "Helsingin Kaupunki - Liikuntaluuri" }, "location_extra_info": null, "name": { "fi": "Jatkouimakoulu 2 (25 m uimataito vaaditaan), yli 7-vuotiaat", "sv": "Fortsättningssimskola 2, över- 7 åringar (simkunnighet på 25 m krävs)", "en": "Advanced swimming school 2 (ability to swim 25 metres required), over 7 year-olds" }, "short_description": null, "description": { "fi": "<p>Kurssilla ollaan syvässä altaassa, jossa jalat eivät yletä pohjaan. Uimakoulu on tarkoitettu yli 7-vuotiaille lapsille, jotka osaavat uida 25 metriä vatsallaan ja selällään. Kurssilla harjoitellaan vapaauintia, selkäuintia ja rintauintia, sekä kokonaisuintimatkaa, sukeltamista ja pää edellä hyppäämistä. Lisäksi kurssilla harjoitellaan vesipelastustaitoja. Tavoitteena on oppia uimaan yhtäjaksoisesti 25 m usealla eri uintityylillä.</p><p><b>Kurssin lisätiedot</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "sv": "<p>Kursen sker i en djup bassäng, där fötterna inte når i botten. Simskolan är avsedd för över 7-åriga barn som kan simma minst 25 meter både på mage och rygg. På kursen tränar vi frisim, ryggsim samt bröstsim. Dessutom tränas dykning, hopp i vattnet med huvudet före samt vattenlivräddning. Målet är att lära sig simma oavbrutet 25 m med olika simstilar.</p><p><b>Tilläggsinformation om kursen</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>", "en": "<p>The course takes place in a deep pool, where your feet do not reach the bottom. The swimming school is intended for children aged over 7 years who can swim for 25 metres on their stomach and back. The children practice freestyle swimming, backstroke and breaststroke, as well as total distance, diving, and jumping in head first. In addition, the course includes a section on water rescue skills. The goal is to learn to swim 25 metres continuously in several different styles.</p><p><b>Additional information about the course</b></p>\n<p><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/liikuntaluuri\">Liikuntaluuri</a>: <a href=\"tel:+358 9 310 32623\">+358 9 310 32623</a></p>" }, "provider": { "fi": "Helsingin kaupungin liikuntapalvelut", "sv": "Helsingfors stads idrottsservicen", "en": "City of Helsinki Sports Services" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/enkora:73623_3679731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65950", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 484627, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-07T11:13:34.258520Z", "last_modified_time": "2025-04-07T11:13:34.258537Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769543.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/484627/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-07T11:13:34.244103Z", "last_modified_time": "2025-08-08T08:14:04.589769Z", "date_published": null, "start_time": "2025-09-13T08:00:00Z", "end_time": "2025-09-13T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/66291869FDAB81ECCC13105A2A410B17/Annantalon_taidelauantai_Avaruuskantele", "sv": "http://www.annantalo.fi/sv/evenemang/event/66291869FDAB81ECCC13105A2A410B17/Annegardens_konstlordag_Rymdkantele", "en": "http://www.annantalo.fi/en/events/event/66291869FDAB81ECCC13105A2A410B17/Annantalo_Art_Saturday_The_Space_Kantele" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Avaruuskantele", "sv": "Annegårdens konstlördag: Rymdkantele – En tvåspråkig workshop: finska och svenska", "en": "Annantalo Art Saturday: The Space Kantele" }, "short_description": { "fi": "Vietetään yhdessä avaruusteemaista Kanteleen päivää! Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Låt oss fira Kanteledagen tillsammans med ett rymdtema! På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "Let’s celebrate the Kantele Day with a space-themed twist! On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "description": { "fi": "<p>Vietetään yhdessä avaruusteemaista Kanteleen päivää! Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b> Osallistu koko perheen kantelejameihin</b> <br>Tule luomaan yhteistä konserttielämystä ja soittamaan 5-kielistä kanteletta. Voit soittaa, kuunnella tai vain nauttia kanteleiden luomasta rauhoittavasta äänimaisemasta. Ohjaajana toimii muusikko Marjo Smolander. Paikan päältä saat soittimen lainaan soittohetken ajaksi, tai voit halutessasi tuoda mukana oman 5-kielisen kanteleesi. Ohjaajat voivat myös virittää soitintasi ja tarvittaessa vaihtaa kieliä pientä materiaalimaksua vastaan.</p><p><b>Valmista oma avaruuskantele</b> <br>Työpajassa valmistamme arkisista materiaaleista omat avaruuskanteleet ja koristelemme ne. Miltäköhän avaruusorkesteri kuulostaa? Ota siitä selvää ja valmista oma kosminen avaruussoitin! Työpajan ohjaavat näyttelijä Mari-Helen Hyvärinen ja muusikko John Mattas. Ohjaajat puhuvat suomea, ruotsia ja englantia. <br> <br><b> Tutustu Alkuräjähdys -näyttelyyn</b> <br>Annantalon Pohjoisgalleriassa on avoinna Helsingin kuvataidelukion näyttely. Opiskelijoiden teokset sukeltavat avaruuden ihmeelliseen maailmaan. Paikalla on näyttelyn nuoria taiteilijoita kertomassa teoksistaan ja näyttelyn synnystä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Kanteleen päivä on lauantaina 13.9.2025 järjestettävä valtakunnallinen juhlapäivä, jota vietetään ympäri Suomea. <br> <br>Nähdään Annantalolla lauantaisin!</p>", "sv": "<p>Låt oss fira Kanteledagen tillsammans med ett rymdtema! På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b> Delta i familjens kantelejamsession </b> <br>Kom och skapa en gemensam konsertupplevelse och spela femsträngad kantele. Du kan spela, lyssna eller bara njuta av det lugnande ljudlandskap som kantele skapar. Musikern Marjo Smolander leder sessionen. Instrument finns att låna på plats under spelstunden, eller ta med din egen femsträngade kantele om du vill. Instruktörerna kan också stämma ditt instrument och vid behov byta strängar mot en liten materialavgift</p><p><b> Skapa en egen rymdkantele </b> <br>Vi skapar egna rymdinstrument av enkla material och dekorerar dem. Hur låter en rymdorkester? Det kan du ta reda på genom att skapa din egen rymdkantele! Workshopen leds av skådespelare Mari-Helen Hyvärinen och musiker John Mattas. Instruktörerna talar finska, svenska och engelska.</p><p><b> Upptäck Alkuräjähdys-utställningen </b> <br>I Annegårdens Nordgalleri visas en utställning av elever från Helsingfors finskspråkig bildkonstgymnasium. Deras verk tar med dig på en resa in i rymdens fascinerande värld. Några av de unga konstnärerna finns på plats för att berätta om sina verk och utställningens tillkomst.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Kanteledagen är en nationell festdag som firas över hela Finland lördagen den 13 september 2025.</p><p>Vi ses på Annantalo på lördagar.</p>", "en": "<p>Let’s celebrate the Kantele Day with a space-themed twist! On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Join the Kantele Jam Session</b> <br> Create a shared concert experience by playing the five-string kantele. The whole family can play, listen, or simply enjoy the soothing soundscape created by the instruments. The session is led by musician Marjo Smolander. Instruments are available to borrow on-site for the jam, or you’re welcome to bring your own five-string kantele. If needed, the instructors can tune your instrument and even replace strings with a small fee to cover materials.</p><p><b>Make Your Own Space Kantele</b> <br> In this hands-on workshop, we’ll build and decorate our own space kanteles using everyday materials. What might a space orchestra sound like? Come find out by creating your own cosmic space instrument! The workshop is led by actor Mari-Helen Hyvärinen and musician John Mattas. The instructors speak Finnish, Swedish, and English.</p><p><b>Explore the Big Bang Exhibition</b> <br>Visit the Northern Gallery at Annantalo to see an exhibition by students of Helsinki Upper Secondary School of Visual Arts (Helsingin Kuvataidelukio). Their works dive into the wondrous world of space. Some of the young artists will be present to talk about their creations and the story behind the exhibition.</p><p>No skills required to participate. Everyone is welcome. If needed, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>Kantele Day is a national celebration taking place across Finland on Saturday, September 13, 2025. The kantele is a traditional Finnish string instrument.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65950/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000354", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000354/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000354/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000354/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:18.707290Z", "last_modified_time": "2025-08-07T23:15:06.252472Z", "date_published": null, "start_time": "2025-08-07T15: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, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "name": { "fi": "Little_Star95 - Ooksä Online? Ensi-Ilta" }, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000354/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66832", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1434093, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-07T15:14:20.431587Z", "last_modified_time": "2025-08-07T15:14:20.431605Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774941.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434093/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T15:14:20.309155Z", "last_modified_time": "2025-08-07T15:14:20.588736Z", "date_published": null, "start_time": "2025-11-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/64301C6D4F4D738F825D4A3B893D81C1/Monikatisesti_yhdessa_pianistit_kuin_orkesteri_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/64301C6D4F4D738F825D4A3B893D81C1/Flerhandigt_tillsammans_pianister_likt_en_orkester_Monikatisesti_yhdessa_pianistit_kuin_orkesteri_", "en": "http://www.vuotalo.fi/en/events/event/64301C6D4F4D738F825D4A3B893D81C1/Together_with_many_hands_pianists_like_an_orchestra_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Monikätisesti yhdessä: pianistit kuin orkesteri – Lastenkulttuuria jokaiselle", "sv": "Flerhändigt tillsammans: pianister likt en orkester (Monikätisesti yhdessä: pianistit kuin orkesteri) – Lastenkulttuuria jokaiselle", "en": "Together, with many hands – pianists like an orchestra – Lastenkulttuuria jokaiselle" }, "short_description": { "fi": "Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.", "sv": "Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.", "en": "The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys." }, "description": { "fi": "<p>Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.</p><p>Itä-Helsingin musiikkiopiston pianistit esiintyvät Lasten oikeuksien päivänä Vuotalon salissa kolmessa konsertissa. <br>Klo 10:00 kutsutaan päiväkotiyleisöä <br>Klo 11:30 kutsutaan koululaisia <br>Klo 18:00 kaikille avoin konsertti<br>Yhden konsertin kesto: noin 40 minuuttia</p><p>Kohderyhmä: yli 4-vuotiaat<br>Kieli: suomi ja musiikinkieli<br>Paikka: Vuotalo</p>", "sv": "<p>Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.</p><p>Pianisterna vid Östra Helsingfors musikinstitut uppträder på Barnkonventionens dag med tre konserter i Nordhusets sal. <br>Klo 10:00 inbjuds daghemspubliken <br>Klo 11:30 inbjuds skoleleverna <br>Kl. 18.00 konserten är öppen för alla<br>Längden på enskild konsert: cirka 40 minuter</p><p>Målgrupp: över 4-åringar<br>Språk: finska och musikspråk<br>Plats: Nordhuset</p>", "en": "<p>The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys.</p><p>The pianists of the East Helsinki Music Institute perform in three separate concerts at Cultural Centre Vuotalo on Children’s Day. <br>10:00 daycare centre audiences invited <br>11:30 school pupil audiences invited <br>18:00 open concert for all ages<br>Duration of one concert: approximately 40 minutes</p><p>Target groups: children over four years<br>Language: Finnish and the language of music<br>Location: Cultural Centre Vuotalo</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66832/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66831", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1434092, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-07T15:14:20.021773Z", "last_modified_time": "2025-08-07T15:14:20.021789Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774944.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434092/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T15:14:19.905985Z", "last_modified_time": "2025-08-07T15:14:20.174079Z", "date_published": null, "start_time": "2025-11-20T09: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C1216382D83BB5903E74F0831E6B4588/Monikatisesti_yhdessa_pianistit_kuin_orkesteri_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C1216382D83BB5903E74F0831E6B4588/Flerhandigt_tillsammans_pianister_likt_en_orkester_Monikatisesti_yhdessa_pianistit_kuin_orkesteri_", "en": "http://www.vuotalo.fi/en/events/event/C1216382D83BB5903E74F0831E6B4588/Together_with_many_hands_pianists_like_an_orchestra_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Monikätisesti yhdessä: pianistit kuin orkesteri – Lastenkulttuuria jokaiselle", "sv": "Flerhändigt tillsammans: pianister likt en orkester (Monikätisesti yhdessä: pianistit kuin orkesteri) – Lastenkulttuuria jokaiselle", "en": "Together, with many hands – pianists like an orchestra – Lastenkulttuuria jokaiselle" }, "short_description": { "fi": "Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.", "sv": "Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.", "en": "The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys." }, "description": { "fi": "<p>Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.</p><p>Itä-Helsingin musiikkiopiston pianistit esiintyvät Lasten oikeuksien päivänä Vuotalon salissa kolmessa konsertissa. <br>Klo 10:00 kutsutaan päiväkotiyleisöä <br>Klo 11:30 kutsutaan koululaisia <br>Klo 18:00 kaikille avoin konsertti<br>Yhden konsertin kesto: noin 40 minuuttia</p><p>Kohderyhmä: yli 4-vuotiaat<br>Kieli: suomi ja musiikinkieli<br>Paikka: Vuotalo</p>", "sv": "<p>Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.</p><p>Pianisterna vid Östra Helsingfors musikinstitut uppträder på Barnkonventionens dag med tre konserter i Nordhusets sal. <br>Klo 10:00 inbjuds daghemspubliken <br>Klo 11:30 inbjuds skoleleverna <br>Kl. 18.00 konserten är öppen för alla<br>Längden på enskild konsert: cirka 40 minuter</p><p>Målgrupp: över 4-åringar<br>Språk: finska och musikspråk<br>Plats: Nordhuset</p>", "en": "<p>The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys.</p><p>The pianists of the East Helsinki Music Institute perform in three separate concerts at Cultural Centre Vuotalo on Children’s Day. <br>10:00 daycare centre audiences invited <br>11:30 school pupil audiences invited <br>18:00 open concert for all ages<br>Duration of one concert: approximately 40 minutes</p><p>Target groups: children over four years<br>Language: Finnish and the language of music<br>Location: Cultural Centre Vuotalo</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66831/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66830", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1434091, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-07T15:14:19.615377Z", "last_modified_time": "2025-08-07T15:14:19.615392Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774943.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434091/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T15:14:19.489668Z", "last_modified_time": "2025-08-07T15:14:19.773249Z", "date_published": null, "start_time": "2025-11-20T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/284662684E70607AFA48D02B25A0EF31/Monikatisesti_yhdessa_pianistit_kuin_orkesteri_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/284662684E70607AFA48D02B25A0EF31/Flerhandigt_tillsammans_pianister_likt_en_orkester_Monikatisesti_yhdessa_pianistit_kuin_orkesteri_", "en": "http://www.vuotalo.fi/en/events/event/284662684E70607AFA48D02B25A0EF31/Together_with_many_hands_pianists_like_an_orchestra_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Monikätisesti yhdessä: pianistit kuin orkesteri – Lastenkulttuuria jokaiselle", "sv": "Flerhändigt tillsammans: pianister likt en orkester (Monikätisesti yhdessä: pianistit kuin orkesteri) – Lastenkulttuuria jokaiselle", "en": "Together, with many hands – pianists like an orchestra – Lastenkulttuuria jokaiselle" }, "short_description": { "fi": "Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.", "sv": "Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.", "en": "The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys." }, "description": { "fi": "<p>Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.</p><p>Itä-Helsingin musiikkiopiston pianistit esiintyvät Lasten oikeuksien päivänä Vuotalon salissa kolmessa konsertissa. <br>Klo 10:00 kutsutaan päiväkotiyleisöä <br>Klo 11:30 kutsutaan koululaisia <br>Klo 18:00 kaikille avoin konsertti<br>Yhden konsertin kesto: noin 40 minuuttia</p><p>Kohderyhmä: yli 4-vuotiaat<br>Kieli: suomi ja musiikinkieli<br>Paikka: Vuotalo</p>", "sv": "<p>Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.</p><p>Pianisterna vid Östra Helsingfors musikinstitut uppträder på Barnkonventionens dag med tre konserter i Nordhusets sal. <br>Klo 10:00 inbjuds daghemspubliken <br>Klo 11:30 inbjuds skoleleverna <br>Kl. 18.00 konserten är öppen för alla<br>Längden på enskild konsert: cirka 40 minuter</p><p>Målgrupp: över 4-åringar<br>Språk: finska och musikspråk<br>Plats: Nordhuset</p>", "en": "<p>The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys.</p><p>The pianists of the East Helsinki Music Institute perform in three separate concerts at Cultural Centre Vuotalo on Children’s Day. <br>10:00 daycare centre audiences invited <br>11:30 school pupil audiences invited <br>18:00 open concert for all ages<br>Duration of one concert: approximately 40 minutes</p><p>Target groups: children over four years<br>Language: Finnish and the language of music<br>Location: Cultural Centre Vuotalo</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66828", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1434090, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-07T15:14:19.124015Z", "last_modified_time": "2025-08-07T15:14:19.124030Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774939.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434090/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T15:14:18.993646Z", "last_modified_time": "2025-08-07T15:14:19.294922Z", "date_published": null, "start_time": "2025-11-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/748EDC7AF73E6EDA1D4EE72043716095/Flow_7_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/748EDC7AF73E6EDA1D4EE72043716095/Flow_7_", "en": "http://www.vuotalo.fi/en/events/event/748EDC7AF73E6EDA1D4EE72043716095/Flow_7_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Flow (7) – Keskiviikkokino", "sv": "Flow (7) – Keskiviikkokino", "en": "Flow (7) – Keskiviikkokino" }, "short_description": { "fi": "Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.", "sv": "Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.", "en": "Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild." }, "description": { "fi": "<p>Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ensi-ilta: 28.03.2025<br>Ikäraja: 7<br>Pituus: 85 min.<br>Kieli: Ei puhuttua dialogia<br>Vapaa pääsy</p>", "sv": "<p>Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.</p><p>En modig katt möter en stor flodvåg. En katt räddas i en båt tillsammans med en glad hund, en trött capybara, en busig lemur och en grinig fågel. Djuren ger sig ut på en äventyrsresa genom storslagen natur och mystiska städer – en ny främmande värld där samarbete och vänskap är av största vikt.</p><p>Den dialogfria filmen accentueras av musik, som delvis är bearbetad i Finland! Den är en fantastisk filmupplevelse för både barn och vuxna och har överösts med stora internationella priser, med en Oscar för bästa animerade film som finaste utmärkelsen.</p><p>Premiär: 28.03.2025<br>Åldersgräns: 7<br>Längd: 85 min.<br>Språk: Ingen talad dialog<br>Obligatorisk förhandsanmälan för grupper på kultus.hel.fi <br>Läromedel om Koulukino: Oppimateriaalit Archive - Koulukino</p>", "en": "<p>Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild.</p><p>A brave cat faces a great tidal wave. The cat is rescued on a boat with a happy dog, a tired capybara, a mischievous lemur and a grumpy bird. The animals embark on an adventurous journey through magnificent nature and mysterious cities – a new alien world in which cooperation and friendship are paramount.</p><p>The dialogue-free film is emphasised by music, some of which was produced in Finland! A fantastic cinematic experience for children and adults alike, the film has been showered with major international awards, crowned with an Oscar for Best Animated Feature.</p><p>Premiere: 28 March 2025<br>Age rating: 7<br>Duration: 85 min<br>Language: No spoken dialogue<br>Groups are required to register in advance at kultus.hel.fi<br>Learning materials from Koulukino in Finnish: Learning materials archive – School Cinema Association</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66828/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 34101, "next": "