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&page=334
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=335", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=333" }, "data": [ { "id": "kulke:64582", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-17T10:14:03.646764Z", "last_modified_time": "2024-09-17T10:14:03.646779Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758078.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-17T10:14:03.634289Z", "last_modified_time": "2024-12-20T01:13:52.900464Z", "date_published": null, "start_time": "2024-10-23T08:00:00Z", "end_time": "2024-10-23T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4026993517E4ABE50F0D92A5AE72D582/Keskiviikon_lounasjamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4026993517E4ABE50F0D92A5AE72D582/Jams_till_onsdagslunchen", "en": "http://www.kanneltalo.fi/en/events/event/4026993517E4ABE50F0D92A5AE72D582/Wednesday_lunch_jams" }, "short_description": { "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.", "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.", "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage." }, "location_extra_info": null, "description": { "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>", "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>", "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>" }, "name": { "fi": "Keskiviikon lounasjamit", "sv": "Jams till onsdagslunchen", "en": "Wednesday lunch jams" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152301, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:13:56.810854Z", "last_modified_time": "2024-09-05T11:13:56.810866Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749835.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152301/?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": "2024-09-05T11:13:56.793951Z", "last_modified_time": "2024-12-20T01:13:52.801325Z", "date_published": null, "start_time": "2024-10-23T07:00:00Z", "end_time": "2024-10-23T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8D97A3B58BEF250F840F405FBBF1EBCA/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/8D97A3B58BEF250F840F405FBBF1EBCA/Knattebion", "en": "http://www.annantalo.fi/en/events/event/8D97A3B58BEF250F840F405FBBF1EBCA/Toddler_cinema" }, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "location_extra_info": null, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64696", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-23T09:14:46.013880Z", "last_modified_time": "2024-10-23T09:14:46.013898Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759296.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-23T09:14:45.962841Z", "last_modified_time": "2024-12-20T01:13:52.645971Z", "date_published": null, "start_time": "2024-10-23", "end_time": "2024-12-01", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot", "sv": "http://www.stoa.fi/sv/evenemang/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_Vagor_av_ljus_", "en": "http://www.stoa.fi/en/events/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_" }, "short_description": { "fi": "Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.", "sv": "Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.", "en": "‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time." }, "location_extra_info": null, "description": { "fi": "<p>Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.</p><p>Kääntyessään aallot paljastavat tasapainon hiljaisuuden ja liikkeen, edistymisen ja heijastuksen välillä – korostaen ajan jatkuvaa, alati muuttuvaa luonnetta. Yhdessä toisiinsa kietoutuvat aallot luovat eteerisen valon ja muodon tanssin, joka symboloi Stoan jatkuvaa matkaa.</p><p><b>Deepa Panchamia</b> on Lontoossa vuonna 1981 syntynyt ja nykyään Suomessa asuva tekstiilitaiteilija. Hän luo kangasveistoksia, installaatioita ja puettavaa taidetta. Hänen työnsä sulattaa geometrian omiin kangastekniikoihin ja matematiikkaan uusien muotojen ja muotojen tutkimiseksi.</p><p>Suomeen vuonna 2012 muuttaessaan hän on omaksunut suomalaisen maiseman vaikutteita ja sisällyttänyt sen luonnon kauneutta luomuksiinsa.</p><p>Hänen töitään on ollut esillä kansainvälisesti, mukaan lukien Premio Valcellina Award Italiassa, 7th Triennaal of Contemporary Textile Art Belgiassa, 100% Design Lontoossa, Cheongju International Craft Biennale Etelä-Koreassa, Revelations: International Fine Craft and Creation Biennaali Pariisi, Contextile – Contemporary Textile Art Biennaali Portugalissa ja Fiskars Village Art & Design Biennale, Suomi.</p>", "sv": "<p>Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.</p><p>När vågorna vänder visar de en balans mellan stillhet och rörelse, framsteg och reflektion – vilket belyser tidens konstanta, ständigt föränderliga natur. De sammanflätade vågorna skapar en eterisk dans av ljus och form, som symboliserar Stoas ständiga resa.</p><p>Deepa Panchamia är en textilkonstnär som föddes i London 1981 och som för närvarande bor i Finland. Hon skapar skulpturer, installationer och konst som man kan klä på sig. I hennes arbete förenas geometri med hennes egen tygteknik och matematik för att utforska nya former.</p><p>Sedan hon flyttade till Finland år 2012 har hon tagit intryck av det finska landskapet och införlivat dess naturliga skönhet i sina skapelser.</p><p>Hennes verk har ställts ut internationellt, bland annat på Premio Valcellina Award i Italien, 7th Triennaal of Contemporary Textile Art i Belgien, 100% Design i London, Cheongju International Craft Biennale i Sydkorea, Revelations: International Fine Craft and Creation Biennale i Paris, Contextile – Contemporary Textile Art Biennale i Portugal och Fiskars Village Art & Design Biennale, Finland.</p>", "en": "<p>‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time.</p><p>As they twist and turn, the waves reveal the balance between stillness and movement, progress and reflection—highlighting the continuous, ever-changing nature of time. Together, the intertwining waves create an ethereal dance of light and form, symbolizing Stoa’s ongoing journey.</p><p>Deepa Panchamia is a textile artist, born in London in 1981 and now living in Finland. She creates fabric sculptures, installations, and wearable art. Her work fuses geometry with her own fabric techniques and mathematics to explore new shapes and forms.</p><p>Since moving to Finland in 2012, she has embraced the influence of the Finnish landscape, incorporating its natural beauty into her creations.</p><p>Her work has been exhibited internationally, including at the Premio Valcellina Award in Italy, the 7th Triennial of Contemporary Textile Art in Belgium, 100% Design in London, the Cheongju International Craft Biennale in South Korea, Revelations: International Fine Craft and Creation Biennial in Paris, Contextile – Contemporary Textile Art Biennial in Portugal, and the Fiskars Village Art & Design Biennale, Finland.</p>" }, "name": { "fi": "Deepa Panchamia: Valon aallot – Stoa 40! Tekstiiliteos Stoan aulassa", "sv": "Deepa Panchamia: Valon aallot (Vågor av ljus) – Stoa 40! Textilverk i lobbyn till Stoa", "en": "Deepa Panchamia: Valon aallot – Stoa 40! Textile installation at Stoa lobby" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64696/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63292", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:658/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p19077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-18494906", "sv": "https://www.lippu.fi/event/name-18494906", "en": "https://www.lippu.fi/event/name-18494906" }, "description": null, "price": { "fi": "23,50-45,50 €", "sv": "23,50-45,50 €", "en": "23,50-45,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 41952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-28T09:14:03.950359Z", "last_modified_time": "2024-03-28T09:14:03.950374Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746446.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-28T09:14:03.915462Z", "last_modified_time": "2024-12-20T01:13:52.545456Z", "date_published": null, "start_time": "2024-10-22T16: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, "provider_contact_info": null, "provider": { "fi": "MagnumLive Oy", "sv": "MagnumLive Oy", "en": "MagnumLive Oy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Myrskyluodon_Lasse", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Stormskars_Lasse_", "en": "http://www.savoyteatteri.fi/en/events/event/C1A228D2ABB315CF7A465A0F2EB7EC58/Stormskerry_Lasse" }, "short_description": { "fi": "Lasse Mårtensonin unohtumattomia sävelmiä – Lavalla Ami Aspelund, Jannike ja Nicke Lignell!", "sv": "Lasse Mårtenssons jubileumskonsertturne’ hösten 2024 – På scen Ami Aspelund, Jannike och Nicke Lignell!", "en": "Unforgettable tunes by Lasse Mårtenson – Ami Aspelund, Jannike and Nicke Lignell on stage!" }, "location_extra_info": null, "description": { "fi": "<p>Lasse Mårtensonin unohtumattomia sävelmiä – Lavalla Ami Aspelund, Jannike ja Nicke Lignell!</p><p>Edesmenneen rakastetun laulajan ja säveltäjän Lasse Mårtensonin syntymästä tulee kuluneeksi syksyllä 90 vuotta. Mårtensonin uraa ja hänen musiikkiaan kunnioitetaan lokakuussa toteutettavalla kiertueella, jossa lavalla nousevat <b>Ami Aspelund, Jannike</b> ja <b>Nicke Lignell</b>. <br> <br>Myrskyluodon Lasse – Lasse Mårtensonin unohtumattomia sävelmiä niminen kiertue alkaa Kokkolasta 20. lokakuuta ja päättyy Porvooseen 25.10. Muut konserttipaikkakunnat ovat Vaasa, Helsinki, Turku ja Karjaa. Kiertueen säestyksestä vastaa Henrik Wikströmin orkesteri.<br> <br>Vuonna 1934 syntynyt ja 2016 menehtynyt Lasse Mårtenson nousi 1960-luvulla yhdeksi maamme suosituimmista laulajista. Hänen tunnetuimpia kappaleitaan ovat vuoden 1964 euroviisu Laiskotellen sekä Marraskuu, Iltaisin, Mä lähden stadiin, Rikas mies jos oisin sekä Nousevan auringon talo.<br> <br>Erityisen suureen suosioon on noussut Mårtensonin säveltämä musiikki Åke Lindmanin ohjaamaan, vuonna 1976 ensi-iltansa saaneeseen Myrskyluodon Maija -elokuvaan.<br> <br><i>Lasse Mårtensonin musiikki on ollut minulla aina sydäntä lähellä. Minulla oli myös ilo työskennellä yhdessä hänen kanssaan monissa eri produktioissa vuosien varrella. On suuri kunnia saada olla nyt kiertueella kunnioittamassa Mårtensonin muistoa</i>, kertoo Ami Aspelund.<br> <br>Tervetuloa viettämään unohtumaton ilta hienon ja ajattoman musiikin äärellä.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>", "sv": "<p>Lasse Mårtenssons jubileumskonsertturne’ hösten 2024 – På scen Ami Aspelund, Jannike och Nicke Lignell!</p><p>Den älskade sångaren och kompositören Lasse Mårtensson skulle i höst ha fyllt 90 år. Till minne av hans musik och karriär ordnas en konsertturne’ i oktober där Ami Aspelund, Jannike och Nicke Lignell stiger upp på scen.<br> <br>Stormskärs Lasse - Lasse Mårtenssons oförglömliga musik turne’ börjar i Karleby den 20 oktober och slutar i Borgå den 25 oktober. Andra konsertplatser är Wasa, Helsingfors, Åbo och Karis. <br>Orkestern leds av Henrik Wikström.<br> <br>Lasse Mårtensson föddes år 1934 och dog 2016. På 60-talet steg han till en av landets mest populära artister. Till hans kändaste låtar hör Laiskotellen (som han 1964 deltog i Eurovisionen med), Marraskuu, Iltaisin, Mä lähden stadiin, Rikas mies jos oisin och Nousevan auringon talo.<br> <br>Mest är Lasse Mårtensson ändå känd för för sina kompositioner till den finska tv-serien Stormskärs Maja från år 1976. Serien regisserades av Åke Lindman.<br> <br>-Lasses musik har alltid stått mitt hjärta nära. Jag hade den stora glädjen att få arbeta med honom i många olika produktioner och därför är det en särskilt stor ära att få vara med på denna turne’, säger Ami Aspelund.<br> <br>Varmt välkomna att njuta av en oförglömlig afton med fin och tidlös music ut av Lasse.</p><p>Längd ca. 2 h 15 min, inkl. paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>Unforgettable tunes by Lasse Mårtenson – Ami Aspelund, Jannike and Nicke Lignell on stage!</p><p>This autumn, it will be 90 years since the birth of the late beloved singer and composer Lasse Mårtenson. Mårtenson’s career and his music will be honoured with a tour in October, featuring Ami Aspelund, Jannike and Nicke Lignell.</p><p>Lasse Mårtenson (1934–2016) became one of the most popular singers in Finland in the 1960s. His most famous songs are Finland’s entry to the 1964 Eurovision Song Contest <i>Laiskotellen</i>, <i>Marraskuu</i>, <i>Iltaisin</i>, <i>Mä lähden stadiin</i>, <i>Rikas mies jos oisin</i> and <i>Nousevan auringon talo (The house of the rising sun).</i></p><p>Music composed by Mårtenson for the film <i>Myrskyluodon Maija</i> (Stormskerry Maja), directed by Åke Lindman in 1976, has become especially popular.</p><p>\"Lasse Mårtenson’s music has always been close to my heart. I also had the pleasure of working with him on many different productions over the years. It’s a great honour to be on tour now to honour Mårtenson’s memory\", says Ami Aspelund.</p><p>Welcome to spend an unforgettable evening with great timeless music!</p><p>Duration approx. 2 h 15 min, including intermission</p><p>Stalls K-18, a licensed area. The balcony is a non-licensed area without an age limit.</p>" }, "name": { "fi": "Myrskyluodon Lasse – Ami Aspelund, Jannike ja Nicke Lignell", "sv": "Stormskärs Lasse – Ami Aspelund, Jannike och Nicke Lignell", "en": "Stormskerry Lasse – Ami Aspelund, Jannike and Nicke Lignell" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63292/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64293", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151879, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T15:15:02.998543Z", "last_modified_time": "2024-07-25T15:15:02.998572Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745842.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151879/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T15:15:02.961432Z", "last_modified_time": "2024-12-20T01:13:52.437872Z", "date_published": null, "start_time": "2024-10-22T15:00:00Z", "end_time": "2024-10-22T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_Rokbastusysterskap_12_", "en": "http://www.malmitalo.fi/en/events/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Smoke_Sauna_Sisterhood_12_" }, "short_description": { "fi": "Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.", "sv": "I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.", "en": "In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community." }, "location_extra_info": null, "description": { "fi": "<p>Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.</p><p>Ohjaaja Anna Hints palkittiin Savusaunasisaruus-elokuvastaan Sundancen elokuvajuhlilla 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus oli Viron virallinen Oscar-ehdokas ja voitti vuoden parhaan dokumenttielokuvan European Film Awards -palkinnon.</p><p>Kesto 89 min<br>Ikäraja 12<br>Ensi-ilta 8.12.2023<br>Vapaa pääsy!</p><p>Doc Helios on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p>", "sv": "<p>I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.</p><p>Regissören Anna Hints belönades för filmen Savusaunasisaruus på Sundance-filmfestivalen 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus var Estlands officiella Oscarsnominering och vann European Film Awards-priset för årets bästa dokumentärfilm.</p><p>Längd 89 min.<br>Åldersgräns 12 år<br>Premiär 8.12.2023<br>Fritt inträde!</p><p>Doc Helios är Kino Helios nya gratisvisningsserie, där vi får se de färskaste och mest aktuella dokumentärerna om olika ämnen.</p>", "en": "<p>In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community.</p><p>Director Anna Hints was awarded for her film, Smoke Sauna Sisterhood, at the Sundance Film Festival in 2023 (Directing Award: World Cinema Documentary). Smoke Sauna Sisters was the official Oscar nominee for Estonia and won the European Film Award for Best Documentary.</p><p>Duration: 89 mins.<br>Age limit 12<br>Premiere: 8 December 2023</p>" }, "name": { "fi": "Doc Helios: Savusaunasisaruus (12) – Kino Helios", "sv": "Doc Helios: Savusaunasisaruus (Rökbastusysterskap) (12) – Kino Helios", "en": "Doc Helios: Smoke Sauna Sisterhood (12) – Kino Helios" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64293/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64300", "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: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:41/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T07:14:27.480444Z", "last_modified_time": "2024-07-26T07:14:27.480459Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753200.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T07:14:27.448997Z", "last_modified_time": "2024-12-20T01:13:52.340286Z", "date_published": null, "start_time": "2024-10-21T15:00:00Z", "end_time": "2024-10-21T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/91A13FDF6D32754AE25FB0C1CB36B035/Juurilla_Bryn_Jones", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/91A13FDF6D32754AE25FB0C1CB36B035/Vid_rotterna_Bryn_Jones", "en": "http://www.kanneltalo.fi/en/events/event/91A13FDF6D32754AE25FB0C1CB36B035/At_the_Roots_Club_Bryn_Jones" }, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.", "sv": "Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.", "en": "Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire." }, "location_extra_info": null, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.</p><p>Lontoon rock-piireistä Suomeen rantautunut laulaja-lauluntekijä Bryn Jones tunnetaan Los Bastardos Finlandeses -bändin nokkamiehenä. Yli kolmekymmentä vuotta musisoinut Jones on kiertänyt bändeineen mm. Aerosmithin ja Motörheadin kanssa.</p><p>Jonesin trubaduuriesiintymiset ovat kuuluja intensiivisyydestään ja rouheasta kitarasoundistaan. Illan keikalla kuullaan artistin soolotuotantoa ja musiikkia pitkän uran varrelta.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.</p><p>Sångaren och låtskrivaren Bryn Jones som anlänt till Finland från Londons rockkretsar är känd som frontfigur i bandet Los Bastardos Finlandeses. Jones har musicerat i över trettio år och turnerat med band såsom Aerosmith och Motörhead.</p><p>Jones trubadurframträdanden är kända för sin intensitet och sitt grova gitarrsound. På kvällens spelning får vi höra artistens soloproduktion och musik från hans långa karriär.</p>", "en": "<p>Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire.</p><p>Bryn Jones, a singer-songwriter who landed in Finland from London’s rock scene, is known as the front man of Los Bastardos Finlandeses. Jones, who has been playing music for over thirty years, and his band, have gone on tour with bands like Aerosmith and Motörhead.</p><p>Jones' troubadour performances are famous for their intensity and rugged guitar sounds. This evening's gig will feature the artist's solo works and music from a long career.</p><p>Start your week with some catchy tunes! Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "name": { "fi": "Juurilla: Bryn Jones – Maksuttomat maanantait", "sv": "Vid rötterna: Bryn Jones – Kostnadsfria måndagar", "en": "At the Roots Club: Bryn Jones – Free Mondays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64300/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64245", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151812, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T13:13:17.502289Z", "last_modified_time": "2024-07-24T13:13:17.502305Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748952.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T13:13:17.475916Z", "last_modified_time": "2024-12-20T01:13:52.035504Z", "date_published": null, "start_time": "2024-10-07", "end_time": "2024-11-01", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F322A2E20442B061B43E0665541B04C6/Vuotalosta_Villaan_taiteilijatalo_sateilee", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F322A2E20442B061B43E0665541B04C6/Fran_Nordhuset_till_Villan_konstnarshuset_skiner", "en": "http://www.vuotalo.fi/en/events/event/F322A2E20442B061B43E0665541B04C6/From_Vuotalo_to_Villa_the_artist_house_radiates" }, "short_description": { "fi": "Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.", "sv": "Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.", "en": "A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists." }, "location_extra_info": null, "description": { "fi": "<p>Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.</p><p>Taiteilijatalossa on 52 asuntoa ja toista sataa asukasta. Eri alojen taiteilijoista suuri joukko on kuvataiteilijoita, jotka käyttävät mitä moninaisimpia tekniikoita ja materiaaleja taideteoksissaan. Taiteilijatalon vieressä oleva vanha huvila, Villa Lill Kallvik, on osa taloa.</p><p>Vuotalosta Villaan – taiteilijatalo säteilee -näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia Vuotalon galleriassa ja Villa Lill Kallvikissa. Tervetuloa näkemään ja kokemaan paikallisten tekijöiden kuvataiteen laaja kirjo!</p><p>Näyttelyn taiteilijat: <br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme (performanssi)</p><p>Villa Lill Kallvikin aukioloajat: ke–pe 12–18 ja la–su 11–17</p><p><b>Tule mukaan myös näyttelykävelyille ja koe näyttelyyn liittyvä performanssi!</b></p><p>Performanssi to 10.10. klo 19, lähtö Vuotalon aulasta.</p><p>Näyttelykävelyt perjantaisin<br>18.10. / to 24.10. / pe 1.11. klo 17–18, lähtö Vuotalon galleriasta.</p><p>Tapahtumakuvan tiedot:<br>Vasemmalla: Rosalia Janovic: Monimuotoisuus, Diversity Keskellä: Tiina Heiska: Japanese room, kuvaaja Jussi Tiainen Oikealla: Pekka Sassi: Green, abstrakti värikertomus (video)</p>", "sv": "<p>Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.</p><p>Konstnärshuset har 52 lägenheter och ett drygt hundratal boende. En stort del av konstnärerna som representerar olika konstarter är bildkonstnärer, som använder en mängd olika tekniker och material i sina konstverk. Den gamla villan som ligger invid konstnärshuset, Villa Lill Kallvik, är en del av huset.</p><p>Utställningen Från Nordhuset till Villan – konstnärshuset skiner presenterar nya verk av husets bildkonstnärer i Nordhusets galleri och Villa Lill Kallvik. Välkommen att se och uppleva mångsidig bildkonst av lokala konstnärer!</p><p>Konstnärerna:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik öppettider: ons–fre 12–18 och lör–sön 11–17</p>", "en": "<p>A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists.</p><p>The Artist House has 52 apartments and over 100 residents. A large group of the artists, who are from different fields, are visual artists, who use diverse techniques and materials in their artworks. The old villa next to the Artist House, Villa Lill Kallvik, is a part of it.</p><p>The From Vuotalo to Villa – Artist House Radiates exhibition showcases the recent works of the house's visual artists at Vuotalo Gallery and Villa Lill Kallvik. Come and experience the vast array of visual arts by local creators!</p><p>Artists:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik opening hours: Wed–Fri 12–18 and Sat–Sun 11–17</p>" }, "name": { "fi": "Vuotalosta Villaan – taiteilijatalo säteilee", "sv": "Från Nordhuset till Villan – konstnärshuset skiner", "en": "From Vuotalo to Villa – the artist house radiates" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj554qpke", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-12-19T12:43:45.926072Z", "last_modified_time": "2024-12-19T12:43:45.926093Z", "date_published": "2024-12-19T12:00:40.687000Z", "start_time": "2025-01-02T09:00:00Z", "end_time": "2025-01-02T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Piilosta kirjastossa", "sv": "Kurragömma i biblioteket", "en": "Hide and seek in the library" }, "location_extra_info": { "fi": "Lastenmaa", "sv": "Lastenmaa", "en": "Lastenmaa" }, "description": { "fi": "<p>Asiakkaidemme toiveesta järjestämme ohjatun piiloleikin</p><p>joululomalla. Tervetuloa mukaan. Kokoonnumme Lastenmaassa.</p>", "sv": "<p>På begäran av våra kunder ordnar vi en guidad kurragömmalek under julhelgen. Välkommen att följa med oss. Vi träffas vid Lastenmaa.</p>", "en": "<p>At the request of our customers, we organise a guided hide-and-seek game</p><p>during the Christmas holidays. Welcome to join us. We meet at Lastenmaa,</p>" }, "name": { "fi": "Piilosta kirjastossa", "sv": "Kurragömma i biblioteket", "en": "Hide and seek in the library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj554qpke/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55oorkq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T10:38:12.064654Z", "last_modified_time": "2024-12-19T10:38:12.064678Z", "date_published": "2024-12-19T10:29:00Z", "start_time": "2025-01-21T16:00:00Z", "end_time": "2025-01-21T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": { "fi": "Raimo O Niemi" }, "info_url": null, "short_description": { "fi": "Elokuvaohjaaja Raimo O Niemi kertoo kirjastaan Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja" }, "location_extra_info": { "fi": "Kaija" }, "description": { "fi": "<p>Tule kuuntelemaan kun elokuvaohjaaja Raimo O Niemi kertoo kirjastaan Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja. </p><p>Tilaisuuteen on vapaa pääsy!</p><p>**</p><p><a href=\"https://helmet.finna.fi/Record/helmet.2582321?sid=4887534060\"><strong>Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja</strong></a></p><p>”Miten ja miksi olin päättänyt tulla elokuvaohjaajaksi? Miten parikymppinen suomalaispoika sopeutui ja oppi elämään Breznevin ajan sosialistisessa Neuvostoliitossa?”</p><p>Elokuvaohjaaja Raimo O Niemi etsii vastauksia näihin kysymyksiin kirjassaan Kirjeitä Moskovasta. Hän kertoo elämästään 1970-luvun Moskovassa ja opiskelustaan maailman vanhimmassa elokuvakoulussa. Ensimmäisenä suomalaisena elokuvaohjaaja Raimo O Niemi kävi rankan koulun pitkän kaavan kautta. Päiväkirjaa hän ei pitänyt, mutta lainaukset säilyneistä kirjeistä välittävät aikalaistunnelmia.</p><p>Nuori idealisti sopeutui ja oli pian ”nas tselovek, meikäläinen”, jonka seurassa ei tarvinnut varoa ja pelätä puheitaan. Liikkumista ja kuvauslupia hallinnoivan ”1. osaston” kanssa oli silti tavalla tai toisella tultava toimeen.</p><p>Suunnitelma vuoden kahden opiskelusta vaihtui kuudeksi. Hän oppi tuntemaan ja kokemaan neuvostotodellisuuden niin hyvässä kuin pahassa, koki onnistumisia, mutta myös pettymyksiä ja takaiskuja. Ohjaajaopintojen ja henkilökohtaisten muistojen lisäksi kirjassa kerrotaan tavallisten neuvostokansalaisten arkipäivästä.</p><p>Kirjan runsas kuvitus pohjautuu pääasiassa Raimo O Niemen kuva-arkistoon ja hänen valokuvanäyttelyihinsä ”Kuljen Moskovan katuja” ja ”Dziganovtsy”.</p><p>(Kirjan kuvaus: Kustantaja Musta taide)</p>" }, "name": { "fi": "Elokuvaohjaaja Raimo O Niemi vieraana kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorkq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55oorva", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T10:25:42.155132Z", "last_modified_time": "2024-12-19T10:28:39.746862Z", "date_published": null, "start_time": "2025-01-11T12:00:00Z", "end_time": "2025-01-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": { "fi": "WeCode platform", "en": "WeCode platform" }, "info_url": null, "short_description": { "fi": "Tervetuloa WeCode platforming järjestämään IT-alan verkostoitumistapahtumaan 11.1. klo 14-17", "en": "Welcome to take in the WeCode Networking Event on 11th of January at 14-17 o clock." }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "description": { "fi": "<p>WeCode platforming järjestämän IT-alan verkostoitumistapahtuman tarkoituksena on saattaa yhteen IT-alalla jo työskentelevät ja IT-työpaikkoja etsivät henkilöt. Tapahtumassa voi tavata uusia ihmisiä, jakaa kokemuksia ja oppia toisiltaan rennossa ympäristössä. Etsitpä sitten neuvoja, tutkit työmahdollisuuksia tai haluat vain luoda yhteyksiä muihin alan ammattilaisiin, tämä tapahtuma on täydellinen paikka aloittaa. Kasvatetaan IT-yhteisöä yhdessä!</p><p>Tapahtuma on englanninkielinen. Tervetuloa!</p>", "en": "<p>The WeCode Networking Event is a friendly gathering designed to bring together people who are already working in the IT sector and those looking for IT jobs. It’s a great chance to meet new people, share experiences, and learn from each other in a relaxed environment. Whether you’re looking for advice, exploring job opportunities, or just want to connect with others in the industry, this event is a perfect place to start. Let’s grow our IT community together!</p>" }, "name": { "fi": "WeCode platforming järjestämä IT-alan verkostoitumistapahtuma", "en": "The WeCode Networking Event" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uozu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:13.682550Z", "last_modified_time": "2024-12-19T10:24:27.635237Z", "date_published": null, "start_time": "2025-01-17T14:00:00Z", "end_time": "2025-01-17T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uozu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uovu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:14.684035Z", "last_modified_time": "2024-12-19T10:24:27.563270Z", "date_published": null, "start_time": "2025-01-31T14:00:00Z", "end_time": "2025-01-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uovu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uory", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:15.472753Z", "last_modified_time": "2024-12-19T10:24:27.482407Z", "date_published": null, "start_time": "2025-02-14T14:00:00Z", "end_time": "2025-02-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uory/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uon4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:16.374230Z", "last_modified_time": "2024-12-19T10:24:27.423684Z", "date_published": null, "start_time": "2025-02-28T14:00:00Z", "end_time": "2025-02-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uon4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uoja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:17.058091Z", "last_modified_time": "2024-12-19T10:24:27.359922Z", "date_published": null, "start_time": "2025-03-14T14:00:00Z", "end_time": "2025-03-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uoea", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:17.864188Z", "last_modified_time": "2024-12-19T10:24:27.264593Z", "date_published": null, "start_time": "2025-03-28T14:00:00Z", "end_time": "2025-03-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoea/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7un7q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:18.590321Z", "last_modified_time": "2024-12-19T10:24:27.104618Z", "date_published": null, "start_time": "2025-04-11T13:00:00Z", "end_time": "2025-04-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un7q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7un3a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:19.552856Z", "last_modified_time": "2024-12-19T10:24:26.948592Z", "date_published": null, "start_time": "2025-04-25T13:00:00Z", "end_time": "2025-04-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, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un3a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7unw4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:20.366309Z", "last_modified_time": "2024-12-19T10:24:26.834585Z", "date_published": null, "start_time": "2025-05-09T13:00:00Z", "end_time": "2025-05-09T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unw4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uo6e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7unw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uon4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uory/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uovu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uozu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:25:57.481195Z", "last_modified_time": "2024-12-19T10:24:25.331916Z", "date_published": null, "start_time": "2025-01-17T14:00:00Z", "end_time": "2025-05-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27586, "next": "