Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=941
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=942", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=940" }, "data": [ { "id": "kulke:60645", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "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": 3967, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:03.458443Z", "last_modified_time": "2023-09-07T14:19:03.458473Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735082.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3967/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:03.293898Z", "last_modified_time": "2023-09-11T21:16:13.953551Z", "date_published": null, "start_time": "2023-07-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kaksi albumia julkaissut Lyyti on lyhyessä ajassa hurmannut niin yleisöt kuin kriitikot poikkeuksellisella pop-musiikillaan, joka pistää lauluntekijäperinnettä uusiksi.</p><p>Painavaa asiaa ja kevyttä musiikkia – ja hetkeä myöhemmin ihan toisin päin.</p><p><b>Lyyti</b> sanoittaa nykymaailmaa tavalla, joka itkettää, riemastuttaa ja iskee ilmat pihalle. Ote on toiveikas, vaikka pohjamudissa käydään. Mihin voi soittaa, kun metsäpalo leviää näytöltä yksiön eteiseen? Musiikki tanssittaa pianon, syntetisaattoreiden ja varmaotteisen komppiryhmän voimin. Lyyti on yhtyeensä kanssa kasvattanut mainetta myös häikäisevänä live-esiintyjänä, jonka heittäytymiskyky tekee jokaisesta keikasta ainutlaatuisen.</p><p>Ylistystä kerännyt kakkosalbumi <i>Toiveet ja helyt</i> (2021) toi Lyytille ensimmäisen Emma-ehdokkuuden sekä Vuoden artistin tittelin (Indie Awards 2022).</p><p>Lyyti julkaisi tulevalta albumiltaan helmikuussa 2023 ensimmäisen singlen <i>”Katastrofin laajuus”</i>, joka on myös ensimmäinen julkaisu yhteistyössä Universal Musicin alla toimivan Johanna Kustannuksen kanssa. Lyyti valmistelee parhaillaan tulevaa albumiaan yhdessä yhtyeensä ja Väinö Karjalaisen kanssa.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kaksi albumia julkaissut Lyyti on lyhyessä ajassa hurmannut niin yleisöt kuin kriitikot poikkeuksellisella pop-musiikillaan, joka pistää lauluntekijäperinnettä uusiksi." }, "name": { "fi": "IndiEspa: Lyyti" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1E834DFE414D5534499A222F8B802012/IndiEspa_Lyyti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60645/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60644", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "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": 3966, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:03.021054Z", "last_modified_time": "2023-09-07T14:19:03.021088Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735081.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3966/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:02.819396Z", "last_modified_time": "2023-09-11T21:16:13.762756Z", "date_published": null, "start_time": "2023-07-27T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Aili Järvelä on monipuolinen, alati useista genreistä inspiroituva muusikko ja musiikintekijä.</p><p>Kaustislaislähtöinen Järvelä tunnetaan laulajana, lauluntekijänä, säveltäjänä, sovittajana, viulistina, tuottajana, Järvelän pelimannina, sekä freelance-muusikkona useista eri yhtyeistä ja yhteyksistä. Ennen kaikkea hänet tunnetaan sielukkaana ja aitona tulkitsijana. <br> <br>Tällä hetkellä Järvelä tekee soolouraa oman tuotantonsa parissa, Järvelä säveltää ja sanoittaa kaiken materiaalinsa itse. Järvelä julkaisee seuraavan albuminsa huhtikuussa 2023. Hän toimii myös näyttelijänä Helsingin Kaupunginteatterin ruotsinkielisen näyttämön Lilla Teaternin Once -musikaalissa, joka palaa teatterin lavalle tammikuussa 2023.</p><p>Soolouransa ohessa Järvelä säveltää paraikaa uutta musikaalia, joka saa ensi-iltansa HKT:n Lilla Teaternin lavalla tammikuussa 2024. <br> <br>Sovittajana Järvelä on tehnyt yhteistyötä monien suomalaisten huippuorkestereiden kanssa, kuten Helsingin Kaupunginorkesteri, Tapiola Sinfonietta ja Keski-Pohjanmaan Kamariorkesteri. <br> <br>Järvelä toimii myös viulistina sekä laulajana maailmanmusiikkiyhtye Bergå Folk Projectissa, jonka debyyttialbumi on Etno-Emma -ehdokas. Muusikkona Järvelää voidaan kuulla indie-pop -artisti STINAKO:n kokoonpanossa, ja ajoittain tuuraavana viulistina kansanmusiikkiyhtye Friggissä. <br> <br>Järvelän soololevytrilogia <i>Lainattua, Sinistä, Omaa</i> julkaistiin kolmena EP:nä vuosien 2019–2020 aikana. Näistä Omaa EP sai Helsingin Sanomien arviossa viisi tähteä, ja se valittiin kriitikoiden vuoden 2020 parhaiden julkaisujen joukkoon. EP:ltä kappale Roihuvuori valittiin HS:n lukijaäänestyksessä vuosituhannen 50 parhaan sanoituksen joukkoon.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aili Järvelä on monipuolinen, alati useista genreistä inspiroituva muusikko ja musiikintekijä." }, "name": { "fi": "IndiEspa: Aili Järvelä trio" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DF2CEE457C796C9CDE2E182C0A9AA3C4/IndiEspa_Aili_Jarvela_trio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60644/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60025", "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: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: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": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 3965, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:02.434985Z", "last_modified_time": "2023-09-07T14:19:02.435016Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732008.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3965/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:01.764425Z", "last_modified_time": "2023-09-11T21:16:13.583479Z", "date_published": null, "start_time": "2023-07-26T16:00:00Z", "end_time": "2023-07-26T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kesällä 2023 opetellaan jälleen paritansseja!</p><p>Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.</p><p>Mukaan tanssimaan voi tulla milloin vain! <br>Ennakkoilmoittautumista ei tarvita. <br>Opetuksesta vastaavat koulutetut tanssinopettajat. <br> <br>Seuraathan tanssipäivän säätä: sadesäällä tanssit peruuntuvat. <br> <br>Kesto 45 min</p><p>Vapaa pääsy</p><p>Yhteistyössä Tanssiteatteri Tsuumi ja Vuotalo.</p><p>ke 28.6.klo 19 tango<br>ke 5.7. klo 19 foksi<br>ke 12.7. klo 19 valssi<br>ke 19.7. klo 19 jenkka <br>ke 26.7. klo 19 cha cha<br>ke 2.8. klo 19 fusku <br>ke 9.8. klo 19 samba<br>ke 16.8. klo 19 kävelyhumppa</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kesällä 2023 opetellaan jälleen paritansseja!" }, "name": { "fi": "Kaupunkitanssit Vuotorilla" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3A5DCE25025A1DF2A5A7B1E428ED4872/Kaupunkitanssit_Vuotorilla_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60025/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60321", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3964, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:01.369526Z", "last_modified_time": "2023-09-07T14:19:01.369551Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731649.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3964/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:01.214297Z", "last_modified_time": "2023-09-11T21:16:13.387178Z", "date_published": null, "start_time": "2023-07-26T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Sopraano Angelika Klas yhdessä pianotaituri Seppo Hovin ja basisti Hannu Rantasen kanssa tarjoaa monipuolisen konserttituokion.</p><p>Yleisö saa nauttia kevyen klassisista operetti- ja musikaalisävelmistä, rakastetuista ikivihreistä sekä argentiinalaisen tangon ja bossa novankin rytmeistä. Seppo Hovin värikkäät juonnot johdattavat vuosikymmenten läpi laulujen tarinoihin ja tunnelmiin.</p><p>Angelika Klas, sopraano <br>Seppo Hovi, piano ja juonto<br>Hannu Rantanen, kontrabasso</p>", "sv": "<p>Sopranen Angelika Klas tillsammans med pianomästaren Seppo Hovi och basisten Hannu Rantanen bjuder på en mångsidig konsertstund.</p><p>Publiken får njuta av lätta klassiska operett- och musikaltoner, älskade schlagerlåtar samt argentinsk tango och också bossa nova-rytmer. Seppo Hovis färgstarka mellanprat leder oss genom årtionden till sångernas historier och stämningar.</p>", "en": "<p>Soprano Angelika Klas together with piano virtuoso Seppo Hovi and bassist Hannu Rantanen promise to put on a varied concert session.</p><p>The audience will get to enjoy light classical operetta and musical tunes, beloved evergreens and the rhythms of Argentinian tango and bossa nova, while the colourful anecdotes of Seppo Hovi shed light on the stories behind the songs from decades past.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Sopraano Angelika Klas yhdessä pianotaituri Seppo Hovin ja basisti Hannu Rantasen kanssa tarjoaa monipuolisen konserttituokion.", "sv": "Sopranen Angelika Klas tillsammans med pianomästaren Seppo Hovi och basisten Hannu Rantanen bjuder på en mångsidig konsertstund.", "en": "Soprano Angelika Klas together with piano virtuoso Seppo Hovi and bassist Hannu Rantanen promise to put on a varied concert session." }, "name": { "fi": "Angelika Klas", "sv": "Angelika Klas", "en": "Angelika Klas" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E0F8663513FAFBF86002801688B3E0B8/Angelika_Klas", "sv": "http://www.espanlava.fi/sv/evenemang/event/E0F8663513FAFBF86002801688B3E0B8/Angelika_Klas", "en": "http://www.espanlava.fi/en/events/event/E0F8663513FAFBF86002801688B3E0B8/Angelika_Klas" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60320", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3963, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:00.995745Z", "last_modified_time": "2023-09-07T14:19:00.995769Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731648.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3963/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:00.844140Z", "last_modified_time": "2023-09-11T21:16:13.188369Z", "date_published": null, "start_time": "2023-07-26T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Konsertit klo 17 ja 19 | Tenori Jyrki Anttila viihdyttää Espan lavalla yleisöä pianistivaimonsa Maija Anttilan säestämänä.</p><p>Konsertissa kuullaan monipuolista ohjelmaa aina Merikannon laulumusiikista hehkuvimpiin tenorisäveliin, kuten Mamma, Granada ja Con te partiro – operettia unohtamatta!</p>", "sv": "<p>Kl. 17 och 19 | Tenoren Jyrki Anttila underhåller publiken på Esplanadestraden under ackompanjemang av sin pianistfru Maija Anttila.</p><p>Konserten bjuder på ett mångsidigt program, allt från Merikantos vokalmusik till glödande tenortoner, såsom Mamma, Granada och utan att glömma Con te partiro-operetten!</p>", "en": "<p>Concerts at 5 pm and 7 pm | Tenor Jyrki Anttila will entertain the audience on the Espa Stage accompanied by his pianist wife Maija Anttila.</p><p>The concert will feature a diverse selection of songs ranging from Merikanto to some of the brightest tenor tunes, such as Mamma, Granada and Con te partiro – without forgetting operetta!</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Konsertit klo 17 ja 19 | Tenori Jyrki Anttila viihdyttää Espan lavalla yleisöä pianistivaimonsa Maija Anttilan säestämänä.", "sv": "Kl. 17 och 19 | Tenoren Jyrki Anttila underhåller publiken på Esplanadestraden under ackompanjemang av sin pianistfru Maija Anttila.", "en": "Concerts at 5 pm and 7 pm | Tenor Jyrki Anttila will entertain the audience on the Espa Stage accompanied by his pianist wife Maija Anttila." }, "name": { "fi": "Jyrki Anttila", "sv": "Jyrki Anttila", "en": "Jyrki Anttila" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6CB8D8AB40D47736FD1E3B96ACC74CB5/Jyrki_Anttila", "sv": "http://www.espanlava.fi/sv/evenemang/event/6CB8D8AB40D47736FD1E3B96ACC74CB5/Jyrki_Anttila", "en": "http://www.espanlava.fi/en/events/event/6CB8D8AB40D47736FD1E3B96ACC74CB5/Jyrki_Anttila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60320/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60090", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?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": 3962, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:00.591390Z", "last_modified_time": "2023-09-07T14:19:00.591417Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732799.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:00.423986Z", "last_modified_time": "2023-09-11T21:16:12.987235Z", "date_published": null, "start_time": "2023-07-26T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Stoan aukiolla on keskiviikkoisin kaikille avoin ja maksuton kirpputori.</p><p>Saat Stoalta myyntipöydän tai voit levittää aukiolle kankaan, jonka päälle saat myytävät tavarat ja vaatteet. Leppoisaa kirpputorimeininkiä säestävät kesäkuussa nuorisotalo Kipinän bändit. Heinäkuussa tunnelmaa luo DJ.</p><p>Ke 7.6. G SongLab – nuorten musiikintekijöiden kevätfestivaali<br>Ke 14.6. Nuorten toimintatalo Kipinän bändit. Mukana myös Pullabiili.<br>Ke 21.6. Nuorten toimintatalo Kipinän bändit<br>Ke 5.7. DJ Laiska Jaakko<br>Ke 12.7. DJ Invictus<br>Ke 19.7. DJ Invictus<br>Ke 26.7. DJ Kenno</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Stoan aukiolla on keskiviikkoisin kaikille avoin ja maksuton kirpputori." }, "name": { "fi": "Keskiviikkokirppari" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E82072EEB6ECD129118FE2EF6F685429/Keskiviikkokirppari" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60090/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60104", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 3961, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:00.165364Z", "last_modified_time": "2023-09-07T14:19:00.165400Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732803.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3961/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:59.865467Z", "last_modified_time": "2023-09-11T21:16:12.574028Z", "date_published": null, "start_time": "2023-07-25T15:00:00Z", "end_time": "2023-07-25T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Oletko kuullut Tribal Bellydancesta?</p><p>Tule nauttimaan TribalTanssiKeskuksen näytöksestä ja opi muutama tanssiaskel Anna Arten opetuksessa. <br>Näytöksessä nähdään lumoava kattaus koreografioita, improvisaatioesityksiä sekä sooloja! Lajeina on Tribal Fusion -vatsatanssi, Datura Style™ ja FatChanceBellyDance® Style.</p><p>Paikka Stoan aukion lava, sateen sattuessa Stoan aula.</p><p>Vapaa pääsy</p><p>= = = = = = = = = = = =<br> <br><b>Tanssiva tiistai</b><br>Joka toinen kesätiistai Stoan aukion lavalla esiintyy eri tanssiryhmä. Ryhmät edustavat tanssilajeja itämaisesta tanssista K-poppiin. Ryhmät opettavat muutaman muuvin myös yleisölle. Tule viihtymään hyvän musiikin ja tanssin parissa.</p><p>Ti 13.6. Afrokuubalaisia tansseja tarjoaa Felix Torres Tanssikoulu Tradicion Vivasta</p><p>Ti 27.6. Afrikkalaisia rytmejä ja tansseja Guirikan Foli -yhtyeen kanssa</p><p>Ti 11.7. Itämaista tanssia Zaray Dancen tahtiin</p><p>Ti 25.7. Tribal TanssiKeskus vihkii FatChanceBellyDance Styleen</p><p>Ti 8.8. K-popin muuveja Valkyrie Dance Crew’n johdolla</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Oletko kuullut Tribal Bellydancesta?" }, "name": { "fi": "Tanssiva tiistai: TribalTanssiKeskus" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DA09792A0431FFEEBBB3A8BF420BCA06/Tanssiva_tiistai_TribalTanssiKeskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60104/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60318", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3960, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:59.137158Z", "last_modified_time": "2023-09-07T14:18:59.137190Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730429.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3960/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:58.815964Z", "last_modified_time": "2023-09-11T21:16:09.680921Z", "date_published": null, "start_time": "2023-07-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Gaian kappaleet ovat melodisia, rytmisesti monipuolisia ja täynnä virtuoottista soittoa.</p><p>Tyyliä voisi luonnehtia hippikelttiprogeksi jossa on mystiikkaa ja hienovaraista huumoria sekä välähdyksiä lattarimusasta rokkiin.</p>", "sv": "<p>Gaias låtar är melodiska, rytmiskt mångsidiga och fulla av virtuellt spel.</p><p>Stilen kan karakteriseras som hippiekeltprogg med mystik och subtil humor samt glimtar från latinomusik till rock.</p>", "en": "<p>Gaia's songs are melodic, rhythmically versatile and full of virtuosic playing.</p><p>The style could be described as a hippie Celtic prog with mysticism, subtle humour and flashes of genres ranging from Latin music to rock.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Gaian kappaleet ovat melodisia, rytmisesti monipuolisia ja täynnä virtuoottista soittoa.", "sv": "Gaias låtar är melodiska, rytmiskt mångsidiga och fulla av virtuellt spel.", "en": "Gaia's songs are melodic, rhythmically versatile and full of virtuosic playing." }, "name": { "fi": "Open Stage: Gaia", "sv": "Open Stage: Gaia", "en": "Open Stage: Gaia" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8F693307A8EB0A931B9F939EFCA783B5/Open_Stage_Gaia", "sv": "http://www.espanlava.fi/sv/evenemang/event/8F693307A8EB0A931B9F939EFCA783B5/Open_Stage_Gaia", "en": "http://www.espanlava.fi/en/events/event/8F693307A8EB0A931B9F939EFCA783B5/Open_Stage_Gaia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60318/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60317", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3959, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:58.563048Z", "last_modified_time": "2023-09-07T14:18:58.563079Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730428.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3959/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:58.393424Z", "last_modified_time": "2023-09-11T21:16:08.637681Z", "date_published": null, "start_time": "2023-07-25T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Oopperaimprovisaatiotrio Improa! luo pienoisoopperan improvisoiduista kohtauksista.</p><p>Improa! luo pienoisoopperan improvisoiduista kohtauksista<br>Yleisö pääsee vaikuttamaan esityksen kulkuun valitsemalla kohtauksiin hahmojen nimet ja ammatit/harrastukset, antamalla kohtaukseen sisällytettävän lauseen ja toivomalla musiikkityyliä annetuista vaihtoehdoista. Kaikki esityksessä kuultava musiikki, teksti ja näyttämöllinen toiminta keksitään tässä ja nyt.</p><p>Improa! on perustettu alunperin vuonna 2006. Alun suuremmasta kokoonpanosta on jäljellä improkolmikko Mia Heikkinen, Jenni Lättilä ja Mikko Helenius sekä ryhmän valmentajana toimiva Juulia Tapola. Kaikki työryhmän jäsenet ovat kokeneita musiikin ja oopperan ammattilaisia.</p><p>Vuosien saatossa ryhmä on muiden projektiensa ohella harjoitellut oopperaimprovisaatiota, kehittänyt improvisoinnin työkaluja omaan käyttöönsä ja hakenut lisäkoulutusta muun muassa Stella Polariksen ja lontoolaisen Impropera-oopperaryhmän kursseilta. Ryhmä on esiintynyt muun muassa Musiikkiteatteri Kapsäkissä, Teatteri Avoimissa Ovissa, Café Agricolassa, Pitäjänmäen Kulttuurikirkossa, Hauhon Mikonheikissä ja Turku Impro Festival -tapahtumassa.</p><p>Mia Heikkinen, sopraano<br>Jenni Lättilä, sopraano <br>Mikko Helenius, piano</p>", "sv": "<p>Improa! skapar en liten opera av improviserade scener.</p><p>Publiken kan påverka framförandet genom att välja figurernas namn och yrken/hobbyer, genom att ge en mening som ska ingå i scenen och genom att önska musikstil av de givna alternativen. All musik, text och verksamhet på scenen som hörs i uppträdandet hittas på här och nu.</p>", "en": "<p>Improa! creates chamber opera out of improvised scenes.</p><p>The audience gets to influence the course of the performance by choosing the names and occupations/hobbies of the characters in the scenes, providing a sentence to be included in the scene and picking a musical style out of presented options. All of the music, text and stage activities performed are invented here and now.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Oopperaimprovisaatiotrio Improa! luo pienoisoopperan improvisoiduista kohtauksista.", "sv": "Improa! skapar en liten opera av improviserade scener.", "en": "Improa! creates chamber opera out of improvised scenes." }, "name": { "fi": "Open Stage: Improa!", "sv": "Open Stage: Improa!", "en": "Open Stage: Improa!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/75B75462D4BA6620ACCF165E9639DEE9/Open_Stage_Improa_", "sv": "http://www.espanlava.fi/sv/evenemang/event/75B75462D4BA6620ACCF165E9639DEE9/Open_Stage_Improa_", "en": "http://www.espanlava.fi/en/events/event/75B75462D4BA6620ACCF165E9639DEE9/Open_Stage_Improa_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60317/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60316", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3958, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:58.143371Z", "last_modified_time": "2023-09-07T14:18:58.143394Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730426.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3958/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:57.984918Z", "last_modified_time": "2023-09-11T21:16:08.450785Z", "date_published": null, "start_time": "2023-07-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Hannele Juutinen on tamperelainen laulaja-lauluntekijä, jonka musiikki on lyriikoiltaan näkemyksellistä, elektroakustista poppia.</p><p>Erityisesti harmonikka ja viulu tuovat siihen tuulahduksia skandinaavisesta kansanmusiikista. Lauluillaan Hannele haluaa kertoa merkityksellisiä tarinoita ja tehdä tilaa myös mielen varjojen tutkimiseen. Hänen syksyllä 2022 julkaisemaansa EP:tä voit kuunnella täältä: https://music.imusician.pro/a/rc0f54Tw/</p><p>Hannele Juutinen Band:<br>Hannele Juutinen, laulu<br>Tuukka Ojala, piano<br>Joose Ojala, harmonikka<br>Antti Katajisto, akustinen kitara<br>Jussi Luoma, lyömäsoittimet<br>Ilkka Niemi, viulu<br>Jonne Aho, basso</p>", "sv": "<p>Hannele Juutinen är en sångare och låtskrivare från Tammerfors, vars musik har visionär lyrik, elektroakustisk pop.</p><p>Särskilt dragspelet och fiolen medför vindar av skandinavisk folkmusik. Med sina sånger vill Hannele berätta betydelsefulla historier och skapa utrymme också för att undersöka själens mörker.</p>", "en": "<p>Hannele Juutinen is a singer-songwriter from Tampere whose music consists of electroacoustic pop with insightful lyrics and shades of Scandinavian folk music provided by the accordion and violin, in particular.</p><p>With her songs, Hannele wants to tell meaningful stories and also make room for exploring the shadows of the mind.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Hannele Juutinen on tamperelainen laulaja-lauluntekijä, jonka musiikki on lyriikoiltaan näkemyksellistä, elektroakustista poppia.", "sv": "Hannele Juutinen är en sångare och låtskrivare från Tammerfors, vars musik har visionär lyrik, elektroakustisk pop.", "en": "Hannele Juutinen is a singer-songwriter from Tampere whose music consists of electroacoustic pop with insightful lyrics and shades of Scandinavian folk music provided by the accordion and violin, in particular." }, "name": { "fi": "Open Stage: Hannele Juutinen Band", "sv": "Open Stage: Hannele Juutinen Band", "en": "Open Stage: Hannele Juutinen Band" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/91BAFDC5E75F79432CE2863EB53C1283/Open_Stage_Hannele_Juutinen_Band", "sv": "http://www.espanlava.fi/sv/evenemang/event/91BAFDC5E75F79432CE2863EB53C1283/Open_Stage_Hannele_Juutinen_Band", "en": "http://www.espanlava.fi/en/events/event/91BAFDC5E75F79432CE2863EB53C1283/Open_Stage_Hannele_Juutinen_Band" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60316/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59754", "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: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 3957, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:57.697194Z", "last_modified_time": "2023-09-07T14:18:57.697218Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728748.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3957/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:57.521094Z", "last_modified_time": "2023-09-11T21:16:08.273938Z", "date_published": null, "start_time": "2023-07-24T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kesällä 2023 opetellaan jälleen paritansseja! Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.</p><p>Mukaan tanssimaan voi tulla milloin vain. Ennakkoilmoittautumista ei tarvita. Opetuksesta vastaavat koulutetut tanssinopettajat. Seuraathan tanssipäivän säätä: kovalla sateella tanssit peruuntuvat. Peruutuksesta kerrotaan Kaupunkitanssien Facebookissa (www.facebook.com/Kaupunkitanssit)<br> <br>Kesän 2023 tanssit: <br>ma 5.6. foksi<br>ma 12.6. valssi<br>ma 19.6. samba<br>ma 26.6. bugg<br>ma 3.7. humppa<br>ma 10.7. fusku<br>ma 17.7. tango<br>ma 24.7. jenkka <br>ma 31.7. cha cha<br>ma 7.8. masurkka</p><p>Yhteistyössä: Tanssiteatteri Tsuumi <br>Opetuskieli: suomi</p>", "sv": "<p>Rörelsen börjar i höfterna!</p><p>Tanssiteatteri Tsuumi leder dansövningarna där vem som helst kan delta och prova på olika dansstilar och njuta av rörelseglädjen i det fria.</p><p>Den exakta platsen kommer att bekräftas senare.</p>", "en": "<p>Movement starts from the hips!</p><p>Under Dance Theatre Tsuumi’s guidance, everyone can try out various types of dance and enjoy the joy of motion outdoors.</p><p>The exact location will be confirmed later.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kesällä 2023 opetellaan jälleen paritansseja! Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.", "sv": "Rörelsen börjar i höfterna!", "en": "Movement starts from the hips!" }, "name": { "fi": "Kaupunkitanssit Malminkartanossa", "sv": "Stadsdans i Malmgård", "en": "City Dances in Malminkartano" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A3B5DC7DB277BD6B2E32400A2AE0A9B8/Kaupunkitanssit_Malminkartanossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A3B5DC7DB277BD6B2E32400A2AE0A9B8/Stadsdans_i_Malmgard", "en": "http://www.kanneltalo.fi/en/events/event/A3B5DC7DB277BD6B2E32400A2AE0A9B8/City_Dances_in_Malminkartano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59754/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60315", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3956, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:57.136500Z", "last_modified_time": "2023-09-07T14:18:57.136522Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730425.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:56.590575Z", "last_modified_time": "2023-09-11T21:16:08.087330Z", "date_published": null, "start_time": "2023-07-24T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tuija Rantalainen on yhteensä 7 albumia julkaissut sielukas laulaja ja taiturimainen pianisti. Espan keikalla hän esittää omaa ja lainalaulelmaa, chansoneita ja kesäisiä lattareita.</p><p>Tuija Rantalainen, laulu ja piano<br>https://www.tuijarantalainen.com</p>", "sv": "<p>Tuija Rantalainen är en själfull sångare och skicklig pianist som har gett ut sammanlagt sju album. Under uppträdandet på Esplanadestraden framför hon sina egna sånger och lånesånger, chansons och somriga latinolåtar.</p>", "en": "<p>Tuija Rantalainen is a soulful singer and skilled pianist who has released a total of seven albums. Her Espa gig will feature original and cover songs, chansons and summery Latin melodies.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tuija Rantalainen on yhteensä 7 albumia julkaissut sielukas laulaja ja taiturimainen pianisti. Espan keikalla hän esittää omaa ja lainalaulelmaa, chansoneita ja kesäisiä lattareita.", "sv": "Tuija Rantalainen är en själfull sångare och skicklig pianist som har gett ut sammanlagt sju album. Under uppträdandet på Esplanadestraden framför hon sina egna sånger och lånesånger, chansons och somriga latinolåtar.", "en": "Tuija Rantalainen is a soulful singer and skilled pianist who has released a total of seven albums. Her Espa gig will feature original and cover songs, chansons and summery Latin melodies." }, "name": { "fi": "Open Stage: Tuija Rantalainen", "sv": "Open Stage: Tuija Rantalainen", "en": "Open Stage: Tuija Rantalainen" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1D136E2D144506D2873487FA81D4C3A4/Open_Stage_Tuija_Rantalainen", "sv": "http://www.espanlava.fi/sv/evenemang/event/1D136E2D144506D2873487FA81D4C3A4/Open_Stage_Tuija_Rantalainen", "en": "http://www.espanlava.fi/en/events/event/1D136E2D144506D2873487FA81D4C3A4/Open_Stage_Tuija_Rantalainen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60315/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60314", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3955, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:56.004291Z", "last_modified_time": "2023-09-07T14:18:56.004344Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734075.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3955/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:55.796086Z", "last_modified_time": "2023-09-11T21:16:07.886470Z", "date_published": null, "start_time": "2023-07-22T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Aavekadut on uutta suomenkielistä rockmusiikkia soittava yhtye, jonka musiikissa yhdistyy eri vuosikymmenten rockin, kantrin ja folkin perintö.</p><p>Persoonallisen äänimaiseman luomisessa osansa on akustisten soittimien käytöllä sähköisten rinnalla ja yhtyeen jäsenten laajalla kokemuksella eri genrejen parissa. Suomenkieliset sanoitukset tarjoavat kuulijalle valokuvamaisia hetkiä, jotka koostuvat muistojen riekaleista, paikoista ja tunnelmista. Lopputulos on silti kaukana kirjallisesta, ja bändin viehätysvoima syntyykin ennen kaikkea viiden jäsenen yhteissoitosta: musiikista, joka svengaa!</p><p>Laulu, akustinen kitara - Sami Nissinen<br>Sähkökitara - Viktor Lepistö<br>Mandoliini - Johannes Oksanen<br>Basso - Tatu Back<br>Rummut - Ville Keränen</p>", "sv": "<p>Aavekadut är ett band som spelar ny finskspråkig rockmusik. I bandets musik förenas flera årtiondens rock-, country- och folkarv.</p><p>I skapandet av ett personligt ljudlandskap spelar akustiska musikinstrument en betydande roll, vid sidan av de elektroniska instrumenten och gruppmedlemmarnas omfattande erfarenhet av olika genrer. De finskspråkiga texterna bjuder åhöraren på fotografiska stunder som består av minnesglimtar, platser och stämningar.</p>", "en": "<p>Aavekadut is a band that play new Finnish-language rock music, combining the legacy of rock, country and folk from different decades.</p><p>The band’s unique soundscape is contributed to by the playing of acoustic instruments alongside electric ones and the band members’ extensive experience in different genres. The Finnish lyrics provide the audience with photographic moments consisting of shreds of memories, places and moods.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aavekadut on uutta suomenkielistä rockmusiikkia soittava yhtye, jonka musiikissa yhdistyy eri vuosikymmenten rockin, kantrin ja folkin perintö.", "sv": "Aavekadut är ett band som spelar ny finskspråkig rockmusik. I bandets musik förenas flera årtiondens rock-, country- och folkarv.", "en": "Aavekadut is a band that play new Finnish-language rock music, combining the legacy of rock, country and folk from different decades." }, "name": { "fi": "Open Stage: Aavekadut", "sv": "Open Stage: Aavekadut", "en": "Open Stage: Aavekadut" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/92624F1EAE4513530987E098E5621633/Open_Stage_Aavekadut", "sv": "http://www.espanlava.fi/sv/evenemang/event/92624F1EAE4513530987E098E5621633/Open_Stage_Aavekadut", "en": "http://www.espanlava.fi/en/events/event/92624F1EAE4513530987E098E5621633/Open_Stage_Aavekadut" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60314/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60313", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3954, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:55.573175Z", "last_modified_time": "2023-09-07T14:18:55.573195Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730422.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3954/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:55.392868Z", "last_modified_time": "2023-09-11T21:16:07.686746Z", "date_published": null, "start_time": "2023-07-22T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>TribalTanssiKeskus on Helsingin ensimmäinen tanssistudio, joka erikoistuu Tribal Bellydance -tanssisuuntaukseen.</p><p>Näytöksessä nähdään lumoava kattaus koreografioita, improvisaatioesityksiä sekä sooloja! Lajeina on Tribal Fusion -vatsatanssi, Datura Style™ ja FatChanceBellyDance®Style</p>", "sv": "<p>TribalTanssiKeskus är Helsingfors första dansstudio, som specialiserar sig på Tribal Bellydance.</p><p>På föreställningen ses en imponerande helhet av koreografier, improvisationsföreställningar och solon!</p>", "en": "<p>TribalTanssiKeskus is Helsinki's first dance studio specialising in Tribal Bellydance.</p><p>The show will feature an enchanting range of choreographies, improv performances and solos!</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "TribalTanssiKeskus on Helsingin ensimmäinen tanssistudio, joka erikoistuu Tribal Bellydance -tanssisuuntaukseen.", "sv": "TribalTanssiKeskus är Helsingfors första dansstudio, som specialiserar sig på Tribal Bellydance.", "en": "TribalTanssiKeskus is Helsinki's first dance studio specialising in Tribal Bellydance." }, "name": { "fi": "Open Stage: TribalTanssiKeskus", "sv": "Open Stage: TribalTanssiKeskus", "en": "Open Stage: TribalTanssiKeskus" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8FB5D35D02073A485C157059908C4C70/Open_Stage_TribalTanssiKeskus", "sv": "http://www.espanlava.fi/sv/evenemang/event/8FB5D35D02073A485C157059908C4C70/Open_Stage_TribalTanssiKeskus", "en": "http://www.espanlava.fi/en/events/event/8FB5D35D02073A485C157059908C4C70/Open_Stage_TribalTanssiKeskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60313/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60312", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 3953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:55.113024Z", "last_modified_time": "2023-09-07T14:18:55.113046Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732280.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3953/?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:18:54.965863Z", "last_modified_time": "2023-09-11T21:16:07.505973Z", "date_published": null, "start_time": "2023-07-21T13:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Mimi-prinsessa ja Kuku-leijona leikkivät, tanssivat, satujoogailevat ja musisoivat kanssasi!</p><p>Teatteriseikkailussa autetaan pieniä eläinystäviä, lohdutetaan surullisia ja nauretaan sydäntemme kyllyydestä!<br> <br>Vuorovaikutteiset esitykset on erityisesti suunniteltu vahvistamaan pienen ihmisen itsetuntoa sekä tunne- ja kaveritaitoja. Musiikin ja tanssien koreografiat on tehnyt Mimi ja klovneriasta ja visuaalisesta ilmeestä vastaa Kuku. Molemmat ovat paitsi musiikkiteatterin konkareita, myös lasten joogan ja liikunnanohjaajia.</p>", "sv": "<p>Prinsessan Mimi och lejonet Kuku kommer att spela, dansa, göra fairyyoga och göra musik med dig!</p><p>I teateräventyr hjälper vi små djurvänner, tröstar de sorgsna och skrattar av hjärtat!<br> <br>De interaktiva föreställningarna är speciellt utformade för att stärka en liten människas självkänsla, såväl som känslomässiga och vänskapsmässiga färdigheter. Musiken och koreografin för danserna gjordes av Mimi, och Kuku är ansvarig för clowningen och det visuella utseendet. Båda är inte bara musikteaterveteraner, utan även barnyoga- och träningsinstruktörer.</p>", "en": "<p>Princess Mimi and Kuku the lion will play, dance, do fairy yoga and make music with you!</p><p>In theater adventures, we help little animal friends, comfort the sad and laugh to our heart's content!</p><p>The interactive performances are specially designed to strengthen a little person's self-esteem, as well as emotional and friendship skills. The music, and choreography of the dances was done by Mimi, and Kuku is responsible for the clowning and visual appearance. Both are not only musical theater veterans, but also children's yoga and exercise instructors.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Mimi-prinsessa ja Kuku-leijona leikkivät, tanssivat, satujoogailevat ja musisoivat kanssasi!", "sv": "Prinsessan Mimi och lejonet Kuku kommer att spela, dansa, göra fairyyoga och göra musik med dig!", "en": "Princess Mimi and Kuku the lion will play, dance, do fairy yoga and make music with you!" }, "name": { "fi": "Mimi ja Kuku", "sv": "Mimi och Kuku", "en": "Mimi and Kuku" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D242C2844325313E8123F40AD1158D44/Mimi_ja_Kuku", "sv": "http://www.espanlava.fi/sv/evenemang/event/D242C2844325313E8123F40AD1158D44/Mimi_och_Kuku", "en": "http://www.espanlava.fi/en/events/event/D242C2844325313E8123F40AD1158D44/Mimi_and_Kuku" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60312/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60024", "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: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: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": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 3950, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:53.038680Z", "last_modified_time": "2023-09-07T14:18:53.038713Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732007.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3950/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:52.861490Z", "last_modified_time": "2023-09-11T21:16:03.230107Z", "date_published": null, "start_time": "2023-07-19T16:00:00Z", "end_time": "2023-07-19T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kesällä 2023 opetellaan jälleen paritansseja!</p><p>Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.</p><p>Mukaan tanssimaan voi tulla milloin vain! <br>Ennakkoilmoittautumista ei tarvita. <br>Opetuksesta vastaavat koulutetut tanssinopettajat. <br> <br>Seuraathan tanssipäivän säätä: sadesäällä tanssit peruuntuvat. <br> <br>Kesto 45 min</p><p>Vapaa pääsy</p><p>Yhteistyössä Tanssiteatteri Tsuumi ja Vuotalo.</p><p>ke 28.6.klo 19 tango<br>ke 5.7. klo 19 foksi<br>ke 12.7. klo 19 valssi<br>ke 19.7. klo 19 jenkka <br>ke 26.7. klo 19 cha cha<br>ke 2.8. klo 19 fusku <br>ke 9.8. klo 19 samba<br>ke 16.8. klo 19 kävelyhumppa</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kesällä 2023 opetellaan jälleen paritansseja!" }, "name": { "fi": "Kaupunkitanssit Vuotorilla" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/24EA0BD557842A580F239F546206D56E/Kaupunkitanssit_Vuotorilla_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60024/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60258", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3949, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:52.602165Z", "last_modified_time": "2023-09-07T14:18:52.602197Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730251.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3949/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:52.457231Z", "last_modified_time": "2023-09-11T21:16:03.048580Z", "date_published": null, "start_time": "2023-07-19T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Matkakokemuksia äänin maalattuina: Reinis Jaunais ja Flamenco Thief sulattavat yhteen virtuoottista kitaraa ja globaaleja rytmejä unohtumattomaksi musiikkimatkaksi.</p><p><b>18.00 | Flamenco Thief</b><br>Craig Sutton, Flamenco Thief, soittaa espanjalaista akustista kitaraa loop-pedaalin avulla yhdistääkseen moderneja rytmejä perinteisiin flamencotekniikoihin. Lännen, idän ja Afrikan rytmit ovat mahdollistaneet yhteyden ja pitkäaikaisten ystävyyssuhteiden rakentamisen ihmisten kanssa ympäri maailmaa. Hän on viihdyttänyt väkijoukkoja turkkilaisissa puistoissa, saksalaisissa keittiöissä, serbialaisilla katufestivaaleilla, hollantilaisissa sairaaloissa, ranskalaisissa kappeleissa ja monissa muissa ihastuttavan ainutlaatuisissa paikoissa.</p><p><b>19.00 | Reinis Jaunais</b><br>Latvialainen Reinis Jaunais on tuonut lavoille ympäri maailmaa monien vuosien ajan poikkeuksellisia kitarataitojaan ja ainutlaatuisia laulujaan. Hänen musiikissaan yhdistyvät monet erilaiset kitaransoiton tekniikat. Viime vuosina Reinis on soittanut yli 200 konserttia vuodessa, julkaissut 9 menestyksekästä albumia ja kiertänyt ympäri Eurooppaa, Aasiaa, Australiaa ja Uutta-Seelantia.</p>", "sv": "<p>Reseupplevelser målade i ljud: Reinis Jaunais och Flamenco Thief smälter ihop virtuell gitarr och globala rytmer till en oförglömlig musikresa.</p><p>18.00 | Reinis Jaunais<br>Lettiska Reinis Jaunais har i många år fört med sig exceptionella gitarrfärdigheter och unika sånger på scener runt om i världen. Hans musik kombinerar flera olika speltekniker på gitarr.</p><p>19.00 | Flamenco Thief<br>Craig Sutton, Flamenco Thief, spelar spansk akustisk gitarr med hjälp av en loop-pedal för att kombinera moderna rytmer med traditionella flamencotekniker. Rytmer från väst, öst och Afrika har möjliggjort kontakt och långvariga vänskapsrelationer med människor runt om i världen.</p>", "en": "<p>Travel experiences painted with sounds: Reinis Jaunais and Flamenco Thief blend guitar mastery, global rhythms, and unique performances in an unforgettable musical journey.</p><p><b>18.00 | Reinis Jaunais</b><br>Travel experiences painted with sounds - that is how you would describe the music of Reinis Jaunais, a musician from Riga, Latvia. Reinis has been performing all over the world for many years sharing his exceptional guitar skills and unique songs. His music combines distinctive guitar playing techniques - including fingerstyle, tapping, percussive, and live looping. For the last few years Reinis has played over 200 concerts a year, released 9 successful music albums and has toured all around Europe, Asia, Australia and New Zealand.</p><p><b>19.00 | Flamenco Thief</b><br>Craig Sutton, the Flamenco Thief, plays Spanish acoustic guitar with a loop pedal to blend modern rhythms with time-honored Flamenco techniques.</p><p>Western, Eastern and African rhythms have allowed him to connect and build long lasting friendships with people all over the world. He has entertained crowds in Turkish parks, German kitchens, Serbian street festivals, Dutch hospitals, French chapels and so many more wonderfully unique locations.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Matkakokemuksia äänin maalattuina: Reinis Jaunais ja Flamenco Thief sulattavat yhteen virtuoottista kitaraa ja globaaleja rytmejä unohtumattomaksi musiikkimatkaksi.", "sv": "Reseupplevelser målade i ljud: Reinis Jaunais och Flamenco Thief smälter ihop virtuell gitarr och globala rytmer till en oförglömlig musikresa.", "en": "Travel experiences painted with sounds: Reinis Jaunais and Flamenco Thief blend guitar mastery, global rhythms, and unique performances in an unforgettable musical journey." }, "name": { "fi": "The Flamenco Thief (UK) | Reinis Jaunais (LAT)", "sv": "The Flamenco Thief (UK) | Reinis Jaunais (LAT)", "en": "The Flamenco Thief (UK) | Reinis Jaunais (LAT)" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6CAC177B3F6FE00EBE2156B7DB99FBA8/The_Flamenco_Thief_UK_Reinis_Jaunais_LAT_", "sv": "http://www.espanlava.fi/sv/evenemang/event/6CAC177B3F6FE00EBE2156B7DB99FBA8/The_Flamenco_Thief_UK_Reinis_Jaunais_LAT_", "en": "http://www.espanlava.fi/en/events/event/6CAC177B3F6FE00EBE2156B7DB99FBA8/The_Flamenco_Thief_UK_Reinis_Jaunais_LAT_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60258/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60089", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?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": 3948, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:52.197559Z", "last_modified_time": "2023-09-07T14:18:52.197580Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732798.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:52.011511Z", "last_modified_time": "2023-09-11T21:16:02.863046Z", "date_published": null, "start_time": "2023-07-19T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Stoan aukiolla on keskiviikkoisin kaikille avoin ja maksuton kirpputori.</p><p>Saat Stoalta myyntipöydän tai voit levittää aukiolle kankaan, jonka päälle saat myytävät tavarat ja vaatteet. Leppoisaa kirpputorimeininkiä säestävät kesäkuussa nuorisotalo Kipinän bändit. Heinäkuussa tunnelmaa luo DJ.</p><p>Ke 7.6. G SongLab – nuorten musiikintekijöiden kevätfestivaali<br>Ke 14.6. Nuorten toimintatalo Kipinän bändit. Mukana myös Pullabiili.<br>Ke 21.6. Nuorten toimintatalo Kipinän bändit<br>Ke 5.7. DJ Laiska Jaakko<br>Ke 12.7. DJ Invictus<br>Ke 19.7. DJ Invictus<br>Ke 26.7. DJ Kenno</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Stoan aukiolla on keskiviikkoisin kaikille avoin ja maksuton kirpputori." }, "name": { "fi": "Keskiviikkokirppari" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DBB37EE4D4A9495542B2ED449A3224BA/Keskiviikkokirppari" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60089/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60257", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3947, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:51.629592Z", "last_modified_time": "2023-09-07T14:18:51.629612Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730522.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3947/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:50.953708Z", "last_modified_time": "2023-09-11T21:16:02.675282Z", "date_published": null, "start_time": "2023-07-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Sambakin iloiset rytmit saavat hymyn huulille ja tempaavat kuulijan mukaansa tanssimaan!</p><p>Sambaki on tänä vuonna 10-vuotisjuhlavuottaan juhliva bändi, joka soittaa suosittua brasilialaista musiikkia.</p>", "sv": "<p>Sambakis glada rytmer åstadkommer ett leendet på läpparna och rycker med åhöraren till dans!</p><p>Sambaki är ett band som i år firar 10 års jubileum och spelar populär brasiliansk musik.</p>", "en": "<p>Sambaki's cheerful rhythms put a smile on your face and make you dance!</p><p>Sambaki is a band celebrating its 10th anniversary this year that plays popular Brazilian music.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Sambakin iloiset rytmit saavat hymyn huulille ja tempaavat kuulijan mukaansa tanssimaan!", "sv": "Sambakis glada rytmer åstadkommer ett leendet på läpparna och rycker med åhöraren till dans!", "en": "Sambaki's cheerful rhythms put a smile on your face and make you dance!" }, "name": { "fi": "Open Stage: Sambaki band", "sv": "Open Stage: Sambaki band", "en": "Open Stage: Sambaki band" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/322D0F0643C55D46C77965DE998F3D25/Open_Stage_Sambaki_band", "sv": "http://www.espanlava.fi/sv/evenemang/event/322D0F0643C55D46C77965DE998F3D25/Open_Stage_Sambaki_band", "en": "http://www.espanlava.fi/en/events/event/322D0F0643C55D46C77965DE998F3D25/Open_Stage_Sambaki_band" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60257/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60256", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 3946, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:50.419501Z", "last_modified_time": "2023-09-07T14:18:50.419537Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730521.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3946/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:50.248790Z", "last_modified_time": "2023-09-11T21:16:02.493841Z", "date_published": null, "start_time": "2023-07-18T13:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Cantares on venezuelalaisen laulajan Nathaly Gómezin ja perulaisen multi-instrumentalistin ja musiikkitieteilijän Camilo Pajuelon muodostama duo.</p><p><b>Nathaly Gómez Martínez</b> (Venezuela, 1973) on laulaja, joogaohjaaja ja asianajaja. Lapsesta asti laulaminen ja cuatron soittaminen on johtanut hänet osallistumaan erilaisiin esityksiin koulussa ja yliopistossa. Hän on opiskellut laulua kotimaassaan ja Suomessa. Täällä hetkellä hän opiskelee laulua & cuatroa Escuela Contemporánea de la voz -konservatoriossa ja esiintyy Duo Cantares ja Hola Helsinki Salsa -bändien laulajana.</p><p><b>Camilo Pajuelo Valdez</b> (Peru, 1973) on muusikko ja musiikintutkija. Valdez opiskeli Perun kansallisessa konservatoriossa Limassa solistista kitaransoittoa. Hän on suorittanut maisterintutkinnon Helsingin yliopiston musiikkitieteen laitoksella ja valmistelee siellä parhaillaan tohtorintutkintoa. Sooloesiintymisien lisäksi hän esiintyy tällä hetkellä Duo Cantares ja Ensemble Wirakocha -yhtyeiden kanssa. Hän opettaa kitaraa Sibelius-Akatemiassa, International School of Music Finlandissa, Sävelmetsässä ja Espoon Steinerkoulussa.</p>", "sv": "<p>Cantares är en duo bestående av den venezuelanska sångerskan Nathaly Gómez och peruanska multi-instrumentalisten och musikforskaren Camilo Pajuelo.</p>", "en": "<p>Cantares is a duo formed by Venezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo.</p><p>The duo was born in 2017, in Helsinki, inspired by a common passion for the music of its own cultural background and the desire to promote it in the Nordic countries. Its repertoire consists of own arrangements of songs composed by remarkable composers, including a rich variety of Latin American genres and styles. Cantares has offered its first official concert at the church of Leppävaara, Espoo in Finland, in November 2017. Since then, performs on a regular basis, sharing the stage also with local artists from different nationalities. Cantares has also performed in France, Peru, and Spain.</p><p>Nathaly Gómez Martínez (Venezuela, 1973) is a singer, yoga instructor and lawyer. Singing and playing the cuatro since childhood has led him to participate in various performances at school and university. He has studied singing in his home country and in Finland. Currently, he is studying singing & cuatro at the Escuela Contemporánea de la voz conservatory and performs as a singer in the Duo Cantares and Hola Helsinki Salsa band.</p><p>Camilo Pajuelo Valdez (Peru, 1973) is a musician and musicologist. Valdez studied solo guitar at the National Conservatory of Peru in Lima. He has completed his master's degree at the Department of Musicology at the University of Helsinki and is currently preparing his doctoral degree there. In addition to solo performances, he currently performs with Duo Cantares and Ensemble Wirakocha. He teaches guitar at Sibelius Academy, International School of Music Finland, Sävelmetsä and Steinerkoulu in Espoo.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Cantares on venezuelalaisen laulajan Nathaly Gómezin ja perulaisen multi-instrumentalistin ja musiikkitieteilijän Camilo Pajuelon muodostama duo.", "sv": "Cantares är en duo bestående av den venezuelanska sångerskan Nathaly Gómez och peruanska multi-instrumentalisten och musikforskaren Camilo Pajuelo.", "en": "Cantares is a duo formed by Venezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo." }, "name": { "fi": "Open Stage: Duo Cantares", "sv": "Open Stage: Duo Cantares", "en": "Open Stage: Duo Cantares" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/174B5F28D091BF206193DE71213600D8/Open_Stage_Duo_Cantares", "sv": "http://www.espanlava.fi/sv/evenemang/event/174B5F28D091BF206193DE71213600D8/Open_Stage_Duo_Cantares", "en": "http://www.espanlava.fi/en/events/event/174B5F28D091BF206193DE71213600D8/Open_Stage_Duo_Cantares" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60256/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19236, "next": "