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=180&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": 26807,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=181&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=179&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "espoo_le:agmk227cxe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227ds4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T05:36:53.127637Z",
                    "last_modified_time": "2025-05-05T05:36:53.127652Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png",
                    "cropping": "75,0,360,285",
                    "photographer_name": "",
                    "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?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-05-09T07:14:30.741916Z",
            "last_modified_time": "2025-05-09T07:14:30.741934Z",
            "date_published": null,
            "start_time": "2025-05-29T07:00:00Z",
            "end_time": "2025-05-29T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kesän tuolijumpat",
                "sv": "Sommarens stolgympa   ",
                "en": "Summer Chair gymnastics"
            },
            "short_description": {
                "fi": "Jumpataan tuolia apuna käyttäen",
                "sv": "Gymnastik med stol",
                "en": "Gymnastics with a chair"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "description": {
                "fi": "<p>Monipuolista jumppaa pääasiassa tuolilla istuen. Lihaksia vahvistavia, venyttäviä ja rentouttavia liikkeitä soveltaen. Suunnattu erityisryhmille ja senioreille, joilla on toimintakyvyn rajoituksia. Kesto 45 min. Viimeinen kerta 19.6.</p>",
                "sv": "<p>Seniorgympan fortsätter på biblioteket ända till slutet av juni på torsdagar.</p>",
                "en": "<p>Senior chair exercise classes will continue at the library on thursday until the end of June. The last exercise class is on 19.6.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227cxe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227dey",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227ds4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T05:36:53.127637Z",
                    "last_modified_time": "2025-05-05T05:36:53.127652Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png",
                    "cropping": "75,0,360,285",
                    "photographer_name": "",
                    "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?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-05-09T07:14:30.642663Z",
            "last_modified_time": "2025-05-09T07:14:30.642682Z",
            "date_published": null,
            "start_time": "2025-05-22T07:00:00Z",
            "end_time": "2025-05-22T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kesän tuolijumpat",
                "sv": "Sommarens stolgympa   ",
                "en": "Summer Chair gymnastics"
            },
            "short_description": {
                "fi": "Jumpataan tuolia apuna käyttäen",
                "sv": "Gymnastik med stol",
                "en": "Gymnastics with a chair"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "description": {
                "fi": "<p>Monipuolista jumppaa pääasiassa tuolilla istuen. Lihaksia vahvistavia, venyttäviä ja rentouttavia liikkeitä soveltaen. Suunnattu erityisryhmille ja senioreille, joilla on toimintakyvyn rajoituksia. Kesto 45 min. Viimeinen kerta 19.6.</p>",
                "sv": "<p>Seniorgympan fortsätter på biblioteket ända till slutet av juni på torsdagar.</p>",
                "en": "<p>Senior chair exercise classes will continue at the library on thursday until the end of June. The last exercise class is on 19.6.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227dey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227ds4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227bou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227b4y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227cj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227cxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227dey/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T05:36:53.127637Z",
                    "last_modified_time": "2025-05-05T05:36:53.127652Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png",
                    "cropping": "75,0,360,285",
                    "photographer_name": "",
                    "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?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-05-09T07:14:29.143965Z",
            "last_modified_time": "2025-05-09T07:14:29.143982Z",
            "date_published": null,
            "start_time": "2025-05-15T07:00:00Z",
            "end_time": "2025-06-19T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kesän tuolijumpat",
                "sv": "Sommarens stolgympa   ",
                "en": "Summer Chair gymnastics"
            },
            "short_description": {
                "fi": "Jumpataan tuolia apuna käyttäen",
                "sv": "Gymnastik med stol",
                "en": "Gymnastics with a chair"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "description": {
                "fi": "<p>Monipuolista jumppaa pääasiassa tuolilla istuen. Lihaksia vahvistavia, venyttäviä ja rentouttavia liikkeitä soveltaen. Suunnattu erityisryhmille ja senioreille, joilla on toimintakyvyn rajoituksia. Kesto 45 min. Viimeinen kerta 19.6.</p>",
                "sv": "<p>Seniorgympan fortsätter på biblioteket ända till slutet av juni på torsdagar.</p>",
                "en": "<p>Senior chair exercise classes will continue at the library on thursday until the end of June. The last exercise class is on 19.6.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227ds4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227ebq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490341,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-09T06:09:58.365550Z",
                    "last_modified_time": "2025-05-09T06:09:58.365565Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7ecb3196-e821-4618-96e6-ba4819689044.png",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kädet, jotka piirtävät kaupunkia. Kuvassa on myös tekstiä, jossa lukee tapahtuman aika ja päivämäärä, sekä tapahtuman nimi.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-09T06:10:20.937902Z",
            "last_modified_time": "2025-05-09T06:10:20.937919Z",
            "date_published": null,
            "start_time": "2025-05-18T11:30:00Z",
            "end_time": "2025-05-18T14:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.espoonkuvis.fi/tapahtuma/lasten-espoo-reittiseikkailu-tyopajat-lippulaiva",
                "en": "https://www.espoonkuvis.fi/tapahtuma/lasten-espoo-reittiseikkailu-tyopajat-lippulaiva"
            },
            "name": {
                "fi": "Lasten Espoo: Reittiseikkailu! -taidetyöpajat ",
                "en": "Children's Espoo: Route Adventure!-workshop"
            },
            "short_description": {
                "fi": "Tervetuloa taidetyöpajaan, jossa luomme yhdessä Espoota!",
                "en": "Welcome to the art workshop where we will create Espoo together!"
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": {
                "fi": "Espoon kuvataidekoulu",
                "en": "Espoo School of Art"
            },
            "description": {
                "fi": "<p>Tervetuloa taidetyöpajaan, jossa luomme yhdessä Espoota!</p><p>Tule mukaan suunnittelemaan, millainen kaupunki on hyvä lapsille. Työpajassa mietitään, miltä lähiympäristö ja erilaiset kulkureitit näyttävät lapsen näkökulmasta. Tutustutaan myös, miten Espoon asukkaat voivat vaikuttaa kaupunkisuunnitteluun.</p><p>Työpajassa lapset:</p><ul><li>harjoittelevat kartanlukua ja paikkojen merkitsemistä</li><li>tekevät näkyväksi omia tärkeitä reittejään</li><li>kertovat ajatuksiaan paperikollaasien ja piirtämisen avulla</li><li>kertovat, mitä toivovat Espoolta ja miltä kaupungissa asuminen tuntuu</li></ul><p>Työpajat on tarkoitettu 4–10-vuotiaille lapsille yhdessä aikuisen kanssa. Työpajojen ohjaajina ovat Espoon kuvataidekoulun opettajat. Tapahtuma on maksuton.</p><p>Työpajassa syntyneet ideat ja teokset esitellään Espoon päättäjille. Syksyllä 2025 pidetään myös näyttely Espoossa.</p><p><br></p><p><br></p><p>Tule mukaan tekemään Espoosta paikka, jossa on iloa ja seikkailuja!</p><p>Ilmoittaudu pajoihin sunnuntaina 18.5. Lippulaivan kirjastossa (Espoonlahdenkatu 8):</p><p>Paja 1 ukrainaksi ja suomeksi klo 14.30–16</p><p>Paja 2 englanniksi ja suomeksi klo 16.15–17.45</p><p>Ilmoittaudu pajaan täyttämällä lomake:&nbsp;<a href=\"https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;\">https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;</a></p><p>Espoon kuvataidekoulun Lasten Espoo -hanke on saanut Espoon kaupungin projektirahoituksen.</p>",
                "en": "<p>Welcome to the art workshop where we will create Espoo together!</p><p>Join us in designing a city that is great for children. In the workshop, we will think about what the local environment and different routes look like from a child's perspective. We will also learn how the residents of Espoo can influence urban planning.</p><p>In the workshop, children will:</p><ul><li>practice map reading and marking places</li><li>make their important routes visible</li><li>share their thoughts through paper collages and drawing</li><li>express what they hope for from Espoo and what it feels like to live in the city</li></ul><p>The workshops are intended for children aged 4–10, together with an adult. The workshops will be led by teachers from the Espoo School of Art. The event is free of charge.</p><p>The ideas and works created in the workshop will be presented to decision-makers in Espoo. An exhibition will also be held in Espoo in the fall of 2025.</p><p><br></p><p>Come join us in making Espoo a place full of joy and adventure!</p><p>Register for the workshops on Sunday, May 18th, at the Lippulaiva Library (Espoonlahdenkatu 8):</p><p>Workshop 1 in Ukrainian and Finnish from 14:30–16:00</p><p>Workshop 2 in English and Finnish from 16:15–17:45</p><p>Register for the workshop by filling out the form:&nbsp;<a href=\"https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;\">https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;</a></p><p>The Children's Espoo project at the Espoo School of Art has received project funding from the City of Espoo.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227ebq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19777515",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777515/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777515/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777515/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.456387Z",
                    "last_modified_time": "2025-02-17T11:16:41.456408Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:17.589939Z",
            "last_modified_time": "2025-05-08T23:16:06.999711Z",
            "date_published": null,
            "start_time": "2025-05-08T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Eikä Yksikään Pelastunut"
            },
            "short_description": {
                "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri."
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777515/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19569263",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3790487/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569263/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569263/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569263/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:13.489586Z",
                    "last_modified_time": "2025-02-17T11:17:13.489604Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/agora_hkt_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:17.346755Z",
            "last_modified_time": "2025-05-08T23:16:06.787484Z",
            "date_published": null,
            "start_time": "2025-05-08T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Agora - Kaksi Merenneitoa Tyhjässä Altaassa"
            },
            "short_description": {
                "fi": "Minna Lund & työryhmä AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun pats"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p> Minna Lund &amp; työryhmä<br><strong>AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA</strong></p><p> <br> Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun patsaan julkistustilaisuus eskaloituu yleisön mukaansa tempaavaksi kyltymättömäksi vesileikiksi.</p><p> <br> Helsingin Kaupunginteatterin eteen on ilmestynyt tuntemattoman taiteilijan arvoituksellinen taidelahjoitus. Lahjoituksen myötä teatteriin on perustettu kiireen vilkkaa patsastoimikunta, jonka jäsenet ovat päättäneet pitää veistoksen ja pystyttää sen väliaikaisesti studio Pasilan näyttämölle. Veistoksen mielleyhtymät radikaalista ystävyydestä ovat kuitenkin uineet toimikunnan sydämiin, ja nyt toimikunta haluaa omistaa veistoksen Helsingin Kaupunginteatterin uskolliselle yleisölle</p><p> <br> <br> Kutsu: Lämpimästi tervetuloa Agora – kaksi merenneitoa tyhjässä altaassa -patsaan julkistustilaisuuteen</p><p> Pyydämme kunnioittaen Teitä, Helsingin Kaupunginteatterin arvovaltainen katsoja, läsnä olemaan julkistustilaisuudessa studio Pasilassa keväällä 2025. Luvassa on puheita, musiikkia, ja muita juhlallisuuksia.</p><p> Astukaa Agoralle ja tulkaa kohottamaan kanssamme taiteen ylitsevuotava malja!</p><p> Kyltymättöminä odotamme Teitä,</p><p> Patsastoimikunta:<br>Kari Arffman (teatterinjohtaja),<br>Leenamari Unho (kiinnitetty näyttelijä),<br>Riikka Thitz (Nykyesityksen näyttämön kuraattori)</p><p>*Agora (m.kreik. ἀγορά)<br>subst. kauppa-aukio tai kokoontumispaikka vars. kaupungeissa tm. asutuskeskuksissa; yl. aukio.</p><p> </p><p> Esiintyjät: Emelie Zilliacus, Salla Loper, Leenamari Unho</p><p> Ohjaaja: Minna Lund<br>Lavastaja: Riku Suvitie<br>Pukusuunnittelija: Ella Snellman<br>Valosuunnittelija: Tuomas Honkanen<br>Äänisuunnittelija: Axel Ridberg<br>Naamioinnin suunnittelu: Noora Laukkanen<br>Dramaturgi: Martta Jylhä</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569263/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036800",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036800/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036800/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036800/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:17.243829Z",
            "last_modified_time": "2025-05-08T23:16:06.630370Z",
            "date_published": null,
            "start_time": "2025-05-08T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036800/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-3802086",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667089/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667089/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667089/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667079/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667080/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667083/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667085/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667086/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667082/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667087/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667089/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:07.867833Z",
                    "last_modified_time": "2025-02-17T11:17:07.867850Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/dc/10/hkt-kaunotarja-hirviot222-tickets_342444_2945406_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:17.122913Z",
            "last_modified_time": "2025-05-08T20:15:39.500480Z",
            "date_published": null,
            "start_time": "2025-04-10T15:30:00Z",
            "end_time": "2025-05-08",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Kaunotar Ja Hirviöt"
            },
            "short_description": {
                "fi": "Sinna Virtanen KAUNOTAR JA HIRVIÖT Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vink"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Sinna Virtanen<br><strong>KAUNOTAR JA HIRVIÖT</strong></p><p>Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vinksahtaneeseen fantasiakylään.</p><p>Näytelmä purkaa ja kertoo uudestaan kertomusta Kaunottaresta ja Hirviöstä, jonka ensimmäinen julkaistu versio on Gabrielle-Suzanne Barbot de Villeneuven vuodelta 1740.</p><p>Teos lainaa, varastaa ja väärentää eri versioita saduista yhdistellen söpöä ja makaaberia, kinkyä ja pikkusievää, pahaa ja enkelimäistä. Sadun eri versioiden alle piiloutuu tosimaailmassa tapahtunut erästä italialaista kyläyhteisöä vuonna 2012 järkyttänyt nuoren naisen raaka murhatapaus.</p><p>Teos tarkastelee draamanjanoamme sekä saduissa ja uutisissa toistuvia myrkyllisiä asetelmia.</p><p>Kaunotar ja hirviöt on eeppinen tutkielma surusta ja sen myymisestä. Esitys kysyy, voiko sadusta paeta menettämättä henkeään tai ainakin itseään.</p><p>Kaunotar ja hirviöt on palkitun näytelmäkirjailijan Sinna Virtasen (s.1987) kevyesti päivitetty kandidaatin näytelmä Teatterikorkeakoulusta vuodelta 2012.</p><p>Teoksen ohjaa Linda Wallgren (s.1988) yksi nuoren polven kiinnostavimmista ohjaajista, jonka edelliset työt on palkittu Tiedonjulkistamisen valtionpalkinnolla (2022) sekä Eino Kalima- ohjaajapalkinnolla (2024). Näyttämöllä Teatterikorkeakoulun näyttelijäntaiteen 3. vuosikurssi.</p><p>Rooleissa: Sonja Arffman, Heidi Finnberg, Elina Kanerva, Mikael Karvia, Väinö Lehtinen, Miriam Mekhane, Yosef Nousiainen, Rebecca Nugent, Iina Nyländen, Pablo Ounaskari, Milla Palin, Janika Suopanki Kirjailija: Sinna Virtanen</p><p>Ohjaaja: Linda Wallgren Lavastus: Sanna Levo<br>Pukusuunnittelu: Kaisa Savolainen (Aalto ARTS)<br>Valosuunnittelu: Aku Lahti<br>Äänisuunnittelu: Juri Jänis (TeaK, taiteellinen opinnäyte, TeM)<br>Naamioinnin suunnittelu: Henri Karjalainen</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802086/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19667089",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802086/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667089/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667089/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667089/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:07.867833Z",
                    "last_modified_time": "2025-02-17T11:17:07.867850Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/dc/10/hkt-kaunotarja-hirviot222-tickets_342444_2945406_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:17.450242Z",
            "last_modified_time": "2025-05-08T20:14:57.738295Z",
            "date_published": null,
            "start_time": "2025-05-08T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Kaunotar Ja Hirviöt"
            },
            "short_description": {
                "fi": "Sinna Virtanen KAUNOTAR JA HIRVIÖT Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vink"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Sinna Virtanen<br><strong>KAUNOTAR JA HIRVIÖT</strong></p><p>Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vinksahtaneeseen fantasiakylään.</p><p>Näytelmä purkaa ja kertoo uudestaan kertomusta Kaunottaresta ja Hirviöstä, jonka ensimmäinen julkaistu versio on Gabrielle-Suzanne Barbot de Villeneuven vuodelta 1740.</p><p>Teos lainaa, varastaa ja väärentää eri versioita saduista yhdistellen söpöä ja makaaberia, kinkyä ja pikkusievää, pahaa ja enkelimäistä. Sadun eri versioiden alle piiloutuu tosimaailmassa tapahtunut erästä italialaista kyläyhteisöä vuonna 2012 järkyttänyt nuoren naisen raaka murhatapaus.</p><p>Teos tarkastelee draamanjanoamme sekä saduissa ja uutisissa toistuvia myrkyllisiä asetelmia.</p><p>Kaunotar ja hirviöt on eeppinen tutkielma surusta ja sen myymisestä. Esitys kysyy, voiko sadusta paeta menettämättä henkeään tai ainakin itseään.</p><p>Kaunotar ja hirviöt on palkitun näytelmäkirjailijan Sinna Virtasen (s.1987) kevyesti päivitetty kandidaatin näytelmä Teatterikorkeakoulusta vuodelta 2012.</p><p>Teoksen ohjaa Linda Wallgren (s.1988) yksi nuoren polven kiinnostavimmista ohjaajista, jonka edelliset työt on palkittu Tiedonjulkistamisen valtionpalkinnolla (2022) sekä Eino Kalima- ohjaajapalkinnolla (2024). Näyttämöllä Teatterikorkeakoulun näyttelijäntaiteen 3. vuosikurssi.</p><p>Rooleissa: Sonja Arffman, Heidi Finnberg, Elina Kanerva, Mikael Karvia, Väinö Lehtinen, Miriam Mekhane, Yosef Nousiainen, Rebecca Nugent, Iina Nyländen, Pablo Ounaskari, Milla Palin, Janika Suopanki Kirjailija: Sinna Virtanen</p><p>Ohjaaja: Linda Wallgren Lavastus: Sanna Levo<br>Pukusuunnittelu: Kaisa Savolainen (Aalto ARTS)<br>Valosuunnittelu: Aku Lahti<br>Äänisuunnittelu: Juri Jänis (TeaK, taiteellinen opinnäyte, TeM)<br>Naamioinnin suunnittelu: Henri Karjalainen</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667089/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66270",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 716031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T13:14:02.956725Z",
                    "last_modified_time": "2025-05-08T13:14:02.956743Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767504.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T13:14:02.867907Z",
            "last_modified_time": "2025-05-08T13:14:03.079352Z",
            "date_published": null,
            "start_time": "2025-06-16T13:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/896CE2AA58DE1F380E78287E3C0E3D93/Kesainen_jumppatuokio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/896CE2AA58DE1F380E78287E3C0E3D93/Somrig_gymnastikstund",
                "en": "http://www.espanlava.fi/en/events/event/896CE2AA58DE1F380E78287E3C0E3D93/Summer_exercise_session"
            },
            "name": {
                "fi": "Kesäinen jumppatuokio",
                "sv": "Somrig gymnastikstund",
                "en": "Summer exercise session"
            },
            "short_description": {
                "fi": "Helsingin kaupungin liikuntapalvelut kutsuu mukaan helppoon kesäjumppaan Espan lavalle!",
                "sv": "Helsingfors stads idrottstjänster inbjuder dig att komma med på enkel sommargymnastik på Esplanadestraden!",
                "en": "The City of Helsinki Sports Services invite you to join an easy summer exercise session on the Espa Stage!"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Helsingin kaupungin liikuntapalvelut kutsuu mukaan helppoon kesäjumppaan Espan lavalle!</p><p>Tapahtuma on tarkoitettu kaikenikäisille ja -kuntoisille. Tästä hyvä verryttely heti perään alkavaa yhteislaulutapahtumaa varten!</p>",
                "sv": "<p>Helsingfors stads idrottstjänster inbjuder dig att komma med på enkel sommargymnastik på Esplanadestraden!</p><p>Evenemanget är avsett för alla åldrar och konditioner. Detta är en bra uppvärmning för ett allsångsevenemang som börjar direkt efter!</p>",
                "en": "<p>The City of Helsinki Sports Services invite you to join an easy summer exercise session on the Espa Stage!</p><p>The event is intended for all ages and levels of physical condition. This is a great warmup for the singalong event that starts right after!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66270/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66267",
            "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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 716028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T13:14:01.696528Z",
                    "last_modified_time": "2025-05-08T13:14:01.696545Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765268.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T13:14:01.588146Z",
            "last_modified_time": "2025-05-08T13:14:01.833936Z",
            "date_published": null,
            "start_time": "2025-06-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/CB78971289CCA13BBCC54FAED2F0BF49/Kalevauva_fi",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/CB78971289CCA13BBCC54FAED2F0BF49/Kalevauva_fi",
                "en": "http://www.espanlava.fi/en/events/event/CB78971289CCA13BBCC54FAED2F0BF49/Kalevauva_fi"
            },
            "name": {
                "fi": "Kalevauva.fi – Helsinki-päivä",
                "sv": "Kalevauva.fi – Helsingforsdagen",
                "en": "Kalevauva.fi – Helsinki Day"
            },
            "short_description": {
                "fi": "Kalevauva.fi on Aapo Niinisen ja Kimmo Nummisen muodostama nykypäivän folkpop-duo, jonka sanoitukset on kerätty suoraan kansan suusta, internetin keskustelupalstoilta.",
                "sv": "Kalevauva.fi är en folkpopduo som består av Aapo Niininen och Kimmo Numminen, vars låttexter har samlats in direkt ur folkmun, på internets diskussionsforum.",
                "en": "Kalevauva.fi is a folk-pop duo formed by Aapo Niininen and Kimmo Numminen, with lyrics directly from the people, gathered from internet forums."
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kalevauva.fi on Aapo Niinisen ja Kimmo Nummisen muodostama nykypäivän folkpop-duo, jonka sanoitukset on kerätty suoraan kansan suusta, internetin keskustelupalstoilta.</p><p>Vuonna 2016 perustetun Kalevauva.fi:n meno on ollut heti alusta lähtien hurjaa. Helsingin Sanomat tituleerasi kaksikon heti kärkeen “kesän 2016 ehkä puhutuimmaksi bändiksi”, ja yhtye on sittemmin soittanut satoja keikkoja sekä kerännyt huikeita YouTube-katselulukuja.</p><p>Kalevauva.fi on urallaan julkaissut runokirjan ja kolme täyspitkää albumia sekä valittu Vuoden vantaalaiseksi. Viimeisen albumi ”Kaupunkilaulut vol. 1” niputti yhteen ratkiriemukkaita tarinoita suomalaiskaupungeista. Livekeikoilla Kalevauva.fi on parhaimmillaan, mistä kertovat hurmioituneet yleisöt ympäri Suomen.<br> <br>“Kalevauva.fi kertoo yhteiskunnastamme enemmän kuin sata akateemista tutkimusta.” - Tuntematon kommentoija HS.fi</p>",
                "sv": "<p>Kalevauva.fi är en folkpopduo som består av Aapo Niininen och Kimmo Numminen, vars låttexter har samlats in direkt ur folkmun, på internets diskussionsforum.</p><p>Kalevala.fi grundades år 2016 och tempot var vilt från början. Genast från början titulerade Helsingin sanomat bandet som “kanske det mest omtalade under sommaren 2016”, och bandet har sedermera gett hundratals spelningar och samlat hisnande visningssiffror på YouTube.</p><p>Under sin karriär har Kalevauva.fi även valts till Årets vandabo, publicerat en poesibok och tre hellånga album, varav det senaste “Kaupunkilaulut vol. 1” samlade ihop uppsluppna berättelser från finländska städer. Kalevauva.fi kommer mest till sin rätt på livespelningar, om vilket hänförda publiker runt om i Finland bär vittne.</p><p>“Kalevauva.fi berättar mer om vårt samhälle än hundra akademiska undersökningar.” – Kommentar av okänd, HS.fi</p>",
                "en": "<p>Kalevauva.fi is a folk-pop duo formed by Aapo Niininen and Kimmo Numminen, with lyrics directly from the people, gathered from internet forums.</p><p>Founded in 2016, Kalevauva.fi has been on a wild ride from the start. Helsingin Sanomat immediately dubbed the duo “perhaps the most talked about band of the summer of 2016”, and the band has since played hundreds of gigs and amassed a huge number of YouTube views.</p><p>Kalevauva.fi has also been voted Vuoden Vantaalainen (Vantaa Resident of the Year) and published a poetry book and three full-length albums, the latest of which, Kaupunkilaulut vol. 1 bundled together hilarious stories about Finnish cities. Kalevauva.fi is at its best at live shows, which is evident from enthusiastic audiences all over Finland.</p><p>“Kalevauva.fi tells us more about our society than a hundred academic studies.” – Unknown commenter, HS.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66267/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66259",
            "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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 716022,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T13:13:59.149723Z",
                    "last_modified_time": "2025-05-08T13:13:59.149741Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765713.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/716022/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T13:13:59.034147Z",
            "last_modified_time": "2025-05-08T13:13:59.286895Z",
            "date_published": null,
            "start_time": "2025-06-11T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8DE0D3DABF50F21CD834CCCDBE0EB009/Olli_Tuovinen_Eraana_yona_Volvi_una_noche",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/8DE0D3DABF50F21CD834CCCDBE0EB009/Olli_Tuovinen_En_natt_-_Volvio_una_noche_",
                "en": "http://www.espanlava.fi/en/events/event/8DE0D3DABF50F21CD834CCCDBE0EB009/Olli_Tuovinen_One_night_-_Volvio_una_noche_"
            },
            "name": {
                "fi": "Olli Tuovinen: Eräänä yönä – Volvió una noche",
                "sv": "Olli Tuovinen: \"En natt - Volvio una noche\"",
                "en": "Olli Tuovinen: 'One night - Volvio una noche'"
            },
            "short_description": {
                "fi": "Ooppera- ja musiikkiteatterinäyttämöiltä tuttu baritoni Olli Tuovinen palaa musiikillisille juurilleen laulajakitaristina uuden, ennen kuulemattoman ohjelmiston kanssa.",
                "sv": "Barytonen Olli Tuovinen, känd från opera- och musikteaterscenen, återvänder till sina musikaliska rötter som sångare-gitarrist med en ny, oerhörd repertoar.",
                "en": "Baritone Olli Tuovinen, known from the opera and music theater stages, returns to his musical roots as a singer-guitarist with a new, unheard of repertoire."
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ooppera- ja musiikkiteatterinäyttämöiltä tuttu baritoni Olli Tuovinen palaa musiikillisille juurilleen laulajakitaristina uuden, ennen kuulemattoman ohjelmiston kanssa.</p><p>”Eräänä yönä - Volvio una noche” on kokoelma upeita suomennoksia argentiinalaisista tangoklassikoista.</p><p>Tuovisen tulkinnat ulottuvat pienestä ja intiimistä aina rouheaan julistukseen asti. Ohjelmassa kuullaan muun muassa Damesin, Demaren ja Troilon mestariteoksia. Kitaransoittoonsa Tuovinen on ottanut mukaan myös flamencomusiikille tyypillisiä sävyjä, mikä tuo klassikoihin uutta väriä. Alkuperäisten tarinoiden käännökset puolestaan saavat suomalaisen kuulijan syvemmälle tangon aitoon draamaan.</p>",
                "sv": "<p>Barytonen Olli Tuovinen, känd från opera- och musikteaterscenen, återvänder till sina musikaliska rötter som sångare-gitarrist med en ny, oerhörd repertoar.</p><p>\"En natt - Volvio una noche\" är en samling underbara översättningar av argentinska tangoklassiker.</p><p>Tuovinens tolkningar sträcker sig från små och intima hela vägen till hårda deklarationer, t.ex. Från mästerverken Gardel, Dames, Demare och Troilo. I sitt gitarrspel har Tuovinen också inkluderat toner som är typiska för flamencomusik, som ger klassikerna en ny färg. Översättningarna av originalberättelserna för den finska lyssnaren djupare in i tangons autentiska drama.</p>",
                "en": "<p>Baritone Olli Tuovinen, known from the opera and music theater stages, returns to his musical roots as a singer-guitarist with a new, unheard of repertoire.</p><p>'One night - Volvio una noche' is a collection of wonderful translations of Argentinian tango classics.</p><p>Tuovinen's interpretations range from small and intimate all the way to harsh declarations, e.g. From the masterpieces of Gardel, Dames, Demare and Troilo. In his guitar playing, Tuovinen has also included tones typical of flamenco music, which brings a new color to the classics. The translations of the original stories bring the Finnish listeners deeper into the authentic drama of tango.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aglkkgn5ue",
            "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/kultus:13/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2315/?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:p9058/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Vain korttimaksu.",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "10",
                        "sv": "10",
                        "en": "10"
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:40/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2025-05-06T10:17:29.773603Z",
            "last_modified_time": "2025-05-08T12:15:45.373630Z",
            "date_published": null,
            "start_time": "2025-05-11T09:30:00Z",
            "end_time": "2025-05-30T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-05-06T13:20:00+03:00",
            "enrolment_end_time": "2025-05-30T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://example.org/testitapahtuma/",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testitapahtuman nimi",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Testitapahtuman lyhyt kuvaus",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Testitapahtuman kuvaus</p>\n",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aglkkgn5ue/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66258",
            "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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 715678,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T12:13:11.715686Z",
                    "last_modified_time": "2025-05-08T12:13:11.715703Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771454.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/715678/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T12:13:11.654461Z",
            "last_modified_time": "2025-05-08T12:13:11.796816Z",
            "date_published": null,
            "start_time": "2025-06-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F9E398BE44EAF18A788D0A078929DCEF/Friction_Helsinki",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/F9E398BE44EAF18A788D0A078929DCEF/Friction_Helsinki",
                "en": "http://www.espanlava.fi/en/events/event/F9E398BE44EAF18A788D0A078929DCEF/Friction_Helsinki"
            },
            "name": {
                "fi": "Friction Helsinki – Open Stage",
                "sv": "Friction Helsinki – Open Stage",
                "en": "Friction Helsinki – Open Stage"
            },
            "short_description": {
                "fi": "Friction Helsinki on musiikkikollektiivi, jonka intohimoiset muusikot sekoittavat laajalti genrejä ja yhdistelevät erilaisia kulttuuritaustojaan.",
                "sv": "Friction Helsinki är ett dynamiskt musikkollektiv med passionerade musiker som blandar olika genrer med diverse kulturella bakgrunder.",
                "en": "Friction Helsinki is a dynamically evolving collective of passionate musicians blending diverse genres and cultural backgrounds."
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Friction Helsinki on musiikkikollektiivi, jonka intohimoiset muusikot sekoittavat laajalti genrejä ja yhdistelevät erilaisia kulttuuritaustojaan.</p><p>Friction liittää yhteen afrobeatia, jazzia ja latinalaisamerikkalaista cumbiaa. Lisämausteena musiikista löytyy myös viittauksia Lähi-itään ja Pohjois-Afrikkaan. Frictionin laajan ja kerroksellisen soundin juuret ovat syvällä erilaisissa maailman rytmeissä, ja se rakentuu isosta torvisektiosta, useista perkussionisteista, iskevistä bassolinjoista ja keskeisessä roolissa olevista sähkökitaroista.</p>",
                "sv": "<p>Friction Helsinki är ett dynamiskt musikkollektiv med passionerade musiker som blandar olika genrer med diverse kulturella bakgrunder.</p><p>Friction kombinerar Afrobeat, Jazz och Latinamerikansk Cumbia med inslag av musik från Mellanöstern och Nordafrika. Friction har ett detaljerat och rikt sound bestående av en omfattande blåssektion, slagverkare, fräna elgitarrer och snärtiga basslingor, med rötterna i världens rytmer.</p>",
                "en": "<p>Friction Helsinki is a dynamically evolving collective of passionate musicians blending diverse genres and cultural backgrounds.</p><p>Friction combines afrobeat, jazz and Latin cumbia with musical flavours from the Near East and North Africa. Friction has an extensive and layered sound, with a rich horn section, multiple percussionists, prominent electric guitars and catchy basslines, all firmly rooted in a range of infectious grooves from around the world.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66258/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227esu",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490342,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-08T11:32:48.059314Z",
                    "last_modified_time": "2025-05-08T11:32:48.059328Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a2d98261-9eb7-43d7-9428-1a0868127cd7.jpg",
                    "cropping": "281,0,799,518",
                    "photographer_name": "",
                    "alt_text": "Mikko Sadeharju: Pohjoisen valo ja meren voima",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490342/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T11:50:30.966626Z",
            "last_modified_time": "2025-05-08T11:50:30.966643Z",
            "date_published": "2025-05-08T11:29:00Z",
            "start_time": "2025-05-11T07:00:00Z",
            "end_time": "2025-05-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Näyttely: Mikko Sadeharju: Pohjoisen valo ja meren voima",
                "sv": "Utställning: Mikko Sadeharju: Pohjoisen valo ja meren voima",
                "en": "Exhibition: Mikko Sadeharju: Pohjoisen valo ja meren voima"
            },
            "short_description": {
                "fi": "Taidenäyttely",
                "sv": "Konstutställning",
                "en": "Art exhibition"
            },
            "location_extra_info": {
                "fi": "Galleria Anna",
                "sv": "Galleri Anna",
                "en": "Gallery Anna"
            },
            "provider": null,
            "description": {
                "fi": "<p>\"Luonto hengittää värien ja valon liikkeessä. Tämä näyttely tuo esiin pohjoisten maisemien majesteettisuuden ja meren arvaamattoman voiman – hetkiä, joissa taivas ja maa kohtaavat, vesi tanssii tuulen mukana ja hiljaisuus puhuu.</p><p>Teoksissani pyrin vangitsemaan luonnon hetket, jotka ovat yhtä aikaa rauhallisia ja voimakkaita. Pohjoiset maisemat hehkuvat kaamoksen sinisyyttä ja kesäöiden kultaa, kun taas meri sykkii elämää, myrskyjen ja tyyneyden välillä. Jokainen siveltimenveto on kuin tuulen kuiskaus tai aallon harja – hetken ikuistettu liike.</p><p>Näyttelyssä on mukana myös muutamia teoksia, jotka kuljettavat katsojan eri tunnelmiin ja maailmoihin, mutta joissa kaikissa on sama ydin: vahva tunnelma.&nbsp;</p><p>Tervetuloa kokemaan ja löytämään omat tulkintasi!\" </p><p>Mikko Sadeharju</p><p>Instagram: <a href=\"https://www.instagram.com/artsadeharju\">@artsadeharju</a> </p><p><br></p>",
                "sv": "<p>Mikko Sadeharjus konstutställning ”Pohjoisen valo ja meren voima” (Nordligt ljuset och havets kraft) kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>Mikko Sadeharju's art exhibition \"Pohjoisen valo ja meren voima\" (Northern light and the power of the sea) can be seen during the library opening hours. Welcome!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227esu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227fae",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz654q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@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/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65wq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz664e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7agi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vy3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vzk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vzze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22v2ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wqkq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk223eqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225h7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225ita/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2267by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2267oa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22677a/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490343,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-08T11:17:38.839009Z",
                    "last_modified_time": "2025-05-08T11:17:38.839025Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa9a85f6-44d7-47c8-8a25-b0abac2e1cba.jpg",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Kerttu Penttilä",
                    "alt_text": "Henkilö selaa kirjoja hyllystä, jonka päällä on sateenkaari ja teksti sateenkaarikirjoja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490343/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7a7i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-08T11:24:03.572731Z",
            "last_modified_time": "2025-05-08T11:48:14.871050Z",
            "date_published": "2025-05-08T11:28:00Z",
            "start_time": "2025-06-01T05:00:00Z",
            "end_time": "2025-06-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Pride-tapahtumia Espoon kirjastoissa",
                "sv": "Pride-evenemang på Esbo bibliotek!",
                "en": "Pride events at Espoo Libraries! "
            },
            "short_description": {
                "fi": "Espoon kaupunginkirjasto järjestää lukuisia Pride-tapahtumia kesäkuun aikana!",
                "sv": "Esbo stadsbibliotek arrangerar flera Pride-evenemang under juni! ",
                "en": "Espoo City Library is organizing several Pride events during June! "
            },
            "location_extra_info": {
                "fi": "Espoon kirjastot",
                "sv": "Esbo bibliotek",
                "en": "Espoo Libraries"
            },
            "provider": null,
            "description": {
                "fi": "<p>Espoon kaupunki jatkaa työtään yhdenvertaisuuden, tasa-arvon ja moninaisuuden edistämiseksi yhtenä Helsinki Priden Working With Pride -kumppanina. Helsinki Pride on Suomen vaikuttavin ihmisoikeus- ja kulttuuritapahtuma, ja sen teema on tänä vuonna ylpeyttä ilman rajoja.</p><p>Espoon kaupunginkirjasto järjestää lukuisia Pride-tapahtumia kesäkuun aikana! Tapahtumia järjestetään seuraavissa kirjastoissa:</p><ul><li>Entressen kirjasto</li><li>Lippulaivan kirjasto</li><li>Ison Omenan kirjasto</li><li>Tapiolan kirjasto</li><li>Sellon kirjasto</li></ul>\nSateenkaarisatuhetket<ul><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agld46thj4\">Entressen kirjastossa</a></li><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglic2mfrm\">Sellon kirjastossa</a></li><li>Tapiolan kirjastossa</li><li>Ison Omenan kirjastossa</li><li>Lippulaivan kirjastossa</li></ul>\nSateenkaariklubit<ul><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglhxxd3fq\">Entressen kirjastossa</a></li><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglhxxquoa\">Sellon kirjastossa</a></li></ul><p><br></p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2025.</p>",
                "sv": "<p>Esbo stad fortsätter sitt samarbete för att främja likabehandling, jämställdhet och mångfald som Working With Pride-partner med Helsinki Pride. Helsinki Pride är Finlands mest effektfulla evenemang för mänskliga rättigheter och kultur. I år är temat ‘Stolthet utan gränser’.</p><p>Esbo stadsbibliotek anordnar många Pride-evenemang under juni månad!</p><ul><li>Entressebiblioteket</li><li>Lippulaivabiblioteket</li><li>Iso Omena biblioteke</li><li>Hagalunds bibliotek</li><li>Sellobibliotek</li></ul><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2025.</p>",
                "en": "<p>The City of Espoo continues its cooperation to promote equality, non-discrimination and diversity as one of Helsinki Pride’s Working with Pride partners. Helsinki Pride is the most influential cultural and human rights event in Finland, and this year’s theme is ‘Pride without borders’.</p><p>The Espoo City Library organizes numerous Pride events during June!</p><ul><li>Entresse Library</li><li>Lippulaiva Library</li><li>Iso Omena Library</li><li>Tapiola Library</li><li>Sello Library</li></ul><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2025.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227fae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66239",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 715323,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T11:13:58.665569Z",
                    "last_modified_time": "2025-05-08T11:13:58.665588Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764956.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/715323/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-08T11:13:58.496967Z",
            "last_modified_time": "2025-05-08T11:13:58.883008Z",
            "date_published": null,
            "start_time": "2025-06-03T08:00:00Z",
            "end_time": "2025-06-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_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D0C9B529AF584266B1F0A8A5E09065B0/Punaiset_laivat_puistossa_Viking_Line_Espan_lavalla",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D0C9B529AF584266B1F0A8A5E09065B0/Roda_batarna_tar_plats_i_parken_Viking_Line_pa_Espans_estrad_",
                "en": "http://www.espanlava.fi/en/events/event/D0C9B529AF584266B1F0A8A5E09065B0/Red_ships_rock_the_park_Viking_Line_on_the_Espan_stage"
            },
            "name": {
                "fi": "Punaiset laivat puistossa – Viking Line Espan lavalla",
                "sv": "Röda båtarna tar plats i parken – Viking Line på Espans estrad",
                "en": "Red ships rock the park – Viking Line on the Espan stage"
            },
            "short_description": {
                "fi": "Viking Line tuo meriloman tunnelman keskelle kaupunkia. Tule tutustumaan kesän ja vähän syksynkin risteilyohjelmaan sekä nauttimaan elävästä musiikista!",
                "sv": "Viking Line bjuder på känslan av sjösemester mitt i staden. Kom och upptäck sommarens och även en del av höstens kryssningsprogram och njut av levande musik.",
                "en": "Viking Line brings the magic of a sea holiday right to the heart of the city. Come and discover the summer and autumn cruise programmes while enjoying fantastic live music."
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Viking Line tuo meriloman tunnelman keskelle kaupunkia. Tule tutustumaan kesän ja vähän syksynkin risteilyohjelmaan sekä nauttimaan elävästä musiikista!</p><p>Lapsia viihdyttää Aarne Alligaattori ja aikuisia Niko Ahvonen & Tilanteen Herrat. Ohjelmassa on myös Ville Vikingin tanssikoulu sekä Meet & Greet, jossa pääsee rutistamaan Itämeren rakastetuinta laivakissaa. Lisäksi saat matkavinkkejä Viroon, Ahvenanmaalle ja Ruotsiin sekä kuulet, mitä kivaa lapset voivat kesällä kokea laivojemme Adventure Island -seikkailusaarilla.</p><p>Aarne Alligaattori & Viidakkorumpu tarjoaa viidakon iloisinta ja tarttuvinta lastenmusiikkia. Lavalla nähdään ihastuttava Aarne sekä safariasuiset Tobbe ja Jocke. Tobbe laulaa ja Jocke soittaa kitaraa, kun taas Aarne hassuttelee ja soittaa viidakkorumpuja. Tämä intensiivinen ja ratkiriemukas esitys on suunnattu koko perheelle.</p><p>Suomalaisen musiikkimaailman keskiöön kiistatta lukeutuva Niko Ahvonen sekä amerikkalaisen juurimusiikin ytimistä rytminsä ammentava yhtyeensä Tilanteen Herrat saapuvat myös Espalle. He tuovat Viking Linen tapahtumapäivään taattua rytmimusiikillista iloa paitsi korvin kuultavaksi ja silmin nähtäväksi, myös tanssijalkoja kutkuttavalla tavalla. Kokoonpano luottaa soulin voimaan keikkasetin runkona luottava, mutta ammentaa paljosta muustakin juurimusiikista iloa. Ryhmän motto onkin: ”yritämme laittaa päivänpaistetta mahdollisesti vähän pimeämpäänkin päivään”! Tämä lupaa ja luo funkkyja ja rootseja musiikillisia valonsäteitä ympäristöönsä, missä ikinä Herrat kulkevatkin. Kannattaa siis suunnata kulku Tilanteen äärelle Espan puistoon!</p><p>Tervetuloa viettämään merellistä kesäpäivää kanssamme!</p><p><b>Tapahtuman aikataulu:</b></p><p><b>Klo 11.00 Tervetulosanat ja Aarne Alligaattori<br></b><br>Viking Linen tervetulotoivotusten jälkeen lavalle nousee koko perheen suosikki Aarne Alligaattori.</p><p><b>Klo 11.45 Ville Vikingin tanssikoulu</b><br>Iki-ihana Ville Viking opettaa kaikille nimikkokappaleidensa tanssiaskeleet. Tanssikoulun jälkeen meet & greet lavan vieressä – tule tapaamaan Villeä ja ottamaan yhteiskuvia.</p><p><b>Klo 12.00 Niko Ahvonen ja Tilanteen Herrat</b> viihdyttävät mukaansa tempaavilla rytmeillään.</p><p><b>Klo 12.45 Syksyn Teemaristeilyvinkit Viking Linelle</b><br>Haastattelussa Viking Linen Head of Special Cruises and Cruise Concepts Jaakko Ahti. Tule kuulemaan parhaat vinkit syksyn 2025 teemaristeilyistä.</p><p><b>Klo 13.00 Vinkit kesän matkakohteisiin Ruotsiin, Ahvenanmaalle ja Viroon</b><br>Paneelikeskustelu Viking Linen matkakohteista. Tule kuulemaan kohteiden edustajien parhaat vinkit kesälle 2025.</p><p><b>Klo 13.45 Ville Vikingin tanssikoulu</b><br>Ville Viking palaa lavalle tanssikoulun merkeissä. Tanssikoulun jälkeen meet & greet Villen kanssa lavan vieressä – älä missaa tilaisuutta päästä halimaan Itämeren rakastetuinta maskottia.</p><p><b>Klo 14.00 Niko Ahvonen ja Tilanteen Herrat </b><br>Niko Ahvonen ja Tilanteen Herrat palaavat lavalle. Tule nauttimaan herrojen mukaansatempaavista rytmeistä, ainutlaatuisesta soundista ja energisestä esiintymisestä.</p><p><b>Klo 14.45 Syksyn Teemaristeilyvinkit Viking Linelle</b><br>Päivän toinen haastattelu Jaakko Ahdin kanssa syksyn 2025 teemaristeilyistä.</p><p><b>Klo 15.00 Aarne Alligaattori viihdyttää koko perhettä</b><br>Aarne Alligaattori palaa lavalle viihdyttämään koko perhettä.</p><p><b>Klo 15.45 Ville Vikingin tanssikoulu</b><br>Päivän viimeinen tanssikoulu Ville Vikingin johdolla. Tanssikoulun jälkeen meet & greet ja Villen heippahalit lavan vieressä.</p>",
                "sv": "<p>Viking Line bjuder på känslan av sjösemester mitt i staden. Kom och upptäck sommarens och även en del av höstens kryssningsprogram och njut av levande musik.</p><p>Barnen har skoj med Arne Alligator och för de vuxna presenterar vi Niko Ahvonen & Tilanteen Herrat. I programmet ingår även Ville Vikings dansskola och Meet & Greet, där man får krama om Östersjöns mest älskade skeppskatt.</p><p>Vi tipsar om resor till Estland, Åland och Sverige och om alla de roliga äventyr som barnen kan uppleva i Adventure Island på våra fartyg i sommar.</p><p>Välkommen med på en saltstänkt sommardag tillsammans med oss!</p>",
                "en": "<p>Viking Line brings the magic of a sea holiday right to the heart of the city. Come and discover the summer and autumn cruise programmes while enjoying fantastic live music.</p><p>Kids will have a blast with Aarne Alligator, and adults can groove to the tunes of Niko Ahvonen & Tilanteen Herrat. And that's not all! Join Ville Viking's dance school and Meet & Greet, where you can hug the Baltic Sea's most beloved ship cat.</p><p>Get travel tips for Estonia, Åland, and Sweden, and hear about the exciting adventures awaiting children on the Adventure Islands on board this summer. Come spend a maritime summer day with us!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66239/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65693",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [],
                    "description": null,
                    "price": {
                        "fi": "24,5 / 19,50 €",
                        "sv": "24,5 / 19,50 €",
                        "en": "24,5 / 19,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3803967",
                        "sv": "https://www.lippu.fi/eventseries/name-3803967",
                        "en": "https://www.lippu.fi/eventseries/name-3803967"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 330630,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-12T13:15:04.847964Z",
                    "last_modified_time": "2025-03-12T13:15:04.847980Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766250.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-12T13:15:04.823230Z",
            "last_modified_time": "2025-05-08T11:13:56.008247Z",
            "date_published": null,
            "start_time": "2025-05-23T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FD4821706615EE361B3B1EF87AC5792F/Katja_Lund_n_Company_Flamencon_ilta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FD4821706615EE361B3B1EF87AC5792F/Katja_Lund_n_Company_Flamencons_kvall",
                "en": "http://www.kanneltalo.fi/en/events/event/FD4821706615EE361B3B1EF87AC5792F/Katja_Lund_n_Company_An_Evening_of_Flamenco"
            },
            "name": {
                "fi": "Katja Lundén Company: Flamencon ilta",
                "sv": "Katja Lundén Company: Flamencons kväll",
                "en": "Katja Lundén Company: An Evening of Flamenco"
            },
            "short_description": {
                "fi": "Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon kärkeen kuuluvan Katja Lundénin edistyneet oppilaat.",
                "sv": "På flamencons kväll tolkas den tonrika och själfulla flamencomusiken av Katja Lundéns avancerade elever, som hör till topparna i nordisk flamenco.",
                "en": "Advanced students of Katja Lundén, who is considered to be among the top Nordic flamenco artists, interpret nuanced and soulful flamenco at An Evening of Flamenco."
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon kärkeen kuuluvan Katja Lundénin edistyneet oppilaat.</p><p>Tanssia säestävät flamencomusiikin helmet kitaristi Joonas Widenius ja laulaja Taija Robalta.</p><p>Mukana illassa loistavat myös Blue Flamenco -koulun kehitysvammaiset oppilaat.</p><p>Kesto: 75 min</p>",
                "sv": "<p>På flamencons kväll tolkas den tonrika och själfulla flamencomusiken av Katja Lundéns avancerade elever, som hör till topparna i nordisk flamenco.</p><p>Dansen ackompanjeras av pärlorna inom flamenco, gitarristen Joonas Widenius och sångerskan Taija Robalta.</p><p>I kvällen medverkar även de lysande eleverna med funktionsnedsättning från skolan Blue Flamenco.</p>",
                "en": "<p>Advanced students of Katja Lundén, who is considered to be among the top Nordic flamenco artists, interpret nuanced and soulful flamenco at An Evening of Flamenco.</p><p>The dance will be accompanied by flamenco music icons Joonas Widenius on guitar and singer Taija Robalta.</p><p>The evening will also showcase the students with developmental disabilities from the Blue Flamenco school.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65693/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227fqm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490344,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-30T10:31:22.445359Z",
                    "last_modified_time": "2025-04-30T10:31:22.445379Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/46805a7e-ec6c-45a3-a626-a65128d838aa.jpg",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "Kuva Thomas Schmucker-Draehne Pixabaystä",
                    "alt_text": "Kuvassa on Playstation 4 konsolin ohjain.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-05T10:54:12.833102Z",
            "last_modified_time": "2025-05-08T10:46:35.184825Z",
            "date_published": null,
            "start_time": "2025-05-18T08:30:00Z",
            "end_time": "2025-05-18T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kirjastojen välisen FC 25-turnauksen Entressen karsinta"
            },
            "short_description": {
                "fi": "Kirjastojen välisen FC 25-turnauksen Entressen karsinta"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Espoon kirjastojen välisessä FC 25- turnauksessa otetaan selvää, ketkä ovat kirjastojen kovimmat pelaajat. </p><p>Turnauksessa on kaksi sarjaa, 7-11 -vuotiaat ja 12-20 -vuotiaat. </p><p><strong>Entressen kirjaston karsintapelit 7-11 -vuotiaille järjestetään nuortenososto Kibessä torstaina 18.5. klo 11:30-13. </strong></p><p>Ilmoittautuminen turnaukseen alkaa Kibessä 8.5. kello 16. </p><p>Varaudu todistamaan ikäsi kirjastokortilla. </p><p>Turnauksen finaalit pelataan Sellon kirjastossa 24.5. </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227fqm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66143",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "43,90-55,60 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3890907"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 714981,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T10:14:00.941560Z",
                    "last_modified_time": "2025-05-08T10:14:00.941576Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772392.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/714981/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T10:14:00.815704Z",
            "last_modified_time": "2025-05-08T10:14:01.073887Z",
            "date_published": null,
            "start_time": "2026-03-14T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7DC8B3F561C4081B5CE40B244B085E8E/Anna_Eriksson_MANA"
            },
            "name": {
                "fi": "Anna Eriksson: MANA"
            },
            "short_description": {
                "fi": "Anna Erikssonin MANA albumiin perustuva ainutlaatuinen konsertti. Luvassa myös huikeita tulkintoja kansainvälisistä klassikoista."
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Ihode Management Oy"
            },
            "description": {
                "fi": "<p>Anna Erikssonin MANA albumiin perustuva ainutlaatuinen konsertti. Luvassa myös huikeita tulkintoja kansainvälisistä klassikoista.</p><p>Tule kokemaan ainutlaatuinen ilta, ainutlaatuisen taiteilijan seurassa.</p><p>Kesto n. 1 h 20 min, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66143/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}