Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default 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/?format=api&hide_recurring_children=true&page=49
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=50", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=48" }, "data": [ { "id": "espoo_le:agmk22xy6m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-28T08:07:57.482295Z", "last_modified_time": "2025-05-28T08:07:57.482307Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dcf4ee2b-d759-4961-afc6-7c15835a8e6a.jpg", "cropping": "590,0,1890,1299", "photographer_name": "", "alt_text": "Hevonen laukkaa kukkien ympäröimänä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490266/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-24T11:37:17.408615Z", "last_modified_time": "2025-05-28T08:12:06.976031Z", "date_published": null, "start_time": "2025-06-04T11:30:00Z", "end_time": "2025-06-04T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Elokuvien taikaa - työpaja lapsille", "sv": "Filmens magi - workshop för barn", "en": "The magic of movies - workshop for children" }, "info_url": null, "short_description": { "fi": "Työpajassa lapset oppivat elokuvan historiaa, käsikirjoitusta ja AI:n käyttöä tarinoidensa visualisoinnissa.", "sv": "I workshopen får barnen lära sig mer om filmhistoria, manus och hur man använder AI för att visualisera sina berättelser. ", "en": "In the workshop, children will learn about the history of film, the script and how to use AI to visualise their stories." }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "description": { "fi": "<p>Työpajassa tutkitaan elokuvan historiaa, luodaan oman elokuvan hahmoja, pohditaan missä paikoissa oma elokuva tapahtuu, ja miten elokuvan juoni rakentuu. Visualisoinnin ja tarinan valmiiksikirjoituksen apuna käytetään AI:ta. Isommat diginatiivit voivat työskennellä vaikka omalla puhelimella, tabletilla tai laptopilla.</p><p><br></p><p>Pienimmät voivat saapua työpajaan yhdessä oman aikuisen kanssa.</p><p>10 vuodesta ylöspäin työpajaan on helppo osallistua itsenäisesti.</p><p>Hanke tukee lasten omaa luovuutta ja edistää monimuotoisuuden hyväksyntää yhteistyössä kirjastojen ja elokuvateattereiden kanssa.</p><p>Työpajasta: https://shorturl.at/wbK3n</p>", "sv": "<p>I workshopen får barnen lära sig mer om filmhistoria, manus och hur man använder AI för att visualisera sina berättelser. Språken för workshopen är finska och engelska</p>", "en": "<p>In the workshop, children will learn about the history of film, the script and how to use AI to visualise their stories. The project supports children's own creativity and promotes acceptance of diversity in partnership with libraries and cinemas.</p><p><br></p><p>The workshop will last two hours and can take around 15-20 participants.</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xy6m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22xzla", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-28T08:07:57.482295Z", "last_modified_time": "2025-05-28T08:07:57.482307Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dcf4ee2b-d759-4961-afc6-7c15835a8e6a.jpg", "cropping": "590,0,1890,1299", "photographer_name": "", "alt_text": "Hevonen laukkaa kukkien ympäröimänä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490266/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-24T11:38:23.748302Z", "last_modified_time": "2025-05-28T08:11:36.850238Z", "date_published": null, "start_time": "2025-06-09T09:00:00Z", "end_time": "2025-06-09T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Elokuvien taikaa - työpaja lapsille", "sv": "Filmens magi - workshop för barn", "en": "The magic of movies - workshop for children" }, "info_url": null, "short_description": { "fi": "Työpajassa lapset oppivat elokuvan historiaa, käsikirjoitusta ja AI:n käyttöä tarinoidensa visualisoinnissa.", "sv": "I workshopen får barnen lära sig mer om filmhistoria, manus och hur man använder AI för att visualisera sina berättelser. ", "en": "In the workshop, children will learn about the history of film, the script and how to use AI to visualise their stories." }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "description": { "fi": "<p>Työpajassa tutkitaan elokuvan historiaa, luodaan oman elokuvan hahmoja, pohditaan missä paikoissa oma elokuva tapahtuu, ja miten elokuvan juoni rakentuu. Visualisoinnin ja tarinan valmiiksikirjoituksen apuna käytetään AI:ta. Isommat diginatiivit voivat työskennellä vaikka omalla puhelimella, tabletilla tai laptopilla.</p><p><br></p><p>Pienimmät voivat saapua työpajaan yhdessä oman aikuisen kanssa.</p><p>10 vuodesta ylöspäin työpajaan on helppo osallistua itsenäisesti.</p><p>Hanke tukee lasten omaa luovuutta ja edistää monimuotoisuuden hyväksyntää yhteistyössä kirjastojen ja elokuvateattereiden kanssa.</p><p>Työpajasta:<a> </a><a href=\"https://shorturl.at/wbhK3n\">ttps://shorturl.at/wbhK3n</a></p>", "sv": "<p>I workshopen får barnen lära sig mer om filmhistoria, manus och hur man använder AI för att visualisera sina berättelser. Språken för workshopen är finska och engelska</p>", "en": "<p>In the workshop, children will learn about the history of film, the script and how to use AI to visualise their stories. The project supports children's own creativity and promotes acceptance of diversity in partnership with libraries and cinemas.</p><p><br></p><p>The workshop will last two hours and can take around 15-20 participants.</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xzla/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22xzxy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490284, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T07:25:34.405273Z", "last_modified_time": "2025-05-28T07:25:34.405288Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/9db3cb67-61ee-42c1-b27c-8d50634d1d05.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Kuvassa on luennon vetäjä Eino Uikkanen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490284/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-28T07:25:55.603217Z", "last_modified_time": "2025-05-28T07:25:55.603229Z", "date_published": null, "start_time": "2025-11-03T16:00:00Z", "end_time": "2025-11-03T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Eino Uikkasen tekoälyesitelmä" }, "info_url": null, "short_description": { "fi": "Tervetuloa mukaan kuuntelemaan, kysymään ja keskustelemaan tekoälystä!" }, "location_extra_info": { "fi": "Salonki" }, "description": { "fi": "<p>Tekoäly on enenevässä määrin tulossa osaksi meidän kaikkien arkea, osin näkyvänä ja osin niin, että emme sitä edes huomaa. Tämän vuoksi onkin tärkeää, että me kaikki – iästä, koulutuksesta tai ammatista riippumatta – saamme luotettavaa ja selkeää tietoa tästä kehittyvästä alueesta.</p><p>Eino Uikkasen esitelmä tarjoaa tekoälyyn kattavan katsauksen, joka avaa aihetta niin vasta-alkajille kuin asiaan aiemmin perehtyneillekin. Kun tieto tekoälyn perusteista kasvaa, kasvaa myös ymmärrys sen todellisista mahdollisuuksista ja rajoituksista hälventäen turhaa mystiikkaa ja virheellisiä käsityksiä tekoälystä.</p><p>Esitelmä ei jätä ketään ulkopuolelle, vaan se käsittelee tekoälyä yhteisenä intressinä. Tekoäly tarjoaa valtavia mahdollisuuksia ja samalla nostaa merkittäviä riskejä, joita emme vielä täysin hahmota. Siksi onkin viisasta pysyä ajan tasalla tekoälyn kehityksessä sekä valmistautua sen tuomiin haasteisiin ja mahdollisuuksiin.</p><p>Tekoäly on joka tapauksessa tulossa rytinällä ja voittajia ovat ne, jotka osaavat varautua siihen niin hyvässä kuin pahassa.</p><p>Tervetuloa mukaan kuuntelemaan, kysymään ja keskustelemaan tekoälystä!</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22xzxy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22x2ei", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz654q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65wq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz664e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7agi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/8H6Afi7xS", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490285, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:07:26.467139Z", "last_modified_time": "2025-05-28T06:07:26.467154Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/bc7e15cb-fab1-4da3-b421-5e7e32b0e8b0.jpg", "cropping": "262,0,938,675", "photographer_name": "Espoon kirjastoautot", "alt_text": "Saippuakuplia ja kirjastoauto Välkky kesäisessä maisemassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-28T06:39:29.018530Z", "last_modified_time": "2025-05-28T07:18:06.122153Z", "date_published": "2025-05-28T05:56:00Z", "start_time": "2025-07-03T07:00:00Z", "end_time": "2025-07-25T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesädösä Välkky", "sv": "Sommarbussen Välkky", "en": "Summer bus Välkky" }, "info_url": null, "short_description": { "fi": "Espoon kirjasto- ja kulttuuriauto kiertää ympäri Espoota heinäkuussa. Kirjastoautosta löydät kokoelman kirjoja ja muuta aineistoa kaiken ikäisille! ", "sv": "Esbobibliotekens bok- och kulturbus Välkky turnerar i Esbo under sommaren. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo's library and culture bus Välkky is touring Espoo in the summer. There are books for all ages and fun activites for families with children!" }, "location_extra_info": { "fi": "Katso kuvauksesta tarkka aikataulu", "sv": "Se den detaljerade tidtabellen i beskrivningen", "en": "See the detailed schedule in the description" }, "description": { "fi": "<p>Espoon kirjasto- ja kulttuuriauto kiertää ympäri Espoota heinäkuussa. Kirjastoautosta löydät kokoelman kirjoja ja muuta aineistoa kaiken ikäisille!</p><p>Tule puhaltelemaan saippuakuplia ja lainaamaan luettavaa kesäksi!</p>", "sv": "<p>Esbobibliotekens bok- och kulturbus Välkky turnerar i Esbo under sommaren. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!</p>", "en": "<p>Espoo's library and culture bus Välkky is touring Espoo in the summer. There are books for all ages and fun activites for families with children!</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x2ei/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66281", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:16.180113Z", "last_modified_time": "2025-05-09T13:54:16.180129Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767784.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721915/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-09T13:54:16.085268Z", "last_modified_time": "2025-05-28T07:12:43.250719Z", "date_published": null, "start_time": "2025-08-06T13:00:00Z", "end_time": "2025-08-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla", "sv": "Skeittipakus sommarskateboardskola i Stoa", "en": "Skateboard Truck summer school at Stoa square" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/8EA485AEC67F1EBC84CC2B45E5803CE4/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla", "sv": "http://www.stoa.fi/sv/evenemang/event/8EA485AEC67F1EBC84CC2B45E5803CE4/Skeittipakus_sommarskateboardskola_i_Stoa", "en": "http://www.stoa.fi/en/events/event/8EA485AEC67F1EBC84CC2B45E5803CE4/Skateboard_Truck_summer_school_at_Stoa_square" }, "short_description": { "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.", "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.", "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck." }, "location_extra_info": null, "description": { "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>", "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>", "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66280", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721914, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:15.768467Z", "last_modified_time": "2025-05-09T13:54:15.768487Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767783.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721914/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-09T13:54:15.665913Z", "last_modified_time": "2025-05-28T07:12:43.095157Z", "date_published": null, "start_time": "2025-08-05T13:00:00Z", "end_time": "2025-08-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla", "sv": "Skeittipakus sommarskateboardskola i Stoa", "en": "Skateboard Truck summer school at Stoa square" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B1E7A800CBE4E442C25060422ED5A1E3/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla", "sv": "http://www.stoa.fi/sv/evenemang/event/B1E7A800CBE4E442C25060422ED5A1E3/Skeittipakus_sommarskateboardskola_i_Stoa", "en": "http://www.stoa.fi/en/events/event/B1E7A800CBE4E442C25060422ED5A1E3/Skateboard_Truck_summer_school_at_Stoa_square" }, "short_description": { "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.", "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.", "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck." }, "location_extra_info": null, "description": { "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>", "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>", "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66280/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66279", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721912, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:14.485207Z", "last_modified_time": "2025-05-09T13:54:14.485225Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767782.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721912/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-09T13:54:14.391477Z", "last_modified_time": "2025-05-28T07:12:41.293469Z", "date_published": null, "start_time": "2025-06-25T13:00:00Z", "end_time": "2025-06-25T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla", "sv": "Skeittipakus sommarskateboardskola i Stoa", "en": "Skateboard Truck summer school at Stoa square" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3017219281E28DC7CD6161BC4754915B/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla", "sv": "http://www.stoa.fi/sv/evenemang/event/3017219281E28DC7CD6161BC4754915B/Skeittipakus_sommarskateboardskola_i_Stoa", "en": "http://www.stoa.fi/en/events/event/3017219281E28DC7CD6161BC4754915B/Skateboard_Truck_summer_school_at_Stoa_square" }, "short_description": { "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.", "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.", "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck." }, "location_extra_info": null, "description": { "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>", "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>", "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66279/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66278", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:14.077360Z", "last_modified_time": "2025-05-09T13:54:14.077384Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767781.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721911/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-09T13:54:13.983382Z", "last_modified_time": "2025-05-28T07:12:41.170053Z", "date_published": null, "start_time": "2025-06-24T13:00:00Z", "end_time": "2025-06-24T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla", "sv": "Skeittipakus sommarskateboardskola i Stoa", "en": "Skateboard Truck summer school at Stoa square" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F4E7686A82EC95B4DB41955A86FE0E5B/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla", "sv": "http://www.stoa.fi/sv/evenemang/event/F4E7686A82EC95B4DB41955A86FE0E5B/Skeittipakus_sommarskateboardskola_i_Stoa", "en": "http://www.stoa.fi/en/events/event/F4E7686A82EC95B4DB41955A86FE0E5B/Skateboard_Truck_summer_school_at_Stoa_square" }, "short_description": { "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.", "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.", "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck." }, "location_extra_info": null, "description": { "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.<br>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>", "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>", "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66278/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66277", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721910, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:13.242698Z", "last_modified_time": "2025-05-09T13:54:13.242724Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767780.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721910/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-09T13:54:13.146509Z", "last_modified_time": "2025-05-28T07:12:40.839022Z", "date_published": null, "start_time": "2025-06-18T13:00:00Z", "end_time": "2025-06-18T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla", "sv": "Skeittipakus sommarskateboardskola i Stoa", "en": "Skateboard Truck summer school at Stoa square" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DB97DCDEB8446F0C0C390EF3A93D0159/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla", "sv": "http://www.stoa.fi/sv/evenemang/event/DB97DCDEB8446F0C0C390EF3A93D0159/Skeittipakus_sommarskateboardskola_i_Stoa", "en": "http://www.stoa.fi/en/events/event/DB97DCDEB8446F0C0C390EF3A93D0159/Skateboard_Truck_summer_school_at_Stoa_square" }, "short_description": { "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.", "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.", "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck." }, "location_extra_info": null, "description": { "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen/kaiken kielinen</p>", "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>", "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66277/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66276", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:12.714606Z", "last_modified_time": "2025-05-09T13:54:12.714625Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767779.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-09T13:54:12.598844Z", "last_modified_time": "2025-05-28T07:12:40.585631Z", "date_published": null, "start_time": "2025-06-17T13:00:00Z", "end_time": "2025-06-17T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla", "sv": "Skeittipakus sommarskateboardskola i Stoa", "en": "Skateboard Truck summer school at Stoa square" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BC59D837504F7CA003515659A1BF0B5/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla", "sv": "http://www.stoa.fi/sv/evenemang/event/4BC59D837504F7CA003515659A1BF0B5/Skeittipakus_sommarskateboardskola_i_Stoa", "en": "http://www.stoa.fi/en/events/event/4BC59D837504F7CA003515659A1BF0B5/Skateboard_Truck_summer_school_at_Stoa_square" }, "short_description": { "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.", "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.", "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck." }, "location_extra_info": null, "description": { "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja </b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista ja hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>", "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>", "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66276/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yhsu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x2rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x3k4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x4em/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x454/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x5ye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x6si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x7ma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yahy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ybbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yb3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ycwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ydpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yeji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yfdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yf6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ygxu/?format=api" } ], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-05-28T06:52:31.443885Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-28T06:57:26.341473Z", "last_modified_time": "2025-05-28T06:57:26.341486Z", "date_published": null, "start_time": "2025-09-05T15:00:00Z", "end_time": "2025-12-19T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "sv": "Ukrainska barnteaterklubben Masker", "en": "Ukrainian Children's Theater Masks" }, "info_url": null, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näyttää.", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yi24", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490288, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-27T20:16:29.910491Z", "last_modified_time": "2025-05-27T20:16:29.910507Z", "name": "Kukkia", "url": "https://tapahtumasyotto.espoo.fi/media/images/275f10ea-db18-4d02-a4f7-3f2f52933e35.jpg", "cropping": "255,0,1335,1080", "photographer_name": "Aleksi Tonteri", "alt_text": "Kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490288/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T20:24:03.860413Z", "last_modified_time": "2025-05-27T20:24:03.860434Z", "date_published": "2025-05-28T05:00:00Z", "start_time": "2025-06-24T11:00:00Z", "end_time": "2025-06-24T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "KESÄTERASSI: PRIDE-KUKKAPAJA", "sv": "SOMMARTERRASS: PRIDE-BLOMSVERKSTAD", "en": "SUMMER TERRACE: PRIDE FLOWER WORKSHOP" }, "info_url": null, "short_description": { "fi": "Kukkaseppeleiden tekoa", "sv": "Att göra blomsterkransar", "en": "Making flower wreaths" }, "location_extra_info": { "fi": "Sellon kesäterassi, Viaporintori", "sv": "Sellon kesäterassi, Viaporintori", "en": "Sellon kesäterassi, Viaporintori" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Pride-viikkoa yhdessä Sellon kesätorille. Teemme kukkaseppeleitä kirjastolaisten ohjeistuksella. Kukkia on rajallinen määrä.</p><p>Tapahtuma on maksuton ja ikärajaton.</p><p>Espoon kaupunki on virallinen Working with Pride -kumppani, joka edistää yhdenvertaisuutta ja tasa-arvoa Helsinki Priden kanssa.</p>", "sv": "<p>Välkommen att fira Pride veckan tillsammans på Sello Summer Market. Vi kommer att göra blomsterkransar med instruktioner från bibliotekarier. Det finns ett begränsat antal blommor.</p><p><br></p><p>Evenemanget är gratis och öppet för alla åldrar.</p><p><br></p><p>Esbo stad är en officiell Working with Pride-partner som främjar jämlikhet med Helsinki Pride.</p>", "en": "<p>Welcome to celebrate Pride Week together at the Sello Summer Market. We will make flower wreaths with the guidance of librarians. There is a limited number of flowers.</p><p><br></p><p>The event is free of charge and there is no age limit.</p><p><br></p><p>The City of Espoo is an official Working with Pride partner, promoting equality and equity with Helsinki Pride.</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yi24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66204", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 700130, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-06T14:13:53.987919Z", "last_modified_time": "2025-05-06T14:13:53.987936Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764158.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/700130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-05-06T14:13:53.839162Z", "last_modified_time": "2025-05-27T13:13:59.618559Z", "date_published": null, "start_time": "2025-06-06T12:00:00Z", "end_time": "2025-06-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Krump-työpaja: Eloquence of the imaginary – The URB 25 Festival", "sv": "Krump-workshop: Eloquence of the imaginary – The URB 25 Festival", "en": "Krump Workshop: Eloquence of the imaginary – The URB 25 Festival" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DBE2E7C8E6F952A1C0453144637C494E/Krump-tyopaja_Eloquence_of_the_imaginary", "sv": "http://www.stoa.fi/sv/evenemang/event/DBE2E7C8E6F952A1C0453144637C494E/Krump-workshop_Eloquence_of_the_imaginary", "en": "http://www.stoa.fi/en/events/event/DBE2E7C8E6F952A1C0453144637C494E/Krump_Workshop_Eloquence_of_the_imaginary" }, "short_description": { "fi": "Ainutlaatuinen tilaisuus päästä tutustumaan krumpiin Nachin johdolla!", "sv": "En unik möjlighet att bekanta sig med krump under ledning av Nach!", "en": "Krump is the acronym for Kingdom Radically Uplifted Mighty Praise." }, "location_extra_info": null, "description": { "fi": "<p>Ainutlaatuinen tilaisuus päästä tutustumaan krumpiin Nachin johdolla!</p><p>Krump on lyhenne sanoista Kingdom Radically Uplifted Mighty Praise, joka sai alkunsa Los Angelesin köyhissä kaupunginosissa 2000-luvulla. Krump on tanssi, joka on väkivallaton huolimatta nopeista liikkeistään ja aggressiivisesta muodostaan. Se pyrkii ilmentämään ”elämää”.</p><p>Krump on kuin tanssittu gospel, urbaani tanssi, joka vaatii energian hallintaa ja itsensä ilmaisua. Tanssi yhdistää irtipäästämisen, hallinnan ja liikkeen eristämisen impulssista vaikutukseen. Krump-liike kutsuu kokeilemaan erilaisia kehon tiloja, ja jossa jokainen liike on merkityksellinen.</p><p>Työpajan vetää ranskalainen tanssija-koreografi <b>Nach,</b> jonka teos Cellule nähdään URB 25 -festivaalilla kahden sooloteoksen näytöksessä to 5.6. klo 19 & ka 7.6. klo 15.</p><p><b>Työpajassa opetetaan</b><br>• käyttämään kehoa tarinankerrontaan Krumpin perusteita, asentoja, liikkeen laatua ja kasvon liikkeitä käyttämällä<br>• vuorovaikutusta solistin ja ryhmän välillä<br>• tutkimaan erilaisia Krump-asentoja ja liukumista niiden välillä, sekä karaktääriä ja sen ilmaisurekisteriä<br>• käyttämään hengitystä ja ääntä scoren strukturoimiseksi</p><p><b>Kenelle?</b><br>Työpaja sopii kaikille krumpista kiinnostuneille, jotka ovat jo jonkin verran harrastaneet tanssia.<br>Varaudu työpajaan tasapohjaisilla lenkkareilla, liikkumiseen soveltuvalla vaatetuksessa ja vesipullolla.</p><p>Ilmoittaudu työpajaan ma 2.6.2025 mennessä tästä <u><a href=\"https://link.webropolsurveys.com/EP/262B9106C2DD7FDA\">tästä linkistä</a></u></p><p>Työpajassa on rajattu osallistujamäärä.</p><p>Kieli: englanti & ranska<br>Ikäsuositus: 15+</p><p><b>Nach</b> on ranskalainen tanssija ja koreografi, joka löysi krumpin 22-vuotiaana katsottuaan David Lachapellen ohjaaman Rize-dokumentin. Pian sen jälkeen hän alkoi tutkia lavaa ja luovaa prosessia, tehden yhteistyötä taiteilijoiden kuten koreografi Heddy Maalemin ja muusikoiden Koki Nakano ja Ruth Rosenthalin kanssa. Elokuvamaailmassa hän työskenteli Kourtrajmé-kollektiivin kanssa projektissa, joka käsitteli välittämistä, kehoa ja asennon ilmaisua.</p><p>Vuonna 2017 hän loi ensimmäisen soolonsa, Cellule. Merkityksellisten tarinoiden kertojana Nachin työ yhdistää tanssia, kuvataidetta ja muita taidemuotoja. Hänen työnsä kyseenalaistavat usein feminiinisyyttä ja identiteettiä.</p>", "sv": "<p>En unik möjlighet att bekanta sig med krump under ledning av Nach!</p><p>Krump är en förkortning av orden Kingdom Radically Uplifted Mighty Praise som uppstod i Los Angeles fattigkvarter på 2000-talet. Krump är en dans som är icke-våldsam trots sina snabba rörelser och aggressiva former. Den strävar efter att uttrycka ”livet”.</p><p>Krump är som en dansad gospel, en urban dans som kräver kontroll över energi och självuttrycket. Dansen förenar lösgöring, manövrering och isolering av rörelse från impuls till effekt. Krump-rörelserna lockar till att pröva på olika kroppslägen där varje rörelse är av vikt.</p><p>Workshoppen leds av en fransk dansare-koreograf Nach vars verk Cellule ses på URB 25-festivalen på en föreställning med två solcellsverk to 5.6 kl. 19 & lö 7.6 kl. 15.</p><p><b>I workshopparna undervisas i</b><br>• konsten använda kroppen till att förtälja med hjälp av Krumps grunder, attityder, rörelsens kvalitet och ansiktsrörelser<br>• kommunikation mellan solister och grupp<br>• undersöka olika Krump-positioner och hur man glider mellan dem samt karaktärer och dess uttrycksregister<br>• andning och ljud för att strukturera scoren</p><p><b>För vem?</b><br>Workshopen lämpar sig för alla som är intresserade av krump och som redan i någon mån har utövat dans.<br>Förbered dig på workshoppen med skor som har en platt sula, kläder som lämpar sig för rörlighet och vattenflaska.</p><p>Anmäl dig till workshoppen senast måndag 2.6.2025 <u><a href=\"https://link.webropolsurveys.com/EP/262B9106C2DD7FDA\">via denna länk</a></u></p><p>Workshopparna har ett begränsat deltagarantal.</p><p>Språk: engelska & franska<br>Åldersrekommendation: 15+</p><p>Nach är en fransk dansare koreograf som hittade en krump när hon var 22 år gammal efter att ha sett Rize-dokumentären av David Lachapelle. Kort därefter började han undersöka scenen och den kreativa processen och samarbeta med konstnärer såsom koreograf Heddy Maalem och musikerna Koki Nakano och Ruth Rosenthal. I filmvärlden arbetade hon med Kourtrajmé-kollektivet i ett projekt som gällde omsorg, kropp och uttryck av ställningar.</p><p>År 2017 skapade hon sitt första solo, Cellule. Som berättelse om betydelsefulla berättelser förenar Nachs arbete dans, bildkonst och andra konstformer. Hennes arbete ifrågasätter ofta femininitet och identitet.</p>", "en": "<p>Krump is the acronym for Kingdom Radically Uplifted Mighty Praise.</p><p>Krump is a dance that originated in the poor neighbourhoods of Los Angeles in the 2000s. This dance, which is non-violent despite its fast movements and aggressive appearance, aims to be a dance representing “life”.</p><p>A veritable danced gospel, krump is an urban dance with a claim and an outlet: an exercise in energy control, a return to oneself to embody a character, between letting go, control and isolation of movement, from impulse to impact. A highly codified dance, the krump movement calls for people to speak out within a circle and to experiment with different states of the body. Each movement is inhabited.</p><p>The workshop is led by French dancer-choregrapher Nach, who’s performance Cellule is part of the URB 25 festival programme in Thu 5 June at 19.00 & Sat 7.6. 15.00.</p><p><b>At the workshop you’ll learn how to:</b><br>• Use the body to tell a story, using the fundamentals of Krump dance, postures, movement<br>• Create links between a lead and his chorus. Based on the experience of the Krump circle<br>• Studying different Krump postures and sliding between them. Study the character and its range<br>• Develope different types of skill and understand how to use themUse breathing and voice to structure your body score</p><p><b>To whom?</b><br>Persons interested in krump with some dance experience already.<br>Equipments needed: flat-soled trainers, flexible clothing and a water bottle.</p><p>Please registrate yourself to the workshop by Mon 2 June, 2025 <u><a href=\"https://link.webropolsurveys.com/EP/262B9106C2DD7FDA\">from this link</a></u></p><p>The workshop has limited amount for participants.</p><p>Language: English & French<br>Age recommendation: 15+</p><p><b>Nach</b> is a French dancer and choreographer, who discovered krump at 22 after watching Rize, David Lachapelle’s documentary. She soon began exploring the stage and the creative process, collaborating with artists like choreographer Heddy Maalem and musicians Koki Nakano and Ruth Rosenthal. In cinema, she worked with the Kourtrajmé collective on a project about transmission, body, and posture.</p><p>In 2017, she created her first solo, Cellule, followed by Beloved Shadows in 2019 after a stay in Japan, where she explored Noh theatre, bunraku, and butoh dance. Committed to telling meaningful stories, Nach’s work blends dance, visual arts, and other artforms. Her works often interrogates femaleness and identity.</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66204/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65568", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T12:16:44.562680Z", "last_modified_time": "2025-02-04T12:16:44.562699Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765330.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T12:16:44.535466Z", "last_modified_time": "2025-05-27T13:13:54.982475Z", "date_published": null, "start_time": "2025-05-23", "end_time": "2025-06-25", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Nuorten Taide Nyt 2025 – Vapaus", "sv": "Nuorten Taide Nyt 2025 – Vapaus (Frihet)", "en": "Nuorten Taide Nyt 2025 (Youth Art Now) – Freedom" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/96B442633F6CD3D0CADEB5C39CEF36E1/Nuorten_Taide_Nyt_2025_Vapaus", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/96B442633F6CD3D0CADEB5C39CEF36E1/Nuorten_Taide_Nyt_2025_Vapaus_Frihet_", "en": "http://www.kanneltalo.fi/en/events/event/96B442633F6CD3D0CADEB5C39CEF36E1/Nuorten_Taide_Nyt_2025_Youth_Art_Now_Freedom" }, "short_description": { "fi": "Helsingin nuorisopalvelut järjestää pääkaupunkiseudun 15–25-vuotiaiden nuorten yhteisnäyttelyn, jonka teemana on vapaus.", "sv": "Helsingfors ungdomstjänster ordnar en gemensam utställning för 15–25-åriga unga i huvudstadsregionen, där temat är frihet.", "en": "Helsinki Youth Services is organising a joint exhibition for young people aged 15–25 in the Helsinki Metropolitan Area, which will focus on the theme of freedom." }, "location_extra_info": null, "description": { "fi": "<p>Helsingin nuorisopalvelut järjestää pääkaupunkiseudun 15–25-vuotiaiden nuorten yhteisnäyttelyn, jonka teemana on vapaus.</p><p>Näyttelyn teoksissa nuoret käsittelevät aihetta omista lähtökohdistaan käsin itse valitsemillaan tekniikoilla.</p><p>Avoimet avajaiset to 22.5.2025 klo 17–19. Lämpimästi tervetuloa!</p><p>Paikka: Kanneltalon Galleria</p><p>Vapaa pääsy</p>", "sv": "<p>Helsingfors ungdomstjänster ordnar en gemensam utställning för 15–25-åriga unga i huvudstadsregionen, där temat är frihet.</p><p>I utställningens verk behandlar de unga ämnet ur sina egna utgångspunkter med valfria tekniker.</p><p>Öppen vernissage to 22.5.2025 kl. 17–19. Varmt välkommen!</p>", "en": "<p>Helsinki Youth Services is organising a joint exhibition for young people aged 15–25 in the Helsinki Metropolitan Area, which will focus on the theme of freedom.</p><p>The works in this exhibition will be created by young people using the techniques they have chosen to approach the subject.</p><p>Public opening on Thu, 22 May 2025, from 17:00–19:00. You are very warmly welcome!</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65568/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22yq4u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yjhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yjtu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ykay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ykmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ykya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yldu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ylpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yl24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ymga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ymru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ym7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ynpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yocy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yowa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ypcm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ypoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ypzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yqfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yqq4/?format=api" } ], "images": [ { "id": 151467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-15T12:54:12.340662Z", "last_modified_time": "2024-06-15T12:54:12.340682Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielitupa.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kielitupa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T13:08:36.025054Z", "last_modified_time": "2025-05-27T13:08:36.025064Z", "date_published": null, "start_time": "2025-08-07T11:00:00Z", "end_time": "2025-12-18T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kielitupa - ohjausta ja neuvontaa suomenkielen opiskeluun", "sv": "Kielitupa handledning och råd om hur man lär sig finska", "en": "Kielitupa - guidance and tips for Finnish studies" }, "info_url": null, "short_description": { "fi": "Kielituvassa voit saada opintoneuvontaa. Opettaja \nauttaa sinua löytämään sopivan suomen kielen kurssin.", "sv": "På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.", "en": "In Kielitupa you can get study counselling. The teacher will \nhelp you to find the right Finnish course." }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Kielituvassa voit saada opintoneuvontaa. Opettaja </p><p>auttaa sinua löytämään sopivan suomen kielen kurssin.</p>", "sv": "<p>På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.</p>", "en": "<p>In Kielitupa you can get study counselling. The teacher will </p><p>help you to find the right Finnish course.</p>" }, "provider": { "fi": "Espoon työväenopisto", "en": "Espoo adult education centre" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yq4u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66321", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 746770, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T13:14:03.855503Z", "last_modified_time": "2025-05-12T13:14:03.855532Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766255.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/746770/?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-05-12T13:14:03.772304Z", "last_modified_time": "2025-05-27T11:14:59.948435Z", "date_published": null, "start_time": "2025-06-18T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haukku Hippeläisen seikkailuorkesteri esittää: Haukun Meriseikkailu", "sv": "Haukku Hippeläinens äventyrsorkester förevisar: Haukkus Sjöäventyr", "en": "Haukku Hippeläisen seikkailuorkesteri presents: Haukun Meriseikkailu" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/7D9010E187BBB266FE113B82B2068C45/Haukku_Hippelaisen_seikkailuorkesteri_esittaa_Haukun_Meriseikkailu", "sv": "http://www.espanlava.fi/sv/evenemang/event/7D9010E187BBB266FE113B82B2068C45/Haukku_Hippelainens_aventyrsorkester_forevisar_Haukkus_Sjoaventyr", "en": "http://www.espanlava.fi/en/events/event/7D9010E187BBB266FE113B82B2068C45/Haukku_Hippelaisen_seikkailuorkesteri_presents_Haukun_Meriseikkailu" }, "short_description": { "fi": "Haukun meriseikkailussa Meri Suola on kadottanut sirottimensa ja tarvitsee kipeästi Haukku Hippeläisen apua sen etsimisessä veden alta.", "sv": "I Haukkus sjöäventyr har Havs Salt förlorat sin ströare och behöver Haukku Hippeläinens hjälp för att leta efter den under vattenytan.", "en": "In ‘Haukun meriseikkailu’ (Haukku’s sea adventure) Meri Suola has lost their salt shaker and urgently needs Haukku Hippeläinen’s help in finding it under water." }, "location_extra_info": null, "description": { "fi": "<p>Haukun meriseikkailussa Meri Suola on kadottanut sirottimensa ja tarvitsee kipeästi Haukku Hippeläisen apua sen etsimisessä veden alta.</p><p>Tarina kertoo toisten auttamisesta ja siitä, että kaikille sattuu välillä virheitä, mikä ei ole kauhean vakavaa.</p><p>Haukun meriseikkailu on vuorovaikutteinen ja vauhdikas, alle kouluikäisille lapsille ja koko perheelle suunnattu musiikkiteatteriesitys. Konsertissa esitellään erilaisten eläinhahmojen kautta useita harvinaisiakin soittimia. Yleisö pidetään mukana menossa muskarista tutuilla työtavoilla ja uudella sekä tutummalla lastenmusiikilla.</p><p>Haukku Hippeläisen seikkailuorkesteri on kolmen lastenmusiikin konkarin uusi kokoonpano. Jäsenet ovat Erno Haukkala, Elina Hakala ja Eerika Kosonen.</p><p>Kieli: suomi</p>", "sv": "<p>I Haukkus sjöäventyr har Havs Salt förlorat sin ströare och behöver Haukku Hippeläinens hjälp för att leta efter den under vattenytan.</p><p>Historien handlar om att hjälpa andra och att alla ibland gör misstag, vilket inte är särskilt allvarligt.</p><p>Haukkus Sjöäventyr är en interaktiv musikteaterföreställning som riktar sig till barn under skolåldern och hela familjen. I konserten presenteras via olika djurfigurer också flera sällsynta instrument. Publiken deltar i svängarna med hjälp av bekanta arbetssätt från musikskolorna och med ny och mer bekant barnmusik.</p><p>Haukku Hippeläinens äventyrorkester är den nya sammansättningen för tre erfarna barnmusiker. Medlemmarna är Erno Haukkala, Elina Hakala och Eerika Kosonen.</p><p>Språk: finska</p>", "en": "<p>In ‘Haukun meriseikkailu’ (Haukku’s sea adventure) Meri Suola has lost their salt shaker and urgently needs Haukku Hippeläinen’s help in finding it under water.</p><p>The story is about helping others and that everyone makes mistakes sometimes, and it is all not that serious.</p><p>‘Haukun meriseikkailu’ is an interactive and active musical theatre performance intended for children under the age of seven and the entire family. Various animal characters will present different musical instruments during the concert, some of them quite extraordinary. Audience engagement is maintained by using musical playschool methods and new and familiar children’s music.</p><p>Haukku Hippeläisen seikkailuorkesteri is a new band comprising three children’s music veterans. The members are Erno Haukkala, Elina Hakala and Eerika Kosonen.</p><p>Language: Finnish</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ys2m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:lintuvaarantie_2_espoo/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yria/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yryi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ysia/?format=api" } ], "images": [ { "id": 1490289, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T08:12:54.347520Z", "last_modified_time": "2025-05-22T12:55:09.987866Z", "name": "Sporttia lomalla!", "url": "https://tapahtumasyotto.espoo.fi/media/images/80094bc7-2703-4ed1-b9b2-7ea1bc4d6f72.png", "cropping": "113,0,565,452", "photographer_name": "", "alt_text": "Kuvituskuva kukkasista.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490289/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-14T10:29:18.132029Z", "last_modified_time": "2025-05-27T10:26:21.797271Z", "date_published": null, "start_time": "2025-06-04T09:00:00Z", "end_time": "2025-06-06T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesäleiri 14-28-vuotiaille" }, "info_url": null, "short_description": { "fi": "Päiväleiri Espoon Tyttöjen Talolla" }, "location_extra_info": { "fi": "Espoon Tyttöjen Talo, 4.krs. Esteetön sisäänkäynti on Sointu-talon A-rapusta." }, "description": { "fi": "<p>Päiväleiri 14-28- vuotiaille yhteistyössä Espoon kirjaston kanssa. Leirillä on tarjolla välipalaa ja kivaa tekemistä. Mukaan mahtuu 20 nuorta. Ilmoittautumiset viim. 30.5,</p><p>p. 0505128184/ Päivi tai 0406368116/ Auli. Voit jättää myös viestin!</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ys2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22y7aq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ytne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ytze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yueq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yuqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yu4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yvhm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yvte/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yv7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ywla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ywwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yxcm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yxoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yxzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yyfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yyqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yy4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yziy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yzum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yz7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y2le/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y2wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y3ce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y3nm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y3zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y4fe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y4rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y454/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y5ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y5xm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y6fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y6ti/?format=api" } ], "images": [ { "id": 1490290, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T10:01:13.127735Z", "last_modified_time": "2025-05-27T10:01:13.127745Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/d31ab2ae-9e1f-4419-88b0-0e6aead10862.jpg", "cropping": "288,0,2024,1736", "photographer_name": "", "alt_text": "Kuvassa lapsen käsi kokeilee maagista laatikkoa, josta nousee erivärisiä valoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490290/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T10:10:10.514202Z", "last_modified_time": "2025-05-27T10:10:10.514211Z", "date_published": null, "start_time": "2025-07-01T05:00:00Z", "end_time": "2025-07-31T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aistinurkkaus", "sv": "Sensorisk hörna", "en": "Sensory corner" }, "info_url": null, "short_description": { "fi": "Aistinurkkaus", "sv": "Sensorisk hörna", "en": "Sensory corner" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "description": { "fi": "<p>Heinäkuun ajaksi Jaminurkka muuntautuu aistinurkkaukseksi. Aistinurkkauksesta löydät monenlaista kokeiltavaa ja arvoituksia. Osaatko yhdistää aistilaatikoissa olevat esineet ja tuoksut esillä oleviin kirjoihin?</p>", "sv": "<p>Under juli månad kommer Jaminurkka att förvandlas till en sensorisk hörna. I den sensoriska hörnan hittar du alla möjliga experiment och pussel att prova. Kan du matcha föremålen och dofterna i de sensoriska lådorna med böckerna i utställningen?</p>", "en": "<p>For the month of July, the Jaminurkka will be transformed into a sensory corner. In the Sensory Corner, you'll find all sorts of experiments and puzzles to try. Can you match the objects and smells in the sensory boxes with the books on display?</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22y7aq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66490", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 868293, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T09:14:59.964296Z", "last_modified_time": "2025-05-27T09:14:59.964317Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774144.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/868293/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T09:14:59.765971Z", "last_modified_time": "2025-05-27T09:15:00.218173Z", "date_published": null, "start_time": "2025-08-15T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Teatteri Nirvana: HATKAT", "sv": "Teatteri Nirvana: HATKAT (Sparken)", "en": "Teatteri Nirvana: HATKAT" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F2B21003CBB49D4F549E238D7BC0B64D/Teatteri_Nirvana_HATKAT", "sv": "http://www.stoa.fi/sv/evenemang/event/F2B21003CBB49D4F549E238D7BC0B64D/Teatteri_Nirvana_HATKAT_Sparken_", "en": "http://www.stoa.fi/en/events/event/F2B21003CBB49D4F549E238D7BC0B64D/Teatteri_Nirvana_HATKAT" }, "short_description": { "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.", "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.", "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour." }, "location_extra_info": null, "description": { "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: n. 60 min, ei väliaikaa.<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-stoa-20301273/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Längd: 60 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-stoa-20301273/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 60 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-stoa-20301273/?affiliate=FSF\"> HERE</a></u></p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66490/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66120", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/urb-25-festivaali-kaksi-sooloa-3872625/", "sv": "https://www.lippu.fi/artist/stoa/urb-25-festivaali-kaksi-sooloa-3872625/", "en": "https://www.lippu.fi/artist/stoa/urb-25-festivaali-kaksi-sooloa-3872625/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 643988, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-29T13:13:53.049289Z", "last_modified_time": "2025-04-29T13:13:53.049305Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763395.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/643988/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-29T13:13:52.971862Z", "last_modified_time": "2025-05-27T09:14:51.058219Z", "date_published": null, "start_time": "2025-06-07T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kaksi sooloa: Hozan Omar: Layers | Nach: Cellule – The URB 25 Festival", "sv": "Två soloverk: Hozan Omar: Layers | Nach: Cellule – The URB 25 Festival", "en": "Two Solos: Hozan Omar: Layers | Nach: Cellule – The URB 25 Festival" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/430EF38421D1E1FD28DF3E80971765F3/Kaksi_sooloa_Hozan_Omar_Layers_Nach_Cellule", "sv": "http://www.stoa.fi/sv/evenemang/event/430EF38421D1E1FD28DF3E80971765F3/Tva_soloverk_Hozan_Omar_Layers_Nach_Cellule", "en": "http://www.stoa.fi/en/events/event/430EF38421D1E1FD28DF3E80971765F3/Two_Solos_Hozan_Omar_Layers_Nach_Cellule" }, "short_description": { "fi": "URB 25 Festivaali tuo Stoan Teatterisaliin kaksi sooloteosta. Molemmat teokset käsittelevät tekijänsä matkaa omaan identiteettiin katutanssin keinoin.", "sv": "URB 25 festivalen för två soloverk till teatersalen i Stoa.", "en": "The URB 25 festival brings two solo dance pieces to Stoa, which will be seen in the same performance." }, "location_extra_info": null, "description": { "fi": "<p>URB 25 Festivaali tuo Stoan Teatterisaliin kaksi sooloteosta. Molemmat teokset käsittelevät tekijänsä matkaa omaan identiteettiin katutanssin keinoin.</p><p>Illassa nähdään esiintyjät sekä Suomesta että Ranskasta, jotka ovat omassa genressään kotimaassaan kokeneita ja arvostettuja tanssijoita.</p><p><b>Hozan Omar: Layers</b><br>Layers on Hozan Omarin soolo-katutanssiesitys, joka yhdistää popping-tyyliä kurdimusiikkia ja elektronista ääntä sisältävään äänimaailmaan. Teos käsittelee esiintyjän kurdilaisia juuria, identiteettikysymyksiä Suomessa, sekä kahden kulttuurin välissä elämisen haasteita. Tanssin kautta Omar käsittelee tunteita, kuten uteliaisuutta, kipua ja itsevarmuutta.</p><p>Hozan Omar on helsinkiläinen tanssija ja tanssinopettaja. Vuonna 2015 hän valmistui ruotsalaisen Åsa Folkhögskolanin katutanssiohjelmasta. Hän on matkustellut paljon tanssin parissa ja osallistunut erilaisiin kilpailuihin, ja voittanut mm. vuosina 2013 ja 2016 Suomen mestaruuden poppingissa. Omar on esiintynyt myös erilaisissa tv-ohjelmissa ja musiikkivideoissa.</p><p>Tanssijana Omar kokee olevansa itsevarma, ja hän kokee esiintymisen tuovan hänen potentiaalinsa parhaiten esiin. Omar on nähty aiemmin esiintyjänä URB-festivaalilla vuosina 2021 ja 2022. Layers on hänen ensimmäinsen oma sooloteoksensa.</p><p>Kesto: n. 25 min</p><p><b>Nach: Cellule</b><br>Nachin ura käynnistyi krumpista, tanssityylistä, joka sai alkunsa Los Angelesissa 1990-luvun kapinallisesta energiasta vastauksena afroamerikkalaisissa kaupunginosissa tapahtuvaan poliisiväkivaltaan. Tämän äärimmäisen ilmeikkään, kasvojen ja kehon jännityksillä ja räjähdyksillä leikkivän tanssityylin löytämisellä oli merkittävä baikutus Nachin koulutukseen ja liikekieleen.</p><p>Omakuvan muotoon hakeutuvassa soolossa Nach kyseenalaistaa oman suhteensa krumpiin, halunsa viedä sitä muualle ja yhdistää sitä muihin genreihin. Hänen voimakas, taitava tanssinsa menee syvälle, kyseenalaistaen sen vaikutukset ja raivaten tietä poluille, joita hän on kulkenut.</p><p>Nach on ranskalainen tanssija ja koreografi, joka löysi krumpin 22-vuotiaana katsottuaan David Lachapellen ohjaaman Rize-dokumentin. Pian sen jälkeen hän alkoi tutkia lavaa ja luovaa prosessia, tehden yhteistyötä taiteilijoiden kuten koreografi Heddy Maalemin ja muusikoiden Koki Nakano ja Ruth Rosenthalin kanssa.</p><p>Elokuvamaailmassa hän työskenteli Kourtrajmé-kollektiivin kanssa projektissa, joka käsitteli välittämistä, kehoa ja asennon ilmaisua. Vuonna 2017 hän loi ensimmäisen soolonsa, Cellule. Vuonna 2019 ensi-iltansa saanut teos Beloved Shadows syntyi Japanissa vietetyn ajan jälkeen, jolloin hän tutustui Noh-teatteriin, bunrakuun ja butoh-tanssiin. Merkityksellisten tarinoiden kertojana Nachin työ yhdistää tanssia, kuvataidetta ja muita taidemuotoja. Hänen työnsä kyseenalaistavat usein feminiinisyyttä ja identiteettiä.</p><p>Kesto: 45 min</p>", "sv": "<p>URB 25 festivalen för två soloverk till teatersalen i Stoa.</p><p>Båda verken behandlar konstnärernas resor till sina identiteter via gatudans. Under kvällen ser vi uppträdare från Finland och Frankrike som är erfarna och uppskattade dansare i sina genrer i sina hemländer.</p><p><b>Hozan Omar: Layers</b><br>Layers är Hozan Omars sologatudansföreställning som förenar popping-stil med med kurdisk musik och en ljudvärld bestående av elektroniska ljud. Verket behandlar artistens kurdiska rötter, identitetsfrågor i Finland samt utmaningarna i livet mellan två kulturer. Genom dans behandlar Omar känslor, såsom nyfikenhet, smärta och självsäkerhet.</p><p>Hozan Omar är dansare och danslärare i Helsingfors. Han tog examen från gatudansprogrammet vid Åsa Folkhögskolan i Sverige 2015. Han har rest mycket på grund av dans och deltagit i olika tävlingar och bland annat vunnit det finska mästerskapet i popping 2013 och 2016.</p><p>Omar har också uppträtt i olika tv-program och musikvideor. Som dansare upplever Omar sig vara självsäker och anser att uppträdanden är det som bäst lyfter fram hans potential. Omar har tidigare uppträtt på URB-festivalen 2021 och 2022. Layers är hans första soloverk.</p><p>Längd: 25 min</p><p><b>Nach: Cellule</b><br>Nach inledde sin karriär med krump, en dansstil som uppstod i Los Angeles på 1990-talet med hjälp av rebellenergi som ett svar på polisvåldet i afroamerikanska stadsdelar. Att Nach hittade denna extremt uttrycksfulla dansstil som leker med spänningar och explosioner i ansiktet och kroppen bidrog avsevärt till hennes utbildning och rörelsespråk.<br> <br>I solot, som antar formen av ett självporträtt, ifrågasätter Nach sitt förhållande till krumping, sin vilja att föra den någon annanstans och kombinera den med andra genrer. Hennes starka, skickliga dans går djupt och ifrågasätter dess effekter och banade vägen för de stigar hon gått.</p><p>Längd: 45 min</p>", "en": "<p>The URB 25 festival brings two solo dance pieces to Stoa, which will be seen in the same performance.</p><p>Both works explore the creator’s journey to their own identity through street dance. First performer is Hozan Omar with Layers, the second one is French Nach: Cellule.</p><p><b>Hozan Omar</b> <br>Layers is a solo street dance performance by Hozan Omar that combines popping style with a soundscape featuring Kurdish music and electronic sounds. The piece addresses the performer’s Kurdish roots, identity issues in Finland and the challenges of living between two cultures. Through dance, Omar explores emotions such as curiosity, pain, and confidence.</p><p>Hozan Omar is a Helsinki-born dancer and a dance teacher. In year 2015 he graduated from the Street dance programme of the Swedish Åsa Folklögskolan. He has been travelling a lot for dancing and participating in various competitions. In years 2013 & 2016 Omar won the Finnish Championship of popping. Omar has performed in several TV productions and music videos.</p><p>As a dancer, Omar is self-confident and he thinks that performing brings out the most of his potential. Omar has been seen as a performer at the URB festival during 2021 and 2022. Layers is his first own solo performance.</p><p>Duration: 25 min</p><p><b>Nach</b><br>Nach's career began with krump, a dance style that originated in Los Angeles in the 1990s from rebellious energy in response to police violence in African-American neighborhoods. The discovery of this extremely expressive dance style, which plays with the tensions and explosions of the face and body, made an impression on Nach's training and movement language.<br> <br>In this solo, which takes the form of a self-portrait, Nach questions her own relationship with krump, her desire to take it elsewhere, and combine it with other genres. Her powerful, skillful dance goes deep, questioning its impact and paving the way for the paths she has taken.</p><p>Nach is a French dancer and choreographer, who discovered krump at 22 after watching Rize, David Lachapelle’s documentary. She soon began exploring the stage and the creative process, collaborating with artists like choreographer Heddy Maalem and musicians Koki Nakano and Ruth Rosenthal. In cinema, she worked with the Kourtrajmé collective on a project about transmission, body, and posture. In 2017, she created her first solo, Cellule, followed by Beloved Shadows in 2019 after a stay in Japan, where she explored Noh theatre, bunraku, and butoh dance. Committed to telling meaningful stories, Nach’s work blends dance, visual arts, and other artforms. Her works often interrogates femaleness and identity.</p><p>Duration: 45min.</p>" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66120/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19239, "next": "