Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=241&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6595,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=242&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=240&weekday=6%2C7"
    },
    "data": [
        {
            "id": "espoo_le:aghoc4om7q",
            "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: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:agggfz67wm/?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/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omtu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om3q/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-11T09:49:02.188528Z",
            "last_modified_time": "2024-04-11T09:49:02.188558Z",
            "date_published": "2024-04-11T10:00:47.639000Z",
            "start_time": "2024-04-24T06:30:00Z",
            "end_time": "2024-05-29T08:00: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,
            "info_url": null,
            "provider": {
                "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys"
            },
            "description": {
                "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!"
            },
            "location_extra_info": {
                "fi": "Perhealue"
            },
            "name": {
                "fi": "MLL-perhekahvila"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63115",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://web.lippu.fi/palautus/"
                    },
                    "price": {
                        "fi": "28,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-28T10:14:03.998662Z",
                    "last_modified_time": "2024-02-28T10:14:03.998684Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745007.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-28T10:14:03.956582Z",
            "last_modified_time": "2024-04-11T09:12:54.213653Z",
            "date_published": null,
            "start_time": "2024-04-13T15: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2517B5833773F976BC7C7366F0E830B8/Visa_-_Karim_Gharbi"
            },
            "provider": {
                "fi": "Baltimex Events"
            },
            "description": {
                "fi": "<p><b>La 13.4.2024 Visa - Karim Gharbi -esitys Savoy-teatterissa on peruttu.</b></p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta sunnuntaihin 21.4.2024 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Baltimex Events sekä Savoy-teatteri ja Lippupiste pahoittelevat peruuntumisesta aiheutuvaa harmia.</p><p>****</p><p>Arabiankielinen stand up show</p><p>Ikäsuositus: 4+</p><p>Kesto n. 2 h, ei väliaikaa</p>"
            },
            "short_description": null,
            "location_extra_info": null,
            "name": {
                "fi": "Visa - Karim Gharbi – TAPAHTUMA ON PERUTTU!"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63115/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4onhe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or2y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:10:53.160249Z",
            "last_modified_time": "2024-04-11T05:47:31.371274Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T15: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan  kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle!  Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>",
                "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss ​​sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>",
                "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>"
            },
            "short_description": {
                "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.",
                "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.",
                "en": "An interesting and entertaining program about a more sustainable lifestyle. "
            },
            "location_extra_info": null,
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onhe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ooeu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4on5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooba/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-10T11:20:32.616600Z",
            "last_modified_time": "2024-04-10T11:20:32.616626Z",
            "date_published": null,
            "start_time": "2024-05-14T07:00:00Z",
            "end_time": "2024-06-18T07: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,
            "info_url": null,
            "provider": {
                "fi": "Espoon kaupungin liikuntapalvelut "
            },
            "description": {
                "fi": "<p>Tiistaisin Espoon liikuntapalveluiden ohjaamaa tuolijumppaa kirjastolla klo 10-10.45 (ei ennakkoilmoittautumista).</p><p>Tuolijumpan kesäkausi</p><p>tiistai 7.5. ei tuolijumppaa kirjastolla <br>(liikuntapalvelut pitävät ulkokuntosalikiertuetta)</p><p>14.5.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>21.5.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>28.5.2024 kirjaston lasten- ja nuortentila VOX <br>10.00-10.45 Tuolijumppa</p><p>4.6.2024 kirjaston lasten- ja nuortentila VOX<br>10.00-10.45 Tuolijumppa</p><p>11.6.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa</p><p>18.6.2024 kirjaston Stagella<br>10.00-10.45 Tuolijumppa<br></p>"
            },
            "short_description": {
                "fi": "Tiistaisin Espoon liikuntapalveluiden ohjaamaa tuolijumppaa kirjastolla klo 10-10.45 "
            },
            "location_extra_info": {
                "fi": "Stage tai VOX (lasten- ja nuortentila) "
            },
            "name": {
                "fi": "Tuolijumppa (kesäkausi)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooeu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oozu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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/yso:p1808/?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:p3917/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ooiq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oonm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oori/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oov4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4pwtq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4pwxm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:25:31.367836Z",
            "last_modified_time": "2024-04-10T10:42:02.488604Z",
            "date_published": null,
            "start_time": "2024-03-28T14:30:00Z",
            "end_time": "2024-05-09T14:30: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Flamenco kitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin.<br>Olisi hienoa, jos voisit tuoda oman kitarasi, mutta jos et ole vielä ostanut kitaraa, ei hätää! Kirjastossa on joitakin kitaroita, joita voi lainata Helmet-kirjastokortilla. Kurssi pidetään suomeksi ja englanniksi. </p><p>Ennakkoilmoittautuminen kurssille. Osallistuminen on maksutonta. </p><p>Ennakkoilmoittautuminen osoitteessa: https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Tapahtumat/Flamenco_kitarakurssi(282638)</p><p>21.3 Soittohuone klo 17.00-18.00.<br>28.3 Soittohuone klo 16.30-17.30.<br>4.4 Soittohuone klo 17.00-18.00.<br>11.4 Soittohuone klo 17.00-18.00. (PERUUTETTU 11.4)<br>18.4 Soittohuone klo 17.00-18.00.<br>25.4 Soittohuone klo 17.00-18.00.<br>2.5 Soittohuone klo 17.00-18.00.<br>9.5 Soittohuone klo 16.30-17.30.</p><p><br>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p>Session 3: Technique Building - Rasgueado Mastery<br> - In-depth study of Rasgueado technique<br> - Practice exercises to improve Rasgueado speed and control<br> - Applying Rasgueado to simple Soleá patterns</p><p>Session 4: Introduction to Compás (Rhythm) - Bulerías<br> - Exploring the Bulerías rhythm and compás<br> - Basic Bulerías chord progressions<br> - Simple Bulerías falsetas and improvisation</p><p>Session 5: Melodic Development - Alegrias<br> - Introduction to the Alegrias style<br> - Alegrias compás and chord progressions<br> - Learning a basic Alegrias falseta and variations</p><p>Session 6: Rhythmic Variety - Tangos<br> - Understanding Tangos rhythm and compás<br> - Basic Tangos chord progressions<br> - Tangos falsetas and rhythmic variations</p><p>Session 7: Technique Refinement - Golpe and Alzapúa<br> - In-depth study of Golpe and Alzapúa techniques<br> - Exercises to enhance Golpe and Alzapúa precision<br> - Applying Golpe and Alzapúa to various palos</p><p>Session 8: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#kitara #musiikki #kurssi #musiikkiryhmä</p>",
                "en": "<p>Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. It would be great if you could bring your own guitar, but if you haven't bought one yet, don't worry! There are some guitars in the Library that can be borrowed with your Helmet Library card. The course will be held in English and Finnish.</p><p>Pre-registration is required for a maximum of 10 people and the course is free from of charge.</p><p>Pre-registration:  https://www.helmet.fi/en-US/Events_and_tips/Events/Events/Flamenco_Guitar_Course(282645)</p><p>21.3 Music room at 5pm to 6pm.<br>28.3 Music room at 4.30pm to 5.30pm.<br>4.4 Music room at 5pm to 6pm.<br>11.4 Music room at 5pm to 6pm.<br>18.4 Music room at 5pm to 6pm.<br>25.4 Music room at 5pm to 6pm.<br>2.5 Music room at 5pm to 6pm.<br>9.5 Music room at 4.30pm to 5.30pm.</p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p>Session 3: Technique Building - Rasgueado Mastery<br> - In-depth study of Rasgueado technique<br> - Practice exercises to improve Rasgueado speed and control<br> - Applying Rasgueado to simple Soleá patterns</p><p>Session 4: Introduction to Compás (Rhythm) - Bulerías<br> - Exploring the Bulerías rhythm and compás<br> - Basic Bulerías chord progressions<br> - Simple Bulerías falsetas and improvisation</p><p>Session 5: Melodic Development - Alegrias<br> - Introduction to the Alegrias style<br> - Alegrias compás and chord progressions<br> - Learning a basic Alegrias falseta and variations</p><p>Session 6: Rhythmic Variety - Tangos<br> - Understanding Tangos rhythm and compás<br> - Basic Tangos chord progressions<br> - Tangos falsetas and rhythmic variations</p><p>Session 7: Technique Refinement - Golpe and Alzapúa<br> - In-depth study of Golpe and Alzapúa techniques<br> - Exercises to enhance Golpe and Alzapúa precision<br> - Applying Golpe and Alzapúa to various palos</p><p>Session 8: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#guitar #music #course #playing</p>"
            },
            "short_description": {
                "fi": "Flamencokitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin. Olisi hienoa, jos voisit tuoda oman kitarasi. Osallistuminen on maksutonta.",
                "en": "Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. The course will be held in English and Finnish. Course is free from of charge. "
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "name": {
                "fi": "Flamencokitaran alkeisjatkokurssi",
                "en": "Flamenco Guitar Course"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oozu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oo5e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or2y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:10:52.960867Z",
            "last_modified_time": "2024-04-10T09:08:01.614220Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-13T07:00:00Z",
            "end_time": "2024-04-13T15: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan  kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle!  Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>",
                "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss ​​sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>",
                "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>"
            },
            "short_description": {
                "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.",
                "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.",
                "en": "An interesting and entertaining program about a more sustainable lifestyle. "
            },
            "location_extra_info": null,
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oo5e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63222",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41713,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T08:13:10.190104Z",
                    "last_modified_time": "2024-03-28T08:13:10.190123Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746100.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41713/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T08:13:10.167559Z",
            "last_modified_time": "2024-04-09T12:13:51.758213Z",
            "date_published": null,
            "start_time": "2024-04-26T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7A8442D32A80C20F17CEC8C736A22F1C/CaisaKallio_esittaa_Tanssin_lukiodiplomit"
            },
            "provider": null,
            "description": {
                "fi": "<p>CaisaKallio esittää!</p><p>Tanssin lukiodiplomiin kuuluu kaksi osaa: taiteellinen osuus, jossa opiskelija luo 3-10 min kestävän oman teoksen tai tanssii toisen opiskelijan teoksessa, toinen osa on kirjallinen tutkielma.</p><p>CaisaKalliossa nähdään seuraavien opiskelijoiden taiteelliset osuudet: Emma Aalto, Meeti Assefa, Amelie Bangura, Inkeri Hiltunen, Saara Huuskonen, Enni Hyytiäinen, Lotta Ikäläinen, Ella Jaanu, Pinja Karjalainen, Senni Kuuramaa, Roope Lappalainen, Meeri Lehikoinen, Helmi Linnanen, Venla Majander, Aava Mikkilä, Bigga-Risten Pieski, Salla Piira, Helka Tanskanen, Anniina Taponen, Lotta Tuomikoski ja Krista Viitanen.</p><p>Kesto noin 2h<br>Ole ajoissa, paikkoja on rajoitetusti!</p><p><b>CaisaKallio</b><br>Tarvitsetko piristystä tähän harmaaseen arkeen? Oletko aina unelmoinut pääseväsi kokemaan maailmasi mullistavan taide-elämyksen?</p><p>Nyt on tilaisuutesi sukeltaa taiteen maailmaan nuorten taiteilijoiden johdattelemana. Kallion lukion taiteenopiskelijat herättävät kulttuurikeskus Caisan tilat henkiin mahtavilla esityksillään. Luvassa on musiikkia, puhetaidetta, lyhytelokuvia, sekä tanssia. Tätä et halua missata!</p><p>Kaikkiin CaisaKallio -viikon tapahtumiin on vapaa pääsy, lämpimästi tervetuloa mukaan!</p>"
            },
            "short_description": {
                "fi": "CaisaKallio esittää!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "CaisaKallio esittää: Tanssin lukiodiplomit – Caisan ja Kallion lukion yhteinen taidefestivaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63222/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oqc4",
            "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:p2787/?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,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ozya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oz3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o3fm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-03-13T13:26:00.981100Z",
            "last_modified_time": "2024-04-09T08:18:55.655571Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-02T13:00:00Z",
            "end_time": "2024-05-28T15:00: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan. </p>",
                "sv": "<p>Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda, såsom en symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Du kan också ta med dig ditt barn. </p>",
                "en": "<p>Welcome to Workshop for learning crochet, sewing, and to know about our library free offers like saumuri sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic. It is for free and you could join with your children.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin",
                "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda",
                "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oqc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oqnq",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/entressenkirjasto?locale=fi_FI",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/entresselibrary/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-08T11:35:06.654587Z",
            "last_modified_time": "2024-04-08T11:43:19.077646Z",
            "date_published": "2024-04-08T04:59:00Z",
            "start_time": "2024-04-08T05:00:00Z",
            "end_time": "2024-04-20T15: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Tiina Vitikaisen taidenäyttely \"Yksisiipinen\" Entressen kirjaston Galleria Betonissa 8.-20.4.2024.  “ Yksisiipinen” on oodi ihmisen mielelle. Oodi murheen alhoista huolimatta, nähdä toivoa, valoa, kauneutta ja sen puolikkaan parin siipiä – ja uskoa, että puolikkaillakin siivillä voi lentää. Tervetuloa!</p>",
                "sv": "<p>Välkommen att besöka Tiina Vitikainens utställning \"Yksisiipinen\" i Entressebiblioteket under tiden 8.-20.4.2024. Utställningen kan ses under bibliotekets öpettider. Välkommen!<br></p>",
                "en": "<p>Art exhibition \"One-winged\" by Tiina Vitikainen in Entresse Library's Galleria Betoni during 8.-20.4.2024. “One-winged” is an ode to the human mind that sees hope, light and beauty with half a pair of wings despite the depths of sorrow. – And to belive that even with halves of wings you still can fly. Welcome!</p>"
            },
            "short_description": {
                "fi": "Tiina Vitikaisen taidenäyttely \"Yksisiipinen\" Entressen kirjaston Galleria Betonissa 8.-20.4.2024.",
                "sv": "Tiina Vitikainens utställning \"Yksisiipinen\" i Entressebiblioteket under tiden 8.-20.4.2024.",
                "en": "Art exhibition \"One-winged\" by Tiina Vitikainen in Entresse Library's Galleria Betoni during 8.-20.4.2024."
            },
            "location_extra_info": {
                "fi": "Galleria Betoni",
                "sv": "Galleria Betoni",
                "en": "Galleria Betoni"
            },
            "name": {
                "fi": "Tiina Vitikainen: Yksisiipinen 8.-20.4.2024",
                "sv": "Tiina Vitikainen: Yksisiipinen 8.-20.4.2024",
                "en": "Tiina Vitikainen: One-winged 8.-20.4.2024"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oqnq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4orjm",
            "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: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,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oq4e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oq7y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4orc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4orgi/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-08T07:51:15.315059Z",
            "last_modified_time": "2024-04-08T07:51:15.315089Z",
            "date_published": null,
            "start_time": "2024-04-18T14:30:00Z",
            "end_time": "2024-05-30T16:30: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön? Vai kaipaatko vain hyvää seuraa tsemppaamaan ompelu- tai korjaustyön edistämisessä? Tervetuloa Ompeluklinikalle! <br>Kirjaston ompelukoneet, saumurit, peitetikkikone ja muut ompeluvälineet ovat osallistujien käytettävissä. Kirjaston työntekijä tarjoaa opastusta laitteiden käyttöön. Lisäksi autetaan ja neuvotaan toinen toisiamme!</p>",
                "sv": "<p>Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? Eller behöver du bara gott sällskap som uppmuntrar till att främja ett sy- eller reparationsarbete? Välkommen till Sömnadskliniken! </p><p>Bibliotekets symaskiner, overlockmaskiner, täcksömsmaskin och annan syutrustning står till deltagarnas förfogande. En av bibliotekets personal erbjuder hjälp med att använda maskinerna. Därtill hjälper och rådger man varandra!</p>",
                "en": "<p>Need peer support for your sewing problems or help with your sewing machine? Or do you just need some good company to cheer you on in your sewing or mending? Welcome to the Sewing Clinic! </p><p>Sewing machines, sewing machines, sewing machines, quilting machines and other sewing equipment will be available for participants. A library staff member will provide guidance on how to use the equipment. We will also help and advise each </p>"
            },
            "short_description": {
                "fi": "Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön?",
                "sv": "Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? ",
                "en": "Need peer support for your sewing problems or help with your sewing machine?"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "name": {
                "fi": "Ompeluklinikka",
                "sv": "Sömnadskliniken",
                "en": "Sewing clinic"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4orjm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4or2y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onhe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oo5e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4opbe/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:10:49.927746Z",
            "last_modified_time": "2024-04-08T06:23:51.970220Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-08T05:00:00Z",
            "end_time": "2024-04-14T15:00: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan  kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle!  Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>",
                "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss ​​sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>",
                "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>"
            },
            "short_description": {
                "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.",
                "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.",
                "en": "An interesting and entertaining program about a more sustainable lifestyle. "
            },
            "location_extra_info": null,
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or2y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61468",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3540916",
                        "sv": "https://www.lippu.fi/eventseries/name-3540916",
                        "en": "https://www.lippu.fi/eventseries/name-3540916"
                    },
                    "price": {
                        "fi": "43 €",
                        "sv": "43 €",
                        "en": "43 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6310,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T18:13:56.103739Z",
                    "last_modified_time": "2024-02-06T13:23:43.751358Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740377.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6310/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T18:13:56.056563Z",
            "last_modified_time": "2024-04-05T17:14:15.465002Z",
            "date_published": null,
            "start_time": "2024-05-26T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7ED025DD30DFB047491DD5CD5693430F/Sarah_Millican_-_Late_Bloomer",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7ED025DD30DFB047491DD5CD5693430F/Sarah_Millican_-_Late_Bloomer",
                "en": "http://www.savoyteatteri.fi/en/events/event/7ED025DD30DFB047491DD5CD5693430F/Sarah_Millican_-_Late_Bloomer"
            },
            "provider": {
                "fi": "A Comic Soul ja W&T Comedy",
                "sv": "A Comic Soul ja W&T Comedy",
                "en": "A Comic Soul ja W&T Comedy"
            },
            "description": {
                "fi": "<p>Loppuunmyyty! / Sold out!</p><p>Lapsena Sarah Millican oli arka ja hiljainen. Huomaamaton koulussa, ei paljon ystäviä, rinnatkin kasvoivat vasta 16-vuotiaana. Entä nyt? NYT hän on äänekäs, hänellä on paljon ystäviä eikä hän arastele mitään. Uudessa stand up -showssaan Late Bloomer Sarah käy läpi omaa muuttumistaan. Show sisältää myös paljon juttuja päivällisistä ja naisten puutarhoista . Tule mukaan Sarahin kolmannelle Euroopan-kiertueelle nauramaan hänelle, hänen kanssaan ja hänen mukanaan.</p><p>Verkkosivusto: sarahmillican.co.uk</p><p>Ikäraja: K-16</p><p>Esitys on englanninkielinen</p><p>Kesto noin 2,5 h, sisältää väliajan</p>",
                "sv": "<p>Slutsålt!</p><p>När Sarah Millican var liten gjorde hon inte en fluga förnär. Hon var blyg i skolan, hade knappt några kompisar och fick inte bröst tills hon var 16. Nu? Nu är hon högljudd, har goda vänner, schyssta rattar och flugsmällan i högsta hugg. I sin sprillans nya ståuppföreställning Late Bloomer undersöker hon hur det ena ledde till det andra. Plus en massa skämt om middagar och intimt buskage. Kom och se Sarahs tredje Europaturné. Skratta åt henne, med henne och bredvid henne.</p><p>Webbplats: sarahmillican.co.uk</p><p>Åldersgräns: K-16</p><p>Längd cirka 2,5 timmar inkl. paus</p>",
                "en": "<p>Sold out!</p><p>When Sarah Millican was a child, she wouldn’t say boo to a goose. Quiet at school, not many friends, no boobs til she was 16. Now? NOW she is loud, with good friends, a cracking rack and goose booing all over the shop. In Late Bloomer, Sarah’s brand-new stand-up show, she explores how one became the other. Plus, lots of stuff about dinners and lady gardens. Come along and join Sarah on her third European tour, laugh at her, with her, beside her.<br> <br>Website: sarahmillican.co.uk</p><p>Age limit: K-16</p><p>Duration about 2,5 h, including intermission</p>"
            },
            "short_description": {
                "fi": "Loppuunmyyty! / Sold out!",
                "sv": "Slutsålt!",
                "en": "Sold out!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sarah Millican - Late Bloomer – Chambers Touring Presents",
                "sv": "Sarah Millican - Late Bloomer – Chambers Touring Presents",
                "en": "Sarah Millican - Late Bloomer – Chambers Touring Presents"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61468/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61736",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6726,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-19T12:13:06.183064Z",
                    "last_modified_time": "2024-02-06T13:23:43.461510Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741053.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6726/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-19T12:13:06.171729Z",
            "last_modified_time": "2024-04-05T17:14:15.212680Z",
            "date_published": null,
            "start_time": "2024-05-25T11:00:00Z",
            "end_time": "2024-05-25T12: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2BC2B2DCC502DEAE3282B000BBE0A22C/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2BC2B2DCC502DEAE3282B000BBE0A22C/Barnens_DanceAbility_dansworkshops",
                "en": "http://www.annantalo.fi/en/events/event/2BC2B2DCC502DEAE3282B000BBE0A22C/Children_s_DanceAbility_workshops"
            },
            "provider": null,
            "description": {
                "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Muut inklusiiviset tanssitunnit: 3.2., 17.2., 2.3.,16.3., 30.3., 20.4., 11.5., 25.5. klo 14–15.</p><p>Ilmoittautuminen: daf@danceabilityfinland.com <br>max.18 osallistujaa</p>",
                "sv": "<p>DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.</p><p>Klasserna är öppna för alla barn och deras närstående vuxna oavsett funktionsnedsättning eller inte.</p><p>Lokalerna är tillgängliga.</p><p>bokningar: daf@danceabilityfinland.com<br>max. 18 dansare</p>",
                "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com<br>max. 18 dancers</p>"
            },
            "short_description": {
                "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.",
                "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Barnens DanceAbility dansworkshops",
                "en": "Children's DanceAbility workshops"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61736/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63275",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/roofaerialclub/",
                        "sv": "https://www.lippu.fi/artist/roofaerialclub/",
                        "en": "https://www.lippu.fi/artist/roofaerialclub/"
                    },
                    "price": {
                        "fi": "9,50 € / 13,50 €",
                        "sv": "9,50 € / 13,50 €",
                        "en": "9,50 € / 13,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82542,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T10:13:48.670311Z",
                    "last_modified_time": "2024-04-04T10:13:48.670323Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746398.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82542/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-04T10:13:48.657666Z",
            "last_modified_time": "2024-04-05T17:14:15.067005Z",
            "date_published": null,
            "start_time": "2024-05-24T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3925593CFFC8D278F2546D6062AAC577/Roof_Aerial_Club_Kevatnaytos_2024",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3925593CFFC8D278F2546D6062AAC577/Roof_Aerial_Club_Varuppvisning_2024",
                "en": "http://www.malmitalo.fi/en/events/event/3925593CFFC8D278F2546D6062AAC577/Roof_Aerial_Club_Spring_Show_2024"
            },
            "provider": null,
            "description": {
                "fi": "<p>Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.</p><p>Lisäksi lavalla nähdään esiintyvän ryhmän kokonaisuus Valoon, jossa ystävyyden voima yhdistää erilaiset persoonat ja kuljettaa yksinäisen valoon.</p><p>Roof Aerial Club on Malmilla toimiva tankotanssi-, ilma-akrobatia ja sirkusstudio, joka tarjoaa monipuolisesti tunteja lapsille ja aikuisille.</p><p>Ohjaus ja koreografiat: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi ja Maria Husu.</p><p>Esityksen kesto 60 min.</p>",
                "sv": "<p>Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.</p><p>På Roof Aerial Clubs våruppvisning får vi se akrobatik och luftakrobatikföreställningar av hobbygrupper för barn och vuxna samt den framträdande gruppens helhet Valoon (Mot ljuset), där vänskapens kraft sammanför olika personligheter och tar den som är ensam mot ljuset.</p><p>Regi och koreografi: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi och Maria Husu.</p><p>Föreställningens längd 60 min.</p>",
                "en": "<p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups.</p><p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups.  as well as the performance group’s show, Valo (“Light”), in which the power of friendship brings together various personalities, bringing a loner back into the light.</p><p>Roof Aerial Club is a Malmi-based pole dance, aerial acrobatics and circus studio that provides a variety of classes for children and adults.<br>Direction and choreography: Jerina Ferdani, Sanni Sarlin, Sky G. Ertas, Helmi Pirkola, Iina Salmi and Maria Husu.</p><p>Duration: 60 min.</p>"
            },
            "short_description": {
                "fi": "Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.",
                "sv": "Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.",
                "en": "Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Roof Aerial Club – Kevätnäytös 2024",
                "sv": "Roof Aerial Club – Våruppvisning 2024",
                "en": "Roof Aerial Club – Spring Show 2024"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63275/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63059",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/katjalundencompany-katja-lunden-company-flamencon-ilta-kanneltalo-18050557/",
                        "sv": "https://www.lippu.fi/event/katjalundencompany-katja-lunden-company-flamencon-ilta-kanneltalo-18050557/",
                        "en": "https://www.lippu.fi/event/katjalundencompany-katja-lunden-company-flamencon-ilta-kanneltalo-18050557/"
                    },
                    "price": {
                        "fi": "22 € / 17 € /14 €",
                        "sv": "22 € / 17 € /14 €",
                        "en": "22 € / 17 € /14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-27T14:13:51.842915Z",
                    "last_modified_time": "2024-02-27T14:13:51.842935Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739631.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-27T14:13:51.815175Z",
            "last_modified_time": "2024-04-05T17:14:15.021295Z",
            "date_published": null,
            "start_time": "2024-05-24T16: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/97159688CDC7D82BA300B98332350F60/Flamencon_ilta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/97159688CDC7D82BA300B98332350F60/Flamencokvall",
                "en": "http://www.kanneltalo.fi/en/events/event/97159688CDC7D82BA300B98332350F60/An_Evening_of_Flamenco"
            },
            "provider": null,
            "description": {
                "fi": "<p>Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon huippuihin kuuluvan Katja Lundénin edistyneet oppilaat.</p><p>Mukana illassa loistavat myös Blue Flamenco -koulun kehitysvammaiset oppilaat.</p><p>Kesto: 1 t 15 min</p><p>Liput: 22 € / 17 € /14 €</p><p>Alle 3-vuotiaat ilmaiseksi</p>",
                "sv": "<p>I flamencokvällen tolkas den tonrika och själfulla flamencomusiken av Katja Lundéns avancerade elever, som hör till topparna i nordisk flamenco.</p><p>I kvällen medverkar även de lysande eleverna med funktionsnedsättning från skolan Blue Flamenco.</p><p>Längd: 1 h 15 min.</p><p>Gratis inträde för under 3-åringar</p>",
                "en": "<p>Katja Lundén’s advanced students, considered to be among the best in Nordic flamenco, interpret multi-toned and soulful flamenco at An Evening of Flamenco.</p><p>The Blue Flamenco school’s disabled students will also get to shine at the event.</p><p>Duration: 1 hr. 15 mins.</p><p>Free for children under 3</p>"
            },
            "short_description": {
                "fi": "Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon huippuihin kuuluvan Katja Lundénin edistyneet oppilaat.",
                "sv": "I flamencokvällen tolkas den tonrika och själfulla flamencomusiken av Katja Lundéns avancerade elever, som hör till topparna i nordisk flamenco.",
                "en": "Katja Lundén’s advanced students, considered to be among the best in Nordic flamenco, interpret multi-toned and soulful flamenco at An Evening of Flamenco."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Flamencon ilta – Katja Lundén Company",
                "sv": "Flamencokväll – Katja Lundén Company",
                "en": "An Evening of Flamenco – Katja Lundén Company"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63059/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61206",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/",
                        "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/",
                        "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6192,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:20.148751Z",
                    "last_modified_time": "2024-02-06T13:23:43.280052Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739149.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6192/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:20.129056Z",
            "last_modified_time": "2024-04-05T17:14:14.969003Z",
            "date_published": null,
            "start_time": "2024-05-24T16: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AF671E7CFD181089B30E471105A2B891/Itakuskus_stand_up_-klubi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AF671E7CFD181089B30E471105A2B891/Itakuskus_stand_up-klubb",
                "en": "http://www.stoa.fi/en/events/event/AF671E7CFD181089B30E471105A2B891/Itakuskus_Stand-up_Club"
            },
            "provider": null,
            "description": {
                "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti <b>Fabe</b>. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: <b>Koomikko Mebe</b>! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä!  ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"</p><p>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.</p><p>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\"</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18 (salissa anniskelua)<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi</p>",
                "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p><p>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe<br> <br>Längd: ca. 2,5 t. <br>Åldersgräns: 18 (servering av alkohol i teatersalen)<br>Språk: finska, ibland engelska</p>",
                "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p><p>servering av alkohol i teatersalen</p><p>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe</p><p>Duration: approx. 2,5 h<br>Age rating: 18 (alcohol service in the theatre)<br>Language: Finnish, occasionally featuring English-speaking performers</p>"
            },
            "short_description": {
                "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"",
                "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”",
                "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Itäkuskus stand up -klubi",
                "sv": "Itäkuskus stand up-klubb",
                "en": "Itäkuskus Stand-up Club"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61206/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63274",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/roofaerialclub/",
                        "sv": "https://www.lippu.fi/artist/roofaerialclub/",
                        "en": "https://www.lippu.fi/artist/roofaerialclub/"
                    },
                    "price": {
                        "fi": "9,50 € / 13,50 €",
                        "sv": "9,50 € / 13,50 €",
                        "en": "9,50 € / 13,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82541,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T10:13:48.499828Z",
                    "last_modified_time": "2024-04-04T10:13:48.499843Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746397.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82541/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-04T10:13:48.476456Z",
            "last_modified_time": "2024-04-05T17:14:14.865044Z",
            "date_published": null,
            "start_time": "2024-05-24T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44F5BA69ED3D12B89A187947D00C2344/Roof_Aerial_Club_Kevatnaytos_2024",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/44F5BA69ED3D12B89A187947D00C2344/Roof_Aerial_Club_Varuppvisning_2024",
                "en": "http://www.malmitalo.fi/en/events/event/44F5BA69ED3D12B89A187947D00C2344/Roof_Aerial_Club_Spring_Show_2024"
            },
            "provider": null,
            "description": {
                "fi": "<p>Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.</p><p>Lisäksi lavalla nähdään esiintyvän ryhmän kokonaisuus Valoon, jossa ystävyyden voima yhdistää erilaiset persoonat ja kuljettaa yksinäisen valoon.</p><p>Roof Aerial Club on Malmilla toimiva tankotanssi-, ilma-akrobatia ja sirkusstudio, joka tarjoaa monipuolisesti tunteja lapsille ja aikuisille.</p><p>Ohjaus ja koreografiat: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi ja Maria Husu.</p><p>Esityksen kesto 60 min.</p>",
                "sv": "<p>Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.</p><p>På Roof Aerial Clubs våruppvisning får vi se akrobatik och luftakrobatikföreställningar av hobbygrupper för barn och vuxna samt den framträdande gruppens helhet Valoon (Mot ljuset), där vänskapens kraft sammanför olika personligheter och tar den som är ensam mot ljuset.</p><p>Regi och koreografi: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi och Maria Husu.</p><p>Föreställningens längd 60 min.</p>",
                "en": "<p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups.</p><p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups.  as well as the performance group’s show, Valo (“Light”), in which the power of friendship brings together various personalities, bringing a loner back into the light.</p><p>Roof Aerial Club is a Malmi-based pole dance, aerial acrobatics and circus studio that provides a variety of classes for children and adults.<br>Direction and choreography: Jerina Ferdani, Sanni Sarlin, Sky G. Ertas, Helmi Pirkola, Iina Salmi and Maria Husu.</p><p>Duration: 60 min.</p>"
            },
            "short_description": {
                "fi": "Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.",
                "sv": "Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.",
                "en": "Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Roof Aerial Club – Kevätnäytös 2024",
                "sv": "Roof Aerial Club – Våruppvisning 2024",
                "en": "Roof Aerial Club – Spring Show 2024"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63274/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61678",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@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": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3554510",
                        "sv": "https://www.lippu.fi/eventseries/3554510",
                        "en": "https://www.lippu.fi/eventseries/3554510"
                    },
                    "price": {
                        "fi": "33,50 €/48,50 € 2 pvä",
                        "sv": "33,50 €/48,50 € 2 pvä",
                        "en": "33,50 €/48,50 € 2 pvä"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-15T12:13:54.511167Z",
                    "last_modified_time": "2024-02-06T13:23:43.101459Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739294.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-13T17:13:41.435250Z",
            "last_modified_time": "2024-04-05T17:14:14.812749Z",
            "date_published": null,
            "start_time": "2024-05-24T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9A2605DCABA1E9E89940B3379644C489/Helsinki_Lit",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9A2605DCABA1E9E89940B3379644C489/Helsinki_Lit",
                "en": "http://www.savoyteatteri.fi/en/events/event/9A2605DCABA1E9E89940B3379644C489/Helsinki_Lit"
            },
            "provider": {
                "fi": "Helsingin kirjallisuusfestivaali ry",
                "sv": "Helsingin kirjallisuusfestivaali ry",
                "en": "Helsingin kirjallisuusfestivaali ry"
            },
            "description": {
                "fi": "<p>Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa</p><p>Helsinki Lit -käännöskirjallisuusfestivaali juhlii tulevana keväänä kymmenvuotista taivaltaan. 10-vuotisjuhlafestivaali järjestetään 24.-25. toukokuuta Savoy-teatterissa, josta koko Helsinki Lit -festivaalin menestyksekäs taival vuosikymmen sitten alkoi.</p><p>Helsinki Litissä on kymmenen vuoden aikana vieraillut kymmeniä kansainvälisiä kirjalijatähtiä Nobel-voittajista Booker- ja Pulitzer-palkittuihin. Tänä vuonna Helsinki Lit sai vieraakseen muun muassa juuri kirjallisuuden Nobel-palkinnon voittaneen Annie Ernaux’n ja festivaalin liput myytiin ennakosta loppuun jo maaliskuun 2023 aikana.</p><p>10-vuotisjuhlavuoden koko ohjelma julkaistaan helmikuussa 2024. Mukana tulee tuttuun tapaan jälleen olemaan nimekkäitä kansainvälisiä kirjailijavieraita, joiden kanssa keskustelevat valitut kotimaiset kirjailijat, toimittajat ja vaikuttajat. Tänä vuonna luvassa on myös erityistä juhlaohjelmaa ja tunnelmakoosteita vuosien varrelta. <br>Juhlafestivaalilla mukana olevat kustantajat ja festivaalin muut yhteistyökumppanit ja tukijat julkaistaan helmikuun ohjelmajulkistuksen yhteydessä.</p><p>Permanto paikat ovat K18. Parveke on sallittu kaiken ikäisille.</p>",
                "sv": "<p>Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern</p><p>Den internationella litteraturfestivalen Helsinki Lit ordnas nästa år för tionde gången. Festivalen äger rum den 24-25 maj 2024, på Savoyteatern i Helsingfors, där också den första festivalen hölls 2015.</p><p>Under ett decennium har festivalen fått besök av en mängd internationella stjärnor, däribland tidigare Nobelpristagare, Pulitzer-, Booker- och Finlandiavinnare. I våras gästades Helsinki Lit av den färska nobelpristagaren Annie Ernaux, och då var festivalen var utsåld redan i mars.</p><p>Programmet för nästa år publiceras i februari 2024. Även denna gång bjuder Helsinki Lit på flera stora internationella författarnamn, som intervjuas av inhemska författare och journalister. Tioårsjubileet kommer även att uppmärksammas i programmet.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>The Helsinki Lit translation literature festival celebrates its 10th anniversary at Savoy Theatre in May – tickets now on sale</p><p>The Helsinki Lit translation literature festival will celebrate its 10th anniversary next spring. The 10th anniversary festival will take place at Savoy Theatre on 24–25 May, where Helsinki Lit’s successful run began a decade ago. The tickets are now on sale.</p><p>Over the past ten years, Helsinki Lit has hosted dozens of international literary stars, from Nobel Prize winners to Booker and Pulitzer Prize winners. In 2023, Helsinki Lit hosted Annie Ernaux, who had just won the Nobel Prize for Literature, and tickets for the festival sold out in advance during March 2023.</p><p>The full programme for the 10th anniversary will be published in February 2024. As usual, the festival will host internationally renowned author guests, who will participate in discussions with selected Finnish authors, journalists and influencers. This year, there will also be a special festive programme and atmospheric compilations from over the years.</p><p>The publishers and other partners and supporters of the festival will be announced when the programme is published in February.</p><p>The stalls will only be allowed for over 18s. The balcony will be allowed for people of all ages.</p>"
            },
            "short_description": {
                "fi": "Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa",
                "sv": "Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsinki Lit – Käännöskirjallisuusfestivaali 10 vuotta",
                "sv": "Helsinki Lit – Litteraturfestivalen",
                "en": "Helsinki Lit"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61678/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61295",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/spring-break-festival-2024-3545312/#calendar-start=2024-05",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/spring-break-festival-2024-3545312/#calendar-start=2024-05",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/spring-break-festival-2024-3545312/#calendar-start=2024-05"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11018,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-23T14:14:02.029307Z",
                    "last_modified_time": "2024-02-23T14:14:02.029325Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739868.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11018/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-23T14:14:01.996789Z",
            "last_modified_time": "2024-04-05T17:14:13.280153Z",
            "date_published": null,
            "start_time": "2024-05-19T12: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2E596795E4F2B04059E43DCCE5800211/Spring_Break_Festival_2024_Daltonit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/2E596795E4F2B04059E43DCCE5800211/Spring_Break_Festival_2024_Broderna_Dalton_",
                "en": "http://www.stoa.fi/en/events/event/2E596795E4F2B04059E43DCCE5800211/Spring_Break_Festival_2024_Daltonit"
            },
            "provider": null,
            "description": {
                "fi": "<p>Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.</p><p>Daltonien edesottamuksista ei tunnetta, vauhtia ja vaarallisia tilanteita puutu, kun sirkustaiteilijat Onni Toivonen ja Kalle Lehto sekä Kinetic Orchestran perustajan Jarkko Mandelinin tanssivat lapset tulkitsevat sarjakuvistakin tuttujen antisankarien tarinaa.<br> <br>Koreografia: Jarkko Mandelin<br>Esiintyjät: Onni Toivonen, Kalle Lehto sekä Jarkko, Oiva, Urho, Lyyli ja Rauha Mandelin<br>Valosuunnittelu: Niila Rantala<br>Äänisuunnittelu ja sävellys: Josu Mämmi, Petri Kautto<br>Tuotanto: Kinetic Orchesta & JoJo - Oulun Tanssin Keskus</p><p>Kesto: n. 50 min.<br>Ikäsuositus: 5+ lapsista aikuisiin</p><p>Spring Break on tanssiryhmä Kinetic Orchestran järjestämä pienimuotoinen festivaali, jonka keskiössä on liike. Vuonna 2024 festivaali tuo Stoaan kolme erilaista liikkeen iltaa.</p><p>Ulkomainen vierailuteos Together To Get There on ihmisluonnon kuvaus Euroopan laajuisesti tunnetulta koreografi-/esiintyjäkaksikolta Akira Yoshidalta & Lali Ayguadélta. Kinetic Orchestran ja JoJon – Oulun Tanssin Keskuksen – yhteistuotanto Daltonit tarjoaa ohjelmaa koko perheelle. Festivaalilla nähdään myös Turku Youth Companyn ja Laajasalon opiston tanssilinjan yhteisilta.</p>",
                "sv": "<p>Bröderna Dalton är ett dansteateräventyr riktat till hela familjen som kombinerar dansens och cirkusens rörelsekulturer.</p><p>Bröderna Daltons äventyr lider ingen brist på känsla, fart och farliga situationer, när cirkuskonstnärerna Onni Toivonen och Kalle Lehto samt de dansande barnen till Kinetic Orchestras grundare Jarkko Mandelin, tolkar serietidningarnas välkända antihjältar.</p><p>Spring Break är en småskalig festival arrangerad av dansgruppen Kinetic Orchestra som koncentrerar sig på rörelse. År 2024 hämtar festivalen tre olika kvällar med rörelse till Stoa.</p><p>Together To Get There är en beskrivning av människans natur av koreograf-/artistduon Akira Yoshida & Lali Ayguadé, som är kända över hela Europa. Kinetic Orchestras och JoJos – Oulun Tanssin Keskus – samproduktion Daltonit (Bröderna Dalton) erbjuder program för hela familjen. Festivalen omfattar även en gemensam kväll för danslinjerna vid Turku Youth Company och Laajasalon opisto.</p>",
                "en": "<p>Daltonit is a dance theatre adventure mish-mashing dance and circus and aimed for the whole family.</p><p>Speed, danger and emotion are not lacking from the adventures of the Daltons, when circus artists Onni Toivonen and Kalle Lehto, joined by Kinetic Orchestra’s founder Jarkko Mandelin’s dancing children, interpret the story of these comic book anti-heroes.  <br> <br>Choreography Jarkko Mandelin<br>Performers Onni Toivonen, Kalle Lehto and Jarkko, Oiva, Urho, Lyyli and Rauha Mandelin<br>Lighting design Niila Rantala<br>Sound design Josu Mämmi<br>Production Kinetic Orchesta & JoJo - Oulu Dance Centre</p><p>Age recommendations: whole family, 5+</p><p>Spring Break is a small one-week festival that centers around movement.</p><p>The festival is organized by Kinetic Orchestra and held at Cultural Centre Stoa. In 2024, the festival will feature four performances on three evenings. <br> <br>Visiting artists Akira Yoshida& Lali Ayguadé bring a duet Together To Get There, offering a recount of human nature. Kinetic Orchestra & JoJo - Oulu Dance Centre’s co-production Daltonit offers performances for the whole family over the weekend. The festival also features a co-evening of two pieces from Youth Company and Laajasalo Folk High School’s dance programme.</p>"
            },
            "short_description": {
                "fi": "Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.",
                "sv": "Bröderna Dalton är ett dansteateräventyr riktat till hela familjen som kombinerar dansens och cirkusens rörelsekulturer.",
                "en": "Daltonit is a dance theatre adventure mish-mashing dance and circus and aimed for the whole family."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Spring Break Festival 2024: Daltonit – Kinetic Orchestra & JoJo - Oulun Tanssin Keskus",
                "sv": "Spring Break Festival 2024: Bröderna Dalton – Kinetic Orchestra & JoJo - Oulun Tanssin Keskus",
                "en": "Spring Break Festival 2024: Daltonit – Kinetic Orchestra & JoJo - Oulu Dance Centre"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61295/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61563",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/17988019",
                        "sv": "https://www.lippu.fi/event/17988019",
                        "en": "https://www.lippu.fi/event/17988019"
                    },
                    "price": {
                        "fi": "15-57 €, S&D 109 €",
                        "sv": "15-57 €, S&D 109 €",
                        "en": "15-57 €, S&D 109 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6750,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-20T14:14:26.076883Z",
                    "last_modified_time": "2024-02-06T13:23:42.088713Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741317.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T16:13:47.166557Z",
            "last_modified_time": "2024-04-05T17:14:13.128224Z",
            "date_published": null,
            "start_time": "2024-05-18T16: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0DAFC0144F2EFBB16F184B5B51D234C8/La_F_te_de_la_Bretagne_Startijenn",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0DAFC0144F2EFBB16F184B5B51D234C8/La_F_te_de_la_Bretagne_Startijenn",
                "en": "http://www.savoyteatteri.fi/en/events/event/0DAFC0144F2EFBB16F184B5B51D234C8/La_F_te_de_la_Bretagne_Startijenn"
            },
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "description": {
                "fi": "<p>Toukokuussa Savoyssa juhlistetaan Bretagnen kansallispäivää. Juhlan kunniaksi Ranskan sydänmailta saapuu esiintymään Startijenn-yhtye, joka yhdistää ikoniset bretagnelaiset instrumentit ja perinnemusiikin rock-, rap- ja trance-rytmeihin.</p><p>Ranskan luoteisosassa sijaitsevalla Bretagnen alueella on rikas kelttiperinteestä ammentava kulttuurinsa, joka näkyy ja kuuluu ennen kaikkea musiikissa ja tanssissa. Startijennin arsenaalissa on ikonisia bretagnelaisia soittimia sekä laulua ja räppiä, jotka kohtaavat höyryjyrän lailla eteenpäin jylläävät kitara- ja bassorytmit.</p><p>Startijenn, jonka bretoninkielinen nimi tarkoittaa suomeksi energiaa, luo musiikillaan voimakkaan, eloisan ja perinteitä kunnioittavan mutta silti modernin soundin. Yhtyeen ainutlaatuinen kokoonpano yhdistää perinteiset instrumentit (mm. bombard, binioù, irlantilainen säkkipilli, diatoninen harmonikka) nykyaikaiseen bändisoittoon.</p><p>Kelttiläisten tanssilattioiden kiistattomaksi mestariksi kutsuttu yhtye on luonut mainetta esiintymällä ympäri maailmaa jo yli 20 vuoden ajan, kivuten tuona aikana festivaalien päälavojen kiintotähdeksi. Toukokuussa Startijenn-veturi puksuttaa ensimmäistä kertaa Suomeen, luvassa on kiihkeä, tunnelmallinen ja varmasti energinen elämys.</p><p>Youenn Roue, puhaltimet, laulu<br>Lionel Le Page, säkkipillit, puhaltimet<br>Tangi Le Gall-Carré, harmonikat<br>Tangi Oillo, kitara<br>Julien Stévenin, basso</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p><b>Show & Dinner -lippu</b> sisältää pääsylipun, naulakkopalvelun sekä pöytiin tarjoillun liha- tai kasvismenun Savoy-teatterin ravintola Minne Gardenissa kaksi tuntia ennen esityksen alkua (klo 17.00).</p><p><b>Menu BRETAGNE:</b><br>Tuoretta parsaa, kylmäsavustettua taimenta ja maltalaista kastiketta L,G<br>Ankka confit, korvasieniperunaa ja tummaa karviaiskastiketta L,G<br>Omena tatin, ranskankermamoussea ja kirsikkaa L</p><p><b>Menu BRETAGNE GREEN:</b><br>Tuoretta parsaa, parmesanjuustoa,merileväkaviaaria ja maltalaista kastiketta L,G<br>Korvasienirisottoa, pikkelöityä retiisiä ja tummaa sienilientä L,G<br>Omena tatin, ranskankermamoussea ja kirsikkaa L</p><p>Menun hinta ei sisällä juomia <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä)</p><p>Erikoisruokavaliot ja tiedustelut: <br>Terhi Gröhn<br>Myyntipäällikkö <br>Ravintola Minne Garden & Lounge<br>+358 44 556 6192<br>terhi.grohn@sunbornevents.fi <br>https://minnehelsinki.fi/</p><p>***</p><p>Savoy WORLD -sarjalipulla koet kevään tähtihetket edullisemmin!</p><p>Osta nyt Savoy WORLD -sarjalippu hintaan 117 €.</p><p>Sarjalipun konsertit:<br>20.4. Roberto Fonseca – La Gran Diversion (Kuuba)<br>18.5. La Fête de la Bretagne: Startijenn (Ranska)<br>22.5. ADG7 (Etelä-Korea)</p><p>Katso Startijennin Backpaker-kappaleen live-versio Youtubesta:</p>",
                "sv": "<p>Denna vår firar vi på Savoy Bretagnes nationaldag. Bretagne i nordvästra Frankrike har en rik kultur med keltiska anor, som syns och hörs framför allt i musiken och dansen.</p><p>Bandet Startijenn från hjärtat av Bretagne är beväpnat med ikoniska bretonska instrument (inkl. olika slags säckpipor och blåsinstrument) samt låtar och rap på bretonska, som möter de likt ett ångtåg framångande gitarr- och basrytmerna. Gör dig redo att häpna!</p><p>Startijenn, vars bretonska namn betyder energi, hämtar kraften till sin kraftfulla, levande och traditionella, men ändå moderna sound, från bandets rötter. Musiken är en unik kombination av traditionella instrument (t.ex. bombard, binioù, irländsk säckpipa, diatoniskt dragspel) samt rock- och trancerytmer.</p><p>Bandet som utnämnts till den obestridde mästaren över Bretagnes dansgolv har turnerat i hela världen i över 20 år och under denna tid blivit fixstjärnan på festivalernas huvudscener. I maj kommer Startijenn-loket att för första gången tuffa till Finland för att bjuda oss på en intensiv, stämningsfull och garanterat energisk upplevelse.</p><p>Youenn Roue, blåsinstrument, sång<br>Lionel Le Page, säckpipor, blåsinstrument<br>Tangi Le Gall-Carré, dragspel<br>Tangi Oillo, gitarr<br>Julien Stévenin, bas</p><p>Längd cirka 2 h med paus</p><p>Parkett utskänkningsområde, åldersgräns 18 år. Läktare T, ingen utskänkning.</p><p>***<br>Med seriebiljetten Savoy WORLD upplever du vårens höjdpunkter förmånligare!</p><p>Köp seriebiljetten Savoy WORLD nu för 117 euro.</p><p>Konserterna som ingår:<br>20.4 Roberto Fonseca – La Gran Diversion (Kuba)<br>18.5 La Fête de la Bretagne: Startijenn (Frankrike)<br>22.5 ADG7 (Sydkorea)</p>",
                "en": "<p>This spring, Savoy celebrates the National Day of Brittany. This region in the north-west of France has a rich Celtic culture, which can be heard and felt above all in its music and dance.</p><p>Born in the heartlands of Brittany, the band Startijenn is armed with iconic Breton instruments (including various bagpipes and wind instruments) and Breton language vocals and rap, which roll forward like a steamroller against the rhythms of guitar and bass. Prepare to be dumbfounded!</p><p>Startijenn, whose Breton name means energy, draws on its roots to create a powerful, vibrant sound that is respectful of tradition yet contemporary. The band’s unique composition combines traditional instruments (bombard, binioù, Irish bagpipes, diatonic accordion, etc.) with rock and trance rhythms.</p><p>Called the undisputed masters of the dancefloors of Brittany, the band has made a name for itself by performing around the world for more than 20 years, becoming a fixed star of festival mainstages in that time. In May, the Startijenn locomotive will roll into Finland for the first time, for what promises to be a passionate, atmospheric and certainly energetic experience.</p><p>Youenn Roue, wind instruments, vocals<br>Lionel Le Page, bagpipes, wind instruments<br>Tangi Le Gall-Carré, accordions<br>Tangi Oillo, guitar<br>Julien Stévenin, bass</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p><p>***<br>The Savoy WORLD season ticket is the most affordable way to experience the highlights of the spring season!</p><p>Buy a Savoy WORLD season ticket now for €117.</p><p>Season ticket concerts:<br>20 April Roberto Fonseca – La Gran Diversion (Cuba)<br>18 May La Fête de la Bretagne: Startijenn (France)<br>22 May ADG7 (South Korea)</p>"
            },
            "short_description": {
                "fi": "Toukokuussa Savoyssa juhlistetaan Bretagnen kansallispäivää. Juhlan kunniaksi Ranskan sydänmailta saapuu esiintymään Startijenn-yhtye, joka yhdistää ikoniset bretagnelaiset instrumentit ja perinnemusiikin rock-, rap- ja trance-rytmeihin.",
                "sv": "Denna vår firar vi på Savoy Bretagnes nationaldag. Bretagne i nordvästra Frankrike har en rik kultur med keltiska anor, som syns och hörs framför allt i musiken och dansen.",
                "en": "This spring, Savoy celebrates the National Day of Brittany. This region in the north-west of France has a rich Celtic culture, which can be heard and felt above all in its music and dance."
            },
            "location_extra_info": null,
            "name": {
                "fi": "La Fête de la Bretagne: Startijenn – Savoy WORLD",
                "sv": "La Fête de la Bretagne: Startijenn – Savoy WORLD",
                "en": "La Fête de la Bretagne: Startijenn – Savoy WORLD"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61563/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}