Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1179
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1180", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1178" }, "data": [ { "id": "kulke:59969", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/alpo-aaltokoski-company/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/alpo-aaltokoski-company/?affiliate=ADV", "en": "https://www.lippu.fi/artist/alpo-aaltokoski-company/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4173, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:22.014146Z", "last_modified_time": "2023-09-07T14:21:22.014168Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731996.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4173/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:21.863700Z", "last_modified_time": "2023-11-08T21:13:42.005720Z", "date_published": null, "start_time": "2023-09-09T16: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, "description": { "fi": "<p>Rakastettu koreografia Together ja 8.9. Stoassa ensi-iltansa saava Pasos esitetään yhdessä saman illan aikana.</p><p><b>Alpo Aaltokoski: Together</b></p><p>Alpo Aaltokosken rakastettu koreografia Together tekee paluun näyttämölle. Uuden sukupolven tanssijat tulkitsevat nyt uudelleen vuonna 2010 ensi-iltansa saaneen teoksen.</p><p>Kotimaan keskeisimpien tanssifestivaalien ohella Together on vieraillut Meksikossa, Nicaraguassa ja Italiassa. Teosta on luonnehdittu suomalaisen taidetanssin klassikkoduetoksi.<br> <br>“Pidän Togetheria yhtenä Aaltokosken parhaista teoksista.”<br>Savon Sanomat<br> <br>”Vangitsevaa kerrontaa.”<br>Kaleva<br> <br>Työryhmä<br>Koreografia: Alpo Aaltokoski<br>Tanssi: Jere Jääskeläinen, Jussi Suomalainen<br>Valosuunnittelu: Kalle Paasonen<br>Sävellys ja äänisuunnittelu: Aake Otsala<br>Pukusuunnittelu: Taina Relander<br>Graafinen suunnittelu: Kirsti Maula<br>Valokuvat: Mikko Rasila<br>Ensi-ilta: 10.11.2010 Valvesali, Oulu<br>Kesto: 50 min<br> <br><i>Kun kerran on kahdestaan astunut syvään virtaan, se jättää jälkensä. Vaikka myös repisi ja heittäisi erilleen, yhteys ei katkea. On kaksi yhdessä ja irrallaan. Rinnakkain, samaan aikaan toisaalla. Kiinni toisessa, vaikka yksin kulkisi toisella puolen maapalloa.</i></p><p><b>Jussi Väänänen: Pasos – Tutkielma miehisyydestä</b><br>Ensi-ilta 8.9.2023 Stoassa</p><p>Pasos ruotii machokulttuurin ja maskuliinisuuden väkivahvaa perintöä kehollisesti kysymällä, pohtimalla ja toteamalla.<br> <br>Esitys on saanut alkunsa tanssija Jussi Väänäsen toistakymmentä vuotta kestäneestä matkasta kilpatanssin maailmasta nykytanssin pariin. Teoksessa Väänänen tekee riipaisevan näkyväksi machismoon liittyviä, negatiivisiksi kokemiaan arvolatauksia ja toimintamalleja niin henkilökohtaisen kilpatanssihistoriansa, muistumiensa ja kokemustensa kautta kuin yleisemmälläkin tasolla.<br> <br>Jussi Väänäsellä on yli 35-vuotinen kokemus kilpatanssin parissa. Yhteinen kilpaura tanssija Katja Koukkulan kanssa kesti 12 vuotta, ja sen tuloksia ovat 11-kertainen latinalaistanssien Suomen mestaruus, Euroopan mestaruuskilpailujen neljäs sija, Maailman mestaruuskilpailujen seitsemäs sija, Pohjoismaiden mestaruus sekä ensimmäinen sija British Rising Star -kilpailussa. Tämän lisäksi Väänänen on vuosia toiminut latinalaistanssien tuomarina ja valmentajana. Yhteistyö Koukkulan kanssa on kilpavuosien jälkeen tuottanut näyttämölle paritanssia uusista näkökulmista.<br> <br>Työryhmä<br>Koreografia ja tanssi: Jussi Väänänen<br>Äänisuunnittelu, muusikko: Petri Tiainen<br>Ohjaus: Sanna Silvennoinen<br>Valo- ja lavastussuunnittelu: Janne Teivainen<br>Puvustus: Kati Autere<br>Kiitokset: Suomen Kulttuurirahasto, Niilo Helanderin säätiö, Aleksanterin teatteri<br>Tuotanto: Koukkula & Väänänen 2021<br>Kesto: 35 min.</p><p>Together & Pasos kokonaiskesto n. 1 h 45 min, sis. väliajan + taiteilijatapaaminen esitysten jälkeen.<br>Liput 20/15 €</p>", "sv": "<p>Alpo Aaltokoskis Together framförs tillsammans med Jussi Väänänens solo Pasos.</p><p>Alpo Aaltokoskis mycket uppskattade koreografi Together återvänder till scenen. Den nya generationens dansare gör nu en nytolkning av verket som hade sin urpremiär 2010.</p><p>Vid sidan av Finlands viktigaste dansfestivaler har Together gästspelat i Mekiko, Nicaragua och Italien. Verket har utarbetats som en klassisk duett inom den finska konstdansen.</p><p>Väänänen's Pasos granskar machokulturens och maskulinitetens råstarka tradition genom att fråga, fundera och konstatera med kroppen.</p><p>Föreställningen har fått sin början under dansaren Jussi Väänänensmer än tio år långa resa från tävlingsdansens värld till modern dans. I verket synliggör Väänänen glasklart till machismon relaterade värdeladdningar och verksamhetsmodeller som han upplever negativa utgående från både sin personliga tävlingsdanshistoria och via sina minnen och upplevelser samt på en mer allmän nivå.</p>", "en": "<p>Alpo Aaltokoski's Together is performed together with Jussi Väänänen’s solo Pasos.</p><p>Alpo Aaltokoski’s beloved choreography Together is making a return to the stage, this time with a new generation of dancers reinterpreting the work that first premiered in 2010.</p><p>Along with the most important Finnish dance festivals, Together has visited Mexico, Nicaragua and Italy. The piece has been characterized as a classic Finnish art dance duet.<br> <br>“I consider Together as one of Aaltokoski’s best works.”<br>Savon Sanomat</p><p>“The narration is captivating.”<br>Kaleva<br> <br>Team<br>Choreography: Alpo Aaltokoski<br>Dance: Jere Jääskeläinen, Jussi Suomalainen<br>Light design: Kalle Paasonen<br>Composition and sound design: Aake Otsala<br>Costume design: Taina Relander<br>Graphic design: Kirsti Maula<br>Photography: Mikko Rasila<br>Premiere: 10 November 2010 Valvesali, Oulu, Finland<br>Performance duration: 50 min<br> <br>Once you have stepped into a deep stream together, it leaves its mark on you. No matter how you might try to rip it up and cast it away, the connection will not be broken. There are two, both in tandem and apart. Side by side, at the same time somewhere else. Each is caught in the other, even if one travels alone to the other side of the planet.</p>" }, "short_description": { "fi": "Rakastettu koreografia Together ja 8.9. Stoassa ensi-iltansa saava Pasos esitetään yhdessä saman illan aikana.", "sv": "Alpo Aaltokoskis Together framförs tillsammans med Jussi Väänänens solo Pasos.", "en": "Alpo Aaltokoski's Together is performed together with Jussi Väänänen’s solo Pasos." }, "name": { "fi": "Alpo Aaltokoski: Together | Jussi Väänänen: Pasos", "sv": "Alpo Aaltokoski: Together | Jussi Väänänen: Pasos", "en": "Alpo Aaltokoski: Together | Jussi Väänänen: Pasos" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/55C9B4E5DCDC6338CA89DF0C51FE6B1C/Alpo_Aaltokoski_Together_Jussi_Vaananen_Pasos", "sv": "http://www.stoa.fi/sv/evenemang/event/55C9B4E5DCDC6338CA89DF0C51FE6B1C/Alpo_Aaltokoski_Together_Jussi_Vaananen_Pasos", "en": "http://www.stoa.fi/en/events/event/55C9B4E5DCDC6338CA89DF0C51FE6B1C/Alpo_Aaltokoski_Together_Jussi_Vaananen_Pasos_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59969/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60308", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "23 €" }, "info_url": { "fi": "https://www.lippu.fi/event/atomirotta-vuotalo-17477983/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4172, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:21.661063Z", "last_modified_time": "2023-09-07T14:21:21.661087Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734795.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4172/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:21.264894Z", "last_modified_time": "2023-11-08T21:13:41.938023Z", "date_published": null, "start_time": "2023-09-09T16: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, "description": { "fi": "<p>Vuotalon syyskausi avataan perinteisesti Atomirotan tahtiin!</p><p>Viidettä levyä työstävä Atomirotta starttaa kuuman, vuosittaisen lähiörundinsa jälleen itseoikeutetusti Vuotalolta.</p><p>Perheen pienimmilläkin Atomifaneilla on nyt oiva mahdollisuus tulla mukaan karkeloihin, oman aikuisen seurassa.</p><p>Kesto 75, ei väliaika<br>Liput 23 € / Lippu.fi</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.</p><p>Sali avautuu klo 18.30.</p>" }, "short_description": { "fi": "Vuotalon syyskausi avataan perinteisesti Atomirotan tahtiin!" }, "name": { "fi": "Atomirotta" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/846F528FE59BB653D9FEDB531D6370D0/Atomirotta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60420", "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:32/?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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV", "sv": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV", "en": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:20.540612Z", "last_modified_time": "2023-09-07T14:21:20.540634Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734736.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4171/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:19.848263Z", "last_modified_time": "2023-11-08T21:13:41.875137Z", "date_published": null, "start_time": "2023-09-09T15: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, "description": { "fi": "<p>NYPY on nykysirkusteos naisten oikeuksista ja vapaudesta. Teos on nuorallatanssin, nykytanssin ja käsityötaiteen – etenkin pitsinnypläyksen – yhteenliittymä.</p><p>Teoksessa slaavilaisen mytologian hahmo Vesna kuvaa kehollisuudellaan vapautta ja naisten oikeuksia. Slaavilaisen mytologisen ja ritualistisen naishahmon Vesnan ääni on tukahdutettu, kuten niin monien naisten ääni, maskuliinisen yhteiskunnan pauhuun. Herkkyys ja pehmeys ovat Vesnan voimat, joilla hän yrittää löytää kuulijan, katsojan ja kokijan.</p><p>Vesna tasapainottelee hyvän ja pahan, feminiinisyyden ja maskuliinisuuden sekä kovan ja pehmeän välillä luoden siltaa todellisuuden ja mielikuvituksen välille. Kevyt henkäys, huomaamaton liikahdus ja kaunis kosketus voivat vaikuttaa ympäristöön näkyvämmin kuin pakon sanelemat suoritukset...</p><p>Vesna toimii nykysirkusteos NYPYn soolohahmona.</p><p>Esiintyjä: Katarina Suviniitty <br>Valo/äänisuunnittelu: Anne Salmi <br>Kesto: 45 min <br>Ikäsuositus: +13-v <br>Kieli: sanaton,</p>", "sv": "<p>NYPY är ett nycirkusverk om kvinnors rättigheter och frihet. Verket är en konstellation av lindans, modern dans och konsthantverk, i synnerhet spetsknyppling.</p><p>I verket skildrar den slaviska mytologins figur Vesna frihet och kvinnors rättigheter med sin kropp. Den slaviska mytologins och ritualistiska kvinnofiguren Vesnas röst har kvävts, såsom så många kvinnors röster, av dånet från det maskulina samhället. Känslighet och mjukhet är Vesnas styrkor med vilka hon försöker hitta lyssnaren, åskådaren och upplevaren.</p><p>Längd: 45 min.<br>Åldersrekommendation: +13<br>Språk: ordlös</p>", "en": "<p>NYPY is a contemporary circus piece about women’s rights and freedom. It is a fusion of tightrope walking, contemporary dance and crafts – especially lace-making.</p><p>It features a Slavic mythological figure, Vesna, who embodies freedom and women’s rights. The voice of the Slavic mythological and ritualistic female figure Vesna is muffled, as is the voice of so many women, in the noise of male-dominated society. Sensitivity and softness are Vesna’s powers, which she uses to seek out the listener, the viewer and the experiencer.</p><p>Duration: 45 min<br>Age recommendation: 13+<br>Language: non-verbal.</p>" }, "short_description": { "fi": "NYPY on nykysirkusteos naisten oikeuksista ja vapaudesta. Teos on nuorallatanssin, nykytanssin ja käsityötaiteen – etenkin pitsinnypläyksen – yhteenliittymä.", "sv": "NYPY är ett nycirkusverk om kvinnors rättigheter och frihet. Verket är en konstellation av lindans, modern dans och konsthantverk, i synnerhet spetsknyppling.", "en": "NYPY is a contemporary circus piece about women’s rights and freedom. It is a fusion of tightrope walking, contemporary dance and crafts – especially lace-making." }, "name": { "fi": "NYPY", "sv": "NYPY", "en": "NYPY" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DEF4EDB5B10D8248BDC5BFDC2AFD0EF5/NYPY_", "sv": "http://www.caisa.fi/sv/evenemang/event/DEF4EDB5B10D8248BDC5BFDC2AFD0EF5/NYPY_", "en": "http://www.caisa.fi/en/events/event/DEF4EDB5B10D8248BDC5BFDC2AFD0EF5/NYPY_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60420/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60413", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3404533/", "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3404533/", "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3404533/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:19.405561Z", "last_modified_time": "2023-09-07T14:21:19.405582Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730569.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4170/?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": "2023-09-07T14:21:19.267204Z", "last_modified_time": "2023-11-08T21:13:41.804006Z", "date_published": null, "start_time": "2023-09-09T11: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, "description": { "fi": "<p>Vanhan kansansadun klovnipäivityksessä Punahilkka saa supervoimat käyttöönsä, kun Red Nose Companyn klovnit Babylon ja Ré pöllyttävät vanhaa klassikkoa.</p><p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.</p><p>Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan. Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa?</p><p>Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä.</p><p>Näyttämöllä: Hanna Seppä ja Minna Puolanto<br>Ohjaus: Niina Sillanpää</p><p>Esityksen kesto n. 60 min <br>Ikäsuositus: 6+<br>Kieli: suomi</p><p>Liput 6 €</p>", "sv": "<p>I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.</p><p>Sagan om Rödluvan har berättats från generation till generation i hundratals år. Nu får vi se den älskade sagan på scen i en glädjerik tolkning av clownerna Babylon och Ré.</p><p>Manteln som Rödluvan får av sin mormor ger henne superkrafter och hjälper henne att klara sig i kniviga situationer. Trots superkrafterna behövs även publikens hjälp. Hur kommer mötet mellan vargen och Rödluvan att gå till i den här moderna, uppdaterade versionen?</p><p>Utan att spara på humorn leder clownerna publiken till att fundera över teman kring tillit och trygghet.</p><p>Längd: ca. 60min.<br>Åldersrekommedation: 6+<br>Språk: finska</p>", "en": "<p>In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic.</p><p>The story of Little Red Riding Hood has been told from generation to generation for hundreds of years. Now the beloved tale is brought to the stage in a hilarious interpretation by two clowns, Babylon and Ré.</p><p>The cape, a gift from her grandmother, gives Little Red Riding Hood superpowers and helps her survive tricky situations. Despite the superpowers, the audience’s help is also needed. How will the encounter between the wolf and Little Red Riding Hood play out in this modernised version?</p><p>The clowns will lead the audience to consider the themes of trust and safety, not forgetting humour.</p><p>Duration: approx. 60 min<br>Age recommendation 6+<br>Language: Finnish</p>" }, "short_description": { "fi": "Vanhan kansansadun klovnipäivityksessä Punahilkka saa supervoimat käyttöönsä, kun Red Nose Companyn klovnit Babylon ja Ré pöllyttävät vanhaa klassikkoa.", "sv": "I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.", "en": "In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic." }, "name": { "fi": "Red Nose Company: Punahilkan paluu", "sv": "Red Nose Company: Rödluvans återkomst", "en": "Red Nose Company: The Return of Little Red Riding Hood" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B19166E3C06C1600599AC35E453B0CD6/Red_Nose_Company_Punahilkan_paluu", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B19166E3C06C1600599AC35E453B0CD6/Red_Nose_Company_Rodluvans_aterkomst", "en": "http://www.kanneltalo.fi/en/events/event/B19166E3C06C1600599AC35E453B0CD6/Red_Nose_Company_The_Return_of_Little_Red_Riding_Hood" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60413/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60401", "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:42/?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: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: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:u4804001050", "sub_events": [], "images": [ { "id": 4169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:19.041798Z", "last_modified_time": "2023-09-07T14:21:19.041830Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722820.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:21:18.882453Z", "last_modified_time": "2023-11-08T21:13:41.730010Z", "date_published": null, "start_time": "2023-09-09T09:00:00Z", "end_time": "2023-09-09T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla</p><p>Tapahtuma on maksuton ja suunnattu 12–18-vuotiaille nuorille. Tapahtuman tuottamisessa nuoria auttaa Operaatio Pulssi! Pohjoinen, Malmitalo, Malmin kirjasto ja Malmin nuorisotyöyksikkö.</p><p>Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä. Nezumiconissa järjestetään muun muassa AMV, edittikilpailu, tanssikilpailu ja pukukilpailu. Ilmoittautuminen myyntipisteille tapahtuu sähköpostilla pulssi.pohjoinen@hel.fi</p><p>Tarkemmat tiedot ja ilmoittautuminen oheisen linkin takaa:</p><p>https://nuorten.hel.fi/yleinen/nezumicon/</p>", "sv": "<p>Nezumicon är ett cosplayevenemang som unga producerar på Malms kulturhus 9.9.2023!</p><p>I evenemanget ingår program och aktiviteter med manga- och animetema samt tävlingar. Du kan anmäla dig till tävlingarna och programmet på förhand via webbplatsen hel.fi.</p><p>Evenemanget är gratis och avsett för ungdomar i åldern 12–18 år.</p>", "en": "<p>Nezumicon is a cosplay event organised by young people at Malmitalo on 9 September 2023!</p><p>The event focuses on manga- and anime-themed programme and competitions. You can register in advance for the competitions and the programme via nuorten.hel.fi.</p><p>The event is free of charge and intended for people aged 12–18.</p>" }, "short_description": { "fi": "Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla", "sv": "Nezumicon är ett cosplayevenemang som unga producerar på Malms kulturhus 9.9.2023!", "en": "Nezumicon is a cosplay event organised by young people at Malmitalo on 9 September 2023!" }, "name": { "fi": "Nezumicon", "sv": "Nezumicon", "en": "Nezumicon" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F7A6C1BC4B089438B2F18D9A90FA8706/Nezumicon", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F7A6C1BC4B089438B2F18D9A90FA8706/Nezumicon", "en": "http://www.malmitalo.fi/en/events/event/F7A6C1BC4B089438B2F18D9A90FA8706/Nezumicon" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60401/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270416", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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:p556/?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:p9270/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:03.396255Z", "last_modified_time": "2023-08-15T15:31:03.396300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-11-07T15:21:14.906691Z", "last_modified_time": "2023-11-08T17:21:37.306757Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-11-02T08:00:00Z", "end_time": "2023-11-02T10: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, "description": { "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p> <strong>Huom! Peruttu ma 13.11.2023!</strong> </p><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>", "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p> <strong>Group meeting is canceled on Mon, Nov 13. </strong> </p><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>" }, "short_description": { "fi": "Peruttu maanantaina 13.11.2023!", "en": "Please note that meeting is canceled on Nov 13!" }, "name": { "fi": "Suomen kielen opetusryhmä", "en": "Finnish language study group" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kerhotila, 3. kerros", "en": "Kerhotila, 3rd floor" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270416/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270410", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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:p556/?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:p9270/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:03.396255Z", "last_modified_time": "2023-08-15T15:31:03.396300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-11-07T15:20:58.459789Z", "last_modified_time": "2023-11-08T17:21:20.644481Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-10-26T07:00:00Z", "end_time": "2023-10-26T09: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, "description": { "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p> <strong>Huom! Peruttu ma 13.11.2023!</strong> </p><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>", "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p> <strong>Group meeting is canceled on Mon, Nov 13. </strong> </p><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>" }, "short_description": { "fi": "Peruttu maanantaina 13.11.2023!", "en": "Please note that meeting is canceled on Nov 13!" }, "name": { "fi": "Suomen kielen opetusryhmä", "en": "Finnish language study group" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kerhotila, 3. kerros", "en": "Kerhotila, 3rd floor" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270410/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270409", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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:p556/?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:p9270/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:03.396255Z", "last_modified_time": "2023-08-15T15:31:03.396300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-11-07T15:20:43.489020Z", "last_modified_time": "2023-11-08T17:21:05.643862Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-10-19T07:00:00Z", "end_time": "2023-10-19T09: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, "description": { "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p> <strong>Huom! Peruttu ma 13.11.2023!</strong> </p><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>", "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p> <strong>Group meeting is canceled on Mon, Nov 13. </strong> </p><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>" }, "short_description": { "fi": "Peruttu maanantaina 13.11.2023!", "en": "Please note that meeting is canceled on Nov 13!" }, "name": { "fi": "Suomen kielen opetusryhmä", "en": "Finnish language study group" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kerhotila, 3. kerros", "en": "Kerhotila, 3rd floor" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270409/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270412", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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:p556/?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:p9270/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:03.396255Z", "last_modified_time": "2023-08-15T15:31:03.396300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-11-07T15:20:29.512324Z", "last_modified_time": "2023-11-08T17:20:51.453465Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-10-12T07:00:00Z", "end_time": "2023-10-12T09: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, "description": { "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p> <strong>Huom! Peruttu ma 13.11.2023!</strong> </p><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>", "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p> <strong>Group meeting is canceled on Mon, Nov 13. </strong> </p><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>" }, "short_description": { "fi": "Peruttu maanantaina 13.11.2023!", "en": "Please note that meeting is canceled on Nov 13!" }, "name": { "fi": "Suomen kielen opetusryhmä", "en": "Finnish language study group" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kerhotila, 3. kerros", "en": "Kerhotila, 3rd floor" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270412/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268716", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4876, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-21T14:41:02.063966Z", "last_modified_time": "2023-09-21T14:41:02.063986Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1D2DF3B1-95AF-4661-93DE-AE08F5E8E7D1}/106096", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4876/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-21T13:41:15.954882Z", "last_modified_time": "2023-11-08T17:20:40.925332Z", "date_published": "2023-09-21T11:58:00Z", "start_time": "2023-10-08T05:00:00Z", "end_time": "2023-10-08T18: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, "description": { "fi": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>", "en": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>" }, "short_description": { "fi": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki.", "en": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki." }, "name": { "fi": "Adventures in White Privilege", "en": "Adventures in White Privilege" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "1st floor info", "en": "1st floor info" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268716/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270261", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10676/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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:p556/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5824, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-02T13:23:41.225426Z", "last_modified_time": "2023-11-02T13:23:41.225455Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B0F15267-4B48-49EC-9A6F-3F7C15418DEA}/107219", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5824/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-11-02T13:23:41.197528Z", "last_modified_time": "2023-11-08T15:21:43.154302Z", "date_published": "2023-11-02T12:10:53.333000Z", "start_time": "2023-11-08T12:00:00Z", "end_time": "2023-11-08T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esbobygdenin nuorisoyhdistys/EBUF järjestää yhteistyössä Mattlidens gymnasiumin ruotsin kurssin kanssa kielikahvilan.</p><p>Tapahtuma sopii sekä aloittelijoille että edistyneemmille ruotsin kielen osaajille. <br> Kokoontuminen: kokoustila Aalto</p><p> <br> 14-14.45 - ruotsia aloittelijoille <br> 14.45 - 15.45 - Ruotsia edistyneemmille. <br> 15.45-16.30 - Ruotsia aloittelijoille. </p><p>EBUF tarjoaa kahvia!</p><p>Järjestäjä: Esbobygdens ungdomsförbund rf. & Mattlidens gymnasium</p>", "sv": "<h3>Språkcafé med esbobygdens ungdomsförbund onsdag 8.11. kl. 14-16.30</h3><p>Esbobygdens ungdomsförbund/EBUF ordnar i samarbete med Mattlidens gymnasiums svenska kurs ett drop-in språkcafé.</p><p>Evenemanget lämpar sig för såväl nybörjare som för dem med mer avancerade kunskaper i svenska. <br> Vi samlas i mötesrummet Aalto.<br><br> Tidtabell: <br> kl. 14-14.45 - Svenska för nybörjare <br> kl. 14.45-15.45 - Avancerad svenska <br> kl. 15.45.16.30 - Svenska för nybörjare <br><br> EBUF bjuder på kaffe!<br><br> Arrangör: Esbobygdens ungdomsförbund rf. & Mattlidens gymnasium</p>" }, "short_description": { "fi": "Esbobygdens ungdomsförbund/EBUF ordnar i samarbete med Mattlidens gymnasiums svenska kurs ett drop-in språkcafé.", "sv": "Esbobygdens ungdomsförbund/EBUF ordnar i samarbete med Mattlidens gymnasiums svenska kurs ett drop-in språkcafé." }, "name": { "fi": "Tervetuloa puhumaan ruotsia - tarjoamme kahvia!", "sv": "Språkcafé med esbobygdens ungdomsförbund" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Aalto", "sv": "Aalto" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270261/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269722", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5501, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-17T13:54:06.215185Z", "last_modified_time": "2023-10-17T13:54:06.215211Z", "name": "", "url": "https://www.helmet.fi/download/noname/{10B34AAF-B998-4F8F-B670-1FCF832E0759}/106841", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5501/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-17T13:54:06.079548Z", "last_modified_time": "2023-11-08T13:21:34.925498Z", "date_published": "2023-10-17T09:47:00Z", "start_time": "2023-11-08T12:00:00Z", "end_time": "2023-11-08T14: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, "description": { "fi": "<p>Hakunilan kirjastossa tapahtuu peliviikolla 6.-12.11.</p><p>Keskiviikkona 8.11. pääset pelaamaan kirjastolaisen kanssa kirjastosta löytyvällä pelikonsolilla. Tule haastamaan kirjastolainen vaikkapa Fifassa tai Mario Kartissa!</p><p>Asiasana: peliviikko</p>" }, "short_description": { "fi": "Tervetuloa Hakunilan kirjastoon viettämään peliviikkoa hauskojen tapahtumien merkeissä." }, "name": { "fi": "Hakunilan kirjaston peliviikko: Pelaa kirjastolaisen kanssa konsolilla" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269722/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269173", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5016, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-04T14:55:46.787984Z", "last_modified_time": "2023-10-04T14:55:46.788006Z", "name": "", "url": "https://www.helmet.fi/download/noname/{26157093-8854-4368-BF3E-9C85E33062E0}/106452", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5016/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-04T14:55:45.209917Z", "last_modified_time": "2023-11-08T09:22:32.643922Z", "date_published": "2023-10-04T13:32:00Z", "start_time": "2023-10-04T21:00:00Z", "end_time": "2023-11-04T22: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, "description": { "fi": "<p> <strong>Helsingin Taiteilijaseuran mediataidenäyttely Helsingin keskustakirjasto Oodissa</strong> <br> <br> Helsingin Taiteilijaseura tuo jo viidettä kertaa mediataiteen näyttelyn Helsingin keskustakirjasto Oodiin. Näyttelyn taiteilija on <strong>Katja Tukiainen</strong>, jonka videoanimaatioretrospektiivi <strong>Play : ) nähdään Oodin aulatilassa 5.10.–5.11.2023.</strong><br><br> Tervetuloa näyttelyn avajaisiin torstaina 5.10. klo 17 taiteilijan läsnä ollessa!<br><br><br><strong>Katja Tukiainen: Play : )</strong><br><br> Katja Tukiaisen (s. 1969 Pori) videoanimaatioretrospektiivi Oodin valkokankailla kokoaa yhteen Tukiaisen liikkuvan kuvan teokset, joiden kaikkien lähtökohtana on leikki. Teosten muusina ovat toimineet nuket ja taruolennot.<br><br> Tukiainen luo näyttelijänsä piirtäen, muovaillen ja rakentamalla erilaisista materiaaleista. Samanlainen leikillinen ja tutkiva materiaalien kokeilu on ominaista hänen koko taiteelliselle tuotannolleen 90-luvulta asti. Näyttelyn nimi ”Play : )” viittaa sekä videonauhurin play-nappulaan että leikkiin. Hymiö sanan perässä viittaa aikaan, jolloin tietokoneet olivat vielä hiukan uusi juttu : )</p>" }, "short_description": { "fi": "Katja Tukiaisen videoanimaatioretrospektiivi Oodin valkokankailla kokoaa yhteen Tukiaisen liikkuvan kuvan teokset, joiden kaikkien lähtökohtana on leikki. Teosten muusina ovat toimineet nuket ja taruolennot." }, "name": { "fi": "Näyttely: Katja Tukiainen: Play : )" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Aula, 1 krs." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269173/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265140", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2738, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:51.248355Z", "last_modified_time": "2023-08-15T15:30:51.248375Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B06386EA-3317-4271-BD4E-CBAA9DC95B40}/104837", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2738/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:43:49.284247Z", "last_modified_time": "2023-11-08T09:21:01.908580Z", "date_published": "2023-01-13T12:15:00Z", "start_time": "2023-10-08T08:00:00Z", "end_time": "2023-10-08T10: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, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista.</p><p>Nähdään joka toinen sunnuntai Sellossa!</p>" }, "short_description": { "fi": "Lukukoira Fila tavattavissa Sellossa." }, "name": { "fi": "Lukukoira Fila" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265140/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269601", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5472, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-14T10:34:03.188715Z", "last_modified_time": "2023-10-14T10:34:03.188732Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E77F1140-77DC-48F1-B3B8-3BE1B01207BA}/106783", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-14T10:34:03.063344Z", "last_modified_time": "2023-11-08T07:22:51.000924Z", "date_published": "2023-10-14T08:15:00Z", "start_time": "2023-11-06T16:00:00Z", "end_time": "2023-11-06T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tilaisuudessa musiikkijournalisti ja esiintyvä artisti Tommi E. Virtanen kertoo urastaan sekä uusimmista kirjoistaan, Topi Salmen kanssa kirjoitetusta Vexi Salmen henkilökuvasta Isäni Vexi (2023) sekä Marjo Leinosen kanssa kirjoitetusta elämäkerrasta Marjo Leinonen – Punaisia päin (2023).</p><p> <strong>Tommi E. Virtanen</strong> on populaarimusiikkiin erikoistunut journalisti, jonka töihin lukeutuvat muun muassa Jope Ruonansuun <em>Aatteleppa ite!</em> -elämäkerta (2006), Jimi Seron <em>Mun tie</em> -elämäkerta (2012), tietokirja <em>Vapaa valitsemaan – Tositarinoita raitistumisesta</em> (2015), Tuure Kilpeläinen & Kaihon Karavaani: <em>Karavaanin matkassa</em> (2018) sekä yhdessä Pekka Laineen kanssa syntynyt <em>Suomalaiset sähkökitaristit </em>(2022).<br> Kirjoittamisen ohella Virtanen on ansioitunut musiikkiaiheisten dokumenttielokuvien ohjaajana.<br><br> Tilaisuus on kaikille avoin, tervetuloa!<br><br><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\">Töölön kirjasto</a></p><p>Tommi E. Virtasen kuva: © Veikko Somerpuro</p>" }, "short_description": { "fi": "Musiikkijournalisti ja esiintyvä artisti Tommi E. Virtanen kertoo urastaan sekä uusimmista kirjoistaan. Tervetuloa kuuntelemaan!" }, "name": { "fi": "Kirjailijavieraana Tommi E. Virtanen" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Mika Waltari -sali, 4. krs" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269601/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5399, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-11T13:29:07.291295Z", "last_modified_time": "2023-10-11T13:29:07.291316Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F222D15D-86DF-463E-8023-71C9D075A3B2}/106711", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5399/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-11T13:29:06.096209Z", "last_modified_time": "2023-11-07T21:22:49.133903Z", "date_published": "2023-10-10T21:00:00Z", "start_time": "2023-11-07T14:00:00Z", "end_time": "2023-11-07T17: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, "description": { "fi": "<p>Hei aikuinen! Kiinnostavatko erilaiset pelit, mutta et tiedä, mistä aloittaa? Oletko pelannut jo pitkään, mutta pelikaverit ovat iän myötä kaikonneet? Tule viettämään aikuisille suunnattua peli-iltaa kanssamme ja löydä uusia tuttavuuksia!</p><p>Illan ohjelmassa on erilaisten pelien esittelyä ja pelaamista. Pääset tutustumaan niin lauta-, kortti-, rooli- kuin konsolipeleihinkin. On pelivinkkausta, sekä asiantuntijoiden vetämää keskustelua pelikulttuurista Minna Koirikiven ja Annukka Såltin johdolla.</p><p>Tule yksin tai yhdessä, omat pelit ja peluutukset ehdottomasti sallittuja!</p><p>Huom. Ilta on K-18 eli tarkoitettu vain aikuisille pelien ystäville. Olethan valmis todistamaan ikäsi niin toivottaessa.</p><p>#peliviikko</p>" }, "short_description": { "fi": "Hei aikuinen! Kiinnostavatko erilaiset pelit, mutta et tiedä, mistä aloittaa? Oletko pelannut jo pitkään, mutta pelikaverit ovat iän myötä kaikonneet? Tule viettämään aikuisille suunnattua peli-iltaa kanssamme ja löydä uusia tuttavuuksia! Illan ohjelmassa on erilaisten pelien esittelyä ja pelaamista. Pääset tutustumaan niin lauta-, kortti-, rooli- kuin konsolipeleihinkin. On pelivinkkausta, sekä" }, "name": { "fi": "Aikuisten peli-ilta" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jukeboksi" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266318", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3531, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T22:25:17.674384Z", "last_modified_time": "2023-08-22T22:25:17.674408Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3CF59BA8-CC2B-4816-BC8E-DE410A7FC617}/105144", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-22T22:33:14.307718Z", "last_modified_time": "2023-11-07T21:21:18.989867Z", "date_published": "2023-08-22T21:00:00Z", "start_time": "2023-10-11T06:30:00Z", "end_time": "2023-10-11T07: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, "description": { "fi": "<p>Eestikeelsed muinasjututunnid</p><p>Pasila raamatukogus</p><p>Kord kuus, kolmapäeviti kell 9.30-10.00</p><p>13.9.; 11.10.; 8.11.</p><p>Registreerumine: <a href=\"mailto:elo.lammi@hel.fi\">elo.lammi@hel.fi</a></p><p>Tervetuloa!</p><p>Kellosilta 9, Pasila</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a> </p>" }, "short_description": { "fi": "Eestikeelsed muinasjututunnid" }, "name": { "fi": "Eestikeelsed muinasjututunnid" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266318/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60419", "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:32/?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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV", "sv": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV", "en": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:18.029953Z", "last_modified_time": "2023-09-07T14:21:18.029973Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734737.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4167/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:17.454242Z", "last_modified_time": "2023-11-07T21:13:27.478029Z", "date_published": null, "start_time": "2023-09-08T16: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, "description": { "fi": "<p>NYPY on nykysirkusteos naisten oikeuksista ja vapaudesta. Teos on nuorallatanssin, nykytanssin ja käsityötaiteen – etenkin pitsinnypläyksen – yhteenliittymä.</p><p>Teoksessa slaavilaisen mytologian hahmo Vesna kuvaa kehollisuudellaan vapautta ja naisten oikeuksia. Slaavilaisen mytologisen ja ritualistisen naishahmon Vesnan ääni on tukahdutettu, kuten niin monien naisten ääni, maskuliinisen yhteiskunnan pauhuun. Herkkyys ja pehmeys ovat Vesnan voimat, joilla hän yrittää löytää kuulijan, katsojan ja kokijan.</p><p>Vesna tasapainottelee hyvän ja pahan, feminiinisyyden ja maskuliinisuuden sekä kovan ja pehmeän välillä luoden siltaa todellisuuden ja mielikuvituksen välille. Kevyt henkäys, huomaamaton liikahdus ja kaunis kosketus voivat vaikuttaa ympäristöön näkyvämmin kuin pakon sanelemat suoritukset...</p><p>Vesna toimii nykysirkusteos NYPYn soolohahmona.</p><p>Esiintyjä: Katarina Suviniitty <br>Valo/äänisuunnittelu: Anne Salmi <br>Kesto: 45 min <br>Ikäsuositus: +13-v <br>Kieli: sanaton, kuvailutulkattu</p>", "sv": "<p>NYPY är ett nycirkusverk om kvinnors rättigheter och frihet. Verket är en konstellation av lindans, modern dans och konsthantverk, i synnerhet spetsknyppling.</p><p>I verket skildrar den slaviska mytologins figur Vesna frihet och kvinnors rättigheter med sin kropp. Den slaviska mytologins och ritualistiska kvinnofiguren Vesnas röst har kvävts, såsom så många kvinnors röster, av dånet från det maskulina samhället. Känslighet och mjukhet är Vesnas styrkor med vilka hon försöker hitta lyssnaren, åskådaren och upplevaren.</p><p>Längd: 45 min.<br>Åldersrekommendation: +13<br>Språk: ordlös</p>", "en": "<p>NYPY is a contemporary circus piece about women’s rights and freedom. It is a fusion of tightrope walking, contemporary dance and crafts – especially lace-making.</p><p>It features a Slavic mythological figure, Vesna, who embodies freedom and women’s rights. The voice of the Slavic mythological and ritualistic female figure Vesna is muffled, as is the voice of so many women, in the noise of male-dominated society. Sensitivity and softness are Vesna’s powers, which she uses to seek out the listener, the viewer and the experiencer.</p><p>Duration: 45 min<br>Age recommendation: 13+<br>Language: non-verbal.</p>" }, "short_description": { "fi": "NYPY on nykysirkusteos naisten oikeuksista ja vapaudesta. Teos on nuorallatanssin, nykytanssin ja käsityötaiteen – etenkin pitsinnypläyksen – yhteenliittymä.", "sv": "NYPY är ett nycirkusverk om kvinnors rättigheter och frihet. Verket är en konstellation av lindans, modern dans och konsthantverk, i synnerhet spetsknyppling.", "en": "NYPY is a contemporary circus piece about women’s rights and freedom. It is a fusion of tightrope walking, contemporary dance and crafts – especially lace-making." }, "name": { "fi": "NYPY", "sv": "NYPY", "en": "NYPY" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/702936A9E3ECF3CE05F3827B136E5D6D/NYPY_", "sv": "http://www.caisa.fi/sv/evenemang/event/702936A9E3ECF3CE05F3827B136E5D6D/NYPY_", "en": "http://www.caisa.fi/en/events/event/702936A9E3ECF3CE05F3827B136E5D6D/NYPY_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60419/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60402", "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:31/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/alamalmi/", "sv": "https://www.lippu.fi/artist/alamalmi/", "en": "https://www.lippu.fi/artist/alamalmi/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4168, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:18.626611Z", "last_modified_time": "2023-09-07T14:21:18.626633Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732253.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4168/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:18.477878Z", "last_modified_time": "2023-11-07T21:13:27.396223Z", "date_published": null, "start_time": "2023-09-08T16: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, "description": { "fi": "<p>Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan.</p><p>Yli kymmenvuotisella urallaan yhtye on ansaitusti vakiinnuttanut paikkansa aikamme kotimaisen indieskenen kaanonissa. ”Räjä ’n’ rollia” soittavan yhtyeen ilmaisussa on juuri sopiva ripaus hölmöä tee-se-itse-tykittelyä, kunnon meininkiä sekä tarkkanäköisen rehellistä rokkia. Räjäyttäjät räjäyttää! Pauhu mahtava kertoo totuuden!</p><p>Räjäyttäjien jytäskaala on mieletön. Yhtyeen alkupään tuotanto on arvaamattomana kaahaavaa rupista ja nopeaa jytäävää garagerockia. Albumillaan Räjä Elektrik Millenium (2016) bändi kaivoi esiin puoleestaan syntetisaattorit, ja irtaantui perinteisen rockbändin ja edellisten levyjensä kaavoista. Tuoreimmalla III (2019) -albumilla yhtye istahtaa perinteisten svengaavien rock- ja blueskulkujen äärelle. Albumi on täynnä monenkirjavia sävyjä, lisäravinteita on nappailtu glam rockista, progesta sekä ensimmäisen britti-invaasion jälkihäröilyistä.</p><p>Räjäyttäjät on koheesion asialla. Rock on ikuinen, uusi vesimiehen aika koittaa, kaikki kukat kukkivat, värit pärisevät.</p><p>Räjäyttäjät:<br>Jukka Nousiainen<br>Alex Reed<br>Mikko Siltanen</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia upeissa mutta silti kodikkaissa konserttisalipuitteissa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät, joita maa päällään kantaa.</p>", "sv": "<p>Räjäyttäjät är ett band med tre personer som bildades 2011 i Jyväskylä, och de har blivit kända för sina fartfyllda liveframträdanden och finskspråkig dånande rock.</p><p>Under sin mer än tioåriga karriär har bandet välförtjänt etablerat sin plats i förgrunden av den inhemska indiescenen.</p>", "en": "<p>Founded in Jyväskylä in 2011, the three-piece Räjäyttäjät have become known for their fast-paced live performances and Finnish-language rock.</p><p>With a career spanning more than ten years, the band has deservedly established itself in the Finnish indie scene canon of our time.</p>" }, "short_description": { "fi": "Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan.", "sv": "Räjäyttäjät är ett band med tre personer som bildades 2011 i Jyväskylä, och de har blivit kända för sina fartfyllda liveframträdanden och finskspråkig dånande rock.", "en": "Founded in Jyväskylä in 2011, the three-piece Räjäyttäjät have become known for their fast-paced live performances and Finnish-language rock." }, "name": { "fi": "Räjäyttäjät – A la Malmi", "sv": "Räjäyttäjät – A la Malmi", "en": "Räjäyttäjät – A la Malmi" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6502ABE56B9C2CEB18ACB0D298CA2CAF/Rajayttajat", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6502ABE56B9C2CEB18ACB0D298CA2CAF/Rajayttajat", "en": "http://www.malmitalo.fi/en/events/event/6502ABE56B9C2CEB18ACB0D298CA2CAF/Rajayttajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60402/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59898", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "79/69/47/15 €, Premium 95 €", "sv": "79/69/47/15 €, Premium 95 €", "en": "79/69/47/15 €, Premium 95 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3390933", "sv": "https://www.lippu.fi/eventseries/name-3390933", "en": "https://www.lippu.fi/eventseries/name-3390933" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4166, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:16.639290Z", "last_modified_time": "2023-09-07T14:21:16.639334Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730947.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4166/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:16.366635Z", "last_modified_time": "2023-11-07T21:13:27.298173Z", "date_published": null, "start_time": "2023-09-08T16: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, "description": { "fi": "<p>Maailmanmusiikin suurimpiin tähtiin lukeutuva Salif Keita palaa Suomeen syksyllä. Odotettu ja toivottu vierailu toteutuu perjantaina 8. syyskuuta, kun yksi Afrikan mantereen tunnetuimmista muusikoista esiintyy yhdessä yhdeksänhenkisen yhtyeensä kanssa Savoy-teatterissa</p><p>Salif Keita syntyi Djombassa, Malissa, vuonna 1949. Keita on syntyjään albiino, mikä merkitsi tuohon aikaan monissa Afrikan maissa hyvin huonoa onnea ja johti pahimmillaan vakavaan syrjintään. Vartuttuaan Keita päätti ryhtyä muusikoksi kuninkaallisen sukunsa vastustuksesta huolimatta, ja jo 18-vuotiaana hän muutti Malin pääkaupunkiin Bamakoon, jossa perusti ensimmäisen yhtyeensä.</p><p>Vuonna 1973 Keita liittyi malilaisen sotilasjohtajan statussymbolikseen kokoamaan tähtikokoonpanoon Les Ambassadeursiin. Uskomattoman lahjakkaita muusikoita pursunnut yhtye alkoi saavuttaa nopeasti mainetta Afrikan länsirannikolla, nousi aikansa kenties suosituimmaksi kokoonpanoksi afrikkalaisyleisön keskuudessa ja jätti kestävän jäljen niin Keitan musiikilliseen kehitykseen kuin koko länsiafrikkalaisen musiikin kaanoniin.</p><p>Salif Keitan oma läpimurtolevy oli vuonna 1987 ilmestynyt Soro, jonka jälkeen hän viimeistään nousi maailmantähteyteen. Siitä saakka Keita on kiertänyt maailmaa useiden eri kokoonpanojen kanssa ja julkaissut yli kaksikymmentä levyä. Afropopin isäksi tituleerattu Keita tunnetaan vailla vertaa olevasta lauluäänestään, vahvoista live-esiintymisistään sekä tunteisiin vetoavista lauluistaan. Yli 50 suotta kestäneen uransa aikana hän on soittanut ja työskennellyt maailmanluokan tähtien kuten Carlos Santanan, Wayne Shorterin, Cesaria Evoran ja Esperanza Spaldingin kanssa.</p><p>Salif Keitan musiikissa Malin perinteinen griot-musiikki ja länsiafrikkalaiset vaikutteet sekoittuvat kuubalaisiin, espanjalaisiin ja portugalilaisiin rytmeihin sekä nykyaikaisiin fuusiosoundeihin. Yhtyeen soittimiin kuuluu kitaran ja basson lisäksi perinteisiä afrikkalaisia instrumentteja, kuten kora, calabash ja djembe – usein uudenlaisella tavalla käytettyinä.</p><p>Matkan varrella Salif Keita on kerännyt lukemattomia palkintoja, tunnustuksia ja kunnianosoituksia, mikä on vahvistanut hänen mainettaan Afrikan kultaisena äänenä ja afrikkalaisen musiikin kiistattomana lähettiläänä. Keita kertoo haluavansa välittää musiikillaan rauhan, rakkauden ja myötätunnon sanomaa maailman kaikille ihmisille, varsinkin heille joiden elämässä on läsnä kärsimystä.</p><p>Salif Keita, laulu ja kitara<br>Bah Kouyate, taustalaulu<br>Fatoumata Soubeiga, taustalaulu<br>Madou Tounkara, kitara<br>Madou Diabate, kora<br>Moïse Sagara, rummut<br>Harouna Samake, kamale n'goni<br>Dauda Koné, djembe ja congat<br>Mohamed Kouyate, basso<br>Mamoudou Dit Prince Koné, calabash</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>Salif Keita, som räknas som en av världsmusikens största stjärnor, återvänder till Finland i höst. Det efterlängtade besöket sker fredagen den 8 september, när en av de mest kända afrikanska musikerna uppträder tillsammans med sin niomannaensemble i Savoyteatern.</p><p>Salif Keita föddes i Djomba, Mali, år 1949. Keita föddes med albinism, vilket på den tiden innebar stor otur i många afrikanska länder och i värsta fall ledde till allvarlig diskriminering. Under sin uppväxt bestämde sig Keita, trots motstånd från sin släkt, att bli musiker och han flyttade redan som 18-åring till Malis huvudstad Bamako där han grundade sitt första band.</p><p>År 1973 anslöt sig Keita till Les Ambassadeurs, en stjärnspäckad ensemble som en malisk militärledare satt samman som en symbol för sin status. Bandet som bestod av otroligt begåvade musiker blev på kort tid välkänt på den afrikanska västkusten och tidens kanske mest populära grupp bland den afrikanska publiken och lämnade varaktiga spår i såväl Keitas musikaliska utveckling som hela den västafrikanska musikens kanon.</p><p>Salif Keitas eget genombrott var albumet Soro som kom ut 1987, vilket sist och slutligen gjorde honom till en världsstjärna. Allt sedan dess har Keita rest världen runt med olika ensembler och gett ut över 20 plattor. Keita, som titulerats som afropopens far, är känd för sin sångröst utan like, sina kraftfulla liveuppträdanden och sina känslomässigt tilltalande låtar. Under sin över 50-åriga karriär har Keita spelat och arbetat med världsstjärnor, till exempel Carlos Santana, Wayne Shorter, Cesaria Evora och Esperanza Spalding.</p><p>I Salif Keitas musik blandas Malis traditionella griotmusik och västafrikanska influenser med kubanska, spanska och portugisiska rytmer samt moderna fusionssounds. Utöver gitarr och bas spelar bandet traditionella afrikanska instrument, såsom kora, calabash och djembe – ofta på ett nytt sätt.</p><p>Under resans gång har Salif Keita samlat på sig otaliga priser, erkännanden och hedersomnämnanden, vilket har stärkt hans anseende som Afrikas gyllene röst och den oomtvistade ambassadören för afrikansk musik. Keita säger att han med sin musik vill förmedla budskapet om fred, kärlek och empati till alla människor, i synnerhet till dem som har lidande i sitt liv.</p><p>Salif Keita, sång och gitarr<br>Bah Kouyate, bakgrundssångare<br>Fatoumata Soubeiga, bakgrundssångare<br>Madou Tounkara, gitarr<br>Madou Diabate, kora<br>Moïse Sagara, trummor<br>Harouna Samake, kamale n'goni<br>Dauda Koné, djembe och congas<br>Mohamed Kouyate, bas<br>Mamoudou Dit Prince Koné, calabash</p><p>Längd ca 2 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>Salif Keita, one of the biggest stars in world music, will return to Finland next autumn. Audiences will finally get to enjoy the long-awaited performance of one of the most prominent African musicians and his nine-piece band at Savoy Theatre on 8 September.</p><p>Salif Keita was born in Djomba, Mali, in 1949. He was born albino, which at the time in Africa was thought to be a sign of extremely bad luck and could lead to severe discrimination. Growing up, Keita eventually decided to become a musician, despite the vehement objections of the Malian royal family, of which he is a member. At 18, he moved to the capital of Mali, Bamako, were he established his first band.</p><p>In 1973, Keita joined the all-star line-up Les Ambassadeurs, which was put together by a Malian military leader as something of a status symbol. Full of incredibly talented musicians, the ensemble quickly began to garner fame around the western coast of Africa, becoming possibly the most popular band of its time among African audiences and leaving a lasting mark on Keita’s musical development and the entire canon of Western African music.</p><p>Salif Keita’s own breakthrough came in the form of the 1987 album Soro, which catapulted him into international stardom. Since then, he has toured the world with a variety of musicians and released more than 20 records. Often lauded as the father of Afropop, Keita is known for his extraordinary singing voice, strong live performances and evocative songs. Over the course of his more than 50-year career, he has played and worked with world-class stars, such as Carlos Santana, Wayne Shorter, Cesaria Evora and Esperanza Spalding.</p><p>Salif Keita’s music blends the traditional Malian griot music and Western African influences with Cuban, Spanish and Portuguese rhythms and contemporary fusion sounds. In addition to the guitar and bass, the band’s range of instruments includes traditional African instruments, such as the kora, calabash and djembe, which are often used in novel ways.</p><p>During his journey as an artist, Salif Keita has accumulated countless awards, accolades and acknowledgements, which has strengthened his reputation as the golden voice of Africa and the unrivalled ambassador of African music. Keita says that he wants to use his music to convey a message of peace, love and compassion to all people of the world – especially those faced with suffering and adversity.</p><p>Salif Keita, vocals and guitar<br>Bah Kouyate, background vocals<br>Fatoumata Soubeiga, background vocals<br>Madou Tounkara, guitar<br>Madou Diabate, kora<br>Moïse Sagara, drums<br>Harouna Samake, kamale n'goni<br>Dauda Koné, djembe and congas<br>Mohamed Kouyate, bass<br>Mamoudou Dit Prince Koné, calabash</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "short_description": { "fi": "Maailmanmusiikin suurimpiin tähtiin lukeutuva Salif Keita palaa Suomeen syksyllä. Odotettu ja toivottu vierailu toteutuu perjantaina 8. syyskuuta, kun yksi Afrikan mantereen tunnetuimmista muusikoista esiintyy yhdessä yhdeksänhenkisen yhtyeensä kanssa Savoy-teatterissa", "sv": "Salif Keita, som räknas som en av världsmusikens största stjärnor, återvänder till Finland i höst. Det efterlängtade besöket sker fredagen den 8 september, när en av de mest kända afrikanska musikerna uppträder tillsammans med sin niomannaensemble i Savoyteatern.", "en": "Salif Keita, one of the biggest stars in world music, will return to Finland next autumn. Audiences will finally get to enjoy the long-awaited performance of one of the most prominent African musicians and his nine-piece band at Savoy Theatre on 8 September." }, "name": { "fi": "Salif Keita (Mali) – Savoy WORLD", "sv": "Salif Keita (Mali) – Savoy WORLD", "en": "Salif Keita (Mali) – Savoy WORLD" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1CAE5862883409204F8271FCFA6CDA16/Salif_Keita_Mali_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/1CAE5862883409204F8271FCFA6CDA16/Salif_Keita_Mali_", "en": "http://www.savoyteatteri.fi/en/events/event/1CAE5862883409204F8271FCFA6CDA16/Salif_Keita_Mali_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59898/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26836, "next": "