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=176&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6722,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=177&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=175&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:65547",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 174861,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-28T15:14:04.998009Z",
                    "last_modified_time": "2025-01-28T15:14:04.998023Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_762036.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174861/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2025-01-28T15:14:04.970645Z",
            "last_modified_time": "2025-01-28T15:14:05.066385Z",
            "date_published": null,
            "start_time": "2025-05-24T07:00:00Z",
            "end_time": "2025-05-25T15: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,
            "short_description": {
                "fi": "Shumicon on cosplayhyn, animeen, mangaan, videopeleihin sekä japanilaiseen populaarikulttuuriin keskittyvä con-tapahtuma.",
                "sv": "Shumicon är en mässa med fokus på cosplay, anime, manga, videospel och japansk populärkultur.",
                "en": "Shumicon is a con event focusing on cosplay, anime, manga, video games and Japanese popular culture."
            },
            "provider": null,
            "description": {
                "fi": "<p>Shumicon on cosplayhyn, animeen, mangaan, videopeleihin sekä japanilaiseen populaarikulttuuriin keskittyvä con-tapahtuma.</p><p>Tapahtuma järjestetään kaksipäiväisenä Kulttuurikeskus Stoan, Itäkeskuksen kirjaston sekä työväenopiston tiloissa.</p><p>Luvassa mm. puhe- ja pajaohjelmaa, esityksiä, kirpputori, taidekuja, myyntipöytäsali, yhdistyspöytiä, pieniä kilpailuja ja haasteita sekä isommat cosplay-kilpailut.</p><p>Tapahtuman tarkempi sisältö tarkentuu myöhemmin, lisätietoja löydät nettisivuiltamme: https://shumicon.fi/</p><p>Tapahtuman järjestää Pääkaupunkiseudun Cosplay Ry, joka on voittoa tavoittelematon yhdistys.</p><p>Tapahtumaan haetaan vapaaehtoisia, ohjelmanpitäjiä sekä myyjiä vuoden 2024 lopulla sekä keväällä 2025. Julkaisemme lisätiedot ja haut tapahtuman nettisivustolla. Tapahtuman lipunmyynti aukeaa keväällä.</p>",
                "sv": "<p>Shumicon är en mässa med fokus på cosplay, anime, manga, videospel och japansk populärkultur.</p><p>Evenemanget äger rum i lokalerna på Kulturcentret Stoa, Östra centrums bibliotek och arbetarinstitutet. På programmet står bland annat föreläsningar och verkstäder, framträdanden, loppmarknad, konstmarknad, en sal med försäljningsbord, föreningsbord, små tävlingar och utmaningar samt större cosplaytävlingar.</p><p>Innehållet för evenemanget kommer att preciseras senare. Mer information hittar du på vår webbplats: https://shumicon.fi/</p><p>Evenemanget arrangeras av Pääkaupunkiseudun Cosplay Ry, som är en ideell förening.<br>För evenemanget behövs frivilliga, programhållare och försäljare, och ansökningen sker i slutet av 2024 och under våren 2025. Vi publicerar mer information och ansökningarna på evenemangets webbplats. Biljetter till evenemanget släpps under våren.</p>",
                "en": "<p>Shumicon is a con event focusing on cosplay, anime, manga, video games and Japanese popular culture.</p><p>The event will be held in the premises of Stoa Cultural Centre, Itäkeskus Library and the adult education centre. Among other things, there will be talk shows and workshops, performances, a flea market, an art alley, sales counters, association tables, small competitions and challenges as well as bigger cosplay competitions.</p><p>The content of the event will be specified later. More information is available on our website: https://shumicon.fi/</p><p>The event is organised by Pääkaupunkiseudun Cosplay Ry, a non-profit association.</p><p>Volunteers, programme organisers and vendors will be invited to the event at the end of 2024 and in the spring of 2025. We will publish additional information and the applications on the event website. Ticket sales for the event will open in the spring.</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8EC8588D2B8B0039E6F3C90C1B31B1E4/Shumicon",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8EC8588D2B8B0039E6F3C90C1B31B1E4/Shumicon",
                "en": "http://www.stoa.fi/en/events/event/8EC8588D2B8B0039E6F3C90C1B31B1E4/Shumicon"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Shumicon",
                "sv": "Shumicon",
                "en": "Shumicon"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65547/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65542",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 174301,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-28T09:14:28.499837Z",
                    "last_modified_time": "2025-01-28T09:14:28.499853Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765013.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-28T09:14:28.462327Z",
            "last_modified_time": "2025-01-28T09:14:28.589999Z",
            "date_published": null,
            "start_time": "2025-02-01T16:00:00Z",
            "end_time": "2025-02-01T21: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,
            "short_description": {
                "fi": "Hyvään päätyyn -taidenäyttely ja tapahtumasarja saa huipennuksensa lauantaina 1. helmikuuta, kun Hyvään Päätyyn levittäytyy koko Vuotaloon."
            },
            "provider": null,
            "description": {
                "fi": "<p>Hyvään päätyyn -taidenäyttely ja tapahtumasarja saa huipennuksensa lauantaina 1. helmikuuta, kun Hyvään Päätyyn levittäytyy koko Vuotaloon.</p><p>Tapahtuma tarjoaa kävijöilleen audiovisuaalisen kokemuksen, jota ei kannata jättää välistä!</p><p>Tapahtuman avaa Vuosalissa näytettävä Perttu Häkkisen dokumentti Shadowland, jonka jälkeen ohjelma jatkuu kahdessa eri kerroksessa klo 20:00 alkaen.</p><p>Musiikkia kuullaan laidasta laitaan, kellarin OG/AG-tila tarjoilee kaikkea noisesta improvisoituun suomisaundiin, yläkerran Vuosalin ollessa enemmän tanssipainotteinen. Esiintyjinä muun muassa DJ-Sofa, Kaukolampi, Prank Kafka & Motherfuckers.</p><p>Vuotalo on poikkeuksellisesti auki klo 23:00 asti. Tapahtuma on ilmainen.</p><p>17.1 alkanut Hyvään päätyyn -taidenäyttely Vuotalon aulassa ja galleriassa on avoinna yleisölle myös tapahtuman jälkeen lauantaihin 8.2. asti.</p><p>Tarkempi ohjelma aikatauluineen: https://www.hyvaanpaatyyn.com/</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/24C86A04DE6683FF8FAFB25D8A35B773/Hyvan_Paatyyn_-taidenayttelyn_paatapahtuma_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/24C86A04DE6683FF8FAFB25D8A35B773/Hyvan_Paatyyn_-taidenayttelyn_paatapahtuma_",
                "en": "http://www.vuotalo.fi/en/events/event/24C86A04DE6683FF8FAFB25D8A35B773/Hyvan_Paatyyn_-taidenayttelyn_paatapahtuma_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Hyvän Päätyyn -taidenäyttelyn päätapahtuma – Perttu Häkkisen Shadowland-dokkari, DJ-Sofa, Kaukolampi, Prank Kafka & Motherfuckers",
                "sv": "Hyvän Päätyyn -taidenäyttelyn päätapahtuma",
                "en": "Hyvän Päätyyn -taidenäyttelyn päätapahtuma"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65542/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65298",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153471,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-17T09:14:08.375593Z",
                    "last_modified_time": "2024-12-17T09:14:08.375610Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764395.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153471/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-17T09:14:08.339795Z",
            "last_modified_time": "2025-01-28T09:14:23.791279Z",
            "date_published": null,
            "start_time": "2025-01-17",
            "end_time": "2025-02-08",
            "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,
            "short_description": {
                "fi": "Kuva-, valo- ja äänitaidetta yhdistävä näyttely ja tapahtumakokonaisuus valaisevat Vuotalon!",
                "sv": "Utställningen och evenemangshelheten som kombinerar bild-, ljus- och ljudkonst lyser upp Nordhuset!",
                "en": "An exhibition and event ensemble combining visual, light and sound art illuminate Vuotalo!"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kuva-, valo- ja äänitaidetta yhdistävä näyttely ja tapahtumakokonaisuus valaisevat Vuotalon!</p><p>Hyvään Päätyyn tuo Vuotalon galleriaan, aulaan ja Vuosaliin näytille itähelsinkiläistä osaamista parhaimmillaan.</p><p><b>Tapahtumapäivät:</b><br>pe 17.1.2025 klo 17–20 DJ-keikka aulassa<br>pe 24.1.2025 klo 18–20 DJ-keikka aulassa<br>la 1.2.2025 klo 18 Shadowland-elokuva ja tapahtuma Vuosalissa ja Pikkusalissa</p><p>Hyvään Päätyyn on kuvataiteen, mediataiteen, klubi-estetiikan sekä elektronisen ja vaihtoehtomusiikin yhdistävä näyttely-tapahtuma-hybridi Vuotalossa 17.1-8.2.2025.</p><p>Avajaiset 17.1.2025 17.00-20.00<br>Dj Mutual<br>Lord of Keke<br>Näyttelyyn osallistuvat taiteilijat:<br>acidULTRA Neon Corps<br>Hyvään Päätyyn Työryhmä<br>Jan S. Kerman<br>Jani Hietanen<br>Jatta Nemeth, Matias Peljo, Sebastian Nemeth<br>Kajsa Granström<br>Konsta Ojala<br>Mikko Hallikainen<br>Niina Mantsinen<br>Ramina Habibollah<br>Santiyago Delgado<br>Tristan Myllyviita<br>Ville Kiiski</p><p>Lisätietoja:<br>https://hyvaanpaatyyn.com/<br>https://www.instagram.com/hyvaanpaatyyn</p><p>Hyvään Päätyyn työryhmä:<br>Aria Tipagon<br>Jani Hietanen<br>Juuso Juutilainen<br>Lari Suominen<br>Osku Leinonen<br>Ville Kiiski</p>",
                "sv": "<p>Utställningen och evenemangshelheten som kombinerar bild-, ljus- och ljudkonst lyser upp Nordhuset!</p><p>Hyvään Päätyyn presenterar den bästa kompetensen från östra Helsingfors.</p><p><b>Evenemangsdatum:</b><br>fre 17.1.2025 kl. 18–20 DJ-spelning i lobbyn<br>fre 24.1.2025 kl. 18–20 DJ-spelning i lobbyn<br>lör 1.2.2025 kl. 18 spelning och evenemang</p>",
                "en": "<p>An exhibition and event ensemble combining visual, light and sound art illuminate Vuotalo!</p><p>Hyvään Päätyyn brings out the best East Helsinki skills.</p><p><b>Event Dates:</b><br>Fri 17 January 2025 at 18:00–20:00 DJ gig in the lobby<br>Fri 24 January 2025 at 18:00–20:00 DJ gig in the lobby<br>Sat 1 February 2025 at 18:00 gig and event</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/001795129551079AE63A7BD2B442F2F6/Hyvaan_paatyyn",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/001795129551079AE63A7BD2B442F2F6/Hyvaan_Paatyyn_",
                "en": "http://www.vuotalo.fi/en/events/event/001795129551079AE63A7BD2B442F2F6/Hyvaan_paatyyn"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Hyvään päätyyn",
                "sv": "Hyvään Päätyyn",
                "en": "Hyvään päätyyn"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65298/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65275",
            "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:33/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T15:14:25.340254Z",
                    "last_modified_time": "2024-12-12T15:14:25.340267Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759688.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153430/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T15:14:25.314253Z",
            "last_modified_time": "2025-01-27T10:14:45.179392Z",
            "date_published": null,
            "start_time": "2025-02-09T13: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,
            "short_description": {
                "fi": "MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.",
                "sv": "MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.",
                "en": "MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned."
            },
            "provider": null,
            "description": {
                "fi": "<p>MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.</p><p>Huulet painautuvat mutrulle, kun Anniinan posket liiskautuvat toisiaan vasten Kamillan reisilihasten väliin. Kamillan jalkapohjat ovat juurtuneet maahan ja hänen kylkiluunsa painautuvat sisäänpäin, kun Anniina puristaa käsiään niiden ympärille. Iitun hikinen tossu astuu Kamillan pään päälle sotkien juuri tehdyn kampauksen. Paine kasvaa Iitun pään sisällä, kun hän asettaa hartiansa Anniina jalkaterien päälle ja nostaa omat jalkansa ilmaan. Hameen helma nousee Iitun korvien ohi. Kamilla hymyilee.</p><p>MUIAT on rehellinen nykysirkusteos, jossa naiset saavat olla juuri sellaisia kuin he ovat, eikä heidän ominaisuuksiaan kyseenalaisteta. Teoksessa esiintyjät Kamilla Nisso, Iitu Kivimäki ja Anniina Peltovako tutkailevat naiseutta omien kokemustensa kautta hyödyntäen sirkusteniikan mahdollisuuksia ja fyysisen ilmaisun keinoja. Ihmispyramideja, nuorallatanssia ja akrobatiaa sisältävä esitys kyseenalaistaa vanhanaikaisia sukupuolirooleja ja pyrkii avartamaan katsojien mieltä, huumoria unohtamatta.</p><p>Esiintyjät/konsepti: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Pukusuunnittelu: Kitte Klemettilä  <br>Sävellys/musiikit: Joona Kukkola  <br>Valosuunnittelu: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Kieli: sanaton <br>Ikäsuositus: + 6-v <br>Tapahtuman kesto: 40 min, ei väliaikaa</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19738649/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.</p><p>Anniinas läppar pressas ihop när hennes kinder trycks samman mellan Kamillas lårmuskler. Kamillas fotsulor är rotade i marken och hennes revben pressas inåt när Anniina trycker sina händer runt dem. Iitu trampar på Kamillas huvud med sin svettiga toffel och förstör hennes nylagade frisyr. Trycket ökar i Iitu's huvud när hon lägger sina axlar på Anniina's fötter och lyfter sina egna ben upp i luften. Kjolens fåll lyfts upp över Iitus öron. Kamilla ler.</p><p>MUIAT är en ärlig modern cirkusföreställning där kvinnor får vara precis som de är och deras egenskaper inte ifrågasätts. Artisterna Kamilla Nisso, Iitu Kivimäki och Anniina Peltovako utforskar kvinnlighet genom sina egna erfarenheter, med hjälp av cirkusteknikens möjligheter och fysiska uttryck. Med mänskliga pyramider, lindans och akrobatik ifrågasätter föreställningen gammalmodiga könsroller och syftar till att öppna publikens sinnen, utan att glömma bort humorn.</p><p>Inget språk</p><p>Artister/koncept: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Kostymdesign: Kitte Klemettilä  <br>Komposition/musik: Joona Kukkola  <br>Ljusdesign: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Åldersrekommendation: 6+ <br>Evenemangets längd: 40 min, ingen paus</p>",
                "en": "<p>MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned.</p><p>Finnish circus artists Iitu Kivimäki, Kamilla Nisso and Anniina Peltovako explore feminity and their experience of living as female through their own experiences, using circus techniques as a way of expressing. The show includes human pyramids, tightwire dancing and acrobatics. It aims to question old fashioned gender roles and tries to broaden the minds of the public, without forgetting humour.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9A51DE23A5AA70DD8A804FDCB130E631/MUIAT_-_nykysirkusesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9A51DE23A5AA70DD8A804FDCB130E631/MUIAT_-_nykysirkusesitys",
                "en": "http://www.caisa.fi/en/events/event/9A51DE23A5AA70DD8A804FDCB130E631/MUIAT_-_nykysirkusesitys"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "MUIAT - nykysirkusesitys – Akropatit",
                "sv": "MUIAT - nykysirkusesitys – Akropatit",
                "en": "MUIAT - nykysirkusesitys – Akropatit"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65275/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65273",
            "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:33/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/muiat-nykysirkusesitys-3803710/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153428,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T15:14:24.900077Z",
                    "last_modified_time": "2024-12-12T15:14:24.900090Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759686.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T15:14:24.871991Z",
            "last_modified_time": "2025-01-27T10:14:44.464105Z",
            "date_published": null,
            "start_time": "2025-02-07T17: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,
            "short_description": {
                "fi": "MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.",
                "sv": "MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.",
                "en": "MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned."
            },
            "provider": null,
            "description": {
                "fi": "<p>MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.</p><p>Huulet painautuvat mutrulle, kun Anniinan posket liiskautuvat toisiaan vasten Kamillan reisilihasten väliin. Kamillan jalkapohjat ovat juurtuneet maahan ja hänen kylkiluunsa painautuvat sisäänpäin, kun Anniina puristaa käsiään niiden ympärille. Iitun hikinen tossu astuu Kamillan pään päälle sotkien juuri tehdyn kampauksen. Paine kasvaa Iitun pään sisällä, kun hän asettaa hartiansa Anniina jalkaterien päälle ja nostaa omat jalkansa ilmaan. Hameen helma nousee Iitun korvien ohi. Kamilla hymyilee.</p><p>MUIAT on rehellinen nykysirkusteos, jossa naiset saavat olla juuri sellaisia kuin he ovat, eikä heidän ominaisuuksiaan kyseenalaisteta. Teoksessa esiintyjät Kamilla Nisso, Iitu Kivimäki ja Anniina Peltovako tutkailevat naiseutta omien kokemustensa kautta hyödyntäen sirkusteniikan mahdollisuuksia ja fyysisen ilmaisun keinoja. Ihmispyramideja, nuorallatanssia ja akrobatiaa sisältävä esitys kyseenalaistaa vanhanaikaisia sukupuolirooleja ja pyrkii avartamaan katsojien mieltä, huumoria unohtamatta.</p><p>Esiintyjät/konsepti: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Pukusuunnittelu: Kitte Klemettilä  <br>Sävellys/musiikit: Joona Kukkola  <br>Valosuunnittelu: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Kieli: sanaton <br>Ikäsuositus: + 6-v <br>Tapahtuman kesto: 40 min, ei väliaikaa</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19738647/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.</p><p>Anniinas läppar pressas ihop när hennes kinder trycks samman mellan Kamillas lårmuskler. Kamillas fotsulor är rotade i marken och hennes revben pressas inåt när Anniina trycker sina händer runt dem. Iitu trampar på Kamillas huvud med sin svettiga toffel och förstör hennes nylagade frisyr. Trycket ökar i Iitu's huvud när hon lägger sina axlar på Anniina's fötter och lyfter sina egna ben upp i luften. Kjolens fåll lyfts upp över Iitus öron. Kamilla ler.</p><p>MUIAT är en ärlig modern cirkusföreställning där kvinnor får vara precis som de är och deras egenskaper inte ifrågasätts. Artisterna Kamilla Nisso, Iitu Kivimäki och Anniina Peltovako utforskar kvinnlighet genom sina egna erfarenheter, med hjälp av cirkusteknikens möjligheter och fysiska uttryck. Med mänskliga pyramider, lindans och akrobatik ifrågasätter föreställningen gammalmodiga könsroller och syftar till att öppna publikens sinnen, utan att glömma bort humorn.</p><p>Inget språk</p><p>Artister/koncept: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Kostymdesign: Kitte Klemettilä  <br>Komposition/musik: Joona Kukkola  <br>Ljusdesign: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Åldersrekommendation: 6+ <br>Evenemangets längd: 40 min, ingen paus</p>",
                "en": "<p>MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned.</p><p>Finnish circus artists Iitu Kivimäki, Kamilla Nisso and Anniina Peltovako explore feminity and their experience of living as female through their own experiences, using circus techniques as a way of expressing. The show includes human pyramids, tightwire dancing and acrobatics. It aims to question old fashioned gender roles and tries to broaden the minds of the public, without forgetting humour.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8E71C5DD728F8ACADA22A8A77138033D/MUIAT_-_nykysirkusesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8E71C5DD728F8ACADA22A8A77138033D/MUIAT_-_nykysirkusesitys",
                "en": "http://www.caisa.fi/en/events/event/8E71C5DD728F8ACADA22A8A77138033D/MUIAT_-_nykysirkusesitys"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "MUIAT - nykysirkusesitys – Akropatit",
                "sv": "MUIAT - nykysirkusesitys – Akropatit",
                "en": "MUIAT - nykysirkusesitys – Akropatit"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65273/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64778",
            "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:31/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/alamalmi/a-la-malmi-dj-kridlokk-ex-tuuttiz-3760226/",
                        "sv": "https://www.lippu.fi/artist/alamalmi/a-la-malmi-dj-kridlokk-ex-tuuttiz-3760226/",
                        "en": "https://www.lippu.fi/artist/alamalmi/a-la-malmi-dj-kridlokk-ex-tuuttiz-3760226/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-29T12:16:15.039185Z",
                    "last_modified_time": "2024-10-29T12:16:15.039203Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760151.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-29T12:16:15.012531Z",
            "last_modified_time": "2025-01-27T10:14:44.368509Z",
            "date_published": null,
            "start_time": "2025-02-07T17: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,
            "short_description": {
                "fi": "A la Malmin kevätkauden 2025 ensimmäisessä illassa esiintyvät huippuarvioita niittänyt suomiräp-artisti DJ Kridlokk sekä pitkän linjan räppäri Ex Tuuttiz!",
                "sv": "På den första kvällen för A la Malmis vårsäsong 2025 framträder suomirap-artisten DJ Kridlokk som har fått topprecensioner och den erfarna rapparen Ex Tuuttiz!",
                "en": "The first night of A la Malmi’s spring 2025 season will feature top-rated Finnish rap artist DJ Kridlokk and longtime rapper Ex Tuuttiz!"
            },
            "provider": null,
            "description": {
                "fi": "<p>A la Malmin kevätkauden 2025 ensimmäisessä illassa esiintyvät huippuarvioita niittänyt suomiräp-artisti DJ Kridlokk sekä pitkän linjan räppäri Ex Tuuttiz!</p><p>Korkeaa arvostusta kerryttänyt artisti ja tuottaja <b>DJ Kridlokk</b> eli Kristo Laanti julkaisi huhtikuussa 2024 odotetun uuden albuminsa Hai. Kridlokkin albumia on laajalti hehkutettu uudeksi suomiräpin merkkiteokseksi. <br> <br>“Mietin sitä liki 400-vuotiasta holkeria, joka oli muutamia vuosia sitten havaittu Grönlannin edustalla. Siinä on otus, joka uiskentelee puoli vuosisataa jossain jäävedessä, silmät pikimustina ja sokeina, eläen ohi kaikista muista selkärankaisista, varastoiden oman virtsansa elimistöönsä, jonka johdosta sen liha on myrkyllistä. Onko holkeri voittaja vai häviäjä, mahdotonta sanoa. Varmaa on, että sille ei voi vittuilla.” <br> <br>“Albumin jokainen ääni on harkittu ja jokaisella räpätyllä rivillä on merkitys. Biittien muodostama mosaiikkimainen tekstuuri on rikkaudessaan jotain sellaista, mitä suomiräpissä ei ole totuttu kuulemaan.” 5/5 (Helsingin Sanomat / Mikko Aaltonen)<br> <br>“Dj Kridlokkilla on koko nykyisen suomalaisen populäärimusiikin omaperäisimpiä ääniä, ja Hailla se on on parhaassa terässään. Hitto miten tätä onkin ollut ikävä.” 5/5 (Soundi / Niko Peltonen)</p><p>Kulttimainetta nauttivan artistin kaikki kolmea albumia ovat olleet arvostelumenestyksiä ja mm. vuonna 2014 ilmestynyttä Mutsi-pitkäsoittoa pidetään yhtenä suomiräpin mestariteoksista. <br> <br>Jäljittelemättömästä tyylistään ja vertaansa hakevasta flowsta tunnettu Ex Tuuttiz (ent. Tuuttimörkö) on pitkän linjan suomiräppäri. Nykyään oman OFN-levynmerkilleen levyttävä nuori og on julkaissut urallaan kolme albumia, joista vuonna 2016 ilmestynyt Kromihammas nousi myös Suomen albumilistan ykköseksi. Ex Tuuttixen neljäs pitkäsoitto XT ilmestyi syyskuussa 2023. Albumilta saatiin esimakua singlejen Kaviokeissi, Omistautunu ja Ei tarvii mennä kotiin (ft. Kriso) muodossa. <br> <br><b>A la Malmi</b> on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät. <br> <br>Keikka on ikärajaton!</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-19738765/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>På den första kvällen för A la Malmis vårsäsong 2025 framträder suomirap-artisten DJ Kridlokk som har fått topprecensioner och den erfarna rapparen Ex Tuuttiz!</p><p>Artisten och producenten DJ Kridlokk, det vill säga Kristo Laanti, har fått mycket uppskattning och släppte sitt efterlängtade nya album Hai i april 2024. Kridlokks album har hyllats brett som ett nytt mästerverk inom suomirap. <br> <br>“Jag funderade på den där nästan 400-åriga håkäringen som hade observerats utanför Grönland för några år sedan. Där har du en best som simmar omkring i isvattnet i ett halvsekel med becksvarta och blinda ögon, överlever alla andra ryggradsdjur, och lagrar sitt eget urin i kroppen, vilket gör att dess kött är giftigt. Det är omöjligt att säga huruvida håkäringen är en vinnare eller en förlorare. Säkert är att man inte kan jävlas med den.” <br> <br>“Varje ljud på albumet är övervägt, och varje rappade rad har en betydelse. Rikedomen hos beatarnas mosaikaktiga textur är något som vi inte har vant oss vid att höra inom suomirap.” 5/5 (Helsingin Sanomat / Mikko Aaltonen) <br>“DJ Kridlock har en av de mest originella rösterna i hela den samtida finländska populärmusiken, och på Hai är den på topp. Fanken så jag har saknat det här.” 5/5 (Soundi / Niko Peltonen) <br>Artisten som åtnjuter kultrykte har haft kritikerframgång med alla sina tre album, och bland annat anses LP-skivan Mutsi som släpptes år 2014 som ett av suomirappens mästerverk. <br> <br>Ex Tuuttiz (f.d. Tuuttimörkö) är känd för sin oefterhärmliga stil och unika flow, och en veteran inom suomirap. Den unga og:n som i dag spelar in på sitt eget OFN-skivmärke har släppt tre album under sin karriär, varav Kromihammas som släpptes år 2016 även blev etta på Finlands albumlista. Ex Tuuttiz fjärde LP-skiva XT släpptes i september 2023. Vi fick försmak på albumet i form av singlarna Kaviokeissi, Omistautunu och Ei tarvii mennä kotiin (ft. Kriso). <br> <br>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft. Den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare erbjuder varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass. A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik. <br> <br>Spelningen har ingen åldersgräns.</p>",
                "en": "<p>The first night of A la Malmi’s spring 2025 season will feature top-rated Finnish rap artist DJ Kridlokk and longtime rapper Ex Tuuttiz!</p><p>Highly acclaimed artist and producer DJ Kridlokk, a.k.a. Kristo Laanti, released his highly anticipated new album Hai in April 2024. Kridlokk’s album has been widely hailed as a new landmark in Finnish rap. <br> <br>“I was thinking about the almost 400-year-old Greenland shark that was spotted off Greenland a few years ago. Here is a creature that swims around in some icy water for half a century, its eyes pitch-black and blind, living beyond all other vertebrates, storing its own urine in its body, which makes its flesh poisonous. It’s impossible to say whether the Greenland shark is a winner or a loser. The one sure thing is that you can’t fuck with it.”<br> <br>“Every note on the album has been thought out, and every line rapped has meaning.  The mosaic-like texture of the beats has a richness that you’re not used to hearing in Finnish rap.” 5/5 (Helsingin Sanomat / Mikko Aaltonen) <br>“Dj Kridlokk has one of the most original sounds in Finnish pop music today, and Hai is that sound at its best. Damn, I’ve been missing this.” 5/5 (Soundi / Niko Peltonen) <br>The artist enjoys cult status, and all three of his albums have been critically acclaimed. Among others, Mutsi, his 2014 LP, is considered one of the masterpieces of Finnish rap. <br> <br>Known for his inimitable style and unparalleled flow, Ex Tuuttiz (formerly  known as Tuuttimörkö) is a longtime Finnish rapper. Currently recording on his own OFN label, the young OG has released three albums in his career, of which Kromihammas, released in 2016, also reached number one on the Finnish album charts. Ex Tuuttixe's fourth full-length album, XT, was released in September 2023. The singles “Kaviokeissi”, “Omistautunu” and “Ei tarvii mennä kotiin” (ft.  Kriso) gave us a taste of the album. <br> <br>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music. The high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art.  A la Malmi doesn’t care about genre boundaries, but brings the best independent musicians to its audiences. <br> <br>The show is for all ages.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A2A0E0AE323E5B7B2D63C1D7251D1FA1/DJ_Kridlokk_Ex_Tuuttiz",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A2A0E0AE323E5B7B2D63C1D7251D1FA1/DJ_Kridlokk_Ex_Tuuttiz",
                "en": "http://www.malmitalo.fi/en/events/event/A2A0E0AE323E5B7B2D63C1D7251D1FA1/DJ_Kridlokk_Ex_Tuuttiz"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "DJ Kridlokk + Ex Tuuttiz – A la Malmi",
                "sv": "DJ Kridlokk + Ex Tuuttiz – A la Malmi",
                "en": "DJ Kridlokk + Ex Tuuttiz – A la Malmi"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64778/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64599",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/murha-kahdelle-helsinki-3776858/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/murha-kahdelle-helsinki-3776858/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/murha-kahdelle-helsinki-3776858/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152941,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-04T10:14:53.129224Z",
                    "last_modified_time": "2024-11-04T10:14:53.129240Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758399.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152941/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-04T10:14:53.102085Z",
            "last_modified_time": "2025-01-27T10:14:44.213205Z",
            "date_published": null,
            "start_time": "2025-02-07T16: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,
            "short_description": {
                "fi": "Taidokas sekoitus musiikkia, sekasortoa ja klassista murhamysteeriä!",
                "sv": "En konstfärdig blandning av musik, kaos och ett klassiskt mordmysterium!",
                "en": "An artful blend of music, mayhem and classic murder mystery!"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidokas sekoitus musiikkia, sekasortoa ja klassista murhamysteeriä!</p><p>Vauhdikas musikaali Murha kahdelle (Murder for Two) yhdistää musiikkikomedian huimapäiseen murhamysteeriin. Tässä hulvattomassa esityksessä lavalla nähdään kaksi näyttelijää, joista toinen tutkii rikosta, toinen on kaikki 10 epäiltyä ja kaiken tämän lisäksi, molemmat soittavat pianoa!</p><p>Kun kuuluisa kirjailija Arthur Whitney ammutaan syntymäpäiväjuhlissaan, on maailman parhaiden etsivien ratkaistava tapaus. Ainoa ongelma on, että he kaikki ovat poissa kaupungista. Tässä kohtaa kuvaan astuu paikallispoliisi Marcus Moscowicz, joka haaveilee suuremmista saappaista. Todistaakseen omat kykynsä, Marcuksen on ratkaistava tapaus ennen varsinaisen etsivän saapumista. Kello käy ja epäilykset kasvavat, mutta keneen ne lopulta kohdistuvat?</p><p>Hauska ja palkittu Off-Broadway-musikaali Murha kahdelle (Murder for Two) sai ensi-iltansa 8.11.2023 Musiikkiteatteri Kapsäkin ja Linnateatterin yhteistuotantona.</p><p>Musikaalin on ohjannut kiitetyn Anastasia-musikaalin (Tampereen teatteri) koreografi Chris Whittaker ja esitys oli hänen debyyttiohjaus Suomessa.</p><p>Lavalla itsensä likoon laittavat monipuoliset ja taitavat näyttelijät <b>Joel Mäkinen</b> ja <b>Juha Pulli</b>.</p><p>Kesto: 1t 30min</p><p>Käsikirjoitus: Kellen Blair ja Joe Kinosian<br>Musiikki: Joe Kinosian<br>Laulujen sanat: Kellen Blair<br>Suomennos: Hanna Kaila</p><p><b>Työryhmä</b><br>Ohjaaja: Chris Whittaker<br>Äänisuunnittelija: Max Marshall<br>Valosuunnittelija: Esa Näykki<br>Pukusuunnittelija: Riitta Röpelinen<br>Musiikin harjoituttaja: Jussi Vahvaselkä<br>Rooleissa: Joel Mäkinen ja Juha Pulli<br>Tuotanto: Musiikkiteatteri Kapsäkki ja Linnateatteri</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-19738694/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>En konstfärdig blandning av musik, kaos och ett klassiskt mordmysterium!</p><p>Den fartfyllda musikalen Murha kahdelle (Murder for Two) kombinerar musikkomedi med ett våghalsigt mordmysterium. I denna fantastiska föreställning får vi se två skådespelare på scenen, varav den ena undersöker ett brott, och den andra är alla 10 misstänkta, och dessutom spelar båda två piano!</p><p>När den berömde författaren Arthur Whitney blir skjuten på sin födelsedagsfest, är det nog ett fall för världens främsta detektiver. Det enda problemet är att de alla är bortresta från staden. Då stiger den lokala polisen Marcus Moscowicz, som drömmer om större stövlar, in i bilden. För att ge prov på sin förmåga måste Marcus lösa fallet innan den egentliga detektiven anländer. Klockan går och misstankarna växer, men vem riktas de sist och slutligen mot?</p><p>Den roliga och prisbelönta Off-Broadway-musikalen Murha kahdelle (Murder for Two) hade premiär 8.11.2023 som en samproduktion mellan Musiikkiteatteri Kapsäkki och Linnateatteri. Musikalen har regisserats av den uppskattade koreografen för Anastasia-musikalen (Tampereen teatteri) Chris Whittaker, och föreställningen är hans debut som regissör i Finland.</p><p>På scenen bjuder de mångsidiga och skickliga skådespelarna Joel Mäkinen och Juha Pulli på sig själva.</p><p>Manus: Kellen Blair och Joe Kinosian<br>Musik: Joe Kinosian<br>Sångtexter: Kellen Blair<br>Översättning till finska: Hanna Kaila</p><p><b>Arbetsgrupp</b><br>Regissör: Chris Whittaker<br>Ljuddesigner: Max Marshall<br>Ljusdesigner: Esa Näykki<br>Kostymdesigner: Riitta Röpelinen<br>Inövning av musiken: Jussi Vahvaselkä<br>I rollerna: Joel Mäkinen och Juha Pulli<br>Produktion: Musiikkiteatteri Kapsäkki och Linnateatteri</p><p>Längd: 1h 30 min.</p>",
                "en": "<p>An artful blend of music, mayhem and classic murder mystery!</p><p>The fast-paced musical Murha kahdelle (Murder for Two) combines a musical comedy with a thrilling murder mystery.  This hilarious show features two actors on stage, one of whom investigates a crime, the other plays all ten suspects – and on top of that, they both play the piano!</p><p>When famous author Arthur Whitney is shot dead at his birthday party, the world’s best detectives have a case to solve. The only problem is that they are all out of town. This is where local policeman Marcus Moscowicz enters the picture, dreaming of a promotion. To prove himself, Marcus must solve the case before the actual detective arrives. The clock is ticking and suspicions are growing, but who will they ultimately point to?</p><p>Murha kahdelle (Murder for Two), the fun and award-winning Off-Broadway musical, premiered on 8 November 2023 as a co-production between Music Theatre Kapsäkki and Linnateatteri. The musical was directed by Chris Whittaker, choreographer of the acclaimed Anastasia musical (Tampere Theatre). Murder for Two was his directorial debut in Finland.</p><p>The actors putting themselves on the line on stage are the versatile and skilled Joel Mäkinen and Juha Pulli.</p><p>Screenplay: Kellen Blair and Joe Kinosian<br>Music: Joe Kinosian<br>Song lyrics: Kellen Blair<br>Finnish translation: Hanna Kaila</p><p><b>Working group</b><br>Director: Chris Whittaker<br>Sound designer: Max Marshall<br>Lighting designer: Esa Näykki<br>Costume designer: Riitta Röpelinen<br>Music coach: Jussi Vahvaselkä<br>Cast: Joel Mäkinen and Juha Pulli<br>Production: Music Theatre Kapsäkki and Linnateatteri</p><p>Duration: 1 h 30 min</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6672B4412B0E41AD997F46F61BBFA7C5/Musiikkiteatteri_Kapsakki_Murha_kahdelle",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6672B4412B0E41AD997F46F61BBFA7C5/Musiikkiteatteri_Kapsakki_Murha_kahdelle_Mord_for_tva_",
                "en": "http://www.kanneltalo.fi/en/events/event/6672B4412B0E41AD997F46F61BBFA7C5/Music_Theatre_Kapsakki_Murha_kahdelle"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Musiikkiteatteri Kapsäkki: Murha kahdelle",
                "sv": "Musiikkiteatteri Kapsäkki: Murha kahdelle (Mord för två)",
                "en": "Music Theatre Kapsäkki: Murha kahdelle"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64599/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65014",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/metal-meditation-kahden-teoksen-hypnoottinen-ilta-3786984/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/metal-meditation-kahden-teoksen-hypnoottinen-ilta-3786984/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/metal-meditation-kahden-teoksen-hypnoottinen-ilta-3786984/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-28T09:14:27.091076Z",
                    "last_modified_time": "2024-11-28T09:14:27.091101Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763501.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153106/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-28T09:14:27.039080Z",
            "last_modified_time": "2025-01-27T10:14:42.134236Z",
            "date_published": null,
            "start_time": "2025-02-01T16: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,
            "short_description": {
                "fi": "Upeaa ambient-musiikin juhlaa! Ensin koetaan Eiskosen ja Heikinheimon värähtelevä Pulsance, sitten Rinne ja Majamäki vievät minimalistiselle meditaatiomatkalle.",
                "sv": "Underbar fest med ambient-musik! Först får vi uppleva Eiskonens och Heikinheimos vibrerande Pulsance, sedan tar Rinne och Majamäki med oss på en minimalistisk meditationsresa.",
                "en": "An amazing celebration of ambient music! First we experience Eiskonen and Heikinheimo’s vibrant Pulsance, followed by a minimalist meditation journey with Rinne and Majamäki."
            },
            "provider": null,
            "description": {
                "fi": "<p>Upeaa ambient-musiikin juhlaa! Ensin koetaan Eiskosen ja Heikinheimon värähtelevä Pulsance, sitten Rinne ja Majamäki vievät minimalistiselle meditaatiomatkalle.</p><p><b>Eiskonen ja Heikinheimo: Pulsance</b> <br>Pulsance on tanssikonsertti, jossa Jonna Eiskosen tanssi ja Ilmari Heikinheimon metallilyömäsoitinten värähtelevä resonanssi luovat lumoavan kokonaisuuden.</p><p>Pulsance leikittelee villin vapauden ja hienovaraisen herkkyyden välimaastossa. Teoksen liikkeen rytmi ja sointi kumpuaa alkuvoimasta, ja johdattelee erilaisiin jaettuihin ja henkilökohtaisiin tunnetiloihin.<br>Kantaesitys saa ensi-iltansa Kanneltalossa.</p><p><b>Rinne – Majamäki</b> <br>Tapani Rinne ja Teho Majamäki ovat tutkineet tiloja ja tunnelmia Intian temppeleissä, luolissa sekä kotimaahan koverretussa rautatietunnelissa.</p><p>Tuoreimmalla levyllään vapaan ympäristön sattumanvaraisista muuttujista  ja studiossa koetuista aistimuksista on luotu minimalistista ambienttia, jossa tauot ja tila kuultavien signaalien ympärillä ovat yhtä oleellisia kuin soitetut äänet.</p><p>Rinteen puupuhaltimet ja Majamäen metalliset lyömäsoittimet muodostavat kiehtovan kaksijakoisen soinnin. Esimerkiksi bassoklarinetin orgaanisen lämmin pörinä sekä hangin ja äänimaljan heleä klangi käyvät vähäeleistä vuoropuhelua, josta välittyy muusikoiden vahva läsnäolo. Minimalistisesta lähestymistavasta paljastuu duon musiikillinen zen.</p><p>Visuaalit: Random Doctors <br> <br>Kesto 2 tuntia, sisältäen väliajan.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-19738691/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Underbar fest med ambient-musik! Först får vi uppleva Eiskonens och Heikinheimos vibrerande Pulsance, sedan tar Rinne och Majamäki med oss på en minimalistisk meditationsresa.</p><p><b>Eiskonen och Heikinheimo: Pulsance</b> <br>Pulsance är en danskonsert, där Jonna Eiskonens dans och den vibrerande resonansen hos Ilmari Heikinheimos slaginstrument av metall skapar en förtrollande helhet.</p><p>Pulsance leker i gränsområdet mellan vild frihet och finkänslighet. Rytmen och klangen hos verket väller upp ur urkraften, och leder till olika delade och personliga känslotillstånd.<br>Uruppförandet har premiär på Gamlasgården.</p><p><b>Rinne – Majamäki</b> <br>Tapani Rinne och Teho Majamäki har utforskat platser och stämningar i Indiens tempel, grottor, en järnvägstunnel uthuggen i hemlandet och på deras senaste album (2022), där fria miljöer utan slumpmässiga variabler – både upplevelser i studion och omgivningarna – har skapats som minimalistisk ambient, där pauser och rummet runt de hörbara signalerna är lika viktiga som de spelade ljuden.</p><p>Rinnes träblåsinstrument och Majamäkis metalliska slagverk bildar en fascinerande tudelad klang. Till exempel för basklarinettens organiskt varma brummande och klangskålens klara klang en stillsam dialog, där musikanternas starka närvaro förmedlas. Den minimalistiska approachen avspeglar duons musikaliska zen.</p><p>Visuella effekter: Random Doctors <br> <br>Längd 2 timmar, inklusive paus</p>",
                "en": "<p>An amazing celebration of ambient music! First we experience Eiskonen and Heikinheimo’s vibrant Pulsance, followed by a minimalist meditation journey with Rinne and Majamäki.</p><p><b>Eiskonen and Heikinheimo: Pulsance</b> <br>Pulsance is a dance concert where the dance of Jonna Eiskonen and the vibrating resonance of Ilmari Heikinheimo's metal percussion instruments create an enchanting combination.</p><p>Pulsance toys with a line between wild freedom and subtle sensitivity. The rhythm and sound of the movement in this piece springs from a primordial force, leading to a variety of shared and personal emotional states.<br>The first performance will premiere at Kanneltalo.</p><p><b>Rinne – Majamäki</b> <br>Tapani Rinne and Teho Majamäki have explored spaces and atmospheres in Indian temples, caves, and a hollowed-out railway tunnel at home in Finland. On their latest album (2022), they took to the studio, an environment free of random variables, to create a minimalist ambience from their experienced sensations, where the pauses and space around the heard signals are as essential as the sounds played.</p><p>Rinne’s woodwinds and Majamäki’s metal percussion instruments form a fascinating duality of sound. For example, the organic, warm buzz of the bass clarinet and the bright clanging of the singing bowl engage in a subtle dialogue that conveys the intense presence of the musicians. The minimalist approach reveals the duo’s musical zen.</p><p>Visuals: Random Doctors <br> <br>Duration: 2 hours, including an intermission</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/26B8BCB2D569C034EBB01EF3DF2BB0F4/Metal_Meditation_Kahden_teoksen_hypnoottinen_ilta_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/26B8BCB2D569C034EBB01EF3DF2BB0F4/Metal_Meditation_En_hypnotisk_kvall_med_tva_verk_",
                "en": "http://www.kanneltalo.fi/en/events/event/26B8BCB2D569C034EBB01EF3DF2BB0F4/Metal_Meditation_A_hypnotic_evening_of_two_works_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Metal Meditation: Kahden teoksen hypnoottinen ilta – Eiskonen – Heikinheimo – Rinne – Majamäki",
                "sv": "Metal Meditation: En hypnotisk kväll med två verk – Eiskonen – Heikinheimo – Rinne – Majamäki",
                "en": "Metal Meditation: A hypnotic evening of two works – Eiskonen – Heikinheimo – Rinne – Majamäki"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65014/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65428",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153719,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-13T09:14:40.299275Z",
                    "last_modified_time": "2025-01-13T09:14:40.299291Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758963.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153719/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-13T09:14:40.274465Z",
            "last_modified_time": "2025-01-24T15:15:06.182469Z",
            "date_published": null,
            "start_time": "2025-01-25T16: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,
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "provider": null,
            "description": {
                "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65428/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64736",
            "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:105/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153668,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-03T12:15:17.824633Z",
                    "last_modified_time": "2025-01-03T12:15:17.824651Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759547.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153668/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-03T12:15:17.798179Z",
            "last_modified_time": "2025-01-24T13:14:32.451928Z",
            "date_published": null,
            "start_time": "2025-02-28",
            "end_time": "2025-05-03",
            "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,
            "short_description": {
                "fi": "Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.",
                "sv": "Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.",
                "en": "Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials."
            },
            "provider": null,
            "description": {
                "fi": "<p>Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.</p><p>Pumpulimuisto on Pehmeät materiaalit nykytaiteessa -kurssin näyttely. Aalto-yliopiston taiteiden ja suunnittelun korkeakoulun Taiteen ja median laitoksen valinnaisiin opintoihin kuuluva kurssi - lempinimeltään Pehmikset - on ollut opinto-ohjelmassa vuodesta 2011 alkaen.<br> <br>Pumpulimuisto koostuu eri tekniikoin kurssin aikana toteutetuista teoksista. Opiskelijat ovat tutustuneet tekstiilimateriaalien ja -tekniikoiden käyttöön nykytaiteessa luentojen, taiteilijavierailujen ja oman taiteellisen työskentelyn avulla. Näyttelyn teokset ja teema syntyvät opiskelijaryhmän ideoiden pohjalta.</p><p>Vapaa pääsy</p><p><b>Näyttelyn avajaiset 27.2. klo 17-19 - Tervetuloa!</b></p>",
                "sv": "<p>Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.</p><p>Bomullsminnen är en utställning av Aalto-universitetets konst- och designskolas institution för konst och medias kurs Mjuka material inom samtidskonsten. Den valbara kursen med smeknamnet Mjuksaker har varit en del av studieprogrammet sedan 2011.<br> <br>De studerande har introducerats till användningen av textilmaterial och -tekniker i samtida konst genom föreläsningar, konstnärsbesök och eget konstnärligt arbete. Utställningens verk och tema bygger på studerandegruppens idéer.</p>",
                "en": "<p>Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials.</p><p>Cotton Memories is an exhibition of the Soft materials in contemporary art course at the Aalto University School of Arts, Design and Architecture. The course, which is part of optional studies and nicknamed Softies, has been in the study programme since 2011.<br> <br>Students have become familiar with the use of textile materials and techniques in contemporary art through lectures, artist visits and their own artistic work. The works and theme of the exhibition are based on the ideas of the student group.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Pumpulimuisto",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Bomullsminnen",
                "en": "http://www.annantalo.fi/en/events/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Cotton_Memories"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Pumpulimuisto",
                "sv": "Bomullsminnen",
                "en": "Cotton Memories"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64736/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23d3py",
            "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:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d244/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-01-15T13:50:18.768298Z",
            "last_modified_time": "2025-01-24T11:28:07.938990Z",
            "date_published": null,
            "start_time": "2025-01-31T09:00:00Z",
            "end_time": "2025-05-30T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa Babykinoon Ison Omenan kirjastoon joka kuukauden viimeisenä perjantaina!  ",
                "sv": "Välkommen till Babykino på Iso Omena-biblioteket den sista fredagen i varje månad!",
                "en": "Welcome to Babykino at Iso Omena Library on the last Friday of each month!"
            },
            "provider": null,
            "description": {
                "fi": "<p>ELOKUVAT: </p><p>31.1. Mamma Mia!&nbsp;</p><p>28.2. You Will Meet a Tall Dark Stranger&nbsp;</p><p>28.3. Rouva Harris lähtee Pariisiin&nbsp;</p><p>25.4. Bohemian Rhapsody&nbsp;</p><p>30.5. Pikkunaisia&nbsp;</p><p><br></p><p>&nbsp;-Babykino on tarkoitettu vanhemmille/hoitajille ja vauvoille.&nbsp;</p><p>-Elokuvat on valittu aikuisten kokoelmasta, mutta ne ovat ikärajaltaan sallittuja (S).&nbsp;&nbsp;</p><p>-Babykino on maksuton ja se järjestetään Ison Omenan kirjaston VOX-tilassa.&nbsp;</p><p>-Elokuvan äänet ovat normaalia hiljaisemmalla ja tilassa on himmeä valaistus.&nbsp;&nbsp;</p><p>-Tilassa on erilaisia sohvia ja tuoleja, sekä vesipiste ja mikro. Omat eväät on sallittu!&nbsp;</p><p>-Lastenhoitohuone löytyy tilan läheisyydestä kirjaston lastenosastolta neuvolan päädystä.&nbsp;&nbsp;</p><p>-Voit tuoda mukanasi oman alustan vauvalle, esimerkiksi kantokassin tai turvaistuimen, jossa vauvasi voi nukkua elokuvan aikana.&nbsp;</p><p>-Vauvan äänet eivät häiritse elokuvan aikana!&nbsp;</p>",
                "sv": "<p>31.1. Mamma Mia!&nbsp;</p><p>28.2. You Will Meet a Tall Dark Stranger&nbsp;</p><p>28.3. Mrs Harris goes to Paris&nbsp;</p><p>25.4. Bohemian Rhapsody&nbsp;</p><p>30.5. Little women </p><p><br></p><p>Babykino är för föräldrar/vårdare och bebisar.</p><p>Filmerna är valda från vuxenkollektionen men är tillåtna för alla åldrar (S).</p><p>Babykino är gratis och arrangeras i VOX-rummet på Iso Omena-biblioteket.</p><p>Ljudnivån på filmen är lägre än normalt, och belysningen i rummet är dämpad.</p><p>I rummet finns olika soffor och stolar, en vattenkran och en mikrovågsugn. Egna snacks är tillåtna!</p><p>Ett skötrum finns i närheten av bibliotekets barnavdelning vid rådgivningens ände.</p><p>Du kan ta med en egen underlag för din bebis, till exempel en bärväska eller bilstol, där din bebis kan sova under filmen.</p><p>Bebisens ljud stör inte under filmen!</p>",
                "en": "<p>Films: </p><p>31.1. Mamma Mia!&nbsp;</p><p>28.2. You Will Meet a Tall Dark Stranger&nbsp;</p><p>28.3. Mrs Harris goes to Paris&nbsp;</p><p>25.4. Bohemian Rhapsody&nbsp;</p><p>30.5. Little women </p><p><br></p><p>Babykino is intended for parents/caregivers and babies.</p><p>The movies are selected from the adult collection but are rated suitable for all ages (S).</p><p>Babykino is free of charge and takes place in the VOX room at Iso Omena Library.</p><p>The movie audio is quieter than usual, and the room has dim lighting.</p><p>The space features various sofas and chairs, a water station, and a microwave. You’re welcome to bring your own snacks!</p><p>A baby care room is located near the library's children's section at the end of the health center.</p><p>You can bring your own mat for the baby, such as a carrycot or car seat, where your baby can sleep during the movie.</p><p>Baby sounds won’t disturb the movie!</p>"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Baby Kino",
                "sv": "Baby Kino",
                "en": "Baby Kino "
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d3py/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23d4o4",
            "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:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-15T14:06:50.742171Z",
            "last_modified_time": "2025-01-24T11:23:04.370929Z",
            "date_published": null,
            "start_time": "2025-05-24T09:00:00Z",
            "end_time": "2025-05-24T11: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,
            "short_description": {
                "fi": "k-7 elokuvia suomeksi",
                "sv": "Filmer med åldersgräns 7 år på finska",
                "en": "Movies for children over 7 years old in Finnish"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>",
                "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>",
                "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Lasten lauantaileffa",
                "sv": "Barnens lördagsfilm",
                "en": "Kids’ Saturday Movie"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4o4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23d424",
            "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:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-15T14:06:50.930286Z",
            "last_modified_time": "2025-01-24T11:23:04.074973Z",
            "date_published": null,
            "start_time": "2025-05-31T09:00:00Z",
            "end_time": "2025-05-31T11: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,
            "short_description": {
                "fi": "k-7 elokuvia suomeksi",
                "sv": "Filmer med åldersgräns 7 år på finska",
                "en": "Movies for children over 7 years old in Finnish"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>",
                "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>",
                "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Lasten lauantaileffa",
                "sv": "Barnens lördagsfilm",
                "en": "Kids’ Saturday Movie"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d424/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23d5he",
            "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:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4cm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4o4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d424/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-15T14:06:43.080952Z",
            "last_modified_time": "2025-01-24T11:22:52.488725Z",
            "date_published": null,
            "start_time": "2025-01-18T10:00:00Z",
            "end_time": "2025-05-31T11: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,
            "short_description": {
                "fi": "k-7 elokuvia suomeksi",
                "sv": "Filmer med åldersgräns 7 år på finska",
                "en": "Movies for children over 7 years old in Finnish"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>",
                "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>",
                "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Lasten lauantaileffa",
                "sv": "Barnens lördagsfilm",
                "en": "Kids’ Saturday Movie"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23d6ai",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5ta/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151380,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-07T11:33:18.307680Z",
                    "last_modified_time": "2024-06-07T11:33:18.307701Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg",
                    "name": "Kuva: Unsplash",
                    "cropping": "106,0,534,427",
                    "photographer_name": "",
                    "alt_text": "Kuvassa musta konsoliohjain",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-24T10:17:28.861047Z",
            "last_modified_time": "2025-01-24T10:17:28.861063Z",
            "date_published": null,
            "start_time": "2025-01-28T14:00:00Z",
            "end_time": "2025-05-20T16: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,
            "short_description": {
                "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.",
                "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.",
                "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. "
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>",
                "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>",
                "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "K-12 nuortenilta",
                "sv": "K-12 Ungdomarnas kväll",
                "en": "K-12 youth night"
            },
            "location_extra_info": {
                "fi": "Messi",
                "sv": "Messi",
                "en": "Messi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6ai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64734",
            "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:105/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152843,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-21T12:15:20.180498Z",
                    "last_modified_time": "2024-10-21T12:15:20.180519Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759432.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152843/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-10-21T12:15:20.136671Z",
            "last_modified_time": "2025-01-23T14:13:29.708830Z",
            "date_published": null,
            "start_time": "2024-11-30",
            "end_time": "2025-03-15",
            "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,
            "short_description": {
                "fi": "Kristina Laineen näyttely koostuu lukuisista erilaisista naamioista.",
                "sv": "Kristina Laines utställning består av flera olika masker.",
                "en": "Kristina Laine’s exhibition consists of many different masks."
            },
            "provider": null,
            "description": {
                "fi": "<p>Kristina Laineen näyttely koostuu lukuisista erilaisista naamioista.</p><p>Vuosien aikana tehdyt naamiot edustavat aineettomia asioita, jotka ovat ottaneet esineen muodon. Niistä on tullut artefakteja – symbolisia esineitä, joista kukin edustaa jotakin, esimerkiksi tiettyä olotilaa tai tunnetta.</p><p>Näyttelyn naamiot on toteutettu useilla eri tekniikoilla pääosin luonnosta kerätyistä tai kierrätetyistä materiaaleista.</p><p><i>”Naamiot leikittelevät kasvon ja persoonan muuttumisen mahdollisuuksilla. Ne edustavat yhteyttä näkymättömiin siteisiin: muihin ihmisiin ja maailmaan – sukupolvien ketjun kautta menneeseen aikaan ulottuviin yhteyksiin. Naamiot voisivat kenties olla väline, jonka avulla voisi saada yhteyden luontoon tai omaan itseen.”</i></p><p>Kristina on monialainen taiteilija, joka työskentelee kuvataiteen ja animaation parissa. Häntä kiehtovat kuvakerronta ja erityisesti symboliikka.</p><p><b>Näyttelyn avajaiset perjantaina 29.11.2024 klo 17–19,  tervetuloa!</b></p><p><b>HUOM! 5.2. klo 13:30-18:00 näyttely on tilapäisesti suljettu <br>lyhytelokuvan kuvausten vuoksi.</b></p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kesän 2024 aikana hakuun tuli 126 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kolme näyttelyä eteläpäädyn galleriaan.</p>",
                "sv": "<p>Kristina Laines utställning består av flera olika masker.</p><p>De masker som Laine gjort under åren representerar immateriella saker som har tagit formen av objekt. De har blivit artefakter – symboliska föremål av vilka var och en representerar något, ett visst tillstånd eller en viss känsla.</p><p>Maskerna i utställningen har tillverkats med flera olika tekniker, främst av material som plockats från naturen eller återvunnits.</p><p><i>”Maskerna leker med möjligheter att ändra ansiktet och personan. De representerar kontakten med osynliga band: andra människor och världen – med förbindelser som går tillbaka till de gångna tiderna genom kedjan av generationer. Maskerna kunde kanske vara ett verktyg med vilket jag kunde få kontakt med naturen eller mig själv.”</i></p><p>Kristina är en multidisciplinär konstnär som arbetar med bildkonst och animation. Hon fascineras av bildspråk och särskilt symbolik.</p><p><b>Vernissage fredagen 29.11 2024 klo 17–19, välkommen!</b></p><p>Utställningen har valts till repertoaren genom Annegårdens öppna ansökan. Under sommaren 2024 lämnades in 126 ansökningar av vilka Annegårdens elevråd valde tre utställningar till galleriet i södra gaveln.</p>",
                "en": "<p>Kristina Laine’s exhibition consists of many different masks.</p><p>Made over the course of several years, the masks represent intangible things that have taken the form of an object. They have become artefacts, objects that each represent something, a particular state of affairs or emotion.</p><p>The masks in the exhibition have been realised with several different techniques, mainly from materials collected from nature or recycled materials.</p><p><i>‘Masks play with the possibilities of changing one’s face and personality. They represent a connection to invisible bonds with other people and the world – connections through the chain of generations to the past. Masks can be a tool to connect with nature or yourself.’</i></p><p>Kristina is a multidisciplinary artist who works with visual arts and animation. She is fascinated by visual narratives and symbolism in particular.</p><p><b>The exhibition will open on Friday, 29 November at 17–19, welcome!</b></p><p>The exhibition has been selected for the programme through Annantalo’s open call. During the summer of 2024, 126 applications were submitted, from which Annantalo’s student jury selected three exhibitions for the gallery at the south end of the building.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Taidenaamiot_Ajatukset_Artefakteiksi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Konstmasker_Tankar_till_artefakter",
                "en": "http://www.annantalo.fi/en/events/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Art_Masks_From_Ideas_to_Artefacts"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kristina Laine: Taidenaamiot – Ajatukset Artefakteiksi",
                "sv": "Kristina Laine: Konstmasker – Tankar till artefakter",
                "en": "Kristina Laine: Art Masks – From Ideas to Artefacts"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64734/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65393",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153680,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-03T13:15:16.794825Z",
                    "last_modified_time": "2025-01-03T13:15:16.794846Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759669.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153680/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-03T13:15:16.768708Z",
            "last_modified_time": "2025-01-23T11:15:10.639705Z",
            "date_published": null,
            "start_time": "2025-02-28T08: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,
            "short_description": {
                "fi": "Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.",
                "sv": "Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.",
                "en": "At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art."
            },
            "provider": null,
            "description": {
                "fi": "<p>Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.</p><p>Opimme myös, mikä kumma on Kalevala ja miten se liittyy karjalaiseen kulttuuriin.</p><p>Työpajassa kuullaan Wilhelmiina Halosen sävelmiä jouhikolla karjalaiseen tapaan. Tarinoista ja musiikista inspiroituneena teemme yhdessä taidetta hiilellä maalaten. Työpajassa opimme valmistamaan itse oman metsäisen hiilimaalin, jota käytetään oman taideteoksen tekemisessä.</p><p>Työpajassa opettaa ja soittaa karjalainen kuvataideopettaja Verna Kuntsi.</p><p>Tuokion kesto on noin 45 min.</p><p>Kohderyhmä: 5–6-vuotiaat, 1–2-luokkalaiset <br>Ryhmän koko: max 30</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa kultus.hel.fi</p>",
                "sv": "<p>Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.</p><p>Vi får också veta vad Kalevala är för något och hur den hänger ihop med den karelska kulturen.</p><p>I verkstaden får vi höra Wilhelmiina Halonens melodier på en stråkharpa på karelskt vis. Inspirerade av berättelser och musik skapar vi tillsammans konst genom att måla med kol. I verkstaden lär vi oss själv tillverka målfärg av kol med skogskaraktär. Vi använder målfärgen när vi skapar våra egna konstverk.<br>I verkstaden lär ut och spelar den karelska bildkonstläraren Verna Kuntsi.</p><p>Stunden tar cirka 45 min.</p><p>Målgrupp: 5–6-åringar, elever på årskurserna 1–2 <br>Gruppstorlek: max 30</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>",
                "en": "<p>At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art.</p><p>We will also learn what Kalevala is and how it relates to Karelian culture.</p><p>In the workshop, we will hear Wilhelmiina Halonen’s melodies with a bowed harp, the Karelian way. Inspired by stories and music, we will make art together with charcoal. In the workshop, we will learn how to make our own woody charcoal paint, which we will use to make our own artwork.</p><p>The workshop is taught by Karelian art teacher Verna Kuntsi, who will also play music.</p><p>The duration of the art moment is approximately 45 minutes.</p><p>Target group: 5–6 years, grades 1–2 <br>Group size: max 30</p><p>Pre-registration for groups: kultus.hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BBEBAC1D3798041A22DFE0D37ED2ADC8/Kalevalan_paivan_karjalainen_taidehetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BBEBAC1D3798041A22DFE0D37ED2ADC8/Kalevaladagens_karelska_konststund",
                "en": "http://www.vuotalo.fi/en/events/event/BBEBAC1D3798041A22DFE0D37ED2ADC8/Kalevala_Day_Karelian_Art_Moment"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kalevalan päivän karjalainen taidehetki",
                "sv": "Kalevaladagens karelska konststund",
                "en": "Kalevala Day Karelian Art Moment"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65393/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65392",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153679,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-03T13:15:16.640999Z",
                    "last_modified_time": "2025-01-03T13:15:16.641017Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759668.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153679/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-03T13:15:16.609683Z",
            "last_modified_time": "2025-01-23T11:15:10.546432Z",
            "date_published": null,
            "start_time": "2025-02-28T07: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,
            "short_description": {
                "fi": "Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.",
                "sv": "Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.",
                "en": "At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art."
            },
            "provider": null,
            "description": {
                "fi": "<p>Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.</p><p>Opimme myös, mikä kumma on Kalevala ja miten se liittyy karjalaiseen kulttuuriin.</p><p>Työpajassa kuullaan Wilhelmiina Halosen sävelmiä jouhikolla karjalaiseen tapaan. Tarinoista ja musiikista inspiroituneena teemme yhdessä taidetta hiilellä maalaten. Työpajassa opimme valmistamaan itse oman metsäisen hiilimaalin, jota käytetään oman taideteoksen tekemisessä.</p><p>Työpajassa opettaa ja soittaa karjalainen kuvataideopettaja Verna Kuntsi.</p><p>Tuokion kesto on noin 45 min.</p><p>Kohderyhmä: 5–6-vuotiaat, 1–2-luokkalaiset <br>Ryhmän koko: max 30</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa kultus.hel.fi</p>",
                "sv": "<p>Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.</p><p>Vi får också veta vad Kalevala är för något och hur den hänger ihop med den karelska kulturen.</p><p>I verkstaden får vi höra Wilhelmiina Halonens melodier på en stråkharpa på karelskt vis. Inspirerade av berättelser och musik skapar vi tillsammans konst genom att måla med kol. I verkstaden lär vi oss själv tillverka målfärg av kol med skogskaraktär. Vi använder målfärgen när vi skapar våra egna konstverk.<br>I verkstaden lär ut och spelar den karelska bildkonstläraren Verna Kuntsi.</p><p>Stunden tar cirka 45 min.</p><p>Målgrupp: 5–6-åringar, elever på årskurserna 1–2 <br>Gruppstorlek: max 30</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>",
                "en": "<p>At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art.</p><p>We will also learn what Kalevala is and how it relates to Karelian culture.</p><p>In the workshop, we will hear Wilhelmiina Halonen’s melodies with a bowed harp, the Karelian way. Inspired by stories and music, we will make art together with charcoal. In the workshop, we will learn how to make our own woody charcoal paint, which we will use to make our own artwork.</p><p>The workshop is taught by Karelian art teacher Verna Kuntsi, who will also play music.</p><p>The duration of the art moment is approximately 45 minutes.</p><p>Target group: 5–6 years, grades 1–2 <br>Group size: max 30</p><p>Pre-registration for groups: kultus.hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/60489CE34442432D3B548178346FA3EB/Kalevalan_paivan_karjalainen_taidehetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/60489CE34442432D3B548178346FA3EB/Kalevaladagens_karelska_konststund",
                "en": "http://www.vuotalo.fi/en/events/event/60489CE34442432D3B548178346FA3EB/Kalevala_Day_Karelian_Art_Moment"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kalevalan päivän karjalainen taidehetki",
                "sv": "Kalevaladagens karelska konststund",
                "en": "Kalevala Day Karelian Art Moment"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agjsjyty6m",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytykm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytyoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytyry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytywq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyty2q/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-11-13T09:04:36.306812Z",
            "last_modified_time": "2025-01-23T10:45:11.783389Z",
            "date_published": null,
            "start_time": "2025-02-24T11:00:00Z",
            "end_time": "2025-05-26T11: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,
            "short_description": {
                "fi": "Uudenmaan Muistiluotsin muistisairaille suunnatussa muistitreeniryhmässä harjoitetaan toimintakykyä muistia käyttäen ja aktivoiden. Ryhmään pitää ilmoittautua."
            },
            "provider": {
                "fi": "Uudenmaan Muistiluotsi"
            },
            "description": {
                "fi": "<p>Uudenmaan Muistiluotsin muistisairaille suunnatussa muistitreeniryhmässä harjoitetaan toimintakykyä muistia käyttäen ja aktivoiden.</p><p>Muistisairaan läheisten ryhmässä jaetaan käytännön kokemuksia sekä keskustellaan niistä asioista, jotka kulloinkin mietityttävät.</p><p>Muistitreeni- ja läheisten vertaisryhmä kokoontuvat samanaikaisesti, molemmissa ryhmissä on oma ohjaaja.</p><p>Kokoontuminen: maanantai 20.1., 24.2., 31.3., 28.4., 26.5. klo 12.30–14.30</p><p>Osallistuminen on maksutonta. Ennakkoilmoittautuminen.</p><p>Ilmoittautuminen ja tiedustelut: johanna.juola@espoonmuisti.fi tai 040 170 6771, asta.koskinen@espoonmuisti.fi tai 040 542 5253&nbsp;</p>"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Muistitreeniryhmä"
            },
            "location_extra_info": {
                "fi": "Elina"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyty6m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65239",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153375,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T15:14:14.526808Z",
                    "last_modified_time": "2024-12-10T15:14:14.526824Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760142.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T15:14:14.500679Z",
            "last_modified_time": "2025-01-22T14:14:50.656434Z",
            "date_published": null,
            "start_time": "2025-02-08T16: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,
            "short_description": {
                "fi": "Tease & Power-klubi tulee Stoaan! Vapaa pääsy, ilmoittaudu mukaan.",
                "sv": "Klubben Tease & Power kommer till Stoa!",
                "en": "The Tease & Power club is coming to Stoa!"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tease & Power-klubi tulee Stoaan! Vapaa pääsy, ilmoittaudu mukaan.</p><p>Klubilla näet burleskia, esittävää taidetta ja dragia. Illan juontajina toimivat suomeksi ja englanniksi Queen Rebecca, Awa Sowe ja Theodora Rex.</p><p>Klubi on esteetön ja tapahtumassa on kuvailutulkkaus sekä viittomakielen tulkkaus. Käytössä on myös hiljainen tila. Tervetuloa sädehtimään!<br> <br>Juonnot suomeksi ja englanniksi. Esityksessä suomenkielinen kuvailutulkkaus ja viittomakielen tulkkaus suomalaisella viittomakielellä.</p><p>Kesto: n. 2 tuntia.</p><p>Vapaa pääsy, muista varata paikka ennakkoon alla olevista linkeistä.</p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdgnjvb_iMN8r4ndz7FzP0OyO-Vth53nm9mqAQe3qCYJ7J41g/viewform\">Varaa tavallinen istumapaikka tästä</a></u></p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfEAUWgJN4wbYEeSgpc4nSUIETQ8U7fsqhusD998x88hjJzhQ/viewform\">Varaa esteetön paikka / pyörätuolipaikka tästä</a></u></p><p>Ikäraja: 18+<br>Kieli: monikielinen</p>",
                "sv": "<p>Klubben Tease & Power kommer till Stoa!</p><p>På klubben får du se burlesk, scenkonst och drag. Värdar för kvällen på finska och engelska är Queen Rebecca, Awa Sowe och Theodora Rex. Klubben är tillgänglighetsanpassad och evenemanget kommer att syn- och teckenspråkstolkas. Det finns också ett tyst rum. Välkommen att stråla!<br> <br>Mellansnack på finska och engelska. Föreställningen syntolkas till finska och teckenspråkstolkas till finskt teckenspråk.<br>Längd: ca 2 timmar.</p><p>Åldersrekommendation: 18+<br>Flerspråkigt</p><p>Free admission, but remember to reserve your spot in advance using the links below.</p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdgnjvb_iMN8r4ndz7FzP0OyO-Vth53nm9mqAQe3qCYJ7J41g/viewform\"><br>Reserve a standard seat here</a></u></p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfEAUWgJN4wbYEeSgpc4nSUIETQ8U7fsqhusD998x88hjJzhQ/viewform\">Reserve an accessible seat / wheelchair seat here</a></u></p>",
                "en": "<p>The Tease & Power club is coming to Stoa!</p><p>The club will bring to you burlesque, performance art and drag. The evening will be hosted in Finnish and English by Queen Rebecca, Awa Sowe and Theodora Rex.</p><p>The club is accessible, and the event has descriptive interpretation and sign language interpretation. The club also has a quiet space for the public. Come and shine with us!<br> <br>The show is hosted in Finnish and English. The performances are interpreted in description interpretation in Finnish and sign language interpretation in Finnish sign language.</p><p>Duration: 2 hours<br>Age Limit: 18+</p><p>Free admission, but remember to reserve your spot in advance using the links below.</p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdgnjvb_iMN8r4ndz7FzP0OyO-Vth53nm9mqAQe3qCYJ7J41g/viewform\"><br>Reserve a standard seat here</a></u></p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfEAUWgJN4wbYEeSgpc4nSUIETQ8U7fsqhusD998x88hjJzhQ/viewform\">Reserve an accessible seat / wheelchair seat here</a></u></p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/90508C9091702EB393B2A488B47C3EF7/Tease_Power_K18_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/90508C9091702EB393B2A488B47C3EF7/Tease_Power_K18_",
                "en": "http://www.stoa.fi/en/events/event/90508C9091702EB393B2A488B47C3EF7/Tease_Power_18_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tease & Power (K18)",
                "sv": "Tease & Power (K18)",
                "en": "Tease & Power (18)"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65239/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}