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 normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=225
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=226", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=224" }, "data": [ { "id": "kulke:65545", "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: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 174767, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-28T14:14:36.645007Z", "last_modified_time": "2025-01-28T14:14:36.645021Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765112.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174767/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-28T14:14:36.611756Z", "last_modified_time": "2025-02-03T09:14:33.585429Z", "date_published": null, "start_time": "2025-02-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Viikinkilapset Ruusu ja Tjalf lähtevät myrskyisälle matkalle Midgårdista Valhallaan jumalten Torin ja Loken seurassa.", "sv": "Filmen Valhalla är en äventyrlig fantasyfilm som rymmer slagsmålsscener, psykologiska tvekamper, dödsdanser och hjältemod.", "en": "Viking children Røskva and Tjalfe embark on an adventurous journey from Midgard to Valhalla with the gods Thor and Loki." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DFB3C43E6721F8A23ACA3CD41DE4AAB8/Valhalla_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DFB3C43E6721F8A23ACA3CD41DE4AAB8/Valhalla_12_", "en": "http://www.vuotalo.fi/en/events/event/DFB3C43E6721F8A23ACA3CD41DE4AAB8/Valhalla_12_" }, "name": { "fi": "Valhalla (12) – Talvilomaleffa", "sv": "Valhalla (12) – Sportlovsbio", "en": "Valhalla (12) – Winter Break Movie" }, "description": { "fi": "<p>Viikinkilapset Ruusu ja Tjalf lähtevät myrskyisälle matkalle Midgårdista Valhallaan jumalten Torin ja Loken seurassa.</p><p>Käy ilmi, että elämää Valhallassa uhkaavat pelottava Fenris-susi sekä jättiläiset. Rinta rinnan jumalten kanssa ihmislapset joutuvat kamppailemaan varjellakseen Valhallaa ja pelastaakseen maailman Ragnarökiltä.</p><p>Genre: Fantasia, seikkailu</p><p>Ohjaaja: Fenar Ahmad</p><p>Pääosissa: Roland Møller, Dulfi Al-Jabouri, Jacob Lohmann, Stine Fischer Christensen, Ali Sivandi, Andreas Jessen, Cecilia Loffredo, Saxo Moltke-Leth, Dulfi Al-Jabouri, Reza Forghani, Asbjørn Krogh Nissen, Stine Fischer Christensen, Sanne Salomonsen, Jacob Lohmann, Patricia Schumann, Bjørn Fjæstad<br>Tuotantomaa: Tanska 2019</p><p>Kesto: 1h 45 min.<br>Kieli: tanska<br>Teksti: suomi ja ruotsi<br>Ikäraja: K12</p>", "sv": "<p>Filmen Valhalla är en äventyrlig fantasyfilm som rymmer slagsmålsscener, psykologiska tvekamper, dödsdanser och hjältemod.</p><p>Vikingabarnen Röskva och Tjalve ger sig ut på en halsbrytande resa från Midgård till Valhall i sällskap med gudarna Tor och Loke. Livet i Valhall visar sig dock vara hotat av den fruktade Fenrisulven och jättarna. Sida vid sida med gudarna tvingas de två människobarnen strida för att bevara Valhall och rädda världen undan Ragnarök.<br> <br>Genre: Fantasi, äventyr</p><p>Regissör: Fenar Ahmad</p><p>I huvudrollerna: Roland Møller, Dulfi Al-Jabouri, Jacob Lohmann, Stine Fischer Christensen, Ali Sivandi, Andreas Jessen, Cecilia Loffredo, Saxo Moltke-Leth, Dulfi Al-Jabouri, Reza Forghani, Asbjørn Krogh Nissen, Stine Fischer Christensen, Sanne Salomonsen, Jacob Lohmann, Patricia Schumann, Bjørn Fjæstad<br>Produktionsland och år: Danmark 2019</p><p>Längd: 1h 45 min.<br>Språk: danska<br>Text: svenska och finska<br>F12</p>", "en": "<p>Viking children Røskva and Tjalfe embark on an adventurous journey from Midgard to Valhalla with the gods Thor and Loki.</p><p>Life in Valhalla, however, turns out to be threatened by the dreaded Fenrir wolf and the god's barbaric archenemies, the Jotnar. Side by side with the gods, the two children must fight to save Valhalla from the end of the world--Ragnarok.</p><p>Genre: Fantasy, adventure</p><p>Director: Fenar Ahmad</p><p>Actors: Roland Møller, Dulfi Al-Jabouri, Jacob Lohmann, Stine Fischer Christensen, Ali Sivandi, Andreas Jessen, Cecilia Loffredo, Saxo Moltke-Leth, Dulfi Al-Jabouri, Reza Forghani, Asbjørn Krogh Nissen, Stine Fischer Christensen, Sanne Salomonsen, Jacob Lohmann, Patricia Schumann, Bjørn Fjæstad</p><p>Land and year of production: Denmark 2019</p><p>Duration: 1h 45 min.<br>Language: Danish<br>Subtitles: Finnish and Swedish<br>Age limit: 12</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65545/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:c4a69c4b-2c5e-4bb8-8503-9d84cc1c7a5e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?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:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://www.youtube.com/watch?v=BtHv-uqnC1Y", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "seitkyt kahdeksan" }, "price": { "fi": "78" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_03022025_LE-test1293317368" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 189263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-03T08:44:37.270187Z", "last_modified_time": "2025-02-03T08:44:37.270206Z", "name": "Finlandiatalon kuvatekstiä", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/7065da71-02e2-ef11-a731-000d3ab40ef6", "cropping": "", "photographer_name": "Finlandia Tuulikki", "alt_text": "Alt-Finlandia", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?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:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "created_time": "2025-02-03T07:47:43.206407Z", "last_modified_time": "2025-02-03T08:44:38.588088Z", "date_published": "2025-02-03T07:39:48Z", "start_time": "2025-02-03T15:30:00Z", "end_time": "2025-02-03T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 20, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 8, "minimum_attendee_capacity": 7, "enrolment_start_time": "2025-02-01T08:00:00+02:00", "enrolment_end_time": "2025-02-02T08:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Are you thinking about starting a business? Or are you already a new entrepreneur?" }, "info_url": null, "name": { "fi": "MKtest 03022025 LE-testi 3 (lisätty hintatiedot tapahtumalle)" }, "description": { "fi": "<div><div>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM<br>1:30 pm - 3:30 pm</div></div>" }, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:c4a69c4b-2c5e-4bb8-8503-9d84cc1c7a5e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65007", "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: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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153370, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T13:14:11.484068Z", "last_modified_time": "2024-12-10T13:14:11.484090Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763468.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153370/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T13:14:11.452510Z", "last_modified_time": "2025-01-31T14:15:01.002872Z", "date_published": null, "start_time": "2025-02-14T16:00:00Z", "end_time": "2025-02-14T19: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, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/424D972FC110988B19FCBBDA670FE7D1/Bomba_Buena_ja_Sambaki", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/424D972FC110988B19FCBBDA670FE7D1/Bomba_Buena_och_Sambaki", "en": "http://www.kanneltalo.fi/en/events/event/424D972FC110988B19FCBBDA670FE7D1/Bomba_Buena_and_Sambaki" }, "name": { "fi": "Bomba Buena ja Sambaki – Global Club Nights", "sv": "Bomba Buena och Sambaki – Global Club Nights", "en": "Bomba Buena and Sambaki – Global Club Nights" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään kevään 2025 aikana kahtena iltana. Ensimmäisessä klubi-illassa 14.2. esiintyvät Bomba Buena ja Sambaki. Toinen klubi-ilta järjestetään 28.3., jolloin esiintyvät Pimienta Negra ja Postel Codes.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Bomba Buena</b><br>Kuubalaisen musiikin tehobändi Bomba Buena soittaa kuolemattomia klassikoita suurella sydämellä ja palavalla groovella. Uniikkisoundinen voimakvartetti tarjoilee ikivihreitä son-musiikin helmiä ja moderneja timbahittejä pursuavan shown maustettuna parilla makealla bolerolla ja kuumalla cha cha cha:lla. Tervetuloa pikavisiitille Habana Viejaan!</p><p>Yoandy Jimeno - laulu, lyömäsoittimet<br>Helena Kallas - piano, basso, taustalaulu<br>Gerardo Hernández - tumbadoras, taustalaulu<br>Jani Lehtioksa - bongó, kello, taustalaulu</p><p><b>SAMBAKI</b> <br>Valmistaudu kokemaan Brasilian autenttiset ja energiset sävelet Sambakin seurassa! Tämä Brasiliasta alkunsa saanut yhtye on hurmannut yleisöjä jo 10 vuoden ajan. Sambaki esittää mukaansatempaavia tulkintoja tunnetuista brasilialaisista kappaleista ja tyyleistä, yhdistäen musiikissaan samban, forrón ja muita brasilialaisia rytmejä, jotka saavat sinut tanssimaan ja laulamaan mukana hetkessä.</p><p>Jokainen heidän esityksensä on ainutlaatuinen juhla Brasilian rikasta musiikkiperinnettä ja kulttuuria. Sambakin live-esiintymiset ovat koettava itse – ne tarjoavat aitoa energiaa ja iloa, jotka nostavat mielialaa ja inspiroivat. Olitpa pitkäaikainen fani tai vasta löytämässä heidän musiikkinsa, anna Sambakin viedä sinut matkalle Brasilian sydämeen ja koe heidän musiikkinsa taika itse!</p><p><b>Global Club Nights</b> -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja Kanneltalon kanssa.</p><p>Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p><p>Vapaa pääsy.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under våren 2025. På den första klubbkvällen 14.2. framträder Bomba Buena och Sambaki. Den andra klubbkvällen ordnas 28.3. och då framträder Pimienta Negra och Postel Codes.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p><p><b>SAMBAKI</b><br>Bered dig på att uppleva autentiska och energiska melodier från Brasilien i Sambakis sällskap! Detta band från Brasilien har charmat publiker i över tio års tid. Sambaki framför medryckande tolkningar av kända brasilianska låtar och stilar. I sin musik kombinerar bandet samba, forró och andra brasilianska rytmer, som får dig att dansa och sjunga med. <br>Vart och ett av deras framträdanden är en unik fest med Brasiliens rika musiktradition och kultur. Sambakis liveuppträdanden är något man måste uppleva själv – de bjuder på äkta energi och glädje som lyfter humöret och inspirerar. Vare sig du är ett långvarigt fan eller deras musik är ny för dig, låt Sambaki ta dig med på en resa till hjärtat av Brasilien och upplev själv magin i deras musik!</p><p>Syftet med klubbarna är att skapa en trygg, inkluderande och kreativ miljö och bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights har producerats i samarbete med avdelningen för global musik vid Sibelius-Akademin och Gamlasgården.</p><p>Evenemangen syftar till att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården producerar Global Club Nights (GCN)-kvällarna i samarbete med Sibelius-Akademins utbildningsprogram Global Music.</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>Kanneltalo will host the club on two evenings during the spring of 2025. The first club night on 14 February will feature Bomba Buena and Sambaki. The second club night will take place on 28 March, with performances by Pimienta Negra and Postel Codes.</p><p>The free club nights start early, which means children are welcome when accompanied by an adult. Let’s start the weekend together!</p><p><b>Bomba Buena</b></p><p>Bomba Buena, the power group of Cuban music, ignites the atmosphere from floor to ceiling! The band makes its audience forget they're in Finland and melts the snow off the soul with their repertoire of Cuban classics from the past hundred years. The band is also known for collaborating with world stars such as bassist Carlos D'l Puerto (Irakere) and singer Evelio Galán (Afro Cuban All Stars).</p><p>Ensemble <br>Yoandy Jimeno – vocals and percussions <br>Helena Kallas – piano, base and vocals<br>Gerardo Hernández – tumbadoras and vocals<br>Jani Lehtioksa - bongó, bell and vocals</p><p><b>Sambaki</b> <br>Get ready to experience the authentic and vibrant sounds of Brazil with Sambaki, a band with roots in Brazil and members from around the world. With 10 years on the road, Sambaki has been captivating audiences with their covers of popular Brazilian songs and styles. Their music is a fusion of samba, forró, and other Brazilian rhythms that will have you dancing and singing along in no time. Each performance is a unique celebration of the rich musical traditions and culture of Brazil. Sambaki's live shows are a must-see, as they bring an authentic energy and spirit that will leave you feeling uplifted and inspired. Whether you're a long-time fan or new to their music, let Sambaki take you on a journey to the heart of Brazil and experience the magic of their music for yourself.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65007/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:eaba4e7e-1d89-45ae-96c2-4dc0c318f033", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_31012025_LE-testi_2_korotetulla_long_desc_-merkkimrll2942333747" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 181783, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-31T13:57:04.756577Z", "last_modified_time": "2025-01-31T13:57:04.756597Z", "name": "Muille maille", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/0e239403-950b-ef11-9f89-000d3a668452", "cropping": "", "photographer_name": "Aaron Linssi", "alt_text": "Laivat laivat missä ne laivat menee", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/181783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "created_time": "2025-01-31T12:41:33.056165Z", "last_modified_time": "2025-01-31T13:57:09.328721Z", "date_published": "2025-01-31T12:35:30Z", "start_time": "2025-02-01T00:00:00Z", "end_time": "2025-02-01T00:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 14, "audience_max_age": 16, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 25, "minimum_attendee_capacity": 20, "enrolment_start_time": "2024-12-30T08:00:00+02:00", "enrolment_end_time": "2025-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Are you thinking about starting a business? Or are you already a new entrepreneur?" }, "info_url": null, "name": { "fi": "MKtest 31012025 LE-testi 2 korotetulla long desc -merkkimäärällä" }, "description": { "fi": "<div><div>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM<br>1:30 pm - 3:30 pm<br><strong>Booths by organizations </strong><br>- check out all entrepreneurship services available to you in th<br> </div></div>" }, "location_extra_info": null, "provider": { "fi": "Business Helsingfors" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:eaba4e7e-1d89-45ae-96c2-4dc0c318f033/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:f66bd8fb-1a75-482c-abee-b71e3640d781", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?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:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 181561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-31T12:00:05.967380Z", "last_modified_time": "2025-01-31T12:00:05.967414Z", "name": "testi kuvateksti 31012025", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8c0b34ba-8e0e-ef11-9f89-0022489e55b1", "cropping": "", "photographer_name": "testi kuvaajan nimi joka on aika pitkä tässä esimerkissä juupa juu 31012025", "alt_text": "testi alt 31012025", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/181561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?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:p20000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?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:p2339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" } ], "created_time": "2025-01-31T12:00:09.171327Z", "last_modified_time": "2025-01-31T12:00:09.171351Z", "date_published": "2025-01-31T11:49:06Z", "start_time": "2025-02-02T15:00:00Z", "end_time": "2025-02-02T15:05:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-12-30T08:00:00+02:00", "enrolment_end_time": "2025-02-01T08:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC FI", "sv": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC SV", "en": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC EN", "ru": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC RU", "zh_hans": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC CH", "ar": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC AR" }, "info_url": null, "name": { "fi": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä", "sv": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä SV", "en": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä EN", "ru": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä RU", "zh_hans": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä CH", "ar": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä AR" }, "description": { "fi": "<div><div>SUOMI</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>", "sv": "<div><div>RUOTSI</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>", "en": "<div><div>ENGLANTI</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>", "ru": "<div><div>VENÄJÄ</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>", "zh_hans": "<div><div>KIINA</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>", "ar": "<div><div>ARABIA</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>" }, "location_extra_info": null, "provider": { "fi": "Business Helsinki FI", "sv": "Business Helsinki SV", "en": "Business Helsinki EN", "ru": "Business Helsinki RU", "zh_hans": "Business Helsinki CH", "ar": "Business Helsinki AR" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:f66bd8fb-1a75-482c-abee-b71e3640d781/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:44e8b880-65e0-4ad6-ac57-2ab84317741a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:ccc8ead8-322a-407b-922d-696899918f14/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi2264568382" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 179126, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-30T13:00:30.422857Z", "last_modified_time": "2025-01-30T13:00:30.422881Z", "name": "testi kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8c0b34ba-8e0e-ef11-9f89-0022489e55b1", "cropping": "", "photographer_name": "testi kuvaajan nimi joka on aika pitkä tässä esimerkissä juupa juu", "alt_text": "testi alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/179126/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2025-01-30T13:00:31.185598Z", "last_modified_time": "2025-01-30T13:00:31.185626Z", "date_published": "2025-01-30T12:56:33Z", "start_time": "2025-01-30T15:00:00Z", "end_time": "2025-01-30T15:05:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-12-30T08:00:00+02:00", "enrolment_end_time": "2025-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC" }, "info_url": null, "name": { "fi": "MKtest 30012025 LE-testi ilman hintaa" }, "description": { "fi": "<div><div>MKtest 30012025 LE-testi ilman hintaa LONG DESC</div></div>" }, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:44e8b880-65e0-4ad6-ac57-2ab84317741a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:ccc8ead8-322a-407b-922d-696899918f14", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?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:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_29012025_LE-testi4233367328", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_29012025_LE-testi4233367328", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_29012025_LE-testi4233367328", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_29012025_LE-testi4233367328", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_29012025_LE-testi4233367328", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_29012025_LE-testi4233367328" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:44e8b880-65e0-4ad6-ac57-2ab84317741a/?format=api" } ], "images": [ { "id": 179125, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-30T12:44:52.798330Z", "last_modified_time": "2025-01-30T12:44:52.798349Z", "name": "MKtest 29012025 Kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8e0b34ba-8e0e-ef11-9f89-0022489e55b1", "cropping": "", "photographer_name": "MKtest 29012025 Kuvaajan nimi", "alt_text": "MKtest 29012025 Kuvan alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/179125/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?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:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "created_time": "2025-01-30T12:41:46.567737Z", "last_modified_time": "2025-01-30T12:44:53.754230Z", "date_published": "2025-01-29T13:09:19Z", "start_time": "2025-01-31T10:00:00Z", "end_time": "2025-01-31T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": 10, "enrolment_start_time": "2025-01-01T08:00:00+02:00", "enrolment_end_time": "2025-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 29012025 LE-testi SHORT DESC FI", "sv": "MKtest 29012025 LE-testi SHORT DESC SV", "en": "MKtest 29012025 LE-testi SHORT DESC EN", "ru": "MKtest 29012025 LE-testi SHORT DESC RU", "zh_hans": "MKtest 29012025 LE-testi SHORT DESC CH", "ar": "MKtest 29012025 LE-testi SHORT DESC AR" }, "info_url": null, "name": { "fi": "MKtest 30012025 LE-testi (päivitys 14:44)", "sv": "MKtest 29012025 LE-testi SV", "en": "MKtest 29012025 LE-testi EN", "ru": "MKtest 29012025 LE-testi RU", "zh_hans": "MKtest 29012025 LE-testi CH", "ar": "MKtest 29012025 LE-testi AR" }, "description": { "fi": "<div><div><em>FI Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm </div></div>", "sv": "<div><div><em>SV Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm</div></div>", "en": "<div><div><em>EN Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm</div></div>", "ru": "<div><div><em>RU Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm</div></div>", "zh_hans": "<div><div><em>CH Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm</div></div>", "ar": "<div><div><em>AR Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm</div></div>" }, "location_extra_info": null, "provider": { "fi": "Business Helsinki FI", "sv": "Business Helsinki SV", "en": "Business Helsinki EN", "ru": "Business Helsinki RU", "zh_hans": "Business Helsinki CH", "ar": "Business Helsinki AR" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:ccc8ead8-322a-407b-922d-696899918f14/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65123", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153165, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-03T14:17:19.874640Z", "last_modified_time": "2024-12-03T14:17:19.874664Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764071.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153165/?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-12-03T14:17:19.846546Z", "last_modified_time": "2025-01-30T08:14:30.700590Z", "date_published": null, "start_time": "2025-02-05T08:00:00Z", "end_time": "2025-02-05T10: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, "short_description": { "fi": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.", "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.", "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FE396160C2CCE359F3C5D3CECEF638B1/Naperokahvila", "sv": "http://www.annantalo.fi/sv/evenemang/event/FE396160C2CCE359F3C5D3CECEF638B1/Smabarnskaf_", "en": "http://www.annantalo.fi/en/events/event/FE396160C2CCE359F3C5D3CECEF638B1/Toddler_caf_" }, "name": { "fi": "Naperokahvila", "sv": "Småbarnskafé", "en": "Toddler café" }, "description": { "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Tämän viikon Naperokahvilassa näytämme animaatioita klo 10–12. Animaatioiden lisäksi lapsi ja aikuinen pääsevät yhdessä merelliselle seikkailulle!</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>", "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Den här veckan visar vi animationer i Naperokaféet mellan kl. 10 och 12. Förutom animationerna kan barn och vuxna tillsammans ge sig ut på ett marint äventyr!</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>", "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>This week at Naperokahvila, we will show animations between 10 AM and 12 PM. In addition to the animations, children and adults can embark on a marine adventure together!</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace.</p><p>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65123/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65549", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 176803, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-29T12:14:47.613888Z", "last_modified_time": "2025-01-29T12:14:47.613903Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765224.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176803/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-29T12:14:47.581758Z", "last_modified_time": "2025-01-29T12:14:47.686130Z", "date_published": null, "start_time": "2025-04-08T06: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, "short_description": { "fi": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).", "sv": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).", "en": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4)." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1A57D3F1F9768EBFF5D1D33924F1BC72/BUU-Klubben_LIVE", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1A57D3F1F9768EBFF5D1D33924F1BC72/BUU-Klubben_LIVE", "en": "http://www.vuotalo.fi/en/events/event/1A57D3F1F9768EBFF5D1D33924F1BC72/BUU-Klubben_LIVE" }, "name": { "fi": "BUU-Klubben LIVE", "sv": "BUU-Klubben LIVE", "en": "BUU-Klubben LIVE" }, "description": { "fi": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4 Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>", "sv": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4 Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>", "en": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4 Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65542", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 174301, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-28T09:14:28.499837Z", "last_modified_time": "2025-01-28T09:14:28.499853Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765013.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174301/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-28T09:14:28.462327Z", "last_modified_time": "2025-01-28T09:14:28.589999Z", "date_published": null, "start_time": "2025-02-01T16:00:00Z", "end_time": "2025-02-01T21: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, "short_description": { "fi": "Hyvään päätyyn -taidenäyttely ja tapahtumasarja saa huipennuksensa lauantaina 1. helmikuuta, kun Hyvään Päätyyn levittäytyy koko Vuotaloon." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/24C86A04DE6683FF8FAFB25D8A35B773/Hyvan_Paatyyn_-taidenayttelyn_paatapahtuma_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/24C86A04DE6683FF8FAFB25D8A35B773/Hyvan_Paatyyn_-taidenayttelyn_paatapahtuma_", "en": "http://www.vuotalo.fi/en/events/event/24C86A04DE6683FF8FAFB25D8A35B773/Hyvan_Paatyyn_-taidenayttelyn_paatapahtuma_" }, "name": { "fi": "Hyvän Päätyyn -taidenäyttelyn päätapahtuma – Perttu Häkkisen Shadowland-dokkari, DJ-Sofa, Kaukolampi, Prank Kafka & Motherfuckers", "sv": "Hyvän Päätyyn -taidenäyttelyn päätapahtuma", "en": "Hyvän Päätyyn -taidenäyttelyn päätapahtuma" }, "description": { "fi": "<p>Hyvään päätyyn -taidenäyttely ja tapahtumasarja saa huipennuksensa lauantaina 1. helmikuuta, kun Hyvään Päätyyn levittäytyy koko Vuotaloon.</p><p>Tapahtuma tarjoaa kävijöilleen audiovisuaalisen kokemuksen, jota ei kannata jättää välistä!</p><p>Tapahtuman avaa Vuosalissa näytettävä Perttu Häkkisen dokumentti Shadowland, jonka jälkeen ohjelma jatkuu kahdessa eri kerroksessa klo 20:00 alkaen.</p><p>Musiikkia kuullaan laidasta laitaan, kellarin OG/AG-tila tarjoilee kaikkea noisesta improvisoituun suomisaundiin, yläkerran Vuosalin ollessa enemmän tanssipainotteinen. Esiintyjinä muun muassa DJ-Sofa, Kaukolampi, Prank Kafka & Motherfuckers.</p><p>Vuotalo on poikkeuksellisesti auki klo 23:00 asti. Tapahtuma on ilmainen.</p><p>17.1 alkanut Hyvään päätyyn -taidenäyttely Vuotalon aulassa ja galleriassa on avoinna yleisölle myös tapahtuman jälkeen lauantaihin 8.2. asti.</p><p>Tarkempi ohjelma aikatauluineen: https://www.hyvaanpaatyyn.com/</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65542/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65298", "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: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:669/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153471, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-17T09:14:08.375593Z", "last_modified_time": "2024-12-17T09:14:08.375610Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764395.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153471/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T09:14:08.339795Z", "last_modified_time": "2025-01-28T09:14:23.791279Z", "date_published": null, "start_time": "2025-01-17", "end_time": "2025-02-08", "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, "short_description": { "fi": "Kuva-, valo- ja äänitaidetta yhdistävä näyttely ja tapahtumakokonaisuus valaisevat Vuotalon!", "sv": "Utställningen och evenemangshelheten som kombinerar bild-, ljus- och ljudkonst lyser upp Nordhuset!", "en": "An exhibition and event ensemble combining visual, light and sound art illuminate Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/001795129551079AE63A7BD2B442F2F6/Hyvaan_paatyyn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/001795129551079AE63A7BD2B442F2F6/Hyvaan_Paatyyn_", "en": "http://www.vuotalo.fi/en/events/event/001795129551079AE63A7BD2B442F2F6/Hyvaan_paatyyn" }, "name": { "fi": "Hyvään päätyyn", "sv": "Hyvään Päätyyn", "en": "Hyvään päätyyn" }, "description": { "fi": "<p>Kuva-, valo- ja äänitaidetta yhdistävä näyttely ja tapahtumakokonaisuus valaisevat Vuotalon!</p><p>Hyvään Päätyyn tuo Vuotalon galleriaan, aulaan ja Vuosaliin näytille itähelsinkiläistä osaamista parhaimmillaan.</p><p><b>Tapahtumapäivät:</b><br>pe 17.1.2025 klo 17–20 DJ-keikka aulassa<br>pe 24.1.2025 klo 18–20 DJ-keikka aulassa<br>la 1.2.2025 klo 18 Shadowland-elokuva ja tapahtuma Vuosalissa ja Pikkusalissa</p><p>Hyvään Päätyyn on kuvataiteen, mediataiteen, klubi-estetiikan sekä elektronisen ja vaihtoehtomusiikin yhdistävä näyttely-tapahtuma-hybridi Vuotalossa 17.1-8.2.2025.</p><p>Avajaiset 17.1.2025 17.00-20.00<br>Dj Mutual<br>Lord of Keke<br>Näyttelyyn osallistuvat taiteilijat:<br>acidULTRA Neon Corps<br>Hyvään Päätyyn Työryhmä<br>Jan S. Kerman<br>Jani Hietanen<br>Jatta Nemeth, Matias Peljo, Sebastian Nemeth<br>Kajsa Granström<br>Konsta Ojala<br>Mikko Hallikainen<br>Niina Mantsinen<br>Ramina Habibollah<br>Santiyago Delgado<br>Tristan Myllyviita<br>Ville Kiiski</p><p>Lisätietoja:<br>https://hyvaanpaatyyn.com/<br>https://www.instagram.com/hyvaanpaatyyn</p><p>Hyvään Päätyyn työryhmä:<br>Aria Tipagon<br>Jani Hietanen<br>Juuso Juutilainen<br>Lari Suominen<br>Osku Leinonen<br>Ville Kiiski</p>", "sv": "<p>Utställningen och evenemangshelheten som kombinerar bild-, ljus- och ljudkonst lyser upp Nordhuset!</p><p>Hyvään Päätyyn presenterar den bästa kompetensen från östra Helsingfors.</p><p><b>Evenemangsdatum:</b><br>fre 17.1.2025 kl. 18–20 DJ-spelning i lobbyn<br>fre 24.1.2025 kl. 18–20 DJ-spelning i lobbyn<br>lör 1.2.2025 kl. 18 spelning och evenemang</p>", "en": "<p>An exhibition and event ensemble combining visual, light and sound art illuminate Vuotalo!</p><p>Hyvään Päätyyn brings out the best East Helsinki skills.</p><p><b>Event Dates:</b><br>Fri 17 January 2025 at 18:00–20:00 DJ gig in the lobby<br>Fri 24 January 2025 at 18:00–20:00 DJ gig in the lobby<br>Sat 1 February 2025 at 18:00 gig and event</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65298/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65538", "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:105/?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/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172743, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T15:15:20.497322Z", "last_modified_time": "2025-01-27T15:15:20.497345Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765060.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-27T15:15:20.463148Z", "last_modified_time": "2025-01-27T15:15:20.573397Z", "date_published": null, "start_time": "2025-02-20T13: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, "short_description": { "fi": "Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.", "sv": "Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.", "en": "Nobody has ever failed so hard at trying to be good as The Bad Guys." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B1763A7868181E7AFFCFD27A7F79885A/Talvilomaleffa_Hurja_jengi_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B1763A7868181E7AFFCFD27A7F79885A/Sportlovsfilm_Hurja_jengi_7_", "en": "http://www.malmitalo.fi/en/events/event/B1763A7868181E7AFFCFD27A7F79885A/Winter_break_movie_Hurja_jengi_7_" }, "name": { "fi": "Talvilomaleffa: Hurja jengi (7)", "sv": "Sportlovsfilm: Hurja jengi (7)", "en": "Winter break movie: Hurja jengi (7)" }, "description": { "fi": "<p>Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.</p><p>Suosittuun kirjasarjaan perustuvassa toimintaseikkailussa eläinpahisten rikollisjengi punoo kaikkien aikojen ovelimman juonen — he ryhtyvät mallikansalaisiksi.</p><p>Hurja jengi koostuu viidestä konnasta. Joukkioon kuuluvat sulava taskuvaras herra Susi, kaiken kokenut murtovaras herra Käärme, naamioitumisen mestari herra Hai, äkkipikainen korsto herra Pirajia ja naseva hakkeri neiti Tarantella.</p><p>Mutta kun vuosikausia jatkuneiden huijausten ja takaa-ajojen jälkeen jengi jää viimeinkin kiinni, herra Susi tekee diilin, jota hänellä ei ole aikomustakaan noudattaa: vankilalta välttyäkseen Hurja jengi ryhtyy kiltiksi.</p><p>Professori Marmeladin, nirppanokkaisen mutta ihastuttava marsun opastuksella Hurja jengi aikoo saada maailman uskomaan heidän parantaneen tapansa. Mutta pikkuhiljaa herra Susi alkaa epäillä, että hyväntekeminen tarjoaa sitä, mitä hän on aina kaivannut: hyväksyntää. Joten kun kaupunkia uhkaa uusi pahis, herra Susi päättääkin yrittää tehdä porukastaan oikean hyvisjengin.</p><p>Kesto 100 min<br>Ikäraja 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p><p>Paikka: Malmisali</p>", "sv": "<p>Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.</p><p>I den nya actionkomedin från DreamWorks Animation, baserad på New York Times bästsäljande bokserie, är ett gäng superproffsiga djur-brottslingar på väg att ta sig an sitt mest utmanande bedrägeri hittills – att bli mönstermedborgare.</p><p>Aldrig har fem vänner varit så ökända som Tuffa Gänget – den eleganta ficktjuven Mr. Wolf (Oscar®-vinnaren Sam Rockwell, Three Billboards Outside Ebbing, Missouri), den erfarne kassaskåpssprängaren Mr. Snake (Marc Maron, GLOW), den coola maskeringsmästaren Mr. Shark (Craig Robinson, Hot Tub Time Machine-serien), den temperamentsfulla tuffingen Mr. Piranha (Anthony Ramos, In the Heights) och den skärpta superhackern Ms. Tarantula (Awkwafina, Crazy Rich Asians), även kallat \"Webs\".</p><p>Övrigt: Men när gänget, efter otaliga kupper och åratal av att ha varit världens mest efterlysta skurkar, slutligen fångas, ingår Mr. Wolf ett avtal (som han inte har för avsikt att hålla) för att rädda dem alla från fängelse: Tuffa Gänget ska bli goda medborgare.<br>Under ledning av sin mentor Professor Marmalade (Richard Ayoade, Paddington 2), ett arrogant (men bedårande!) marsvin, försöker Tuffa Gänget lura världen att tro att de har förvandlats. Men under resans gång börjar Mr Wolf misstänka att om han gjorde gott på riktigt, skulle det kunna ge honom det han alltid i hemlighet har längtat efter: att bli accepterad. Så, när en ny skurk hotar staden, kan Mr. Wolf övertala resten av gänget att bli ... Snälla Gänget?</p><p>Åldersgräns: 7<br>Längd 100 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>", "en": "<p>Nobody has ever failed so hard at trying to be good as The Bad Guys.</p><p>In the new action comedy from DreamWorks Animation, based on the New York Times best-selling book series, a crackerjack criminal crew of animal outlaws are about to attempt their most challenging con yet—becoming model citizens.</p><p>Never have there been five friends as infamous as The Bad Guys—dashing pickpocket Mr. Wolf (Academy Award® winner Sam Rockwell, Three Billboards Outside Ebbing, Missouri), seen-it-all safecracker Mr. Snake (Marc Maron, GLOW), chill master-of-disguise Mr. Shark (Craig Robinson, Hot Tub Time Machine franchise), short-fused “muscle” Mr. Piranha (Anthony Ramos, In the Heights) and sharp-tongued expert hacker Ms. Tarantula (Awkwafina, Crazy Rich Asians), aka “Webs.”</p><p>But when, after years of countless heists and being the world’s most-wanted villains, the gang is finally caught, Mr. Wolf brokers a deal (that he has no intention of keeping) to save them all from prison: The Bad Guys will go good.</p><p>Under the tutelage of their mentor Professor Marmalade (Richard Ayoade, Paddington 2), an arrogant (but adorable!) guinea pig, The Bad Guys set out to fool the world that they’ve been transformed. Along the way, though, Mr. Wolf begins to suspect that doing good for real may give him what he’s always secretly longed for: acceptance. So when a new villain threatens the city, can Mr. Wolf persuade the rest of the gang to become … The Good Guys?</p><p>Age limit: 7<br>Duration: 100 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65538/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65537", "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:105/?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/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172742, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T15:15:20.276333Z", "last_modified_time": "2025-01-27T15:15:20.276355Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765059.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172742/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-27T15:15:20.244729Z", "last_modified_time": "2025-01-27T15:15:20.356478Z", "date_published": null, "start_time": "2025-02-20T11: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, "short_description": { "fi": "Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.", "sv": "Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.", "en": "Nobody has ever failed so hard at trying to be good as The Bad Guys." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F714E0B3B6E51D7C8B5C5347F95C041/Talvilomaleffa_Hurja_jengi_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F714E0B3B6E51D7C8B5C5347F95C041/Sportlovsfilm_Hurja_jengi_7_", "en": "http://www.malmitalo.fi/en/events/event/5F714E0B3B6E51D7C8B5C5347F95C041/Winter_break_movie_Hurja_jengi_7_" }, "name": { "fi": "Talvilomaleffa: Hurja jengi (7)", "sv": "Sportlovsfilm: Hurja jengi (7)", "en": "Winter break movie: Hurja jengi (7)" }, "description": { "fi": "<p>Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.</p><p>Suosittuun kirjasarjaan perustuvassa toimintaseikkailussa eläinpahisten rikollisjengi punoo kaikkien aikojen ovelimman juonen — he ryhtyvät mallikansalaisiksi.</p><p>Hurja jengi koostuu viidestä konnasta. Joukkioon kuuluvat sulava taskuvaras herra Susi, kaiken kokenut murtovaras herra Käärme, naamioitumisen mestari herra Hai, äkkipikainen korsto herra Pirajia ja naseva hakkeri neiti Tarantella.</p><p>Mutta kun vuosikausia jatkuneiden huijausten ja takaa-ajojen jälkeen jengi jää viimeinkin kiinni, herra Susi tekee diilin, jota hänellä ei ole aikomustakaan noudattaa: vankilalta välttyäkseen Hurja jengi ryhtyy kiltiksi.</p><p>Professori Marmeladin, nirppanokkaisen mutta ihastuttava marsun opastuksella Hurja jengi aikoo saada maailman uskomaan heidän parantaneen tapansa. Mutta pikkuhiljaa herra Susi alkaa epäillä, että hyväntekeminen tarjoaa sitä, mitä hän on aina kaivannut: hyväksyntää. Joten kun kaupunkia uhkaa uusi pahis, herra Susi päättääkin yrittää tehdä porukastaan oikean hyvisjengin.</p><p>Kesto 100 min<br>Ikäraja 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p><p>Paikka: Malmisali</p>", "sv": "<p>Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.</p><p>I den nya actionkomedin från DreamWorks Animation, baserad på New York Times bästsäljande bokserie, är ett gäng superproffsiga djur-brottslingar på väg att ta sig an sitt mest utmanande bedrägeri hittills – att bli mönstermedborgare.</p><p>Aldrig har fem vänner varit så ökända som Tuffa Gänget – den eleganta ficktjuven Mr. Wolf (Oscar®-vinnaren Sam Rockwell, Three Billboards Outside Ebbing, Missouri), den erfarne kassaskåpssprängaren Mr. Snake (Marc Maron, GLOW), den coola maskeringsmästaren Mr. Shark (Craig Robinson, Hot Tub Time Machine-serien), den temperamentsfulla tuffingen Mr. Piranha (Anthony Ramos, In the Heights) och den skärpta superhackern Ms. Tarantula (Awkwafina, Crazy Rich Asians), även kallat \"Webs\".</p><p>Övrigt: Men när gänget, efter otaliga kupper och åratal av att ha varit världens mest efterlysta skurkar, slutligen fångas, ingår Mr. Wolf ett avtal (som han inte har för avsikt att hålla) för att rädda dem alla från fängelse: Tuffa Gänget ska bli goda medborgare.<br>Under ledning av sin mentor Professor Marmalade (Richard Ayoade, Paddington 2), ett arrogant (men bedårande!) marsvin, försöker Tuffa Gänget lura världen att tro att de har förvandlats. Men under resans gång börjar Mr Wolf misstänka att om han gjorde gott på riktigt, skulle det kunna ge honom det han alltid i hemlighet har längtat efter: att bli accepterad. Så, när en ny skurk hotar staden, kan Mr. Wolf övertala resten av gänget att bli ... Snälla Gänget?</p><p>Åldersgräns: 7<br>Längd 100 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>", "en": "<p>Nobody has ever failed so hard at trying to be good as The Bad Guys.</p><p>In the new action comedy from DreamWorks Animation, based on the New York Times best-selling book series, a crackerjack criminal crew of animal outlaws are about to attempt their most challenging con yet—becoming model citizens.</p><p>Never have there been five friends as infamous as The Bad Guys—dashing pickpocket Mr. Wolf (Academy Award® winner Sam Rockwell, Three Billboards Outside Ebbing, Missouri), seen-it-all safecracker Mr. Snake (Marc Maron, GLOW), chill master-of-disguise Mr. Shark (Craig Robinson, Hot Tub Time Machine franchise), short-fused “muscle” Mr. Piranha (Anthony Ramos, In the Heights) and sharp-tongued expert hacker Ms. Tarantula (Awkwafina, Crazy Rich Asians), aka “Webs.”</p><p>But when, after years of countless heists and being the world’s most-wanted villains, the gang is finally caught, Mr. Wolf brokers a deal (that he has no intention of keeping) to save them all from prison: The Bad Guys will go good.</p><p>Under the tutelage of their mentor Professor Marmalade (Richard Ayoade, Paddington 2), an arrogant (but adorable!) guinea pig, The Bad Guys set out to fool the world that they’ve been transformed. Along the way, though, Mr. Wolf begins to suspect that doing good for real may give him what he’s always secretly longed for: acceptance. So when a new villain threatens the city, can Mr. Wolf persuade the rest of the gang to become … The Good Guys?</p><p>Age limit: 7<br>Duration: 100 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65537/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65536", "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:105/?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/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172741, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T15:15:20.005482Z", "last_modified_time": "2025-01-27T15:15:20.005501Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765058.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172741/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-27T15:15:19.976254Z", "last_modified_time": "2025-01-27T15:15:20.086564Z", "date_published": null, "start_time": "2025-02-19T13: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, "short_description": { "fi": "Hauska Kung Fu Panda tulee taas!", "sv": "Skojiga Kung Fu Panda kommer igen!", "en": "The funny Kung Fu Panda is back!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C8931274F052CD86109152A8BA95FF9A/Talvilomaleffa_Kung_Fu_Panda_4_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C8931274F052CD86109152A8BA95FF9A/Sportlovsfilm_Kung_Fu_Panda_4_7_", "en": "http://www.malmitalo.fi/en/events/event/C8931274F052CD86109152A8BA95FF9A/Winter_break_movie_Kung_Fu_Panda_4_7_" }, "name": { "fi": "Talvilomaleffa: Kung Fu Panda 4 (7)", "sv": "Sportlovsfilm: Kung Fu Panda 4 (7)", "en": "Winter break movie: Kung Fu Panda 4 (7)" }, "description": { "fi": "<p>Hauska Kung Fu Panda tulee taas!</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Ikäraja 7<br>Kesto 94 min<br>Puhuttu suomeksi<br>Paikka: Malmisali</p><p>Vapaa pääsy!</p>", "sv": "<p>Skojiga Kung Fu Panda kommer igen!</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.<br>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Åldersgräns: 7<br>Längd 94 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>", "en": "<p>The funny Kung Fu Panda is back!</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Age limit: 7<br>Duration: 94 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65535", "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: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/kulke:752/?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:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172740, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T15:15:19.680480Z", "last_modified_time": "2025-01-27T15:15:19.680498Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765057.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172740/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-27T15:15:19.653863Z", "last_modified_time": "2025-01-27T15:15:19.749582Z", "date_published": null, "start_time": "2025-02-19T11: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, "short_description": { "fi": "Hauska Kung Fu Panda tulee taas!", "sv": "Skojiga Kung Fu Panda kommer igen!", "en": "The funny Kung Fu Panda is back!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F82CDB81D52687217A36502FA119E830/Talvilomaleffa_Kung_Fu_Panda_4_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F82CDB81D52687217A36502FA119E830/Sportlovsfilm_Kung_Fu_Panda_4_7_", "en": "http://www.malmitalo.fi/en/events/event/F82CDB81D52687217A36502FA119E830/Winter_break_movie_Kung_Fu_Panda_4_7_" }, "name": { "fi": "Talvilomaleffa: Kung Fu Panda 4 (7)", "sv": "Sportlovsfilm: Kung Fu Panda 4 (7)", "en": "Winter break movie: Kung Fu Panda 4 (7)" }, "description": { "fi": "<p>Hauska Kung Fu Panda tulee taas!</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Ikäraja 7<br>Kesto 94 min<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Skojiga Kung Fu Panda kommer igen!</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.<br>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Åldersgräns: 7<br>Längd 94 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>", "en": "<p>The funny Kung Fu Panda is back!</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Age limit: 7<br>Duration: 94 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65534", "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:105/?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/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172739, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T15:15:19.363008Z", "last_modified_time": "2025-01-27T15:15:19.363025Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765056.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172739/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-27T15:15:19.325586Z", "last_modified_time": "2025-01-27T15:15:19.440129Z", "date_published": null, "start_time": "2025-02-18T13: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, "short_description": { "fi": "Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.", "sv": "I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.", "en": "Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D325C72E0C13DD439488E7756EDD187E/Talvilomaleffa_Toive_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D325C72E0C13DD439488E7756EDD187E/Sportlovsfilm_Onskan_7_", "en": "http://www.malmitalo.fi/en/events/event/D325C72E0C13DD439488E7756EDD187E/Winter_break_movie_Wish_7_" }, "name": { "fi": "Talvilomaleffa: Toive (7)", "sv": "Sportlovsfilm: Önskan (7)", "en": "Winter break movie: Wish (7)" }, "description": { "fi": "<p>Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.</p><p>Kun Asha hädän hetkellä kääntyy tähtitaivaan puoleen ja esittää toiveen, hänelle vastaa kosminen voima—pieni rajatonta energiaa pursuava pallo nimeltä Tähti. Yhdessä he kohtaavat mahtavan vihollisen pelastaakseen Ashan yhteisön ja todistavat, että kun urhean ihmisen tahto yhdistyy tähtien taikaan, ihmeitä voi tapahtua.</p><p>Toive on uusi Walt Disney-animaatio.</p><p>Ikäraja: 7<br>Kesto 95 min<br>Puhuttu suomeksi<br>Paikka: Malmisali</p><p>Vapaa pääsy!</p>", "sv": "<p>I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.</p><p>När Asha i nödens stund vänder sig mot stjärnhimlen och lägger fram ett önskemål, får hon svar av en kosmisk kraft – en liten boll som sjuder av gränslös energi vid namn Stjärnan. Tillsammans möter de en mäktig fiende för att rädda Ashas gemenskap, och bevisar att när en modig människas vilja kombineras med stjärnornas magi, så kan under ske.</p><p>Önskan är en ny Walt Disney-animation.</p><p>Åldersgräns: 7<br>Längd 95 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>", "en": "<p>Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community.</p><p>When Asha turns to the stars in her time of need and makes a wish, she is answered by a cosmic force – a small ball of infinite energy called Star. Together, they face a formidable foe to save Asha’s community and prove that when the will of a brave person combines with the magic of the stars, miracles can happen.</p><p>Wish is a new animated film from Walt Disney.</p><p>Age limit: 7<br>Duration: 95 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65533", "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:105/?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/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 172738, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-27T15:15:19.018454Z", "last_modified_time": "2025-01-27T15:15:19.018474Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765055.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172738/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-27T15:15:18.956302Z", "last_modified_time": "2025-01-27T15:15:19.133435Z", "date_published": null, "start_time": "2025-02-18T11: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, "short_description": { "fi": "Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.", "sv": "I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.", "en": "Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EAB1B038338DF0595323F4D0EFC6D6A9/Talvilomaleffa_Toive_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EAB1B038338DF0595323F4D0EFC6D6A9/Sportlovsfilm_Onskan_7_", "en": "http://www.malmitalo.fi/en/events/event/EAB1B038338DF0595323F4D0EFC6D6A9/Winter_break_movie_Wish_7_" }, "name": { "fi": "Talvilomaleffa: Toive (7)", "sv": "Sportlovsfilm: Önskan (7)", "en": "Winter break movie: Wish (7)" }, "description": { "fi": "<p>Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.</p><p>Kun Asha hädän hetkellä kääntyy tähtitaivaan puoleen ja esittää toiveen, hänelle vastaa kosminen voima—pieni rajatonta energiaa pursuava pallo nimeltä Tähti. Yhdessä he kohtaavat mahtavan vihollisen pelastaakseen Ashan yhteisön ja todistavat, että kun urhean ihmisen tahto yhdistyy tähtien taikaan, ihmeitä voi tapahtua.</p><p>Toive on uusi Walt Disney-animaatio.</p><p>Ikäraja: 7<br>Kesto 95 min<br>Puhuttu suomeksi<br>Paikka: Malmisali</p><p>Vapaa pääsy!</p>", "sv": "<p>I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.</p><p>När Asha i nödens stund vänder sig mot stjärnhimlen och lägger fram ett önskemål, får hon svar av en kosmisk kraft – en liten boll som sjuder av gränslös energi vid namn Stjärnan. Tillsammans möter de en mäktig fiende för att rädda Ashas gemenskap, och bevisar att när en modig människas vilja kombineras med stjärnornas magi, så kan under ske.</p><p>Önskan är en ny Walt Disney-animation.</p><p>Åldersgräns: 7<br>Längd 95 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>", "en": "<p>Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community.</p><p>When Asha turns to the stars in her time of need and makes a wish, she is answered by a cosmic force – a small ball of infinite energy called Star. Together, they face a formidable foe to save Asha’s community and prove that when the will of a brave person combines with the magic of the stars, miracles can happen.</p><p>Wish is a new animated film from Walt Disney.</p><p>Age limit: 7<br>Duration: 95 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65533/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65514", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T15:15:26.289241Z", "last_modified_time": "2025-01-24T15:15:26.289259Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761014.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T15:15:26.256249Z", "last_modified_time": "2025-01-24T15:15:26.374142Z", "date_published": null, "start_time": "2025-04-09T12: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, "short_description": { "fi": "Katja Thomson on vieraana HOW Radiossa.", "sv": "Katja Thomson är lektor i musikpedagogik och forskare i projektet Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021–2025) vid Konstuniversitetets Sibelius-Akademi.", "en": "Dr. Katja Thomson is a Lecturer in Music Education and a researcher in the project Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021-2025) at the Sibelius Academy of the University of the Arts Helsinki, Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights" }, "name": { "fi": "HOW Radio: Global Club Nights – Katja Thomson", "sv": "HOW Radio: Global Club Nights – Katja Thomson", "en": "HOW Radio: Global Club Nights – Katja Thomson" }, "description": { "fi": "<p>Katja Thomson on vieraana HOW Radiossa.</p><p>Hän toimii musiikkikasvatuksen lehtorina sekä tutkijana Taideyliopiston Sibelius-Akatemian Music Education, Professionalism, and Eco-Politics -hankkeessa (EcoPolitics, 2021–2025).</p><p>Hän on työskennellyt laajasti musiikkikasvattajana ja taiteilijana kouluissa, yhtyeissä, teatterissa ja erilaisissa yhteisöllisissä ympäristöissä.</p><p>Katja on Euroopan konservatorioiden liiton (AEC) Empowering Artists as Makers in Society (ARTEMIS) -työryhmän puheenjohtaja, joka keskittyy monimuotoisuuteen, inkluusioon ja sukupuolten tasa-arvoon.</p><p>Vuonna 2021 hän väitteli tohtoriksi tutkimuksella, joka käsitteli yhtyeprojektia, johon osallistui pakolaistaustaisia ja maahanmuuttajataustaisia muusikoita sekä Sibelius-Akatemian opiskelijoita.</p><p>Katja asui Isossa-Britanniassa vuosina 1996–2011 ja on kehittänyt luovia ja osallistavia musiikkikasvatusohjelmia Suomessa, Isossa-Britanniassa, Brasiliassa ja Filippiineillä.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: www.helsinkiopenwaves.com</p>", "sv": "<p>Katja Thomson är lektor i musikpedagogik och forskare i projektet Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021–2025) vid Konstuniversitetets Sibelius-Akademi.</p><p>Hon har arbetat omfattande som musikpedagog och artist i skolor, band, teatrar och olika samhällsmiljöer.</p><p>Katja är ordförande för arbetsgruppen Empowering Artists as Makers in Society (ARTEMIS) i det europeiska förbundet för konservatorier (AEC), som fokuserar på mångfald, inkludering och jämställdhet mellan könen.</p><p>År 2021 doktorerade hon med en undersökning om ett bandprojekt som involverade musiker med flykting- och invandrarbakgrund och studerande från Sibelius-Akademin.</p><p>Katja bodde i Storbritannien under åren 1996–2011 och har utvecklat kreativa och inkluderande program i musikpedagogik i Finland, Storbritannien, Brasilien och Filippinerna.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på www.helsinkiopenwaves.com</p>", "en": "<p>Dr. Katja Thomson is a Lecturer in Music Education and a researcher in the project Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021-2025) at the Sibelius Academy of the University of the Arts Helsinki, Finland.</p><p>She has worked extensively as a music educator and artist in schools, ensembes, theatre and various community settings. Katja is the chair of the Diversity, Inclusion and Gender Equality working group for Empowering Artists as Makers in Society (ARTEMIS) of the European Association of Conservatoires (AEC). <br>In 2021 she completed her doctoral dissertation on an ensemble project including musicians with refugee and immigrant background and students from the Sibelius Academy. <br>Katja lived in the UK 1996-2011 and has developed music education programmes promoting creative, participatory music practices in Finland, UK, Brazil and the Philippines. <br><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: www.helsinkiopenwaves.com</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64736", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153668, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T12:15:17.824633Z", "last_modified_time": "2025-01-03T12:15:17.824651Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759547.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153668/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-03T12:15:17.798179Z", "last_modified_time": "2025-01-24T13:14:32.451928Z", "date_published": null, "start_time": "2025-02-28", "end_time": "2025-05-03", "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, "short_description": { "fi": "Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.", "sv": "Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.", "en": "Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Pumpulimuisto", "sv": "http://www.annantalo.fi/sv/evenemang/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Bomullsminnen", "en": "http://www.annantalo.fi/en/events/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Cotton_Memories" }, "name": { "fi": "Pumpulimuisto", "sv": "Bomullsminnen", "en": "Cotton Memories" }, "description": { "fi": "<p>Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.</p><p>Pumpulimuisto on Pehmeät materiaalit nykytaiteessa -kurssin näyttely. Aalto-yliopiston taiteiden ja suunnittelun korkeakoulun Taiteen ja median laitoksen valinnaisiin opintoihin kuuluva kurssi - lempinimeltään Pehmikset - on ollut opinto-ohjelmassa vuodesta 2011 alkaen.<br> <br>Pumpulimuisto koostuu eri tekniikoin kurssin aikana toteutetuista teoksista. Opiskelijat ovat tutustuneet tekstiilimateriaalien ja -tekniikoiden käyttöön nykytaiteessa luentojen, taiteilijavierailujen ja oman taiteellisen työskentelyn avulla. Näyttelyn teokset ja teema syntyvät opiskelijaryhmän ideoiden pohjalta.</p><p>Vapaa pääsy</p><p><b>Näyttelyn avajaiset 27.2. klo 17-19 - Tervetuloa!</b></p>", "sv": "<p>Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.</p><p>Bomullsminnen är en utställning av Aalto-universitetets konst- och designskolas institution för konst och medias kurs Mjuka material inom samtidskonsten. Den valbara kursen med smeknamnet Mjuksaker har varit en del av studieprogrammet sedan 2011.<br> <br>De studerande har introducerats till användningen av textilmaterial och -tekniker i samtida konst genom föreläsningar, konstnärsbesök och eget konstnärligt arbete. Utställningens verk och tema bygger på studerandegruppens idéer.</p>", "en": "<p>Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials.</p><p>Cotton Memories is an exhibition of the Soft materials in contemporary art course at the Aalto University School of Arts, Design and Architecture. The course, which is part of optional studies and nicknamed Softies, has been in the study programme since 2011.<br> <br>Students have become familiar with the use of textile materials and techniques in contemporary art through lectures, artist visits and their own artistic work. The works and theme of the exhibition are based on the ideas of the student group.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64736/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d244", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d3py/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": 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" } ], "created_time": "2025-01-15T13:50:20.831856Z", "last_modified_time": "2025-01-24T11:28:13.422669Z", "date_published": null, "start_time": "2025-05-30T08:00:00Z", "end_time": "2025-05-30T10: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, "short_description": { "fi": "Tervetuloa Babykinoon Ison Omenan kirjastoon joka kuukauden viimeisenä perjantaina! ", "sv": "Välkommen till Babykino på Iso Omena-biblioteket den sista fredagen i varje månad!", "en": "Welcome to Babykino at Iso Omena Library on the last Friday of each month!" }, "info_url": null, "name": { "fi": "Baby Kino", "sv": "Baby Kino", "en": "Baby Kino " }, "description": { "fi": "<p>ELOKUVAT: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Rouva Harris lähtee Pariisiin </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Pikkunaisia </p><p><br></p><p> -Babykino on tarkoitettu vanhemmille/hoitajille ja vauvoille. </p><p>-Elokuvat on valittu aikuisten kokoelmasta, mutta ne ovat ikärajaltaan sallittuja (S). </p><p>-Babykino on maksuton ja se järjestetään Ison Omenan kirjaston VOX-tilassa. </p><p>-Elokuvan äänet ovat normaalia hiljaisemmalla ja tilassa on himmeä valaistus. </p><p>-Tilassa on erilaisia sohvia ja tuoleja, sekä vesipiste ja mikro. Omat eväät on sallittu! </p><p>-Lastenhoitohuone löytyy tilan läheisyydestä kirjaston lastenosastolta neuvolan päädystä. </p><p>-Voit tuoda mukanasi oman alustan vauvalle, esimerkiksi kantokassin tai turvaistuimen, jossa vauvasi voi nukkua elokuvan aikana. </p><p>-Vauvan äänet eivät häiritse elokuvan aikana! </p>", "sv": "<p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino är för föräldrar/vårdare och bebisar.</p><p>Filmerna är valda från vuxenkollektionen men är tillåtna för alla åldrar (S).</p><p>Babykino är gratis och arrangeras i VOX-rummet på Iso Omena-biblioteket.</p><p>Ljudnivån på filmen är lägre än normalt, och belysningen i rummet är dämpad.</p><p>I rummet finns olika soffor och stolar, en vattenkran och en mikrovågsugn. Egna snacks är tillåtna!</p><p>Ett skötrum finns i närheten av bibliotekets barnavdelning vid rådgivningens ände.</p><p>Du kan ta med en egen underlag för din bebis, till exempel en bärväska eller bilstol, där din bebis kan sova under filmen.</p><p>Bebisens ljud stör inte under filmen!</p>", "en": "<p>Films: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino is intended for parents/caregivers and babies.</p><p>The movies are selected from the adult collection but are rated suitable for all ages (S).</p><p>Babykino is free of charge and takes place in the VOX room at Iso Omena Library.</p><p>The movie audio is quieter than usual, and the room has dim lighting.</p><p>The space features various sofas and chairs, a water station, and a microwave. You’re welcome to bring your own snacks!</p><p>A baby care room is located near the library's children's section at the end of the health center.</p><p>You can bring your own mat for the baby, such as a carrycot or car seat, where your baby can sleep during the movie.</p><p>Baby sounds won’t disturb the movie!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24633, "next": "