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

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

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

See the result

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

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

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

See the result

event/?start=now&end=today

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?suitable_for=12,14

See the result

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

See the result

event/?publisher_ancestor=ahjo:00001

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

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

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&is_free=true&page=49
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 29573,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=50",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=48"
    },
    "data": [
        {
            "id": "kulke:68998",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201251,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T12:14:21.294989Z",
                    "last_modified_time": "2026-05-12T12:14:21.295038Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785422.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201251/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T12:14:21.164082Z",
            "last_modified_time": "2026-05-29T12:13:35.790909Z",
            "date_published": null,
            "start_time": "2026-07-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsinki Cotonou Ensemble",
                "sv": "Helsinki Cotonou Ensemble",
                "en": "Helsinki Cotonou Ensemble"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Suomalais-beniniläis-tansanialainen, 8-henkinen kokoonpano on hioutunut 13 vuoden aikana saumattomaksi rytmiryhmäksi.",
                "sv": "Den finländsk-beninsk-tanzaniska sammansättningen med åtta personer har under 13 år blivit en sömlös rytmgrupp.",
                "en": "The dynamic 8-piece joyfully mixes afrobeat with jazz grooves and harmonies."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/EFC1A4E7E33AFB7FF06416456987DA43/Helsinki_Cotonou_Ensemble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/EFC1A4E7E33AFB7FF06416456987DA43/Helsinki_Cotonou_Ensemble",
                "en": "http://www.espanlava.fi/en/events/event/EFC1A4E7E33AFB7FF06416456987DA43/Helsinki_Cotonou_Ensemble"
            },
            "description": {
                "fi": "<p>Suomalais-beniniläis-tansanialainen, 8-henkinen kokoonpano on hioutunut 13 vuoden aikana saumattomaksi rytmiryhmäksi.</p><p>Yhtye on julkaissut kuusi studioalbumia, joista viimeisin \"Vive l'amour\" ilmestyi 1.11.2024 (Rockadillo Records). Levyllä HCE palaa musiikillisesti juurilleen sekoittaen beniniläisiä perinnerytmejä länsimaalaisiin ja afroamerikkalaisiin harmonisiin ja melodisiin ideoihin. Bändin dynaamiset ja energiset livekeikat ovat saaneet yleisöt tanssimaan ympäri maailmaa, Koreasta Kanadaan, Ruotsista Ranskaan ja Chilestä Tsekkeihin. Yhtye on tullut valituksi myös merkittäviin showcase-tapahtumiin, esimerkkinä WOMEX, Mundial Montreal ja Visa for Music. HCE valloittaa niin jazz- kuin maailmanmusiikkifanit, ikään katsomatta!</p><p>KOKOONPANO:<br> Noël Saïzonou – lyömäsoittimet, laulu<br> Janne Halonen – kitara, laulu<br> Sampo Riskilä – basso, laulu<br> Juha Räsänen – rummut, laulu<br> Mikko Pettinen – trumpetti, laulu<br> Joakim Berghäll – saksofoni, laulu<br> Kasheshi Makena – lyömäsoittimet, laulu<br> Visa Oscar – koskettimet</p>",
                "sv": "<p>Den finländsk-beninsk-tanzaniska sammansättningen med åtta personer har under 13 år blivit en sömlös rytmgrupp.</p><p>Grupperingen har publicerat sex studioalbum, av vilka det senaste, ”Vive l’amour”, kom ut den 1 november 2024 (Rockadillo Records). På albumet återvänder HCE till sina musikaliska rötter och blandar traditionella beninska rytmer med västerländska och afroamerikanska harmoniska och melodiska idéer. Bandets dynamiska och energiska livekonserter har fått publiken att dansa runtom i världen, från Korea till Kanada, Sverige till Frankrike och Chile till Tjeckien. Bandet har också valts till stora showcase-evenemang som WOMEX, Mundial Montreal och Visa for Music. HCE förtjusar både jazz- och världsmusikfans, oavsett ålder!</p>",
                "en": "<p>The dynamic 8-piece joyfully mixes afrobeat with jazz grooves and harmonies.</p><p>The vocalist and percussionist NOËL SAIZONOU and guitarist JANNE HALONEN have led the band through four continents and six studio sessions over the past 13 years, operating between North Europe and West Africa. The latest album Vive l’amour was released in 2024 (Rockadillo Records). Major appearances include tours in e.g. Canada and Chile, and they have played concerts all over Europe including e.g. Sziget, Pohoda and Musica Mundo. HCE was an official showcase artist at WOMEX 2018, at Mundial Montreal 2022 and Visa for Music 2024, to name a few international platforms. Their energetic live shows leave nobody sitting whether a world music or a jazz fan.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68998/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68995",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201250,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T12:14:20.871230Z",
                    "last_modified_time": "2026-05-12T12:14:20.871243Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785641.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201250/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T12:14:20.734087Z",
            "last_modified_time": "2026-05-29T12:13:35.592630Z",
            "date_published": null,
            "start_time": "2026-07-22T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Zangoma",
                "sv": "Zangoma",
                "en": "Zangoma"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vuonna 1996 Kolomwen kylässä, Sambian ytimessä, asui nuori poika nimeltään Waina.",
                "sv": "År 1996 bodde en ung pojke vid namn Waina i byn Kolomwe i hjärtat av Zambia.",
                "en": "In 1996 in the village of Kolomwe, in the heart of Zambia, lived a young boy named Waina."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/77C51CB496D0FC3B153FB3E0340E9F04/Zangoma",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/77C51CB496D0FC3B153FB3E0340E9F04/Zangoma",
                "en": "http://www.espanlava.fi/en/events/event/77C51CB496D0FC3B153FB3E0340E9F04/Zangoma"
            },
            "description": {
                "fi": "<p>Vuonna 1996 Kolomwen kylässä, Sambian ytimessä, asui nuori poika nimeltään Waina.</p><p>Yhtenä päivänä hän kohtasi paikallisen poppamiehen, joka kertoi nähneensä näyn, jossa Waina tulee tapaamaan kolme rokkaria tuhansien järvien maasta. Yhdessä he aloittavat zamrockin uuden tulemisen. Ja niin ZANGOMA oli syntynyt.</p><p>Zangoma on uusi suomalais-sambialainen bändi, joka on ottanut tehtäväkseen tuoda zamrockin tälle vuosikymmenelle.</p><p>Dynaamisilla soittajilla ja vahvalla solistilla varustettu yhtye vie sinut maailmaan, josta et halua tulla takaisin. History in the making!</p><p>Kokoonpano:<br>Waina Kolomwe – laulu<br> Ville Salonen - kitara & laulu<br> Riku Pirttiniemi - basso & laulu (Death Hawks, Dust Mountain)<br> Miikka Heikkinen – rummut (Death Hawks)</p>",
                "sv": "<p>År 1996 bodde en ung pojke vid namn Waina i byn Kolomwe i hjärtat av Zambia.</p><p>En dag träffade han en lokal medicinman, som berättade att han haft en vision om att Waina skulle träffa tre rockare från ett land med tusentals sjöar. Tillsammans inleder de zamrockens återkomst. Och så föddes ZANGOMA.</p><p>Zangoma är ett nytt finsk-zambiskt band som har gjort det till sin uppgift att ta zamrocken till detta årtionde.</p><p>Med dynamiska musiker och en stark solist tar bandet dig till en värld du inte vill återvända från. History in the making!</p>",
                "en": "<p>In 1996 in the village of Kolomwe, in the heart of Zambia, lived a young boy named Waina.</p><p>One day, he encountered a local witch doctor who said that they had had a vision of Waina meeting three rockers from the land of a thousand lakes. Together, they would start the new coming of zamrock. And that's how ZANGOMA was born.</p><p>Zangoma is a new Finnish-Zambian band that has taken it upon itself to update zamrock to the current decade.</p><p>The dynamic musicians and strong vocalist will transport you to a world that you will never want to leave. History in the making!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68995/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68992",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T10:13:02.656351Z",
                    "last_modified_time": "2026-05-12T10:13:02.656364Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787936.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T10:13:02.599241Z",
            "last_modified_time": "2026-05-29T12:13:35.434411Z",
            "date_published": null,
            "start_time": "2026-07-21T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pohjolan Ilmari – Open Stage",
                "sv": "Pohjolan Ilmari – Open Stage",
                "en": "Pohjolan Ilmari – Open Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Taiteellisesti tinkimättömän ja pitkään taukoa pitäneen Pohjolan Ilmarin tarinat kertovat surullisista kohtaloista, läheisten kuolemasta, tyydytyksestä ihmiskunnan lopun edessä ja reissuista sairaalaan, mutta kaikkea leimaa silti inhimillinen lempeys ja huumori.",
                "sv": "Konstnärligt kompromisslösa Pohjolan Ilmari, som var på en lång paus, berättar historier om sorliga öden, närståendes död, tillfredsställelse inför mänsklighetens slut samt resor till sjukhuset, men allt präglas ändå av mänsklig välvillighet och humor.",
                "en": "The stories of the artistically uncompromising Pohjolan Ilmari, who is back after an extended break, feature sad fates, the death of loved ones, the satisfaction of facing the end of humanity and trips to the hospital, with human kindness and humour nevertheless running through them."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1AFDA4BDC6C79E2D4562B8E0792453C6/Pohjolan_Ilmari",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1AFDA4BDC6C79E2D4562B8E0792453C6/Pohjolan_Ilmari",
                "en": "http://www.espanlava.fi/en/events/event/1AFDA4BDC6C79E2D4562B8E0792453C6/Pohjolan_Ilmari"
            },
            "description": {
                "fi": "<p>Taiteellisesti tinkimättömän ja pitkään taukoa pitäneen Pohjolan Ilmarin tarinat kertovat surullisista kohtaloista, läheisten kuolemasta, tyydytyksestä ihmiskunnan lopun edessä ja reissuista sairaalaan, mutta kaikkea leimaa silti inhimillinen lempeys ja huumori.</p><p>Musiikillisesti yhtyeen uudempi tuotanto on polveilevaa eikä pidättäydy tiukasti enää Emma-ehdokkuuden (kriitikon valinta) saaneen esikoisalbuminsa \"Enkä mä rakasta ketään\" hahmottelemissa Kallio-romanttisissa raameissa, vaan luottaa esteettiseen näkemykseensä sitovana elementtinä kappaleiden välillä.</p>",
                "sv": "<p>Konstnärligt kompromisslösa Pohjolan Ilmari, som var på en lång paus, berättar historier om sorliga öden, närståendes död, tillfredsställelse inför mänsklighetens slut samt resor till sjukhuset, men allt präglas ändå av mänsklig välvillighet och humor.</p><p>Ur ett musikaliskt perspektiv är bandets nyare produktion böljande och håller sig inte längre strikt inom de Berghäll-romantiska ramarna som bandets första album \"Enkä mä rakasta ketään” med Emma-nominering (kritikernas val) skapade, utan litar på sin estetiska syn som ett bindande element mellan sina sånger.</p>",
                "en": "<p>The stories of the artistically uncompromising Pohjolan Ilmari, who is back after an extended break, feature sad fates, the death of loved ones, the satisfaction of facing the end of humanity and trips to the hospital, with human kindness and humour nevertheless running through them.</p><p>Musically, the band's newer material is polished and no longer sticks strictly to the Kallio romantic framework outlined by their Emma-nominated (critics' choice) debut album Enkä mä rakasta ketään, but relies on their aesthetic vision as a binding element between songs.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68992/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69049",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/",
                        "sv": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/",
                        "en": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201328,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T07:16:09.555031Z",
                    "last_modified_time": "2026-05-19T07:16:09.555045Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792473.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201328/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-19T07:16:09.416821Z",
            "last_modified_time": "2026-05-29T12:13:34.201554Z",
            "date_published": null,
            "start_time": "2026-07-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Elina Teini – Indiespa",
                "sv": "Elina Teini – Indiespa",
                "en": "Elina Teini – Indiespa"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Elina Teini on nouseva laulaja-lauluntekijä, jonka musiikki kurkottaa syvälle ihmisyyden ristiriitoihin ja sanoittamattomiin tunteisiin.",
                "sv": "Elina Teini är en lovande sångare och låtskrivare vars musik sträcker sig djupt in i mänsklighetens motstridigheter och känslor som inte uttrycks i ord.",
                "en": "Elina Teini is an emerging singer-songwriter whose music reaches deep into the contradictions and unspoken emotions of humanity."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DE942D639FB8ACDB1EE8564DC64BFC28/Elina_Teini",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DE942D639FB8ACDB1EE8564DC64BFC28/Elina_Teini",
                "en": "http://www.espanlava.fi/en/events/event/DE942D639FB8ACDB1EE8564DC64BFC28/Elina_Teini"
            },
            "description": {
                "fi": "<p>Elina Teini on nouseva laulaja-lauluntekijä, jonka musiikki kurkottaa syvälle ihmisyyden ristiriitoihin ja sanoittamattomiin tunteisiin.</p><p>Suuret melodiat, rehellisen kipeät lyriikat, poikkeuksellinen lauluääni ja tummanpuhuvuus ovat Elina Teinin musiikin tunnuspiirteitä. Artisti on julkaissut neljä singleä, joista uusin, \"Haavoja\", käsittelee sitoutumisen vaikeutta: sitä, kun edellinen suhde on rikkonut niin pahasti, että pelkää, ettei osaa enää rakastaa. Teinin musiikissa on eräs varsin lumoava piirre: kuulija löytää itsensä kappaleiden tarinoista kuin huomaamatta.</p><p>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>",
                "sv": "<p>Elina Teini är en lovande sångare och låtskrivare vars musik sträcker sig djupt in i mänsklighetens motstridigheter och känslor som inte uttrycks i ord.</p><p>Elina Teinis musik kännetecknas av stora melodier, ärligt smärtsamma texter, en unik sångröst och ett visst mörker. Artisten har släppt fyra singlar, varav den senaste, ”Haavoja”, handlar om svårigheten att binda sig – när ett tidigare förhållande har skadat en så mycket att man är rädd för att man inte längre kan älska. Teinis musik har ett särskilt förtjusande drag: Lyssnaren hittar sig själv i låtarnas berättelser utan att hen ens märker det.</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>",
                "en": "<p>Elina Teini is an emerging singer-songwriter whose music reaches deep into the contradictions and unspoken emotions of humanity.</p><p>Big melodies, honest and poignant lyrics, an exceptional singing voice and dark softness are the hallmarks of Elina Teini's music. The artist has released four singles, the latest of which, Haavoja, deals with the difficulty of commitment: when a previous relationship has broken your heart so badly that you fear you may no longer be able to love. There is something quite enchanting about Teini's music: the listener finds themself in the stories of the songs as if without noticing.</p><p>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.</p><p>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69049/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69050",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201329,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T07:16:09.961776Z",
                    "last_modified_time": "2026-05-19T07:16:09.961789Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792474.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-19T07:16:09.843364Z",
            "last_modified_time": "2026-05-29T12:13:33.956189Z",
            "date_published": null,
            "start_time": "2026-07-09T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Aili Järvelä Duo – Indiespa",
                "sv": "Aili Järvelä Duo – Indiespa",
                "en": "Aili Järvelä Duo – Indiespa"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Suomen kiinnostavimpiin musiikintekijöihin kuuluva Aili Järvelä on hämmästyttänyt yleisöjä sekä kriitikoita laaja-alaisella lahjakkuudellaan. Hänet tunnetaan paitsi vahvasta kansanmusiikkitaustastaan, ennen kaikkea taitavana laulaja-lauluntekijänä, säveltäjänä, sekä sielukkaana esiintyjänä.",
                "sv": "Aili Järvelä är en av de intressantaste musikerna i Finland och har imponerat både publik och kritiker med sin breda talang. Hon är känd inte bara för sin starka bakgrund inom folkmusik, utan framför allt som en skicklig sångare och låtskrivare, kompositör och själfull artist.",
                "en": "One of Finland’s most interesting musicians, Aili Järvelä, has amazed audiences and critics with her comprehensive talent. She is known not only for her strong background in folk music, but above all as a skilled singer-songwriter, composer and soulful performer."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/76850F09759E419C94E1BA598EF09CF0/Aili_Jarvela_Duo",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/76850F09759E419C94E1BA598EF09CF0/Aili_Jarvela_Duo",
                "en": "http://www.espanlava.fi/en/events/event/76850F09759E419C94E1BA598EF09CF0/Aili_Jarvela_Duo"
            },
            "description": {
                "fi": "<p>Suomen kiinnostavimpiin musiikintekijöihin kuuluva Aili Järvelä on hämmästyttänyt yleisöjä sekä kriitikoita laaja-alaisella lahjakkuudellaan. Hänet tunnetaan paitsi vahvasta kansanmusiikkitaustastaan, ennen kaikkea taitavana laulaja-lauluntekijänä, säveltäjänä, sekä sielukkaana esiintyjänä.</p><p>Järvelän vuonna 2020 julkaistu kappale Roihuvuori valittiin Helsingin Sanomien lukijaäänestyksessä vuosituhannen 50 parhaan sanoituksen joukkoon. Viimeisin sooloalbumi <i>VUORI</i> (2025) on kerännyt loistavat arviot, muun muassa toimittaja Pekka Laine nosti sen vuoden merkittävimpien kotimaisten julkaisujen joukkoon. <i>VUORI</i> toi Aili Järvelälle 2026 Indie Awardseissa Vuoden parhaan albumin palkinnon, ja Järvelä itse palkittiin gaalassa vuoden parhaana artistina. Huhtikuussa 2026 albumi sai todella huomattavan kunnianosoituksen, kun se palkittiin Teosto-palkinnolla levyn sisältämistä sävellyksistä ja sanoituksista.<br> <br>_____</p><p>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>",
                "sv": "<p>Aili Järvelä är en av de intressantaste musikerna i Finland och har imponerat både publik och kritiker med sin breda talang. Hon är känd inte bara för sin starka bakgrund inom folkmusik, utan framför allt som en skicklig sångare och låtskrivare, kompositör och själfull artist.</p><p>Järveläs låt Roihuvuori, som publicerades 2020, valdes i en läsaromröstning i Helsingin Sanomat till en av de 50 bästa sångtexterna under millenniet. Hennes senaste soloalbum <i>VUORI</i> (2025) har fått utmärkta recensioner, och bland annat journalisten Pekka Laine nämnde det som ett av årets mest betydande inhemska album. <i>VUORI</i> gav Aili Järvelä priset Årets bästa album vid Indie Awards 2026, och Järvelä själv belönades som årets bästa artist vid galan. I april 2026 fick albumet en mycket stor hyllning då det fick ett Teosto-pris för dess kompositioner och texter.</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>",
                "en": "<p>One of Finland’s most interesting musicians, Aili Järvelä, has amazed audiences and critics with her comprehensive talent. She is known not only for her strong background in folk music, but above all as a skilled singer-songwriter, composer and soulful performer.</p><p>Järvelä's song Roihuvuori, published in 2020, was selected in a reader poll by Helsingin Sanomat as one of the 50 best lyrics of the millennium. Her latest solo album <i>VUORI</i> (2025) has garnered great reviews, including being named one of the most significant Finnish releases of the year by journalist Pekka Laine. <i>VUORI</i> won Aili Järvelä the album of the year award at the 2026 Indie Awards, and Järvelä herself was awarded best artist of the year at the gala. In April 2026, the album received a truly remarkable honour when it was awarded the Teosto Prize for the compositions and lyrics on the album.<br> <br>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.</p><p>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69050/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68973",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201222,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:29.085654Z",
                    "last_modified_time": "2026-05-12T08:14:29.085669Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785704.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201222/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:28.963815Z",
            "last_modified_time": "2026-05-29T12:13:33.730314Z",
            "date_published": null,
            "start_time": "2026-07-08T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Vallilan Tango",
                "sv": "Vallilan Tango",
                "en": "Vallilan Tango"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vuonna 2005 perustettu tanssiorkesteri Vallilan Tango esittää tuttuja, tuntemattomia ja ennen julkaisemattomia iskelmäklassikoita 1930–50-luvuilta.",
                "sv": "Dansorkestern Vallilan Tango, som grundades 2005, framför kända, okända och tidigare opublicerade schlagerklassiker från 1930–50-talen.",
                "en": "Founded in 2005, the Vallilan Tango dance orchestra performs familiar, unknown and previously unpublished pop classics from the 1930s and 50s."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/926B04E9516BC6DB5DF8369D855BFC87/Vallilan_Tango",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/926B04E9516BC6DB5DF8369D855BFC87/Vallilan_Tango",
                "en": "http://www.espanlava.fi/en/events/event/926B04E9516BC6DB5DF8369D855BFC87/Vallilan_Tango"
            },
            "description": {
                "fi": "<p>Vuonna 2005 perustettu tanssiorkesteri Vallilan Tango esittää tuttuja, tuntemattomia ja ennen julkaisemattomia iskelmäklassikoita 1930–50-luvuilta.</p><p>Vallilan Tangon vanhantyylinen kokoonpano – mm. viulu, klarinetti, saksofoni, trumpetti, haitari ja banjolele – herättää henkiin noiden aikojen rahisevat savikiekot. Ripauksen eksotiikkaa mukaan tuo yhtyeen laulaja, hollantilainen Hans Wessels, joka jätti kotimaansa ja päätyi Suomeen laulamaan melankolisia tangoja.</p>",
                "sv": "<p>Dansorkestern Vallilan Tango, som grundades 2005, framför kända, okända och tidigare opublicerade schlagerklassiker från 1930–50-talen.</p><p>Vallilan Tangos gammaldags sammansättning – med bland annat violin, klarinett, saxofon, trumpet, dragspel och banjolele – väcker tidsålderns rasslande stenkakor till liv. Bandets sångare, holländska Hans Wessels, som lämnade sitt hemland och kom till Finland för att sjunga melankoliska tangos, bidrar med en gnutta exotik.</p>",
                "en": "<p>Founded in 2005, the Vallilan Tango dance orchestra performs familiar, unknown and previously unpublished pop classics from the 1930s and 50s.</p><p>Vallilan Tango's old-style line-up – including violin, clarinet, saxophone, trumpet, accordion and banjolele – brings to life the clinky clay discs of yesteryear. A touch of exoticism is added by the band's lead singer, Dutchman Hans Wessels, who left his homeland and came to Finland to sing melancholy tangos.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68973/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68971",
            "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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201221,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:28.700538Z",
                    "last_modified_time": "2026-05-12T08:14:28.700551Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785718.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-05-12T08:14:28.599311Z",
            "last_modified_time": "2026-05-29T12:13:33.571345Z",
            "date_published": null,
            "start_time": "2026-07-08T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "To the Circus – Sirkukseen!",
                "sv": "To the Circus – Till cirkusen!",
                "en": "To the Circus!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Peremmälle, tähän telttaan mahtuu jokainen! Tervetuloa katsomaan Kirsi Kunnaksen iki-ihaniin sirkusrunoihin perustuva englanninkielinen esitys: Sirkukseen!",
                "sv": "Kom in, det här tältet rymmer alla! Välkommen till den engelskspråkiga föreställning Till Cirkusen, som baserar sig på Kirsi Kunnas underbara cirkusdikter!",
                "en": "Roll up, Roll up! Come see the new spoken-in-English circus show based on Kirsi Kunnas' book Sirkukseen!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/38E1D4807F8093D42CCF0CD6A2C3C155/To_the_Circus_Sirkukseen_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/38E1D4807F8093D42CCF0CD6A2C3C155/To_the_Circus_Till_cirkusen_",
                "en": "http://www.espanlava.fi/en/events/event/38E1D4807F8093D42CCF0CD6A2C3C155/To_the_Circus_"
            },
            "description": {
                "fi": "<p>Peremmälle, tähän telttaan mahtuu jokainen! Tervetuloa katsomaan Kirsi Kunnaksen iki-ihaniin sirkusrunoihin perustuva englanninkielinen esitys: Sirkukseen!</p><p>Näe puuhakas klovni, villinä vispaavat vanteet, trapetsitaiteilijan kaunis liito ja lavalle pääsystä kovasti innostuva, steppaava hevonen. Voi olla, että tämän sirkuksen vahvin mies tarvitsee apuasi, ja taikuri saattaa saada pääsi pyörälle.</p><p>Kunnaksen tekstit heräävät Silja Palomäen taikomiin säveliin ja tunnelmat vaihtuvat laulun, kanteleen, ukuleleen ja klarinetin siivittäminä.</p><p>Tervetuloa siis ihan kaikki!</p>",
                "sv": "<p>Kom in, det här tältet rymmer alla! Välkommen till den engelskspråkiga föreställning Till Cirkusen, som baserar sig på Kirsi Kunnas underbara cirkusdikter!</p><p>Se en energisk clown, hula-hularingar som snurrar vilt, en trapetsartists sköna glidflykt och en stepparhäst som blir mycket entusiastisk när den får kliva upp på scenen. Det kan hända att den starkaste mannen i denna cirkus behöver din hjälp och trollkarlen kan få dig konfys.</p><p>Kunnas texter väcks till liv av Silja Palomäkis magiska melodier och stämningarna förändras med ackompanjemang av sång, kantele, ukulele och klarinett.</p><p>Välkomna allihopa!</p>",
                "en": "<p>Roll up, Roll up! Come see the new spoken-in-English circus show based on Kirsi Kunnas' book Sirkukseen!</p><p>The clowns will play, hoops will spin and the trapeze artists will fly. Witness the overly enthusiastic tap-dancing pony, the strongman who needs help from the audience, and the magician who will have your head in a twist!</p><p>All accompanied by live singing and musical playing of Kantele, ukulele and clarinet by Silja Palomäki.</p><p>Welcome one and all!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68971/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68970",
            "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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201239,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T10:13:00.231789Z",
                    "last_modified_time": "2026-05-12T10:13:00.231806Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785341.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201239/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T10:13:00.050592Z",
            "last_modified_time": "2026-05-29T12:13:33.190944Z",
            "date_published": null,
            "start_time": "2026-07-06T12:00:00Z",
            "end_time": "2026-07-06T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Päivitä Leino",
                "sv": "Päivitä Leino",
                "en": "Päivitä Leino"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Eino Leinon päivänä lavalla nähdään maan eturivin runoilijoita, spoken word -artisteja sekä laulaja-lauluntekijöitä jo perinteeksi muodostuneessa tapahtumassa.",
                "sv": "På Eino Leino-dagens evenemang, som redan blivit en tradition, får vi på scenen se landets ledande poeter, spoken word-artister samt sångare och låtskrivare.",
                "en": "On Eino Leino Day, the public will be treated to the country's leading poets, spoken word artists and singer-songwriters taking to the stage in what has become a tradition to honour our national poet."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DC73C52E73AAA6943ABD57A05BB6781A/Paivita_Leino",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DC73C52E73AAA6943ABD57A05BB6781A/Paivita_Leino",
                "en": "http://www.espanlava.fi/en/events/event/DC73C52E73AAA6943ABD57A05BB6781A/Paivita_Leino"
            },
            "description": {
                "fi": "<p>Eino Leinon päivänä lavalla nähdään maan eturivin runoilijoita, spoken word -artisteja sekä laulaja-lauluntekijöitä jo perinteeksi muodostuneessa tapahtumassa.</p><p>Tänä vuonna Espan lavalla esiintyy kahdesti Finlandia-palkittu kirjailija <b>Jukka Viikilä</b>, osattomuutta ja elämän yksityiskohdista pulppuavaa kauneutta kuvaava runoilija <b>Aura Nurmi</b>, laulaja-lauluntekijä <b>Miika Leivo</b>, Turussa asuva kirjoittaja ja kirjallisuusalan sekatyöläinen <b>Susinukke Kosola</b> (Daniil Kozlov) sekä spoken word -artisti <b>Rauhatäti</b>. Tapahtumassa julkistetaan lisäksi vuoden 2026 Eino Leinon palkinnon saaja.</p><p>Tilaisuuden järjestää Eino Leinon Seura Helsingin kaupungin tuella. Iltapäivän juontajana toimii runoilija <b>Harri Hertell</b>. Lämpimästi tervetuloa!</p><p><b>Aikataulu</p><p>15.00 | Jukka Viikilä</b><br>Jukka Viikilä on kahdesti Finlandia-palkittu kirjailija, joka on julkaissut sekä romaaneja että runoteoksia.</p><p><b>15.20 | Aura Nurmi</b><br>Aura Nurmi on helsinkiläinen palkittu runoilija ja kirjailija, joka käsittelee teksteissään usein köyhyyttä ja osattomuutta, mutta myös elämän yksityiskohdista pulppuavaa kauneutta ja onnea.</p><p><b>15.40 | Miika Leivo</b><br>Lahteen hiljattain tiensä löytänyt Miika Leivo yhdistelee suuren maailman folkkia ja indietä suomalaiseen lauluntekijäperinteeseen. Meno voi olla kotimaiseen tapaan melankolista muttei musertavaa. Vuonna 2024 julkaistu Nääj debyyttialbumi sai Pekka Laineen arvioissa neljä tähteä ja kappaleet soivat radiotaajuuksilla sekä soittolistoilla. Albumin tuotti Maustetyttöjen ensimmäisen albumin tuottanut Pentti Amore. Intensiivisistä keikoista tunnettu Miika on nähty lämmittämässä lavoja mm. Samuli Putrolle ja Edu Kettuselle. Uutta musiikkia on luvassa vuonna 2026.</p><p><b>16.00 | Eino Leinon palkinnon saajan julkistaminen</b><br>Eino Leinon palkinto on vuodesta 1956 alkaen jaettu kirjallisuuspalkinto, jonka palkintosumma on 5200 euroa ja sen lahjoittaa Suomen Kirjasäätiö. Vuoden 2025 palkinnon saaja julkaistaan Espan lavalla.</p><p><b>16.10 | Susinukke Kosola</b><br>Daniil Kozlov (s. 1991), taiteilijanimeltään Susinukke Kosola on pietarilaissyntyinen, Turussa asuva kirjoittaja ja kirjallisuusalan sekatyöläinen. Häneltä on julkaistu kolme runokirjaa, yksi genrehybridi ja yksi romaani, jotka ovat saaneet kriitikoiden suitsutusta, palkintoja ja ehdokkuuksia. Hänen kolmas teoksensa Varisto on kokeellinen myös julkaisumuodoltaan – kokonaan käsin kirjoitettua kokoelmaa ei voi ostaa, sen voi ainoastaan saada tunnustusta vastaan. Hänen neljäs teoksensa Turkoosi vyöhyke on genrehybridi, joka yhdistää runoutta, esseistiikkaa ja säeromaanimuotoa.<br> Kosolan viimeisin teos on henkilökohtaista proosaa edustava RYSSÄ. Kosola tunnetaan myös runouteen ja yhteiskunnalliseen kirjallisuuteen keskittyvän Kolera-kollektiivi -nimisen kustantamon perustajana ja lavarunoilijana, sekä kansallisen Runografi-hankkeen ideoijana ja vetäjänä. Taiteellisen työskentelyn lisäksi hän toimii lyriikan kirjoittamisen opettajana muun muassa Turun yliopistossa ja työskentelee aktiivisesti alueensa kirjallisella kentällä.</p><p><b>16.30 | Rauhatäti & Juissi Vainiola</b><br>Rauhatäti aka Hanna Yli-Tepsa on suomalainen rap- ja spoken word -artisti, joka on julkaissut musiikkia sekä esiintynyt rap- ja runolavoilla vuodesta 2007 alkaen. Kitaristi Juissi Vainiola tunnetaan postpunk kentältä, muun muassa luotsaamastaan Maaseudun tulevaisuus -triosta. Nyt Rauhatäti ja Vainiola vie kuulijat usvaisen ambienssin sylissä Kirken saarelle, Tallinnan öisille kaduille ja lopulta jokien virrassa kohti etelää.</p><p>Lisätiedot ja haastattelut: harri.hertell@gmail.com</p>",
                "sv": "<p>På Eino Leino-dagens evenemang, som redan blivit en tradition, får vi på scenen se landets ledande poeter, spoken word-artister samt sångare och låtskrivare.</p><p>På Esplanadestraden uppträder i år författaren <b>Jukka Viikilä</b>, som vunnit två Finlandiapris, poeten <b>Aura Nurmi</b>, som beskriver lottlöshet och den skönhet som detaljerna i livet sprudlar, sångaren och låtskrivaren <b>Miika Leivo</b>, författaren och mångsysslaren inom litteratur <b>Susinukke Kosola</b> (Daniil Kozlov) från Åbo samt spoken word-artisten <b>Rauhatäti</b>. Under evenemanget offentliggörs också mottagaren av Eino Leino-priset 2026.</p><p>Evenemanget ordnas av Eino Leino-sällskapet med stöd av Helsingfors stad. Programledaren för eftermiddagen är poeten <b>Harri Hertell</b>. Varmt välkommen!</p><p><b>Tidtabell</p><p>15.00 | Jukka Viikilä</b><br>Jukka Viikilä är en författare som har vunnit två Finlandiapris och skrivit både romaner och diktverk.</p><p><b>15.20 | Aura Nurmi</b><br>Aura Nurmi är en belönad poet och författare från Helsingfors. I sina texter behandlar hon ofta fattigdom och lottlöshet, men även den skönhet och lycka som detaljerna i livet sprudlar.</p><p><b>15.40 | Miika Leivo</b><br>Miika Leivo, som nyligen flyttat till Lahtis, kombinerar internationell folk och indie med finländsk låtskrivartradition. Stämningen kan vara melankolisk som i Finland, men inte nedslående. Debutalbumet Nääj, som släpptes 2024, fick fyra stjärnor av Pekka Laine i en recension och låtarna spelades i radion samt på spellistor. Albumet producerades av Pentti Amore, som också producerade det första albumet för Maustetytöt. Miika är känd för sina intensiva konserter och har spelat som förband till bland annat Samuli Putro och Edu Kettunen. Ny musik utlovas 2026.</p><p><b>16.00 | Mottagaren av Eino Leino-priset offentliggörs</b><br>Eino Leino-priset är ett litteraturpris som delats ut sedan 1956. Prissumman på 5 200 euro doneras av Finlands bokstiftelse. Pristagaren 2026 offentliggörs på Esplanadestraden.</p><p><b>16.10 | Susinukke Kosola</b><br>Daniil Kozlov (född 1991), artistnamn Susinukke Kosola, är en författare och mångsysslare inom litteratur som är född i S:t Petersburg och bor i Åbo. Han har publicerat tre diktböcker, en genrehybrid och en roman. Verken har fått beröm av kritiker, pris och nomineringar. Hans tredje verk, Varisto, är experimentellt också med tanke på publiceringsformen – samlingen är helt handskriven och kan inte köpas, utan bara fås mot ett erkännande. Det fjärde verket, Turkoosi vyöhyke, är en genrehybrid som förenar poesi, essäistik och roman i form av verser.<br> Kosolas senaste verk är RYSSÄ, ett personligt prosaverk. Kosola är också känd som grundare av och scenpoet hos förlaget Kolera-kollektiivi, som fokuserar på poesi och samhällelig litteratur, samt som idéskapare och ledare för det nationella projektet Runografi. Vid sidan av sitt konstnärliga arbete undervisar han i lyrikskrivande bland annat vid Åbo universitet och är aktiv på den litterära scenen i sin region.</p><p><b>16.30 | Rauhatäti & Jussi Vainiola</b><br>Rauhatäti, eller Hanna Yli-Tepsa, är en finländsk rap- och spoken word-artist som har publicerat musik och uppträtt på rap- och poesiscener sedan 2007. Gitarristen Juissi Vainiola är känd från postpunkscenen, bland annat för sin trio Maaseudun tulevaisuus. Nu tar Rauhatäti och Vainiola sina lyssnare in i en dimmig stämning på Kirkes ö, nattetid på gatorna i Tallinn samt till slut med flodernas strömmar mot söder.</p>",
                "en": "<p>On Eino Leino Day, the public will be treated to the country's leading poets, spoken word artists and singer-songwriters taking to the stage in what has become a tradition to honour our national poet.</p><p>This year, the programme will feature two-time Finlandia Prize-winning author <b>Jukka Viikilä</b>; poet <b>Aura Nurmi</b>, who writes about deprivation and the beauty of life's little details; singer-songwriter <b>Miika Leivo</b>; Turku-based writer and mixed literary worker <b>Susinukke Kosola</b> (Daniil Kozlov); and spoken word artist <b>Rauhatäti</b>. The recipient of the 2026 Eino Leino Prize will also be announced during the event.</p><p>The event is organised by the Eino Leino Society with the support of the City of Helsinki. The afternoon will be hosted by poet <b>Harri Hertell</b>. We hope to see you there!</p><p><b>Schedule</p><p>15.00 | Jukka Viikilä</b><br>Jukka Viikilä is a two-time Finlandia Prize-winning author who has published both novels and poetry.</p><p><b>15.20 | Aura Nurmi</b><br>Aura Nurmi is an award-winning poet and writer based in Helsinki, whose work often deals with poverty and deprivation, but also with the beauty and happiness that can be found in the little things in life.</p><p><b>15.40 | Miika Leivo</b><br>Miika Leivo, who recently found his way to Lahti, combines folk and indie music from around the globe with the Finnish songwriting tradition. It can be melancholy in the Finnish tradition, but it will not overwhelm the audience. His debut album Nääj released in 2024 received four stars in Pekka Laine's reviews and the songs are playing on radio frequencies and playlists. The album was produced by Pentti Amore, who produced the first record by Maustetytöt. Known for his intense performances, Miika has been seen opening for Samuli Putro and Edu Kettunen, among others. He will be releasing new music in 2026.</p><p><b>16.00 | Eino Leino Prize winner announcement</b><br>The Eino Leino Prize is a literary prize with an award sum of 5,200 euros awarded by the Finnish Book Foundation since 1956. The recipient of the 2025 prize will be announced on Espa Stage.</p><p><b>16.10 | Susinukke Kosola</b><br>Daniil Kozlov (b. 1991), pen name Susinukke Kosola, is a writer and a mixed literary worker from St Petersburg living in Turku. He has published three books of poetry, a genre hybrid work and a novel, which have received critical acclaim, awards and nominations. His third work, Varisto, is also experimental in its form – the collection written entirely by hand cannot be bought, only received in exchange for recognition. His fourth work, Turkoosi vyöhyke, is a genre hybrid that combines poetry, essays and the verse novel form. Kosola's latest work is RYSSÄ, a personal work of prose. Kosola is also known as the founder and lyric poet of the Kolera-kollektiivi collective, a publishing house focusing on poetry and social literature, and as the creator and leader of the national Runografi project. In addition to his artistic work, he teaches lyric writing at the University of Turku and is active in the local literary scene.</p><p><b>16.30 | Rauhatäti & Jussi Vainiola</b><br>Rauhatäti aka Hanna Yli-Tepsa is a Finnish rap and spoken word artist who has been releasing music and performing on rap and poetry stages since 2007. Guitarist Juissi Vainiola is known from the postpunk scene, among others for his trio Maaseudun tulevaisuus. Now Rauhatäti and Vainiola wrap the audience inside a foggy ambience and head to the island of Kirke, to the streets of Tallinn at night and finally to the rivers flowing southwards.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68970/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68972",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201220,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:28.280524Z",
                    "last_modified_time": "2026-05-12T08:14:28.280537Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785717.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:28.172322Z",
            "last_modified_time": "2026-05-29T12:13:32.722135Z",
            "date_published": null,
            "start_time": "2026-07-04T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hopeasiivet",
                "sv": "Hopeasiivet",
                "en": "Hopeasiivet"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Hopeasiivet ei jaksa musiikillista small talkia, vaan luottaa vilpittömyyden voimaan.",
                "sv": "Hopeasiivet orkar inte med musikalisk small talk utan litar på kraften av uppriktighet.",
                "en": "Hopeasiivet is not given to musical small talk but relies on the power of sincerity."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet",
                "en": "http://www.espanlava.fi/en/events/event/57BFE03ABAE9C309385B214913644E49/Hopeasiivet"
            },
            "description": {
                "fi": "<p>Hopeasiivet ei jaksa musiikillista small talkia, vaan luottaa vilpittömyyden voimaan.</p><p>Yhtyeelle tunnusomaista on viitata alati vaihtelevien vaikutteidensa ääripisteisiin. Ehkä tänäänkin kännykän muistioon kirjataan tahti Kate Bushia, huomenna toinen Ultra Brata ja sunnuntaina kertosäkeellinen PMMP-tyyliin. Välillä kaikki on sirpaleista ja hupsuakin – ja juuri siinä piilee viehätys. Jokainen sana ja sävel merkitsee, tai niin Hopeasiivet ainakin uskoo.</p><p>Kahden EP:n ja useiden singlejulkaisujen jälkeen yhtye julkaisi odotetun esikoisalbuminsa tammikuussa 2026.</p>",
                "sv": "<p>Hopeasiivet orkar inte med musikalisk small talk utan litar på kraften av uppriktighet.</p><p>Bandet kännetecknas av referenser till ytterligheterna i sina ständigt föränderliga influenser. Kanske också i dag antecknas Kate Bush i mobilens anteckningsblock, i morgon Ultra Bra och på söndag en refräng i PMMP:s stil. Ibland är allt fragmenterat och fånigt – och det är just det som fascinerar. Varje ord och melodi är betydelsefull, eller åtminstone så tror Hopeasiivet.</p><p>Efter två EP:s och flera singlar släppte bandet sitt efterlängtade debutalbum i januari 2026.</p>",
                "en": "<p>Hopeasiivet is not given to musical small talk but relies on the power of sincerity.</p><p>The band is characterised by references to the extremes of their ever-changing influences. Today, a Kate Bush bar may be jotted down in the phone notes, tomorrow another one from Ultra Bra and on Sunday a PMMP-style chorus. Sometimes everything is fragmented and silly – and therein lies the charm. Every word and every tune counts, or so Hopeasiivet believes.</p><p>After two EPs and several singles, the band released their highly anticipated debut album in January 2026.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68972/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68969",
            "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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:27.926807Z",
                    "last_modified_time": "2026-05-12T08:14:27.926820Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785685.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201219/?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": "2026-05-12T08:14:27.807313Z",
            "last_modified_time": "2026-05-29T12:13:32.566537Z",
            "date_published": null,
            "start_time": "2026-07-04T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidit-disko",
                "sv": "Skidit-discot",
                "en": "Skidit-disko"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Skidit-disko on oodi elämälle, tanssille ja kavereille. Se on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Diskon puheosuudet englanniksi.",
                "sv": "Skidit-discot är ett ode till livet, dansen och kompisarna. Där utlovas de bästa låtarna, lek och galet festande för alla åldrar. De talade avsnitten på discot är på engelska.",
                "en": "Skidit-disko is an ode to life, dance, and friendship – crazy fun for all ages! Spoken in English."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-disko",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-discot",
                "en": "http://www.espanlava.fi/en/events/event/0958551505978A3B0D63FEC2E7E419FE/Skidit-disko"
            },
            "description": {
                "fi": "<p>Skidit-disko on oodi elämälle, tanssille ja kavereille. Se on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Diskon puheosuudet englanniksi.</p><p>Jo kymmenen vuoden ajan Skidit-disko on tanssittanut laivoilla, museoissa, tuntureilla ja klubeilla. Kymmeniätuhansia bailaajia, litroittain pillimehua ja läjäpäin biisejä! Mukana menossa on aina DJ ja MC, välillä bileisiin kutsutaan kivoja vieraita.</p><p>Let’s BAILA!</p><p>IG: @skiditfestarit<br>FB: @skidit.fi<br>https://www.skidit.fi/</p>",
                "sv": "<p>Skidit-discot är ett ode till livet, dansen och kompisarna. Där utlovas de bästa låtarna, lek och galet festande för alla åldrar. De talade avsnitten på discot är på engelska.</p><p>Skidit-discot har redan i tio år fått publiken att dansa på fartyg, i museer, på fjäll och klubbar. Tiotusentals festdeltagare, otaliga liter sugrörssaft och massor av låtar! I discot deltar alltid en DJ och MC, ibland med roliga gäster.</p>",
                "en": "<p>Skidit-disko is an ode to life, dance, and friendship – crazy fun for all ages! Spoken in English.</p><p>For over ten years, Skidit-disko has been making people dance on boats, in museums, on mountaintops, and in clubs. Tens of thousands of partygoers, liters of lemonade, and tons of great tracks! Every party features a DJ and an MC, and sometimes special guests join the fun.</p><p>Let’s BAILA!</p><p>IG: @skiditfestarit<br>FB: @skidit.fi<br>https://www.skidit.fi/</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68969/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68968",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:27.568529Z",
                    "last_modified_time": "2026-05-12T08:14:27.568542Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785716.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:27.460862Z",
            "last_modified_time": "2026-05-29T12:13:32.407060Z",
            "date_published": null,
            "start_time": "2026-07-03T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rakkaudella Helena Lindgren & Jorma Uotinen",
                "sv": "Rakkaudella Helena Lindgren & Jorma Uotinen",
                "en": "Rakkaudella Helena Lindgren & Jorma Uotinen"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Uotisen ja Lindgrenin musiikillinen yhteistyö on kunnianosoitus elämälle ja taiteelle.",
                "sv": "Det musikaliska samarbetet mellan Uotinen och Lindgren är en hyllning till livet och konsten.",
                "en": "The musical collaboration between Uotinen and Lindgren is a tribute to life and art."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen",
                "en": "http://www.espanlava.fi/en/events/event/C422DD1ADBA285A5EE1B472779339620/Rakkaudella_Helena_Lindgren_Jorma_Uotinen"
            },
            "description": {
                "fi": "<p>Uotisen ja Lindgrenin musiikillinen yhteistyö on kunnianosoitus elämälle ja taiteelle.</p><p>Konsertti on kahden kokeneen tulkitsijan vuoropuhelu, joka sykkii samaa rytmiä kuin rakkaus itse. Se käsittelee taiteilijoiden omia elämänvaiheita, rakkautta, ystävyyttä ja kaipausta.</p><p><b>Jorma Uotinen</b> on suomalaisen taiteen monilahjakkuus. Hänen tumma äänensä ja vahva läsnäolonsa tekevät jokaisesta esiintymisestä ainutlaatuisen kokemuksen.</p><p><b>Helena Lindgren</b> on laulaja ja näyttelijä, jonka lämmin ja sävykäs ääni on kuin luotu chansonin, jazzin ja suomalaisten ikivihreiden tulkintaan.</p><p>Rakkaudella Helena & Jorma -konserteissa kuullaan rakastettuja suomalaisia ja kansainvälisiä (\"Hymne à l’amour\", \"Dance Me to the End of Love\", \"Puhu hiljaa rakkaudesta\") lauluja, teemoina rakkaus, aika ja ihmisyys.</p><p>Säestys: Trio Avec        <br> <br><i>“Lauluja vuosien varrelta, yksin ja yhdessä. Lauluja rakkaudesta, kaipuusta, elämän illuusioista, ilosta, surusta, kielletyistä leikeistä, villeistä ruusuista, elämästä. Meistä itsestämme.”</i></p>",
                "sv": "<p>Det musikaliska samarbetet mellan Uotinen och Lindgren är en hyllning till livet och konsten.</p><p>Konserten är en dialog mellan två erfarna uttolkare och den pulserar i samma takt som kärleken själv. Den handlar om konstnärernas egna livsskeden, om kärlek, vänskap och längtan.</p><p><b>Jorma Uotinen</b> är en multitalang inom finländsk konst. Hans mörka röst och starka närvaro gör varje uppträdande till en unik upplevelse.</p><p><b>Helena Lindgren</b> är en sångare och skådespelare med en varm och nyanserad röst som är som skapad för tolkning av chanson, jazz och finländska evergreens.</p><p>Konserterna Rakkaudella Helena & Jorma bjuder på älskade finländska och internationella sånger (”Hymne à l’amour”, ”Dance Me to the End of Love”, ”Puhu hiljaa rakkaudesta”) med kärlek, tid och mänsklighet som teman.</p><p>Ackompanjemang: Trio Avec<br> <br><i>”Sånger från årens lopp, ensam och tillsammans. Sånger om kärlek, längtan, livets illusioner, glädje, sorg, förbjudna lekar, vilda rosor, livet. Om oss själva.”</i></p>",
                "en": "<p>The musical collaboration between Uotinen and Lindgren is a tribute to life and art.</p><p>The concert is a dialogue between two experienced interpreters, beating to the same rhythm as love itself. It deals with the artists' own lives, love, friendship and longing.</p><p><b> Jorma Uotinen</b> is a multi-talented Finnish artist. His dark voice and strong presence make every performance a unique experience.</p><p><b>Helena Lindgren</b> is a singer and actor whose warm voice rich in nuances seems made for interpreting chanson, jazz and Finnish evergreens</p><p>The Rakkaudella Helena & Jorma concerts will feature beloved Finnish and international songs (Hymne à l'amour, Dance Me to the End of Love, Puhu hiljaa rakkaudesta) on the themes of love, time and humanity.</p><p>Accompaniment: Trio Avec <br> <br><i>\"Songs from over the years, alone and together. Songs about love, longing, the illusions of life, joy, sorrow, forbidden games, wild roses, life. About ourselves.\"</i></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68968/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68966",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:26.791140Z",
                    "last_modified_time": "2026-05-12T08:14:26.791154Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786106.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:26.687495Z",
            "last_modified_time": "2026-05-29T12:13:32.198656Z",
            "date_published": null,
            "start_time": "2026-07-02T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Royal Band of India – Open Stage",
                "sv": "The Royal Band of India – Open Stage",
                "en": "The Royal Band of India – Open Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule kuuntelemaan Intian eri alueiden perinteistä musiikkia!",
                "sv": "Kom och lyssna på traditionell musik från olika regioner i Indien!",
                "en": "Join us to experience folk songs from different regions of India!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B614D4144BF0A738D4D8D4011DB17A2C/The_Royal_Band_of_India",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B614D4144BF0A738D4D8D4011DB17A2C/The_Royal_Band_of_India",
                "en": "http://www.espanlava.fi/en/events/event/B614D4144BF0A738D4D8D4011DB17A2C/The_Royal_Band_of_India"
            },
            "description": {
                "fi": "<p>Tule kuuntelemaan Intian eri alueiden perinteistä musiikkia!</p>",
                "sv": "<p>Kom och lyssna på traditionell musik från olika regioner i Indien!</p>",
                "en": "<p>Join us to experience folk songs from different regions of India!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68966/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68965",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201210,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T07:12:58.199796Z",
                    "last_modified_time": "2026-05-12T07:12:58.199815Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786104.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201210/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T07:12:58.129368Z",
            "last_modified_time": "2026-05-29T12:13:32.027742Z",
            "date_published": null,
            "start_time": "2026-07-02T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sahaj Unlimited – Open Stage",
                "sv": "Sahaj Unlimited – Open Stage",
                "en": "Sahaj Unlimited – Open Stage"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Voiko omilta ajatuksilta saada rauhaa musiikin avulla?",
                "sv": "Kan musik hjälpa dig att finna ro från dina tankar?",
                "en": "Can music help you find peace of mind?"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/77FD3F21C800D9EA9C78E68D6E2878EA/Sahaj_Unlimited",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/77FD3F21C800D9EA9C78E68D6E2878EA/Sahaj_Unlimited",
                "en": "http://www.espanlava.fi/en/events/event/77FD3F21C800D9EA9C78E68D6E2878EA/Sahaj_Unlimited"
            },
            "description": {
                "fi": "<p>Voiko omilta ajatuksilta saada rauhaa musiikin avulla?</p><p>Sahaj Unlimited on intialaisella tyylillä soivaa folkpoppia, jonka juuret ovat henkisessä bhajan-genren perinteessä. Yhtye on ilman maarajoja liikkuva, usean erimaalaisen muusikon bändi, jonka jäseniä yhdistää meditointiharrastus. Mukana yhtyeessä on intialaisten muusikoiden lisäksi myös suomalaisia musiikin ammattilaisia, keskieurooppalainen laulaja sekä tabla-rumpujen soittaja.</p><p>Ohjelmassa on bhajan-lauluja, joita Sahaj Unlimited on levyttänyt studiossa 2000-luvun alkupuolella. Lisäksi luvassa on semiklassista intialaista tanssia, jota Sahaj Unlimited säestää elävällä musiikilla.</p><p>Yhtyeen musiikki liittyy Sahaja Yoga -meditaatioon, ja osana konserttia pystytämme Espan puistoon meditointipisteen, jossa ohikulkijat ja konserttiväki voivat kokeilla meditaatiota.</p><p>Tervetuloa nauttimaan intialaisen musiikin sointiväreistä, tanssista ja hyvistä meditointiviboista sekä testaamaan musiikin vaikutusta omaan sisäiseen rauhaan!</p>",
                "sv": "<p>Kan musik hjälpa dig att finna ro från dina tankar?</p><p>Sahaj Unlimited är folkpop med en indisk twist och rötter i den andliga bhajan-genrens tradition. Gruppen består av flera musiker från olika länder som alla delar en passion för meditation och som rör sig över ländernas gränser. Till bandet hör förutom indiska musiker även finländska yrkesmusiker, en mellaneuropeisk sångare samt en tabla-trumslagare.</p><p>Programmet innehåller bhajan-sånger som Sahaj Unlimited har spelat in på skiva i studion i början av 2000-talet. Det blir också semiklassisk indisk dans, som Sahaj Unlimited ackompanjerar med livemusik.</p><p>Gruppens musik är kopplad till Sahaja Yoga-meditation, och som en del av konserten ordnar vi en meditationsplats i Esplanadparken där förbipasserande och konsertdeltagare kan pröva meditation.</p><p>Välkommen att njuta av tonerna av indisk musik, dans och god meditationsstämning och testa musikens effekt på din inre frid!</p>",
                "en": "<p>Can music help you find peace of mind?</p><p>Sahaj Unlimited is Indian-style folk pop with roots in the spiritual tradition of the Bhajan genre. The group is a band of several musicians from different countries, all of whom share a passion for meditation. In addition to Indian musicians, the band also includes Finnish music professionals, a Central European singer and a tabla drummer.</p><p>The setlist features Bhajan songs recorded in the studio by Sahaj Unlimited in the early 2000s. The audience will also be treated to semi-classical Indian dance, accompanied by live music by Sahaj Unlimited.</p><p>The band's music is linked to Sahaja Yoga meditation, and as part of the concert we will set up a meditation station in Esplanade Park where passers-by and concert-goers can explore meditation.</p><p>Come along and enjoy the timbres of Indian music, dancing and good meditation vibes and see how music affects your inner peace!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68965/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68967",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201215,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T08:14:26.319575Z",
                    "last_modified_time": "2026-05-12T08:14:26.319592Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785939.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201215/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T08:14:26.169449Z",
            "last_modified_time": "2026-05-29T12:13:31.748895Z",
            "date_published": null,
            "start_time": "2026-07-01T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teini-Pää – indiespa",
                "sv": "Teini-Pää – indiespa",
                "en": "Teini-Pää – indiespa"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Teini-Pää soittaa suloisen riipivää indierockia, jonka ytimessä on herkkyys ja omaehtoisuus.",
                "sv": "Teini-Pää spelar sött skärande indierock med fokus på känslighet och spontanitet.",
                "en": "Teini-Pää plays sweetly infectious indie rock with sensitivity and independence at its core."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6D53796EF9CC993F245277BC45C0B434/Teini-Paa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6D53796EF9CC993F245277BC45C0B434/Teini-Paa",
                "en": "http://www.espanlava.fi/en/events/event/6D53796EF9CC993F245277BC45C0B434/Teini-Paa"
            },
            "description": {
                "fi": "<p>Teini-Pää soittaa suloisen riipivää indierockia, jonka ytimessä on herkkyys ja omaehtoisuus.</p><p>Vuonna 2018 perustetun Teini-Pään debyyttialbumi <i>Maailma kyllä odottaa</i> (2022) oli ehdolla Emma Gaalan Kriitikoiden valinta -kategoriassa. Sittemmin ilmestyneet <i>Sata syytä aloittaa</i> (2023) ja <i>Mietin minne meet</i> -EP (2024) saivat niin ikään ylistävän vastaanoton. Yhtye on ihastuttanut yleisöään Suomen suurimmilla festareilla, lukuisilla klubeilla ja tietenkin bändille tärkeissä DIY-tapahtumissa. Keväällä 2024 Teini-Pää valloitti sydämiä Yhdysvaltojen-kiertueella.</p><p>Yhtyeen odotettu kolmas albumi julkaistiin tammikuussa 2026.</p><p>Teini-Pään oivaltavilla popkoukuilla varustellut biisit ylistävät yhteyttä muihin, mutta kertovat myös yksinäisyydestä ja yhteiskunnallisten rakenteiden kivuliaasta heijastumisesta yksilön elämään. Bändin hehkutettu live-energia käy suoraan kuulijoiden sydämiin.</p><p>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>",
                "sv": "<p>Teini-Pää spelar sött skärande indierock med fokus på känslighet och spontanitet.</p><p>Teini-Pää grundades 2018 och dess debutalbum <i>Maailma kyllä odottaa</i> (2022) nominerades i Emmagalans kategori Kritikernas val. De senare albumen <i>Sata syytä aloittaa</i> (2023) och <i>Mietin minne meet</i> -EP:n (2024) togs också emot med beröm. Bandet har bedårat publiken på Finlands största festivaler, många klubbar och naturligtvis på DIY-evenemang, som är viktiga för bandet. Våren 2024 erövrade Teini-Pää hjärtan på en turné i Förenta Staterna.</p><p>Bandets efterlängtade tredje album släpptes i januari 2026.</p><p>Teini-Pääs insiktsfulla poplåtar hyllar kontakten med andra, men berättar också om ensamhet och den smärtsamma reflektionen av sociala strukturer i individens liv. Bandets berömda live-energi går rakt in i lyssnarnas hjärtan.</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>",
                "en": "<p>Teini-Pää plays sweetly infectious indie rock with sensitivity and independence at its core.</p><p>Founded in 2018, Teini-Pää's debut album <i>Maailma kyllä odottaa</i> (2022) was nominated in the critics' choice category at the Emma Gaala awards show. The subsequent <i>Sata syytä aloittaa</i> (2023) and <i>Mietin minne meet</i> EP (2024) were also well received. The band has delighted audiences at Finland's biggest festivals, numerous clubs and of course at DIY events that are important to the band. In the spring of 2024, Teini-Pää captured hearts with a tour of the United States.</p><p>The band's highly anticipated third album was released in January 2026.</p><p>Teini-Pää's insightful pop songs celebrate connection with others, but also speak of loneliness and the painful reflection of social structures in the life of the individual. The band's vaunted live energy aims at the listeners’ hearts and will not miss.</p><p>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.</p><p>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68967/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:746e9cd4-4f25-44b7-a00f-5198f01d007f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41047/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2384784,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-29T11:39:28.645441Z",
                    "last_modified_time": "2026-05-29T11:39:28.645458Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/aa9d7115-06d3-ef11-8eea-000d3adf4af4",
                    "name": "Testikuva",
                    "cropping": "",
                    "photographer_name": "Molla Magia",
                    "alt_text": "Testikuva",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384784/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-29T11:39:31.219769Z",
            "last_modified_time": "2026-05-29T11:39:31.219788Z",
            "date_published": "2026-05-28T11:58:03Z",
            "start_time": "2026-06-07T12:00:00Z",
            "end_time": "2026-06-07T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Uskomaton pellehyppytapahtuma!!"
            },
            "location_extra_info": {
                "fi": "Lisätietoja"
            },
            "provider": {
                "fi": "Pellehyppytapahtumat Oy"
            },
            "short_description": {
                "fi": "Pellet hyppivät ja laulavat hauskasti"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Pellet hyppivät ja laulavat hauskasti. Pellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskastiPellet hyppivät ja laulavat hauskasti.</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:746e9cd4-4f25-44b7-a00f-5198f01d007f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68964",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201209,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T07:12:57.888330Z",
                    "last_modified_time": "2026-05-12T07:12:57.888347Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785938.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201209/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T07:12:57.777249Z",
            "last_modified_time": "2026-05-29T11:13:21.343043Z",
            "date_published": null,
            "start_time": "2026-07-01T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rosita Luu (trio) – indiespa",
                "sv": "Rosita Luu (trio) – indiespa",
                "en": "Rosita Luu (trio) – indiespa"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rosita Luu yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen.",
                "sv": "Rosita Luu med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse.",
                "en": "Rosita Luu and her band are a tough act to follow on stage and offer their audience a memorable experience."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_trio_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_trio_",
                "en": "http://www.espanlava.fi/en/events/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_trio_"
            },
            "description": {
                "fi": "<p>Rosita Luu yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen.</p><p>Neljä albumia julkaissut <b>Rosita Luu</b> (Merita Berg) on omaehtoinen, omia kinttupolkujaan kulkeva artisti ja yhtye. Kiitetyillä albumeilla on kuultu ennakkoluulottomasti kaikuja laajalti musiikin eri tyylilajeista. Monipuolisuus lauluntekijänä onkin yksi artistin tavaramerkeistä vahvojen sanoitusten lisäksi. Lyriikoiden pohjavire on ihmisyyttä, erheitä ja isoja tunteita syvästi ymmärtävä, eikä Rosita Luun maailmassa mikään ole mustavalkoista tai pyhää.</p><p>Vuonna 2021 <i>Samettisuu</i>-albumi oli ehdolla Emma Gaalassa Kriitikoiden valinta ja Vuoden yleisöäänestys -kategorioissa. <i>Samettisuu</i>-albumi listattiin julkaisuvuotenaan mm. Soundin Vuoden kotimainen albumi -listan sijalle kolme. Samana vuonna Rosita Luu valittiin YleX:n tulevaisuuden tähtiä ennustavaan Läpimurto-listaukseen.</p><p>Rosita Luun viimeisin albumi <i>Yöeläin</i> huomioitiin muun muassa vuoden 2024 levylistauksissa Yleisradion musiikkitoimittaja Susanna Vainiolan poimintona sekä Soundi-lehdessä. Lisäksi albumi nousi tammikuussa 2025 ehdolle vuoden albumiksi riippumattomien levy- ja tuotantoyhtiöiden yhdistys IndieCo ry:n toimesta osana Indie Awards 2025 -tapahtumaa.</p><p>Atisti yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen. Yhtyeen valovoimaisten soittajien säestyksellä välittyy vahvasti Rosita Luun sävykäs ja omintakeinen maailma. Rosita Luu keikkailee triokokoonpanolla erilaisissa ympäristöissä klubeilta festivaaleihin.</p><p>Trion jäsenet:<br>Merita Berg<br>Meri Wallenius<br>Tiia Schwartz</p><p>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>",
                "sv": "<p>Rosita Luu med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse.</p><p><b>Rosita Luu</b> (Merita Berg) är en unik artist och ett band som går sin egen väg och har släppt fyra album. De hyllade albumen har fördomsfria ekon av ett brett spektrum av olika musikgenrer. Mångsidigheten som låtskrivare är ett av artistens kännetecken, tillsammans med starka texter. Grundstämningen i texterna är en djup förståelse för mänskligheten, misstag och stora känslor, och ingenting i Rosita Luus värld är svartvitt eller heligt.</p><p>År 2021 var albumet <i>Samettisuu</i> nominerat i Emmagalan i kategorierna Kritikernas val och Publikens favorit. Albumet<i>Samettisuu</i> listades under publikationsåret bland annat på plats tre på Soundis lista över årets inhemska album (Vuoden kotimainen albumi) Samma år valdes Rosita Luu till YleX:s genombrottslista (Läpimurto), som förutspår framtida stjärnor.</p><p>Rosita Luus senaste album <i>Yöeläin</i> fanns bland annat med på skivlistor 2024 valt av Rundradions musikjournalist Susanna Vainiola samt i Soundi-tidskriften. Dessutom nominerade föreningen för oberoende skiv- och produktionsbolag IndieCo ry albumet i januari 2025 till årets album som en del av evenemanget Indie Awards 2025.</p><p>Artisten med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse. Rosita Luus nyansrika och unika värld förmedlas starkt genom ackompanjemanget av bandets ljusstarka musiker. Rosita Luu uppträder med en triosammansättning i olika miljöer från klubbar till festivaler.</p><p>Medlemmarna i trion:<br>Merita Berg<br>Meri Wallenius<br>Tiia Schwartz<br> <br>_____</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>",
                "en": "<p>Rosita Luu and her band are a tough act to follow on stage and offer their audience a memorable experience.</p><p>With four albums, <b>Rosita Luu</b> (band leader Merita Berg) is the band of a self-made artist, following her own winding path. Their acclaimed albums feature unprejudiced echoes of a wide range of musical genres. In fact, versatility as a songwriter is one of the artist's trademarks, along with strong lyrics. A deep undercurrent of understanding humanity, mistakes and big emotions runs through the lyrics, and nothing in Rosita Luu's world is black and white or sacred.</p><p>In 2021, their album <i>Samettisuu</i> was nominated in the critics' choice and audience choice categories at the Emma Gaala awards show. <i>Samettisuu</i> was ranked number three on Soundi's Finnish album of the year list in the year of its release. In the same year, Rosita Luu was featured on the YleX breakthrough list predicting future stars.</p><p>Rosita Luu's latest album <i>Yöeläin</i> was one of Finnish Broadcasting Company YLE's music journalist Susanna Vainiola’s picks for best albums in 2024 and it was also featured in Soundi magazine. In addition to this, the record was nominated for album of the year in January 2025 by the association of independent production companies IndieCo as part of the Indie Awards 2025 event.</p><p>The artist and her band are a tough act to follow on stage and offer their audience a memorable experience. The luminous musicians of Rosita Luu's band allow for the band leader’s melodic and original world to fully shine through. Rosita Luu performs with her trio in a variety of environments from clubs to festivals.</p><p>Members of the trio:<br>Merita Berg<br>Meri Wallenius<br>Tiia Schwartz<br> <br>_____</p><p>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.</p><p>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68964/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd44i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T08:03:56.662004Z",
            "last_modified_time": "2026-05-29T08:53:15.876695Z",
            "date_published": null,
            "start_time": "2026-08-04T13:00:00Z",
            "end_time": "2026-08-04T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "provider": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd44i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd4me",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T08:03:56.796671Z",
            "last_modified_time": "2026-05-29T08:53:15.843596Z",
            "date_published": null,
            "start_time": "2026-08-11T13:00:00Z",
            "end_time": "2026-08-11T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "provider": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd4me/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd364",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T08:03:56.925999Z",
            "last_modified_time": "2026-05-29T08:53:15.811826Z",
            "date_published": null,
            "start_time": "2026-08-18T13:00:00Z",
            "end_time": "2026-08-18T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "provider": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd364/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd3qq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T08:03:57.129847Z",
            "last_modified_time": "2026-05-29T08:53:15.780068Z",
            "date_published": null,
            "start_time": "2026-08-25T13:00:00Z",
            "end_time": "2026-08-25T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "provider": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3qq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}