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

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 ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

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&page=125&registration__remaining_waiting_list_capacity__isnull=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27060,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=126&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=124&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:66533",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 977341,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-09T11:14:45.834018Z",
                    "last_modified_time": "2025-06-09T11:14:45.834045Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766365.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-09T11:14:45.711982Z",
            "last_modified_time": "2025-06-30T10:12:43.345581Z",
            "date_published": null,
            "start_time": "2025-08-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Mirjam Helin -akatemian lahjakkaat laulajat esittäytyvät Espan lavalla ma 18.8. klo 15.00.</p><p>Tule kokemaan nuorten laulajien säteilevä energia ja tulkinta, kun luvassa on klassisen musiikin aarioita ja lauluja.</p><p>Laulamassa ovat Iris Candelaria, Martin Iivarinen, Emma Karsten, Faraja Mwamalumbili, Gabriel Kivivuori Sereno, Matvei Palola, Johannes Pessi, Tuomas Pääkkönen ja Marjaana Ritanen. Pianistina toimii Kirill Kozlovski.</p>",
                "sv": "<p>Mirjam Helin-akademins begåvade sångare presenterar sig på Esplanadestraden måndagen den 18 augusti kl. 15.</p><p>Kom och upplev de unga sångarnas strålande energi och tolkning. Arior och sånger inom klassisk musik utlovas. Sångarna är Iris Candelaria, Martin Iivarinen, Emma Karsten, Faraja Mwamalumbili, Gabriel Kivivuori Sereno, Matvei Palola, Johannes Pessi, Tuomas Pääkkönen och Marjaana Ritanen. Som pianist fungerar Kirill Kozlovskij.</p>",
                "en": "<p>The talented singers of the Mirjam Helin Academy perform on Espa Stage on Monday 18 August at 15:00.</p><p>Come and experience the bright energy and fresh interpretations of these young singers performing classic arias and songs. The singers are Iris Candelaria, Martin Iivarinen, Emma Karsten, Faraja Mwamalumbili, Gabriel Kivivuori Sereno, Matvei Palola, Johannes Pessi, Tuomas Pääkkönen and Marjaana Ritanen. Pianist: Kirill Kozlovski.</p>"
            },
            "name": {
                "fi": "Mirjam Helin -akatemian laulajat: Oopperaa ulkoilmassa",
                "sv": "Mirjam Helin-akademins sångare: Opera utomhus",
                "en": "Mirjam Helin Academy singers: Outdoor Opera"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/55182AD9E8ACA69CBCF27CB5248E809D/Mirjam_Helin_-akatemian_laulajat_Oopperaa_ulkoilmassa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/55182AD9E8ACA69CBCF27CB5248E809D/Mirjam_Helin-akademins_sangare_Opera_utomhus",
                "en": "http://www.espanlava.fi/en/events/event/55182AD9E8ACA69CBCF27CB5248E809D/Mirjam_Helin_Academy_singers_Outdoor_Opera"
            },
            "short_description": {
                "fi": "Mirjam Helin -akatemian lahjakkaat laulajat esittäytyvät Espan lavalla ma 18.8. klo 15.00.",
                "sv": "Mirjam Helin-akademins begåvade sångare presenterar sig på Esplanadestraden måndagen den 18 augusti kl. 15.",
                "en": "The talented singers of the Mirjam Helin Academy perform on Espa Stage on Monday 18 August at 15:00."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66533/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66557",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-783/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 985980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T12:14:44.252779Z",
                    "last_modified_time": "2025-06-10T12:14:44.252799Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759628.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T12:14:44.134771Z",
            "last_modified_time": "2025-06-30T10:12:41.356656Z",
            "date_published": null,
            "start_time": "2025-08-07T13:00:00Z",
            "end_time": "2025-08-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Etno-Espan lavalla Barbora Xu (CZ) sekä Suo!</p><p><b>Aikataulu</b><br>klo 16 Barbora Xu (CZ)<br>klo 17.15 Suo</p><p><b>Barbora Xu (CZ)</b><br>Tšekkiläinen laulaja ja multi-instrumentalisti Barbora Xu (Barbora Silhánová) on työskennellyt Euroopassa ja Aasiassa. Sävellystyön lomassa hän on tutkinut paikallista runoutta, jousisoittimia ja laulutekniikoita. Hänen musiikkinsa on syvästi inspiroitunut luonnosta, metsien valon ja äänimaiseman rauhasta, hauraudesta ja pehmeydestä, ihmisäänen täyteläisyydestä ja käsityönä tehdyistä soittimista.</p><p>Konsertissa hänen rinnallaan etelämääriläinen viulisti Petra Jelénková ammentaa tšekkiläisestä perinteestä ja juhlittu jazz-kontrabasisti Petr Tichý viimeistelee kokonaisuuden kevyellä mutta vakaalla kosketuksellaan.</p><p>Barbora Xu: guzheng, kantele<br>Petra Jelenkova: viulu<br>Petr Tichy: kontrabasso</p><p>Konsertin tarjoaa Maailman musiikin keskus<br>Sounds of Europe – Co-funded by the European Union</p><p><b>Suo</b><br>Suo-trio on kansanmusiikin pieni suuri jättiläinen: kolmikon vahva laulu ja taitava instrumentalismi herättävät muinaisen runolaulun henkiin ja käyvät jalan alle.</p><p>Yhtye on julkaissut vuosina 2007-2017 kolme levyä sekä neljä musiikkivideota. Suossa soittavat viulun tohtori ja Sibelius-Akatemian taideopettaja Emilia Lajunen, kitaristi ja Sibelius-Akatemian kansanmusiikin lehtori Roope Aarnio sekä laulaja Veera Voima, joka tunnetaan myös työstään kuorokentällä ja Suden ajassa. Vaikka Suo on ollut uinuksissa jokusen vuoden, niin nyt on tullut aika ennallistamiselle ja uudelle heräämiselle.</p><p>Roope Aarnio – kitara<br>Emilia Lajunen – viulu<br>Veera Voima – laulu</p>",
                "sv": "<p>Barbora Xu (CZ) och Suo på Etno-Espas scen!</p><p><b>Tidtabell</b><br>kl. 16 Barbora Xu (CZ)<br>kl. 17.15 Suo</p><p><b>Barbora Xu (CZ)</b><br>Den tjeckiska sångerskan och multiinstrumentalisten Barbora Xu (Barbora Silhánová) har arbetat i Europa och Asien. Förutom att komponera har hon studerat lokal poesi, stråkinstrument och sångtekniker. Hennes musik är djupt inspirerad av naturen, av skogarnas ljus och ljudlandskapets lugn, skörhet och mjukhet, av den mänskliga röstens rikedom och av handgjorda instrument.</p><p>Vid konserten uppträder hon tillsammans med sydmähriska violinisten Petra Jelénková, som öser inspiration ur den tjeckiska traditionen. Den hyllade jazzkontrabasisten Petr Tichý kompletterar helheten med sin lätta men stadiga touch.</p><p>Barbora Xu: guzheng, kantele<br>Petra Jelenkova: fiol<br>Petr Tichy: kontrabas</p><p>Konserten erbjuds av Maailman musiikin keskus<br>Sounds of Europe – Co-funded by the European Union</p><p><b>Suo</b><br>Suo-trio är en liten jätte inom folkmusiken: Tions starka sång och skickliga instrumentalism väcker den gamla runosången till liv och gör att man vill dansa.</p><p>Gruppen släppte tre skivor och fyra musikvideor under 2007–2017. I Suo spelar Emilia Lajunen, doktor i violin och konstlärare i Sibelius-Akademin, Roope Aarnio gitarrist och lektor i folkmusik i Sibelius-Akademin samt Veera Voima, sångaren som också är känd för sitt arbete inom körfältet och i Suden aika. Fastän Suo har slumrat i några år, är det nu dags att återupprätta och vakna igen.</p><p>Roope Aarnio – gitarr<br>Emilia Lajunen – violin<br>Veera Voima – sång</p>",
                "en": "<p>Barbora Xu (CZ) and Suo on Etno-Espa stage!</p><p><b>Schedule</b><br>16.00 Barbora Xu (CZ)<br>17.15 Suo</p><p><b>Barbora Xu (CZ)</b><br>Czech singer and multi-instrumentalist Barbora Xu (Barbora Silhánová) has been working in Europe and Asia, exploring local poetry, string instruments and vocal techniques while composing music. Her work is deeply inspired by nature, the calmness, fragility and softness experienced in the natural light and soundscapes of forests, the fullness of human voice and handmade instruments combined.</p><p>By her side, South Moravian violinist Petra Jelénková draws from the Czech tradition and the highly acclaimed jazz double bass player Petr Tichý finalizes the combination with his light yet steady touch.</p><p>Barbora Xu: guzheng, kantele<br>Petra Jelenkova: violin<br>Petr Tichy: contrabass</p><p>The concert is presented by the Global Music Centre.<br>Sounds of Europe – Co-funded by the European Union</p><p><b>Suo</b><br>The music of Suo digs deep down into the landscape of archaic Finnish runo singing: the rich language of kalevala poetry, the fascinating myths and spells, the ageless flow of kantele music.</p><p>Interpreted by this skillful trio, the forgotten music becomes alive once more and gets injected straight into your spine: the energetic guitar of Roope Aarnio, the nimble fiddle of Emilia Lajunen and powerful three voice harmony lead by Veera Voima will take you on an unforgettable journey.</p><p>Roope Aarnio – guitar<br>Emilia Lajunen – violin<br>Veera Voima – vocals</p>"
            },
            "name": {
                "fi": "Barbora Xu (CZ) | Suo – Etno-Espa",
                "sv": "Barbora Xu (CZ) | Suo – Etno-Espa",
                "en": "Barbora Xu (CZ) | Suo – Etno-Espa"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E2849021573C6224A85F33EF7CCCFAC8/Barbora_Xu_CZ_Suo",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/E2849021573C6224A85F33EF7CCCFAC8/Barbora_Xu_CZ_Suo",
                "en": "http://www.espanlava.fi/en/events/event/E2849021573C6224A85F33EF7CCCFAC8/Barbora_Xu_CZ_Suo"
            },
            "short_description": {
                "fi": "Etno-Espan lavalla Barbora Xu (CZ) sekä Suo!",
                "sv": "Barbora Xu (CZ) och Suo på Etno-Espas scen!",
                "en": "Barbora Xu (CZ) and Suo on Etno-Espa stage!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66557/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66553",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-783/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 985979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T12:14:43.877902Z",
                    "last_modified_time": "2025-06-10T12:14:43.877921Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759627.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T12:14:43.773900Z",
            "last_modified_time": "2025-06-30T10:12:41.149329Z",
            "date_published": null,
            "start_time": "2025-08-06T13:00:00Z",
            "end_time": "2025-08-06T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Etno-Espan lavalla Taui ja MOTARI!</p><p><b>Aikataulu</b><br>klo 16 Taui<br>klo 17.15 MOTARI</p><p><b>Taui</b><br>Vastikään Ennusmerkit-levynsä julkaissut, Etno-Espan \"Kansanlaulu 2050\"-voittaja Taui (Aleksi Taipale) ompelee samaan tilkkutäkkiin kansanmusiikkia, klubiestetiikkaa ja hyperpoppia.</p><p>Omintakeinen sommitelma tarjoaa kehikon niin kehonkuvan kuin avuntarpeenkin teemojen käsittelylle. Ääripäiden musiikki heijaa noisevalleista säihkyviin kertosäkeisiin. Livenä osiin pilkotut kansantanssirytmit muotoutuvat vielä astetta verevämmiksi.</p><p><b>MOTARI</b><br>MOTARI kiitää eteenpäin koneen voimalla yön mystisessä hämärässä. Valokeilassa välähtää vuoroin trumpetin ja sähkökitaran haikeat melodiat, kanteleen kirpeät kudokset ja rumpukoneen vastustamaton kutsu tanssiin.</p><p>Uunituoreen turkulaisen trion musiikki on samaan aikaan raikasta ja tummanpuhuvaa, tanssittavaa ja puhuttelevaa.</p><p>Ilkka Arola - trumpetti, sähkökitara, laulu<br>Aino Kurki - kantele, laulu<br>Juuso Hannukainen - perkussiot ja rumpukone</p>",
                "sv": "<p>Taui och MOTARI på Etno-Espas scen!</p><p><b>Tidtabell</b><br>kl. 16 Taui<br>kl. 17.15 MOTARI</p><p><b>Taui</b><br>Taui (Aleksi Taipale), som nyligen givit ut skivan Ennusmerkki och är vinnare av Etno-Espas ”Kansanlaulu 2050”, syr ihop folkmusik, klubbestetik och hyperpop i samma lapptäcke.</p><p>Den egenartade kompositionen ger en ram för såväl kroppsuppfattning som hjälpbehov vid behandling av teman. Ytterlighetens musik kränger mellan en ljudvägg och starka refränger. Folkdansrytmerna som spjälkas upp i delar live gör framförandet ännu vitalare.</p><p><b>MOTARI</b><br>MOTARI accelererar framåt med kraften av en maskin i nattens mystiska skymning. Strålkastarljuset lyser omväxlande upp trumpeten och elgitarren med dess sorgsna melodier, kantelen med dess sköra väv och trummaskinen med dess oemotståndliga inbjudan till dans.</p><p>Trion, som kommer från Åbo, har pinfärsk musik som är samtidigt fräsch och mörk, dansande och talande.</p><p>Ilkka Arola – trumpet, elgitarr, sång<br>Aino Kurki – kantele, sång<br>Juuso Hannukainen – perkussion och trummaskin</p>",
                "en": "<p>Taui and MOTARI on Etno-Espa!</p><p><b>Schedule</b><br>16:00 Taui<br>17:15 MOTARI</p><p><b>Taui</b><br>The winner of Etno-Espa’s “Folk Song 2050” competition, Taui (Aleksi Taipale), recently released an album, Ennusmerkit. In his music, he weaves together elements from folk music, club aesthetics and hyperpop.</p><p>This characteristic combination provides a frame for reflection on themes such as body image and need for help. This music of the extremes swings between noise walls and sparkling choruses. Played live, these chopped folk dance rhythms gain yet another degree of depth.</p><p><b>MOTARI</b><br>Powered by engines, MOTARI flies through a dark, mystic night. Beams of light occasionally fall on the mournful melodies of trumpet and electric guitar, the striking sounds of the kantele and the irresistible dance rhythm of a drum machine. The music of the brand-new Turku-based trio is fresh with dark notes, very danceable and yet touching.</p><p>Ilkka Arola - trumpet, electric guitar, vocals<br>Aino Kurki - kantele, vocals<br>Juuso Hannukainen - percussions and drum machine</p>"
            },
            "name": {
                "fi": "Taui | MOTARI – Etno-Espa",
                "sv": "Taui | MOTARI – Etno-Espa",
                "en": "Taui | MOTARI – Etno-Espa"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D4B1C42F4DCA83C5AAF1F5D6CF168C3B/Taui_MOTARI",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D4B1C42F4DCA83C5AAF1F5D6CF168C3B/Taui_MOTARI",
                "en": "http://www.espanlava.fi/en/events/event/D4B1C42F4DCA83C5AAF1F5D6CF168C3B/Taui_MOTARI"
            },
            "short_description": {
                "fi": "Etno-Espan lavalla Taui ja MOTARI!",
                "sv": "Taui och MOTARI på Etno-Espas scen!",
                "en": "Taui and MOTARI on Etno-Espa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66553/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66550",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-783/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 985978,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T12:14:43.370620Z",
                    "last_modified_time": "2025-06-10T12:14:43.370639Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759626.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985978/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T12:14:43.248420Z",
            "last_modified_time": "2025-06-30T09:12:45.905165Z",
            "date_published": null,
            "start_time": "2025-08-05T13:00:00Z",
            "end_time": "2025-08-05T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Hot Club de Jakobstad on gypsy jazz -yhtye Jakobstadista, Pohjanmaalta. Tytti Metsä ja Hyypiöt-yhtyettä kuvaillaan näin: “Laila K. meets Tom W.!”</p><p><b>Aikataulu</b><br>klo 16 Hot Club de Jakobstad<br>klo 17.15 Tytti Metsä ja Hyypiöt</p><p><b>Hot Club de Jakobstad</b> <br>Yhtye soittaa musiikkia Django Reinhardtin ja Stéphane Grappellin tyyliin, mutta myös perinteisiä lauluja ja sävelmiä Pohjanmaan ruotsinkielisiltä alueilta gypsy jazz -tyyliin.</p><p>HCdJ:ssä soittaa Mikael Fröjdö, viulu - Joel Svenfelt, kitara - Peki Jansson, kitara ja Rufus Malen, kontrabasso. Yhtye on jäsenilleen rakas projekti, ja kahden ja puolen vuoden aikana he ovat soittaneet erilaisilla lavoilla: festivaaleilla, pubeissa, klubeilla ja kahviloissa. Tulevaisuuden suunnitelmiin kuuluvat suomalaiset ja pohjoismaiset jazz-, etno- ja kansanmusiikkilavat sekä äänitykset.</p><p>Mikael Fröjdö – viulu<br>Joel Svenfelt – kitara<br>Peki Jansson – kitara<br>Rufus Malen – kontrabasso</p><p>Konsertin tarjoaa SLS - Svenska litteratursällskapet</p><p><b>Tytti Metsä ja Hyypiöt</b><br>Tytti Metsä ja Hyypiöt -trion soundissa jouhikon karheus ja Metsän heleä laulu yhdistyvät Paatelaisen kontrabasson ja Haaviston perkussioiden hypnoottiseen rytmiikkaan. Juureva kansanmusiikki sulautuu svengaavaan americanaan.</p><p>Tytti Metsä - laulu, jouhikko ja harmooni<br>Miikka Paatelainen - kontrabasso ja steel-kitara<br>Janne Haavisto / Mamba Assefa - lyömäsoittimet</p>",
                "sv": "<p>Bandet Hot Club de Jakobstad är en gypsy jazz-grupp från Jakobstad i Österbotten. Bandet Tytti Metsä ja Hyypiöt beskrivs så här: ”Laila K. meets Tom W.!”</p><p><b>Tidtabell</b><br>kl. 16 Hot Club de Jakobstad<br>kl. 17.15 Tytti Metsä ja Hyypiöt</p><p><b>Hot Club de Jakobstad</b> <br>Gruppen spelar musik i Django Reinhardts och Stéphane Grappells stil, men även traditionella sånger och melodier från de svenskspråkiga områdena i Österbotten i gypsy jazz-stil.</p><p>I HCdJ spelar Mikael Fröjdö, violin – Joel Svenfelt, gitarr – Peki Jansson, gitarr och Rufus Malen, kontrabas. Bandet är ett kärt projekt för sina medlemmar, och under två och ett halvt år har de spelat på olika scener: på festivaler, pubar, klubbar och kaféer. Framtidsplanerna omfattar finländska och nordiska jazz-, etno- och folkmusikscener samt inspelningar.</p><p>Mikael Fröjdö – violin<br>Joel Svenfelt – gitarr<br>Peki Jansson – gitarr<br>Rufus Malen – kontrabas<br>SLS – Svenska litteratursällskapet bjuder på konserten.</p><p><b>Tytti Metsä ja Hyypiöt</b><br>Tytti Metsä ja Hyypiöt-trions sound förenas stråkharpans råhet och Metsäs ljusa sång med den hypnotiska rytmiken i Paatelainens kontrabas och Haavistos perkussion. Rotfolkmusiken smälter samman med svängiga americana.</p><p>Tytti Metsä – sång, stråkharpa och harmoni<br>Miikka Paatelainen – kontrabas och steel-gitarr<br>Janne Haavisto/Mamba Assefa – perkussion</p>",
                "en": "<p>Hot Club de Jakobstad is a gypsy jazz band from Ostrobothnia’s Jakobstad. Tytti Metsä ja Hyypiöt band: “Laila K. meets Tom W.!”</p><p><b>Schedule</b><br>16:00 Hot Club de Jakobstad<br>17:15 Tytti Metsä ja Hyypiöt</p><p><b>Hot Club de Jakobstad</b> <br>The band plays music in the style of Django Reinhardt and Stéphane Grappelli, but also traditional songs and melodies from the Swedish-speaking areas of Ostrobothnia in gypsy jazz style.</p><p>The HCdJ members are Mikael Fröjdö, violin, Joel Svenfelt, guitar, Peki Jansson, guitar, and Rufus Malen, double bass. The band is a passion project for its members, and over the past two and a half years they have performed on many different types of stages: at festivals, in pubs, at clubs and in cafés. In the future, the band is planning to take over Finnish and Nordic jazz, ethnomusic and folk music stages – and recording sessions.</p><p>Mikael Fröjdö – violin<br>Joel Svenfelt – guitar<br>Peki Jansson – guitar<br>Rufus Malen – double bass</p><p>The concert is provided by SLS - Svenska litteratursällskapet</p><p><b>Tytti Metsä ja Hyypiöt</b><br>The sound of the Tytti Metsä ja Hyypiöt trio combines the rasp of the jouhikko bowed lyre and the melodious singing of Metsä with the hypnotic rhythms of double bass played by Paatelainen and the percussions played by Haavisto. Traditional folk music merges with the swinging americana.</p><p>Tytti Metsä - vocals, jouhikko bowed lyre and accordion<br>Miikka Paatelainen - double bass and steel guitar<br>Janne Haavisto / Mamba Assefa - percussions</p>"
            },
            "name": {
                "fi": "Hot Club de Jakobstad | Tytti Metsä ja Hyypiöt – Etno-Espa",
                "sv": "Hot Club de Jakobstad | Tytti Metsä ja Hyypiöt – Etno-Espa",
                "en": "Hot Club de Jakobstad | Tytti Metsä ja Hyypiöt – Etno-Espa"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/7FAD00200BB2553788F468A9BAF63D03/Hot_Club_de_Jakobstad_Tytti_Metsa_ja_Hyypiot",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/7FAD00200BB2553788F468A9BAF63D03/Hot_Club_de_Jakobstad_Tytti_Metsa_ja_Hyypiot",
                "en": "http://www.espanlava.fi/en/events/event/7FAD00200BB2553788F468A9BAF63D03/Hot_Club_de_Jakobstad_Tytti_Metsa_ja_Hyypiot"
            },
            "short_description": {
                "fi": "Hot Club de Jakobstad on gypsy jazz -yhtye Jakobstadista, Pohjanmaalta. Tytti Metsä ja Hyypiöt-yhtyettä kuvaillaan näin: “Laila K. meets Tom W.!”",
                "sv": "Bandet Hot Club de Jakobstad är en gypsy jazz-grupp från Jakobstad i Österbotten. Bandet Tytti Metsä ja Hyypiöt beskrivs så här: ”Laila K. meets Tom W.!”",
                "en": "Hot Club de Jakobstad is a gypsy jazz band from Ostrobothnia’s Jakobstad. Tytti Metsä ja Hyypiöt band: “Laila K. meets Tom W.!”"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66550/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66529",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-783/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 977337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-09T11:14:43.257763Z",
                    "last_modified_time": "2025-06-09T11:14:43.257785Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759624.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/977337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-09T11:14:43.144723Z",
            "last_modified_time": "2025-06-30T09:12:45.685211Z",
            "date_published": null,
            "start_time": "2025-08-04T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Hilja Grönfors on nimi, johon nykypäivänä henkilöityy Suomen romanimusiikki.</p><p>Hän on maamme kansanmusiikin kentällä ainutlaatuinen laulujen aarreaitta, joka asiantuntijana tuntee tarkkaan esittämänsä lauluston tyylipiirteet ja kulttuuriset taustat. Hän on tehnyt mittavan, tietoisen työn Suomen romanilauluperinteen tallentamiseksi ja on kiertänyt Suomea keräten vanhoilta laulajilta satoja lauluja.</p><p>Hilja Grönforsin pyyteetön työ sai Suomessa korkeimman akateemisen tunnustuksen vuonna 2024 kun hänet vihittiin kunniatohtoriksi, ja hän sai samana vuonna akateemikon arvonimen. Kansainvälisestikin harvinainen tunnustus on saajalleen ansaittu, ja merkittävä koko suomalaiselle romaniyhteisölle ja -kulttuurille!</p><p>Hilja Grönfors esiintyy Etno-Espan avajaisissa Latšo Džinta -yhtyeensä kanssa. Yhtyeeseen kuuluu suomalaisia muusikoita, joita yhdistää rakkaus romanimusiikkiin ja laajemminkin erilaisiin kansanmusiikkiperinteisiin maapallon eri kolkista - ja myös opinnot Sibelius-Akatemian kansanmusiikin osastolla.</p><p>Gamle komuja, aven kaan te thunnes amengo furane djambibi. Doola hin tsaane, tjambibi rakkila amemgo tjivibosta.</p><p>Hilja Grönfors - laulu <br>Valtteri Bruun – kitara <br>Kiureli Sammallahti – harmonikka <br>Matti Pitkänen - viulu, mandoliini <br>Sara Puljula - basso</p>",
                "sv": "<p>Hilja Grönfors är ett namn som i dag personifierar den romska musiken i Finland.</p><p>Hon är en unik skattkammare av sånger från folkmusikfältet i vårt land, och i egenskap av expert känner hon till stildragen och de kulturella bakgrunderna hos de sånger hon framför. Hon har gjort ett omfattande, medvetet arbete för att bevara den romska sångtraditionen i Finland och har rest runt i Finland och samlat hundratals sånger av gamla sångare.</p><p>Hilja Grönfors uppoffrande arbete fick det högsta akademiska erkännandet i Finland år 2024, då hon utsågs till hedersdoktor, och samma år fick hon hederstiteln akademiker. Detta erkännande, som är sällsynt även internationellt, var mycket välförtjänt och betydande för hela den romska gemenskapen och kulturen i Finland.</p><p>Hilja Grönfors uppträder vid öppningen på Etno-Espa tillsammans med sitt band Latjo Džinta. Gruppen består av finländska musiker som förenas av kärlek till den romska musiken och även i större utsträckning av olika folkmusiktraditioner från olika delar av jorden – och också av studier på Sibelius-Akademins avdelning för folkmusik.</p><p>Hilja Grönfors – sång<br>Valtteri Bruun – gitarr<br>Kiureli Sammallahti – dragspel<br>Matti Pitkänen – violin, mandolin<br>Sara Puljula – kontrabas</p>",
                "en": "<p>Hilja Grönfors is a name synonymous with contemporary Finnish Romany music.</p><p>She draws on her unique treasure trove of songs in the Finnish folk music genre and is well-versed in the stylistic characteristics and cultural background of the songs she performs. She has carried out extensive, systematic work to record the Roma song traditions in Finland and has toured the country collecting hundreds of songs from old singers.</p><p>Hilja Grönfors’s selfless work was given the most distinguished academic honour in Finland in 2024 when she was made honorary doctor and when she was given the honorary title of Academician of Arts that same year. This well-deserved honour is exceptional on a global scale, and it is very significant in terms of the Roma community and culture in Finland at large!</p><p>Hilja Grönfors will perform at the opening ceremony of Etno-Espa with her band, Latšo Džinta. The band comprises Finnish musicians connected by their love for Romany music and other folk music traditions across the world – and their studies at Sibelius Academy’s Department of Folk Music.</p><p>Hilja Grönfors – vocals<br>Valtteri Bruun – guitar<br>Kiureli Sammallahti – accordion<br>Matti Pitkänen – violin, mandolin<br>Sara Puljula – bass</p>"
            },
            "name": {
                "fi": "Hilja Grönfors & Latšo Džinta – Etno-Espan avajaiset",
                "sv": "Hilja Grönfors & Latšo Džinta – Etno-Espa invigning",
                "en": "Hilja Grönfors & Latšo Džinta – Opening of Etno-Espa"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/94ADC28B0355D96E8EF5867823FEE3FE/Hilja_Gronfors_Lat_o_D_inta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/94ADC28B0355D96E8EF5867823FEE3FE/Hilja_Gronfors_Lat_o_D_inta",
                "en": "http://www.espanlava.fi/en/events/event/94ADC28B0355D96E8EF5867823FEE3FE/Hilja_Gronfors_Lat_o_D_inta"
            },
            "short_description": {
                "fi": "Hilja Grönfors on nimi, johon nykypäivänä henkilöityy Suomen romanimusiikki.",
                "sv": "Hilja Grönfors är ett namn som i dag personifierar den romska musiken i Finland.",
                "en": "Hilja Grönfors is a name synonymous with contemporary Finnish Romany music."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66518",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 944693,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-05T13:13:54.601968Z",
                    "last_modified_time": "2025-06-05T13:13:54.601985Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767586.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/944693/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-05T13:13:54.502862Z",
            "last_modified_time": "2025-06-30T08:12:37.058225Z",
            "date_published": null,
            "start_time": "2025-08-03T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Helsingin vanhimman kamarimusiikkifestivaalin taiteilijat yhdessä Henrik Sandåsin kanssa jatkavat syventymistään Astro Piazzollan musiikkin.</p><p>Iltapäivän toisessa konsertissa Bandoneonin suru päästään entistä kaihoisempien ja riipaisevien sävelten pariin.</p>",
                "sv": "<p>Konstnärerna vid Helsingfors äldsta kammarmusikfestival tillsammans med Henrik Sandås fortsätter att fördjupa sig i Astro Piazzollas musik.</p><p>Eftermiddagens andra konsert Bandoneonin suru tar oss till en plats med ännu mer längtande och gripande toner.</p>",
                "en": "<p>Henrik Sandås and the artists of the oldest chamber music festival in Helsinki continue to immerse themselves and their audience in the music of Astor Piazzolla.</p><p>The second concert of the afternoon, Bandoneonin suru – Grief of bandoneon, features moving melodies filled with longing.</p>"
            },
            "name": {
                "fi": "Kamarikesä-festivaali: Bandoneonin suru – Henrik Sandås x Kamarikesä",
                "sv": "Festivalen Kammarsommar: Bandoneons sorg – Henrik Sandås x Kammarsommar",
                "en": "Kamarikesä Chamber Music Festival: Bandoneonin suru – Grief of bandoneon – Henrik Sandås x Kamarikesä"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5CBDEF3DC2D20F316B80AA02936B3155/Kamarikesa-festivaali_Bandoneonin_suru",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5CBDEF3DC2D20F316B80AA02936B3155/Festivalen_Kammarsommar_Bandoneons_sorg",
                "en": "http://www.espanlava.fi/en/events/event/5CBDEF3DC2D20F316B80AA02936B3155/Kamarikesa_Chamber_Music_Festival_Bandoneonin_suru_Grief_of_bandoneon"
            },
            "short_description": {
                "fi": "Helsingin vanhimman kamarimusiikkifestivaalin taiteilijat yhdessä Henrik Sandåsin kanssa jatkavat syventymistään Astro Piazzollan musiikkin.",
                "sv": "Konstnärerna vid Helsingfors äldsta kammarmusikfestival tillsammans med Henrik Sandås fortsätter att fördjupa sig i Astro Piazzollas musik.",
                "en": "Henrik Sandås and the artists of the oldest chamber music festival in Helsinki continue to immerse themselves and their audience in the music of Astor Piazzolla."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66518/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66517",
            "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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 944692,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-05T13:13:54.255279Z",
                    "last_modified_time": "2025-06-05T13:13:54.255295Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767585.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/944692/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-05T13:13:54.150588Z",
            "last_modified_time": "2025-06-30T08:12:36.884348Z",
            "date_published": null,
            "start_time": "2025-08-03T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Sunnuntaina Kamarikesä täyttää Helsingin keskustan Astor Piazzollan hurmaavalla musiikilla!</p><p>Maamme mahtavin bandoneontaituri Henrik Sandås saapuu Espan lavalle kahden konsertin kera. Festivaalin taitelijoista kootun jousikvintetin kanssa esiintyvä Henrik soittaa Piazzollan unohtumattomimpia tangosäveliä Adios Noniñosta Le Grand Tangoon.</p>",
                "sv": "<p>På söndag fyller Kammarsommaren Helsingfors centrum med Astor Piazzollas betagande musik!</p><p>Landets mest framstående bandoneonkonstnär Henrik Sandås kommer till Esplanadestraden med två konserter. Henrik, som uppträder med en stråkkvintett sammansatt av festivalens artister, spelar Piazzollas mest oförglömliga tangotoner från Adios Noniño till Le Grand Tango.</p>",
                "en": "<p>On Sunday, Kamarikesä Chamber Music Festival will fill the Helsinki City Centre with the charming music of Astor Piazzolla!</p><p>The greatest bandoneon virtuoso in our country, Henrik Sandås, will take over Espa Stage in two concerts. Henrik will perform with a string quintet featuring some of the festival artists, playing the most unforgettable tango melodies by Piazzolla, from Adios Noniño to Le Grand Tango.</p>"
            },
            "name": {
                "fi": "Kamarikesä-festivaali: Le Grand Tango – Henrik Sandås x Kamarikesä",
                "sv": "Festivalen Kammarsommar: Le Grand Tango – Henrik Sandås x Kammarsommar",
                "en": "Kamarikesä Chamber Music Festival: Le Grand Tango – Henrik Sandås x Kamarikesä"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/428A4BB825C6ED8FDDC3485A7A298A89/Kamarikesa-festivaali_Le_Grand_Tango_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/428A4BB825C6ED8FDDC3485A7A298A89/Festivalen_Kammarsommar_Le_Grand_Tango_",
                "en": "http://www.espanlava.fi/en/events/event/428A4BB825C6ED8FDDC3485A7A298A89/Kamarikesa_Chamber_Music_Festival_Le_Grand_Tango_"
            },
            "short_description": {
                "fi": "Sunnuntaina Kamarikesä täyttää Helsingin keskustan Astor Piazzollan hurmaavalla musiikilla!",
                "sv": "På söndag fyller Kammarsommaren Helsingfors centrum med Astor Piazzollas betagande musik!",
                "en": "On Sunday, Kamarikesä Chamber Music Festival will fill the Helsinki City Centre with the charming music of Astor Piazzolla!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66517/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66441",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "42,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/20286578"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 926401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-03T07:13:50.660388Z",
                    "last_modified_time": "2025-06-03T07:13:50.660410Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774210.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/926401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-03T07:13:50.536736Z",
            "last_modified_time": "2025-06-27T11:12:24.000593Z",
            "date_published": null,
            "start_time": "2025-11-19T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Dex Viihde Oy"
            },
            "description": {
                "fi": "<p>Suomenkielisen metallimusiikin pioneeriyhtye <b>Mokoma</b> suuntaa syksyllä harvinaiselle akustiselle kiertueelle. Pitkällä urallaan kaksi akustista albumia (Varjopuoli, 2011 ja Laulurovio, 2016) julkaissut bändi nähdään marraskuussa yhteensä kahdeksalla paikkakunnalla. Luvassa on levyiltä tuttujen kappaleiden lisäksi myös uusia akustisia sovituksia.</p><p><i>- Akkarikeikkoja onkin ollut ikävä! Metallisen äänenpaineen vastapainoksi on ainoastaan järkevää tarjoilla välillä vähän rauhallisempaa tunnelmointia. Setissä tulee olemaan levyiltä tuttuja akustisia tulkintoja, mutta sovituspajalla on huhkittu myös uusien biisien parissa. Akustisilla keikoilla itsensä joutuu haastamaan aivan erilailla kuin fyysisyyttä tihkuvilla sähkökeikoilla. Jokainen ääni kuuluu, oli sitten oikea tai väärä, meluvallista ei saa suojaa, joten herkillähän tässä hommassa mennään,</i> yhtyeen rumpali <b>Janne Hyrkäs</b> kertoo.</p><p>Mokoma saa tuekseen kiertueelle haitarivirtuoosi <b>Netta Skogin</b>, joka on tuttu myös bändin aiemmilta akustisilta kiertueilta sekä Laulurovio -levyltä.</p><p><i>- Jos keikkoja on ollut ikävä, niin vähintään yhtä kova ikävä on ollut Netan kanssa soittamista! Netta luo biiseihin ihania täydentäviä äänikudelmia taidokkaalla soitolla, laululla ja läsnäolollaan,</i>  Hyrkäs jatkaa.</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "name": {
                "fi": "Mokoma Akustisena"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/630CFCB400828CCB49311F3A84AC95C3/Mokoma_Akustisena"
            },
            "short_description": null,
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ppim",
            "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:p13084/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-27T10:30:19.300109Z",
                    "last_modified_time": "2025-06-27T10:30:27.664456Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1cc332b8-3848-4e2c-8e50-0de542b9b96b.jpg",
                    "cropping": "140,0,978,839",
                    "photographer_name": "Paula Mertasalmi",
                    "alt_text": "suppilovahveroita metsässä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-27T10:33:10.976814Z",
            "last_modified_time": "2025-06-27T10:33:10.976831Z",
            "date_published": null,
            "start_time": "2025-09-27T09:00:00Z",
            "end_time": "2025-09-27T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Espoon ympäristöyhdistys"
            },
            "description": {
                "fi": "<p>Espoon ympäristöyhdistys tuo kirjastoon Espoon metsistä edellisenä päivänä kerättyjä sieniä.</p><p>Yhdistys esittelee lähimetsiemme monimuotoisuutta erilaisten sienien kasvupaikkoina. Näyttelyssä on syötäviä ja syötäväksi kelpaamattomia sieniä, nämä on kerrottu tapahtumassa katsojalle selkeästi värikoodein.</p><p>Tapahtuman järjestäjillä on sienestäjänä kokemusta yli 50 vuoden ajalta. Tule katselemaan ja kysymään sienistä ja sienestämisestä.</p>"
            },
            "name": {
                "fi": "Sieninäyttely"
            },
            "info_url": null,
            "short_description": {
                "fi": "yhdistys esittelee lähimetsiemme monimuotoisuutta erilaisten sienien kasvupaikkoina."
            },
            "location_extra_info": {
                "fi": "Estradi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ppim/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ppui",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490220,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-27T08:45:36.659565Z",
                    "last_modified_time": "2025-06-27T08:45:36.659579Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/410a6dee-6703-4bf7-8daf-59a4d395bf59.png",
                    "cropping": "260,0,1660,1400",
                    "photographer_name": "Espoon kuvapankki",
                    "alt_text": "kolme lasta leikkii ilmapalloilla piirroskuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490220/?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"
                }
            ],
            "created_time": "2025-06-27T08:46:20.882484Z",
            "last_modified_time": "2025-06-27T08:46:20.882501Z",
            "date_published": null,
            "start_time": "2025-08-06T12:00:00Z",
            "end_time": "2025-08-06T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Juvenalian, ESKO:n ja Espoon tanssiopiston yhteinen monitaideleiri esittää leirin tuotokset avoimelle yleisölle keskiviikkona 6.8. klo 15. Luvassa laulua, tanssia ja teatteria.</p><p> </p><p> </p>",
                "sv": "<p>Slutföreställningar av konsttidskrift Taidekaruselli.</p>",
                "en": "<p>Final performances of the Art Camp Taidekaruselli.</p>"
            },
            "name": {
                "fi": "Taidekaruselli-monitaideleirin päätösesitykset",
                "sv": "Slutföreställningar av konsttidskrift Taidekaruselli",
                "en": "Final performances of the Art Camp Taidekaruselli"
            },
            "info_url": null,
            "short_description": {
                "fi": "Juvenalian, ESKO:n ja Espoon tanssiopiston yhteinen monitaideleiri esittää leirin tuotokset.",
                "sv": "Slutföreställningar av konsttidskrift Taidekaruselli.",
                "en": "Final performances of the Art Camp Taidekaruselli."
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ppui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pqa4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:14.333260Z",
            "last_modified_time": "2025-06-27T08:32:14.333277Z",
            "date_published": null,
            "start_time": "2025-12-08T11:00:00Z",
            "end_time": "2025-12-08T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pqa4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pqpu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:14.191850Z",
            "last_modified_time": "2025-06-27T08:32:14.191866Z",
            "date_published": null,
            "start_time": "2025-12-01T11:00:00Z",
            "end_time": "2025-12-01T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pqpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pq6e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:14.050969Z",
            "last_modified_time": "2025-06-27T08:32:14.050985Z",
            "date_published": null,
            "start_time": "2025-11-24T11:00:00Z",
            "end_time": "2025-11-24T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pq6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22prm4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.905198Z",
            "last_modified_time": "2025-06-27T08:32:13.905214Z",
            "date_published": null,
            "start_time": "2025-11-17T11:00:00Z",
            "end_time": "2025-11-17T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22prm4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pr4e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.765537Z",
            "last_modified_time": "2025-06-27T08:32:13.765553Z",
            "date_published": null,
            "start_time": "2025-11-10T11:00:00Z",
            "end_time": "2025-11-10T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pr4e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pslm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.625184Z",
            "last_modified_time": "2025-06-27T08:32:13.625202Z",
            "date_published": null,
            "start_time": "2025-11-03T11:00:00Z",
            "end_time": "2025-11-03T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pslm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ps2m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.483209Z",
            "last_modified_time": "2025-06-27T08:32:13.483225Z",
            "date_published": null,
            "start_time": "2025-10-27T11:00:00Z",
            "end_time": "2025-10-27T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ps2m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ptju",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.326868Z",
            "last_modified_time": "2025-06-27T08:32:13.326884Z",
            "date_published": null,
            "start_time": "2025-10-20T10:00:00Z",
            "end_time": "2025-10-20T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ptju/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22pt24",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.184561Z",
            "last_modified_time": "2025-06-27T08:32:13.184578Z",
            "date_published": null,
            "start_time": "2025-10-13T10:00:00Z",
            "end_time": "2025-10-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pt24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22puky",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pwtm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 153481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T06:46:06.533953Z",
                    "last_modified_time": "2024-12-18T06:46:06.534007Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Enter ry",
                    "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-06-27T08:32:13.043030Z",
            "last_modified_time": "2025-06-27T08:32:13.043047Z",
            "date_published": null,
            "start_time": "2025-10-06T10:00:00Z",
            "end_time": "2025-10-06T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "description": {
                "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.9.-8.12.2025 keskiviikkoisin klo  13:00–15:00.</p><p>Ajanvaraus kirjastosta p. 09 8165 7771</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p><br></p>",
                "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>",
                "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille",
                "sv": "IT-handledning",
                "en": "IT tutoring"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/",
                "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/"
            },
            "short_description": {
                "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.",
                "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.",
                "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22puky/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}