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

{
    "meta": {
        "count": 7138,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=197&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=195&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:65541",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 174580,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-28T12:14:25.710571Z",
                    "last_modified_time": "2025-01-28T12:14:25.710589Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765090.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174580/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-28T12:14:25.661063Z",
            "last_modified_time": "2025-02-05T14:14:19.747309Z",
            "date_published": null,
            "start_time": "2025-01-30",
            "end_time": "2025-02-22",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Laura Ilvessalo: Väridialogit",
                "sv": "Laura Ilvessalo: Väridialogit (Färgdialoger)",
                "en": "Laura Ilvessalo: Colour dialogues"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Helsinkiläisen kuvataiteilija ja tekstiilisuunnittelija Laura Ilvessalon Väridialogit-näyttely kutsuu yleisön pohtimaan värien yhteyksiä.",
                "sv": "Den Helsingforsbaserade bildkonstnären och textildesignern Laura Ilvessalos utställning Färgdialoger bjuder in allmänheten att reflektera över sambanden mellan färger.",
                "en": "Helsinki-based visual artist and textile designer Laura Ilvessalo’s Colour Dialogues exhibition invites the audience to reflect on the connections between colours."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/582441D0B243014C9C22F154CA31F7CD/Laura_Ilvessalo_Varidialogit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/582441D0B243014C9C22F154CA31F7CD/Laura_Ilvessalo_Varidialogit_Fargdialoger_",
                "en": "http://www.malmitalo.fi/en/events/event/582441D0B243014C9C22F154CA31F7CD/Laura_Ilvessalo_Colour_dialogues"
            },
            "description": {
                "fi": "<p>Helsinkiläisen kuvataiteilija ja tekstiilisuunnittelija Laura Ilvessalon Väridialogit-näyttely kutsuu yleisön pohtimaan värien yhteyksiä.</p><p>Ilvessalo tutkii öljyvärimaalauksissaan värien ilmaisullisia suhteita, jotka syntyvät, kun yhden värin eri sävyt vuorovaikuttavat, riitelevät ja täydentävät toisiaan.</p><p>Teosten värit ja teemat haastavat ajattelemaan, kuinka erilaiset kulttuuriset, emotionaaliset ja henkilökohtaiset väritulkinnat muokkaavat ymmärrystämme visuaalisesta kielestä. Jokainen teos yksivärisenä, meditatiivisena kokonaisuutena toimii ainutlaatuisena dialogina ja myötävaikuttaa laajempaan kokemukseen värin voimasta herätellä, inspiroida ja provosoida.</p><p>Kun liikut tilassa, pidä itseäsi näiden kromaattisten keskustelujen osallistujana. Mitkä värit puhuttelevat sinua ja mitä tarinoita ne kertovat?</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den Helsingforsbaserade bildkonstnären och textildesignern Laura Ilvessalos utställning Färgdialoger bjuder in allmänheten att reflektera över sambanden mellan färger.</p><p>I sina oljemålningar utforskar Ilvessalo de uttrycksfulla relationer mellan färger som uppstår när olika nyanser av en färg interagerar, argumenterar och kompletterar varandra.</p><p>Verkens färger och teman utmanar oss att fundera över hur olika kulturella, känslomässiga och personliga tolkningar av färg formar vår förståelse av det visuella språket. Som en enfärgad, meditativ helhet, fungerar varje verk som en unik dialog och bidrar till en bredare upplevelse av färgens kraft att väcka, inspirera och provocera.</p><p>När du rör dig i utrymmet kan du betrakta dig själv som en deltagare i dessa kromatiska konversationer. Vilka färger tilltalar dig och vilka historier berättar de?</p>",
                "en": "<p>Helsinki-based visual artist and textile designer Laura Ilvessalo’s Colour Dialogues exhibition invites the audience to reflect on the connections between colours.</p><p>In her oil paintings, Ilvessalo studies the expressive relationships of colours that arise when different shades of one colour interact, contradict and complement each other.</p><p>The colours and themes of the works challenge us to think about how different cultural, emotional and personal colour interpretations shape our understanding of visual language. As a monochrome, meditative whole, each work serves as a unique dialogue and contributes to a wider experience of the power of colour to awaken, inspire and provoke.</p><p>As you move around the space, consider yourself a participant in these chromatic conversations. What colours speak to you and what stories do they tell?</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65541/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj3vx6cdi",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6ajy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6atm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6axq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6a3q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6a7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bg4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6bw4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6b3e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6b7m/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T11:57:42.051989Z",
            "last_modified_time": "2025-02-05T08:44:18.766130Z",
            "date_published": null,
            "start_time": "2025-01-07T15:00:00Z",
            "end_time": "2025-06-24T16: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,
            "name": {
                "fi": "Parsi ja paikkaa",
                "sv": "Stoppa och lappa",
                "en": "Patching and repairing "
            },
            "location_extra_info": {
                "fi": "Sellon kirjaston pajatila",
                "sv": "Sello biblioteks verkstaden ",
                "en": "Sello Library´s Maker Space"
            },
            "provider": null,
            "short_description": {
                "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ",
                "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad",
                "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan.&nbsp;Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta. Tapahtumassa ei ole ohjausta, vaan ideana on että parsijat jakavat ideoita ja oppia keskenään. </p><p>Maksuton, ei ennakkoilmoittautumista.</p><p>10.12 on kirjaston puolesta vinyylileikkurin opastusta sitä haluaville.</p>",
                "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner. Det finns ingen vägledning, men tanken är att församlingsmedlemmarna ska dela med sig av idéer och lära av varandra.&nbsp;</p><p>Avgiftsfri. Ingen förhandsanmälan.</p><p>10.12 finns vinylskärarhandledning för den som vill ha det.</p>",
                "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine in addition to your own tools.&nbsp;There is no guidance, but the idea is for the parishioners to share ideas and learn from each other.&nbsp;</p><p>Free of charge, no pre-registration.&nbsp;</p><p>10.12 There will be a Vinylcutter tutorial on behalf of the library for those who want one.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3vx6cdi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65136",
            "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: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: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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-hevisaurus-vuoden-raeyhaeisin-keikka-raeyh-vuotalo-19543222/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-hevisaurus-vuoden-raeyhaeisin-keikka-raeyh-vuotalo-19543222/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-hevisaurus-vuoden-raeyhaeisin-keikka-raeyh-vuotalo-19543222/"
                    },
                    "description": null,
                    "price": {
                        "fi": "25 €",
                        "sv": "25 €",
                        "en": "25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-29T09:14:20.955700Z",
                    "last_modified_time": "2024-11-29T09:14:20.955717Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760352.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153115/?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": "2024-11-29T09:14:20.907822Z",
            "last_modified_time": "2025-02-05T08:14:37.239919Z",
            "date_published": null,
            "start_time": "2025-02-22T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LOPPUUNMYYTY Hevisaurus",
                "sv": "SLUTSÅLD Hevisaurus",
                "en": "SOLD OUT Hevisaurus"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.",
                "sv": "När Hevisaurus slår fötterna mot estraden och man spelar juraheavymusikens första noter, står stämningen i publiken högt i taket och bortom.",
                "en": "When Hevisaurus’ webbed feet hit the stage and you hear the first beats of jurahevi, the atmosphere in the audience will blow the roof off."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/70493495B0C4A32CD890439ADE8B8E30/LOPPUUNMYYTY_Hevisaurus",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/70493495B0C4A32CD890439ADE8B8E30/SLUTSALD_Hevisaurus",
                "en": "http://www.vuotalo.fi/en/events/event/70493495B0C4A32CD890439ADE8B8E30/SOLD_OUT_Hevisaurus"
            },
            "description": {
                "fi": "<p>Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.</p><p>Kuten Hevisauruksen Mikä minusta tulee isona? -biisissäkin lauletaan: \"Seinät tärisee, katto putoaa, kun kertsi lähtee, kaikki sekoaa!\"</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi sekä tietysti itse Herra Hevisaurus pistävät pystyyn viihdyttävän lavashown, joka ei jätä juroimpiakaan tallaajia kylmäksi. Jalan alle menevät sävellykset, nerokkaat sanoitukset ja taidokkaat sovitukset yhdistettynä vauhdikkaaseen menoon ja yllättäviin käänteisiin takaavat sen, että Hevisauruksen keikat ovat usein loppuunmyytyjä. Biiseissä on myös korvamatotakuu!</p><p>Kesto n. 1 tunti, ei väliakaa. <br>Konsertissa ei ole väliaikaa.</p>",
                "sv": "<p>När Hevisaurus slår fötterna mot estraden och man spelar juraheavymusikens första noter, står stämningen i publiken högt i taket och bortom.</p><p>Såsom man sjunger i Hevisaurus låt Mikä minusta tulee isona? (Vad blir jag som stor?) \"Seinät tärisee, katto putoaa, kun kertsi lähtee, kaikki sekoaa!\" (Väggarna skakar, taket faller, när refrängen börjar, blir alla vilda!)</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi och naturligtvis själva Herr Hevisaurus sätter upp en underhållande scenshow som värmer upp även de dystraste medmänniskorna. Kompositioner som går under dina fötter, geniala texter och skickliga arrangemang, i kombination med ett snabbt tempo och överraskande svängar, garanterar att Hevisaurus konserter ofta är slutsålda. Låtarna har även öronmasksgaranti!</p><p>Längd cirka 1 timme, ingen paus.</p>",
                "en": "<p>When Hevisaurus’ webbed feet hit the stage and you hear the first beats of jurahevi, the atmosphere in the audience will blow the roof off.</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi and, of course, Herra Hevisaurus himself will put on an entertaining stage show that will not leave even the sulkiest dancers cold. The compositions the make your feet move, ingenious lyrics and skilful arrangements combined with a fast pace and unexpected twists and turns guarantee that Hevisaurus’ concerts are usually sold out. The songs also come with an earworm guarantee!</p><p>Duration: approx. 1 h, no intermission</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65136/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65297",
            "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: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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/arja-saijonmaa-ystaevaenpaeivaekonsertti-vuotalo-19589893/",
                        "sv": "https://www.lippu.fi/event/arja-saijonmaa-ystaevaenpaeivaekonsertti-vuotalo-19589893/",
                        "en": "https://www.lippu.fi/event/arja-saijonmaa-ystaevaenpaeivaekonsertti-vuotalo-19589893/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,8 € / 20 €",
                        "sv": "24,8 € / 20 €",
                        "en": "24,8 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-17T09:14:14.172417Z",
                    "last_modified_time": "2024-12-17T09:14:14.172433Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764115.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-17T09:14:14.147840Z",
            "last_modified_time": "2025-02-05T08:14:34.133398Z",
            "date_published": null,
            "start_time": "2025-02-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LOPPUUNMYYTY Arja Saijonmaa – Ystävänpäiväkonsertti",
                "sv": "SLUTSÅLD Arja Saijonmaa – Alla hjärtans dag-konsert",
                "en": "SOLD OUT Arja Saijonmaa – Valentine’s Day Concert"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Arja Saijonmaa saapuu esiintymään Vuotaloon ensimmäistä kertaa!",
                "sv": "Arja Saijonmaa uppträder i Nordhuset för första gången!",
                "en": "Arja Saijonmaa arrives to perform at Vuotalo for the first time!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1C6C40E39FABFCF33A4F58951685F51E/LOPPUUNMYYTY_Arja_Saijonmaa_Ystavanpaivakonsertti",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1C6C40E39FABFCF33A4F58951685F51E/SLUTSALD_Arja_Saijonmaa_Alla_hjartans_dag-konsert",
                "en": "http://www.vuotalo.fi/en/events/event/1C6C40E39FABFCF33A4F58951685F51E/SOLD_OUT_Arja_Saijonmaa_Valentine_s_Day_Concert"
            },
            "description": {
                "fi": "<p>Arja Saijonmaa saapuu esiintymään Vuotaloon ensimmäistä kertaa!</p><p>Kestosuosikki Arja Saijonmaa on jälleen maamme musiikkielämän keskiössä liityttyään suositun Elämäni biisi -televisio-ohjelman tähtiartisteihin vuonna 2021.</p><p>Monipuolisen laulaja-näyttelijän ura sai alkusysäyksensä jo 1960-luvulla. Kansainvälinen karriääri aukesi 1970-luvun alussa, kun kreikkalainen Mikis Theodorakis kiinnitti hänet maailmankiertueensa solistiksi. Theodorakisin musiikki on edelleen tärkeä osa Saijonmaan repertuaaria, ja näitä säveliä kuullaan myös Vuotalon konsertissa ystävänpäivänä.</p><p>Kesto: 2 t sis. väliajan</p>",
                "sv": "<p>Arja Saijonmaa uppträder i Nordhuset för första gången!</p><p>Evighetsfavoriten Saijonmaa står åter i centrum för vårt lands musikliv efter att hon anslöt sig till stjärnartisterna för det populära TV-programmet Elämäni biisi år 2021.</p><p>Den mångsidiga sångerskans och skådespelerskans karriär fick sin början redan på 1960-talet. Den internationella karriären öppnades i början av 1970-talet, då den grekiska Mikis Theodorakis gjorde henne till solist för hans världsturné. Theodorakis musik är fortfarande en viktig del av Saijonmaas repertoar, och vi får även höra dessa toner på konserten i Nordhuset på alla hjärtans dag.</p><p>Längd: 2 timmar inklusive paus</p>",
                "en": "<p>Arja Saijonmaa arrives to perform at Vuotalo for the first time!</p><p>Long-time favourite Aija Saijonmaa has once again taken centre stage in Finland’s music scene after joining the star-studded cast of Yle’s Elämäni biisi music programme in 2021.</p><p>Saijonmaa is a varied singer-actress, whose career kicked off in the 1960s. Her international career opened in the early 1970s, when Greek composer Mikis Theodorakis signed her as the soloist for his world tour. Theodorakis’ music is still an important part of Saijonmaa’s repertoire, and you can hear these sounds at the Vuotalo concert on Valentine’s Day.</p><p>Duration: Two hours, incl. intermission</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65297/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64766",
            "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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 192814,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-04T15:13:12.174336Z",
                    "last_modified_time": "2025-02-04T15:13:12.174347Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760118.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192814/?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-02-04T15:13:12.157191Z",
            "last_modified_time": "2025-02-04T15:13:12.217403Z",
            "date_published": null,
            "start_time": "2025-03-29T09:00:00Z",
            "end_time": "2025-03-29T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Elävä veistos",
                "sv": "Annegårdens konstlördag: Levande skulptur",
                "en": "Annantalo Art Saturday: Living sculpture"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/424A3414FC27AAC716DB7CC0FE0957A7/Annantalon_taidelauantai_Elava_veistos",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/424A3414FC27AAC716DB7CC0FE0957A7/Annegardens_konstlordag_Levande_skulptur",
                "en": "http://www.annantalo.fi/en/events/event/424A3414FC27AAC716DB7CC0FE0957A7/Annantalo_Art_Saturday_Living_sculpture"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Elävä veistos</b></p><p>Tule kokeilemaan miten voimme muovata toisistamme eläviä veistoksia! Entä miten asento taipuu saven muotoon? Työpajan teema on ihmistä esittävät veistokset. Aihetta tutkitaan eläytymisen ja muovailun kautta. Veistoksen materiaalina käytetään kierrätyssavea, jonka saa jättää uudelleen kierrätykseen tai ottaa mukaansa raakaveistoksena.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Kom och pröva hur vi kan forma varandra till levande skulpturer! Hur får man en ställning till lera? Temat för workshoppen är skulpturer av människor. Temat utforskas med hjälp av att leva sig in och forma. Materialet för skulpturen är återvunnen lera som kan återanvändas på nytt eller tas med hem som en rå skulptur.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p>ome and see how we can shape each other into living sculptures! And how can you bend clay into the position? The theme of this workshop is sculptures depicting people. We will study the topic by getting absorbed and by shaping. The material of the sculpture is recycled clay, which you can leave behind to be recycled again or take with you as a rough draft.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64766/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64974",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kanneltalo-bailame-kanneltalo-19487270/",
                        "sv": "https://www.lippu.fi/event/kanneltalo-bailame-kanneltalo-19487270/",
                        "en": "https://www.lippu.fi/event/kanneltalo-bailame-kanneltalo-19487270/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20,80 €",
                        "sv": "24,80 € / 20,80 €",
                        "en": "24,80 € / 20,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 192446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-04T12:16:44.159318Z",
                    "last_modified_time": "2025-02-04T12:16:44.159333Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763204.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-04T12:16:44.133133Z",
            "last_modified_time": "2025-02-04T12:16:44.222675Z",
            "date_published": null,
            "start_time": "2025-05-17T15:00:00Z",
            "end_time": "2025-05-17T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Báilame – Elina Robinsonin flamenco-oppilaiden kevätnäytös",
                "sv": "Báilame – Våruppvisning för Elina Robinsons flamencoelever",
                "en": "Báilame – Spring performance by Elina Robinson’s flamenco students"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistetaan tanssivuoden päätöstä!",
                "sv": "På våruppvisningen för Elina Robinsons flamencoelever firar vi dansårets slut!",
                "en": "The spring show by Elina Robinson’s flamenco students celebrates the end of the dancing year!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F33D7579EAE900B2C5AA2D9B4BE71479/B_ilame",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F33D7579EAE900B2C5AA2D9B4BE71479/B_ilame",
                "en": "http://www.kanneltalo.fi/en/events/event/F33D7579EAE900B2C5AA2D9B4BE71479/B_ilame"
            },
            "description": {
                "fi": "<p>Elina Robinsonin flamenco-oppilaiden kevätnäytöksessä juhlistetaan tanssivuoden päätöstä!</p><p>Esityksessä kohtaavat sielukas flamencomusiikki ja tanssi. Mukana huikea livebändi!<br> <br>Tony de María (kitara)<br>Anna Murtola (laulu)<br>Sirpa Airisto (laulu)<br>Ricardo Padilla (perkussiot)<br>Elina Robinson (koreografiat, palmas)<br>Camila Laine (koreografia ja palmas)</p>",
                "sv": "<p>På våruppvisningen för Elina Robinsons flamencoelever firar vi dansårets slut!</p><p>I uppvisningen möts själfull flamencomusik och dans. Med är ett otroligt liveband!<br> <br>Tony de Maria (gitarr)<br>Anna Murtola (sång)<br>Sirpa Airisto (sång)<br>Ricardo Padilla (slagverk)<br>Elina Robinson (koreografier, palmas)<br>Camila Laine (koreografi och palmas)</p>",
                "en": "<p>The spring show by Elina Robinson’s flamenco students celebrates the end of the dancing year!</p><p>The spring show by Elina Robinson’s flamenco students celebrates the end of the dancing year!</p><p>The performance combines soulful flamenco music and dance. There will also be a fantastic live band!<br> <br>Tony de María (guitar)<br>Anna Murtola (vocals)<br>Sirpa Airisto (vocals)<br>Ricardo Padilla (percussion)<br>Elina Robinson (choreographies, palmas)<br>Camila Laine (choreography and palmas)</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64974/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65567",
            "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:41/?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:596/?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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 192444,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-04T12:16:41.702629Z",
                    "last_modified_time": "2025-02-04T12:16:41.702665Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765316.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-04T12:16:41.676942Z",
            "last_modified_time": "2025-02-04T12:16:41.773352Z",
            "date_published": null,
            "start_time": "2025-05-05",
            "end_time": "2025-05-19",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Työväenopiston kevätsalonki 2025: Viiva-Väri-Muoto",
                "sv": "Finska arbetarinstitutets vårsalong 2025 – Viiva-Väri-Muoto",
                "en": "Adult Education Centre’s Spring Salon 2025 – Line/Colour/Form"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule ihailemaan Helsingin työväenopiston kuvataidekurssien monipuolisia teoksia!",
                "sv": "Kom och beundra de mångsidiga verken från Helsingfors finska arbetarinstituts bildkonstkurser!",
                "en": "Come admire diverse works from the Helsinki Finnish Adult Education Centre’s visual arts courses!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2327940EB0C49D1F419C0070425FA7F4/Tyovaenopiston_kevatsalonki_2025_Viiva-Vari-Muoto",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2327940EB0C49D1F419C0070425FA7F4/Finska_arbetarinstitutets_varsalong_2025_Viiva-Vari-Muoto_",
                "en": "http://www.kanneltalo.fi/en/events/event/2327940EB0C49D1F419C0070425FA7F4/Adult_Education_Centre_s_Spring_Salon_2025_Line_Colour_Form"
            },
            "description": {
                "fi": "<p>Tule ihailemaan Helsingin työväenopiston kuvataidekurssien monipuolisia teoksia!</p><p>Helsingin työväenopiston kuvataidekurssien kevätnäyttelyssä on esillä eri tekniikoin tehtyjä maalauksia, piirustuksia, grafiikkaa ja veistoksia.<br> <br>Galleria</p><p>Vapaa pääsy</p>",
                "sv": "<p>Kom och beundra de mångsidiga verken från Helsingfors finska arbetarinstituts bildkonstkurser!</p><p>Vårutställningen för Helsingfors finska arbetarinstituts bildkonstkurser presenterar målningar, ritningar, grafik och skulpturer som gjorts med olika tekniker.</p>",
                "en": "<p>Come admire diverse works from the Helsinki Finnish Adult Education Centre’s visual arts courses!</p><p>The spring exhibition of the Adult Education Centre’s visual arts courses is a showcase of artworks created by the students using various techniques: paintings, drawings, graphic art, and sculptures.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65567/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65566",
            "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:41/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T15:13:48.630109Z",
                    "last_modified_time": "2025-02-03T15:13:48.630126Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765296.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T15:13:48.597210Z",
            "last_modified_time": "2025-02-03T15:13:48.706637Z",
            "date_published": null,
            "start_time": "2025-04-04",
            "end_time": "2025-04-29",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Valon polku – Kari Holopaisen monitaiteinen retrospektiivinen näyttely",
                "sv": "Valon polku (Ljusets stig) – tvärkonstnärlig restrospektiv utställning av Kari Holopainen",
                "en": "Valon polku (Path of Light) – Kari Holopainen’s multidisciplinary retrospective exhibition"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Holopaisen kookkaat valokuvateokset ja maalaukset antavat katsojalle mahdollisuuden uppoutua syvälle taiteen ja luonnon väliseen vuorovaikutukseen.",
                "sv": "Holopainens stora fotografiverk och målningar ger åskådaren möjlighet att fördjupa sig i interaktionen mellan konst och natur.",
                "en": "Holopainen’s large photographs and paintings allow viewers to deeply immerse themselves in the interaction between art and nature."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4D95885FA049F0F6C0A0D3C2816CD500/Valon_polku",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4D95885FA049F0F6C0A0D3C2816CD500/Valon_polku_Ljusets_stig_",
                "en": "http://www.kanneltalo.fi/en/events/event/4D95885FA049F0F6C0A0D3C2816CD500/Valon_polku_Path_of_Light_"
            },
            "description": {
                "fi": "<p>Holopaisen kookkaat valokuvateokset ja maalaukset antavat katsojalle mahdollisuuden uppoutua syvälle taiteen ja luonnon väliseen vuorovaikutukseen.</p><p>Valon polku -näyttely tarjoaa ainutlaatuisen katsauksen Holopaisen yli neljän vuosikymmenen mittaiseen taiteelliseen matkaan, jossa yhdistyvät valokuvataide, maalaus ja veistokset.</p><p>Näyttelyn teokset nostavat esiin taiteilijan monialaisen työskentelyn keskeiset teemat: valon, värin ja materian herkän vuoropuhelun, joka on ollut taiteilijan tutkimuksen ytimessä 1970-luvulta lähtien.</p><p>Holopainen kehitti valokuvataiteen ja grafiikan yhdistävän polymeerigravyyrimenetelmän, jolla toteutettuja vedoksia on mukana näyttelyssä. Näyttely on pääosin retrospektiivinen, mutta se esittelee myös uusia, pigmenttivedosteisia valokuvia. Ne käsittelevät valon ja luonnonmuotojen suhdetta luontokatoon – aiheeseen, joka on nykytaiteessa erityisen ajankohtainen.<br> <br>Kookkaat valokuvateokset ja maalaukset täyttävät valoisan, suuren tilan ja antavat katsojalle mahdollisuuden uppoutua syvälle taiteen ja luonnon väliseen vuorovaikutukseen. Lisäksi näyttelyssä on mukana kuvasalkkuja, jotka johdattavat yleisön taiteilijan uran eri vaiheisiin.<br> <br>Näyttely tarjoaa erinomaisen mahdollisuuden kokea taiteilijan uraauurtava työ valokuvataiteen ja syväpainografiikan parissa, joista hän on tullut kansainvälisesti tunnetuksi.</p>",
                "sv": "<p>Holopainens stora fotografiverk och målningar ger åskådaren möjlighet att fördjupa sig i interaktionen mellan konst och natur.</p><p>Utställningen Valon polku bjuder på en unik översikt av Holopainens över fyrtioåriga konstnärliga resa, som kombinerar fotografikonst, målning och skulpturer.</p><p>Utställningens verk lyfter fram de centrala temana i konstnärens multidisciplinära arbete: den känsliga dialogen mellan ljus, färg och materia, som har funnits i kärnan till konstnärens forskning från och med 1970-talet.</p><p>Holopainen utvecklade en polymergravyrmetod som kombinerar fotografikonst med grafik, och utställningen innefattar provtryck som genomförts med denna teknik. Utställningen är huvudsakligen retrospektiv, men den presenterar även nya, pigmenttryckta fotografier. De behandlar ljusets och de naturliga formernas relation till biodiversitetsförlusten – ett ämne som är särskilt aktuellt inom samtidskonsten.<br> <br>De stora fotografiverken och målningarna fyller upp det ljusa, stora utrymmet och ger åskådaren möjlighet att fördjupa sig i interaktionen mellan konst och natur. Utställningen innefattar också fotoportföljer som introducerar publiken till olika skeden i konstnärens karriär.<br> <br>Utställningen erbjuder en utmärkt möjlighet att uppleva konstnärens banbrytande arbete med fotografikonst och djuptrycksgrafik, som har gjort honom internationellt känd.</p>",
                "en": "<p>Holopainen’s large photographs and paintings allow viewers to deeply immerse themselves in the interaction between art and nature.</p><p>The Valon polku exhibition offers a unique overview of Holopainen’s artistic journey of more than four decades, combining photography, painting and sculpture.</p><p>The works in the exhibition highlight the central themes of the artist’s multidisciplinary work: the delicate dialogue between light, colour and material, which has been at the heart of his exploration since the 1970s.</p><p>Holopainen developed a method of polymer gravure that combines photography and graphics, and prints created using this method are included in the exhibition. The exhibition is mainly retrospective, but it also presents new pigment prints of photographs. They deal with the relationship of light and natural forms to the loss of biodiversity – a theme that is particularly relevant in contemporary art.<br> <br>The large photographs and paintings fill the bright, large space and allow viewers to deeply immerse themselves in the interaction between art and nature. The exhibition also includes portfolios of images that introduce the audience to the different stages of the artist’s career.<br> <br>The exhibition is an excellent opportunity to experience the artist’s pioneering work in photography and intaglio printing, for which he has become internationally renowned.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65566/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23d2pi",
            "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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d2de/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490211,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-12-19T13:19:16.432135Z",
                    "last_modified_time": "2024-12-19T13:20:33.620963Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6ff2fddf-5c82-4a21-a885-b6db014e7fec.jpg",
                    "name": "ihmiset soittavat rumpuja",
                    "cropping": "0,252,1512,1764",
                    "photographer_name": "Taru Mäkelä",
                    "alt_text": "ihmiset soittavat rumpuja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490211/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-12-19T13:26:17.726169Z",
            "last_modified_time": "2025-02-03T12:28:18.455749Z",
            "date_published": null,
            "start_time": "2025-02-11T08:00:00Z",
            "end_time": "2025-05-20T08: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,
            "name": {
                "fi": "Music and Movement for seniors ",
                "en": "Music and Movement for seniors "
            },
            "location_extra_info": {
                "fi": "Jaminurkka ",
                "en": "Jaminurkka"
            },
            "provider": null,
            "short_description": {
                "fi": "Senioreille suunnattu tapahtuma, jossa musiikki ja liikunta yhdistettynä sulavaksi kokonaisuudeksi. Sopii kaikenlaisille liikkujille. ",
                "en": "An event for seniors, combining music and exercise into a seamless whole. Suitable for all types of movers. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Music and movement on senioreille suunnattu tapahtuma, jossa musiikki ja liikunta yhdistettynä sulavaksi kokonaisuudeksi. Tapahtuman aikana vahvistamme erilaisten harjoitteiden ja pelien avulla rytmistä osaamista, kehon koordinaatiota, muistityöskentelyä sekä ryhmässä toimimista. Tapahtuma sopii kaikenlaisille liikkujille. Uudenlainen tapahtuma senioreille, tule rohkeasti kokeilemaan! Musiikillisesta puolesta vastaa musiikkipedagogi Lauri ja liikunnallisesta puolesta vastaa Art Zenter Academyn perustaja David. Tapahtumassa puhutaan suomea, englantia ja espanjaa. </p><p><br></p><p>Tapahtuma järjestetään joka toinen viikko Sellon kirjaston Jaminurkassa. Ensimmäinen kerta on tiistaina 11.2 klo 10-11</p><p><br></p><p>Osallistuminen on maksutonta ja ei ennakkoilmoittautumista.</p><p><br></p><p><br></p><p><br></p><p><br></p>",
                "en": "<p>Music and movement is an event for seniors, where music and movement are combined into a seamless whole. During the event, we use a variety of exercises and games to strengthen rhythmic skills, body coordination, memory work and group work. The event is suitable for all types of movers. A new kind of event for seniors, come and try it out! Lauri, music educator, will be in charge of the musical side and David, founder of Art Zenter Academy, will be in charge of the physical side. We speak Finnish, English and Spanish at the event.</p><p><br></p><p>The event takes place every two weeks in the Jaminurka of the Sello library. The first session will be on Tuesday 11.2 from 10-11am.</p><p><br></p><p>Participation is free of charge and no pre-registration is required.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d2pi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65491",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:752/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/recover-laboratory-salainen-saari-3818239/",
                        "sv": "https://www.lippu.fi/artist/stoa/recover-laboratory-salainen-saari-3818239/",
                        "en": "https://www.lippu.fi/artist/stoa/recover-laboratory-salainen-saari-3818239/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 163426,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-22T14:14:54.700183Z",
                    "last_modified_time": "2025-01-22T14:14:54.700200Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763402.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163426/?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-22T14:14:54.668492Z",
            "last_modified_time": "2025-02-03T09:14:34.607427Z",
            "date_published": null,
            "start_time": "2025-02-23T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Recover Laboratory: Salainen saari – koko perheen nykysirkusseikkailu",
                "sv": "Recover Laboratory: Den hemliga ön – ett nycirkusäventyr för hela familjen",
                "en": "Recover Laboratory: Secret Island – Contemporary circus adventure for the whole family"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Salainen saari kertoo salaperäisen maailman tutkimisesta ja löytämisen riemusta. Uusia ystäviäkin voi löytyä, kun uskallamme seikkailla.",
                "sv": "Den hemliga ön handlar om att utforska en mystisk värld och om upptäckarglädje. När vi vågar vara äventyrliga, kan vi hitta nya vänner.",
                "en": "The Secret Island tells the story of exploring a mysterious world and the joy of discovering it. You might even find new friends when you dare to adventure."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/45BDE075133C2C6CB8757899B116C7D9/Recover_Laboratory_Salainen_saari_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/45BDE075133C2C6CB8757899B116C7D9/Recover_Laboratory_Den_hemliga_on_",
                "en": "http://www.stoa.fi/en/events/event/45BDE075133C2C6CB8757899B116C7D9/Recover_Laboratory_Secret_Island_"
            },
            "description": {
                "fi": "<p>Salainen saari kertoo salaperäisen maailman tutkimisesta ja löytämisen riemusta. Uusia ystäviäkin voi löytyä, kun uskallamme seikkailla.</p><p>Utelias, mutta hieman yksinäinen hahmo kököttää salaperäisellä saarella. Yhtäkkiä jokin kimmeltää turkoosilla merellä ja pulloposti kutsuu seikkailuun. Yllätyksiä täynnä olevalla matkallaan hän tasapainottelee lasipulloilla, taiteilee myrskyn mukanaan tuomilla saippuakuplilla, pyörittää valovanteita sekä leikkii taianomaisten meduusoiden ja hauskojen mönttien kanssa. Tervetuloa kiehtovalle seikkailulle!<br> <br>Salaisen saaren on luonut monitaideryhmä Recover Laboratoryn Inna Huttunen ja Susanna Liinamaa. Ryhmän surrealismia pursuavat teokset ja taidekokemukset pohjautuvat ihmisten väliseen kontaktiin, rehellisyyteen ja taiteen luomaan vapauteen. Vuonna 2024 ryhmä sai Sirkuksen Maineteko -palkinnon työstään uusien esittävän taiteen muotojen ja tasa-arvon edistämisestä. Viime vuonna ryhmä edusti Suomea Circusnext-kilpailun finaalissa, jonka prosessin osana myös Salainen saari -teos sai alkunsa.<br> <br>Teoksen esiintyjä, sirkustaiteilija Susanna Liinamaa on erikoistunut esineiden manipulointiin, kulttuurihyvinvointiin ja lastenesityksiin. Teoksen on käsikirjoittanut, ohjannut ja suunnittelusta vastannut kokemussuunnittelija Inna Huttunen yhdessä Liinamaan kanssa. Teoksen herkullinen visuaalinen maailma on kuvataiteilija Sofi Häkkisen ja valosuunnittelija Kauri Klemelän käsialaa. Hypnoottiset musiikit on säveltänyt ja äänisuunnittelun tehnyt Samuli Kivelä. Koreografisena ja dramaturgisena konsulttina teoksessa ovat toimineet Cirkon toiminnanjohtaja ja dramaturgi Jarkko Lehmus, tanssitaiteilija Krista-Julia Arppo sekä päiväkoti-ikäinen Alvar Lehto.<br> <br>Ohjaus, käsikirjoitus & konsepti: Inna Huttunen & Susanna Liinamaa<br>Esiintyminen: Susanna Liinamaa<br>Veistokset ja lavastuselementit: Sofi Häkkinen<br>Valosuunnittelu: Kauri Klemelä<br>Äänisuunnittelu ja musiikki: Samuli Kivelä<br>Dramaturginen ja koreografinen konsultointi: Jarkko Lehmus, Krista Arppo ja Alvar Lehto<br>Tuotanto: Recover Laboratory & Uuden sirkuksen keskus Cirko<br>Tukijat: Taiteen edistämiskeskus, Helsingin kaupunki, Tanssiteatteri Hurjaruuth 2024<br> <br>Kesto: 30 min<br>Ikäsuositus: 3+<br>Kieli: sanaton</p><p>Liput 6 € HUOM! Jokainen esitykseen tulija tarvitsee oman lipun.</p>",
                "sv": "<p>Den hemliga ön handlar om att utforska en mystisk värld och om upptäckarglädje. När vi vågar vara äventyrliga, kan vi hitta nya vänner.</p><p>En nyfiken men lite ensam figur sitter och hänger på en mystisk ö. Plötsligt glittrar något till i det turkosa havet och en flaskpost bjuder in till äventyr. På sin resa full av överraskningar balanserar figuren på glasflaskor, trollar med såpbubblor som en storm fört med sig, snurrar lysande ringar och leker med förtrollande maneter och lustiga klumpar. Välkommen med på ett fascinerande äventyr!<br> <br>Den hemliga ön skapades av Inna Huttunen och Susanna Liinamaa från multikonstgruppen Recover Laboratory. Gruppens verk och konstupplevelser som sprudlar av surrealism bygger på mänsklig kontakt, ärlighet och friheten som konsten skapar. År 2024 tilldelades gruppen priset Sirkuksen Maineteko (”Ett stordåd inom cirkus”) för sitt arbete med att främja jämställdhet och nya former av scenkonst. Förra året representerade gruppen Finland i finalen av tävlingen Circusnext, och det var som en del av den processen som föreställningen Den hemliga ön uppstod.<br> <br>Cirkusartisten Susanna Liinamaa, som framför verket, har specialiserat sig på manipulation av föremål, kulturellt välbefinnande och barnföreställningar. Verket skrevs, regisserades och planerades av upplevelsedesignern Inna Huttunen tillsammans med Liinamaa. Verkets härliga visuella värld är skapad av bildkonstnären Sofi Häkkinen och ljusdesignern Kauri Klemelä. Den hypnotiska musiken är komponerad och ljuddesignen gjord av Samuli Kivelä. DJ Sammakko, Elisa Luukkainen, arbetar med musik och musikfostran och tror att glädje är vår hemmafrekvens och att rörelse är ett naturligt tillstånd för människor att vara i. Koreografiska och dramaturgiska konsulter för verket är Jarkko Lehmus, verksamhetsledare och dramaturg på Cirko, Krista-Julia Arppo, danskonstnär, och Alvar Lehto, dagisbarn.<br> <br>Regi, manus och koncept: Inna Huttunen & Susanna Liinamaa<br>Framträdande: Susanna Liinamaa<br>Skulpturer och scenografiska element: Sofi Häkkinen<br>Ljusdesign: Kauri Klemelä<br>Ljuddesign och musik: Samuli Kivelä<br>Dramaturgisk och koreografisk konsultering: Jarkko Lehmus, Krista Arppo och Alvar Lehto<br>Produktion: Recover Laboratory & Cirko – centrumet för nycirkus<br>Stödd av: Centret för konstfrämjande, Helsingfors stad, Dansteatern Hurjaruuth 2024<br> <br>Längd: 30 min.<br>Åldersrekommendation: 3+<br>Inget språk</p>",
                "en": "<p>The Secret Island tells the story of exploring a mysterious world and the joy of discovering it. You might even find new friends when you dare to adventure.</p><p>A curious, yet somewhat lonely figure is on a mysterious island. Suddenly, something glitters in the turquoise sea, and a message in a bottle invites the figure to an adventure. On a journey full of surprises, the figure balances on glass bottles, makes art with soap bubbles from a storm, spins light wheels and plays with magical jellyfish and funny marmots. Welcome to a fascinating adventure!<br> <br>The Secret Island was created by Recover Laboratory’s Inna Huttunen and Susanna Liinamaa. The group’s surrealistic works and art experiences are based on contact between people, honesty and freedom created by art. In 2024, the group received the Circus Maineteko Award for its work in promoting new forms of performing arts and equality. Last year, the group represented Finland in the final of the Circusnext competition. The Secret Island originated as part of this process.<br> <br>The performer, Circus Artist Susanna Liinamaa, specialises in the manipulation of objects, cultural well-being and children’s performances. The work has been written, directed and designed by Experience Designer Inna Huttunen together with Liinamaa. The delicious visual world is the work of Visual Artist Sofi Häkkinen and Lighting Designer Kauri Klemelä. The hypnotic music has been composed by Samuli Kivelä, who is also responsible for the sound design. DJ Frog, i.e., Elisa Luukkainen is a music and music education professional who believes that joy is our home frequency and movement is a natural way for people to be. Choreographic and dramaturgical consultants were Cirko’s Director and Dramaturg Jarkko Lehmus, dance artist Krista-Julia Arppo and daycare centre-aged Alvar Lehto.<br> <br>Direction, script & concept: Inna Huttunen & Susanna Liinamaa<br>Performance: Susanna Liinamaa<br>Sculptures and staging elements: Sofi Häkkinen<br>Lighting design: Kauri Klemelä<br>Sound design and music: Samuli Kivelä<br>Dramaturgical and choreographic consulting: Jarkko Lehmus, Krista Arppo and Alvar Lehto<br>Production: Recover Laboratory & Cirko – Centre for New Circus<br>Patrons: Arts Promotion Centre Finland, City of Helsinki, Dance Theatre Hurjaruuth 2024<br> <br>Duration: 30 min<br>Age recommendation: 3+<br>Language: non-verbal</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65491/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:eaba4e7e-1d89-45ae-96c2-4dc0c318f033",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?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:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_31012025_LE-testi_2_korotetulla_long_desc_-merkkimrll2942333747"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 181783,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-31T13:57:04.756577Z",
                    "last_modified_time": "2025-01-31T13:57:04.756597Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/0e239403-950b-ef11-9f89-000d3a668452",
                    "name": "Muille maille",
                    "cropping": "",
                    "photographer_name": "Aaron Linssi",
                    "alt_text": "Laivat laivat missä ne laivat menee",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/181783/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?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:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?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:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "created_time": "2025-01-31T12:41:33.056165Z",
            "last_modified_time": "2025-01-31T13:57:09.328721Z",
            "date_published": "2025-01-31T12:35:30Z",
            "start_time": "2025-02-01T00:00:00Z",
            "end_time": "2025-02-01T00:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 14,
            "audience_max_age": 16,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 25,
            "minimum_attendee_capacity": 20,
            "enrolment_start_time": "2024-12-30T08:00:00+02:00",
            "enrolment_end_time": "2025-01-30T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MKtest 31012025 LE-testi 2 korotetulla long desc -merkkimäärällä"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsingfors"
            },
            "short_description": {
                "fi": "Are you thinking about starting a business? Or are you already a new entrepreneur?"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM<br>1:30 pm - 3:30 pm<br><strong>Booths by organizations&nbsp;</strong><br>- check out all entrepreneurship services available to you in th<br>&nbsp;</div></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:eaba4e7e-1d89-45ae-96c2-4dc0c318f033/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64459",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/piaf-the-show-3715050/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152227,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-27T13:13:32.433816Z",
                    "last_modified_time": "2024-08-27T13:13:32.433833Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744741.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152227/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-27T13:13:32.419497Z",
            "last_modified_time": "2025-01-31T13:14:46.835817Z",
            "date_published": null,
            "start_time": "2025-02-15T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PIAF! - The Show – Loppuunmyyty! Sold out!"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Sunborn Events Oy"
            },
            "short_description": {
                "fi": "Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F905427FFA448CCD6BD44B6951DF9847/PIAF_-_The_Show_"
            },
            "description": {
                "fi": "<p>Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta</p><p>Viime vuonna Musiikkitalon loppuunmyynyt ranskalainen Piaf! The Show palaa Helsinkiin jälleen helmikuussa 2025. Gil Marsallan ohjaama musiikkispektaakkeli on kunnianosoitus Ranskan kaikkien aikojen arvostetuimmalle laulajalle Edith Piafille, jonka kappaleet koskettavat ihmisiä yhä.</p><p>Piaf! The Show on vuosikymmenen menestynein ranskalaisshow, joka kertoo Pariisin varpusen uskomattoman elämäntarinan hänen unohtumattomien laulujensa kautta. Tragedioiden ja intohimoisten rakkaussuhteiden sävyttämä elämä vei Edith Piafin slummeista parrasvaloihin, ja uran varrella syntyivät ikoniset kappaleet kuten La vie en rose, Non, je ne regrette rien, Hymne à l’amour, La foule sekä Padam padam.</p><p>Esityksessä Piafin lauluja tulkitsee maailmanlaajuisesti ylistetty, upeaääninen ranskalaislaulaja <b>Nathalie Lermitte</b>, jota pidetään ansaitusti kaikkien aikojen parhaana Piaf-tribuuttitaiteilijana.</p><p>Ohjaaja <b>Gil Marsallan</b> suunnitteleman ja luotsaaman Piaf! The Show on kiertänyt maailmalla vuodesta 2015 asti ja sen on nähnyt jo yli miljoona ihmistä yli 50 maassa. Esitys on muun muassa myynyt loppuun legendaarisen Carnegie Hall:in New Yorkissa ja Olympia-teatterin Pariisissa. Kyseessä on tämän vuosikymmenen menestynein ranskalaisshow.</p><p>Liput alk. 63,40 €<br>Piaf! The Show & Dinner 150 €<br>Piaf! The Show & Brunssi 140 € (15.2.25 klo 12)</p><p>Esitykset Savoy-teatterissa:<br>•\ttorstai 13.2.2025 klo 19<br>•\tperjantai 14.2.2025 klo 19<br>•\tlauantai 15.2.2025 klo 14 ja klo 19</p><p>Esityksen kesto on noin 1 h 50 min, sisältäen väliajan.<br>Esityskieli: Ranska</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64459/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:f66bd8fb-1a75-482c-abee-b71e3640d781",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?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:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?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:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237",
                        "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237",
                        "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237",
                        "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_30012025_LE-testi_ilman_hintaa3682521237"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 181561,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-31T12:00:05.967380Z",
                    "last_modified_time": "2025-01-31T12:00:05.967414Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8c0b34ba-8e0e-ef11-9f89-0022489e55b1",
                    "name": "testi kuvateksti 31012025",
                    "cropping": "",
                    "photographer_name": "testi kuvaajan nimi joka on aika pitkä tässä esimerkissä juupa juu 31012025",
                    "alt_text": "testi alt 31012025",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/181561/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?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:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?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:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?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:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "created_time": "2025-01-31T12:00:09.171327Z",
            "last_modified_time": "2025-01-31T12:00:09.171351Z",
            "date_published": "2025-01-31T11:49:06Z",
            "start_time": "2025-02-02T15:00:00Z",
            "end_time": "2025-02-02T15:05:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-12-30T08:00:00+02:00",
            "enrolment_end_time": "2025-02-01T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä",
                "sv": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä SV",
                "en": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä EN",
                "ru": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä RU",
                "zh_hans": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä CH",
                "ar": "MKtest 31012025 LE-testi korotetulla long desc -merkkimäärällä  AR"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsinki FI",
                "sv": "Business Helsinki SV",
                "en": "Business Helsinki EN",
                "ru": "Business Helsinki RU",
                "zh_hans": "Business Helsinki CH",
                "ar": "Business Helsinki AR"
            },
            "short_description": {
                "fi": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC FI",
                "sv": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC SV",
                "en": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC EN",
                "ru": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC RU",
                "zh_hans": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC CH",
                "ar": "MKtest 30012025 LE-testi ilman hintaa SHORT DESC AR"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>SUOMI</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em>&nbsp;<br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>",
                "sv": "<div><div>RUOTSI</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em>&nbsp;<br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>",
                "en": "<div><div>ENGLANTI</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em>&nbsp;<br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>",
                "ru": "<div><div>VENÄJÄ</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em>&nbsp;<br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>",
                "zh_hans": "<div><div>KIINA</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em>&nbsp;<br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>",
                "ar": "<div><div>ARABIA</div>\n<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em>&nbsp;<br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea!&nbsp;</em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br>&nbsp;<br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br>&nbsp;<br>PROGRAM<br>11:30 am&nbsp;<br>Doors open&nbsp;<br>PROGRAM AT THE MAIN STAGE (Tapahtumatori)&nbsp;<br>12:00 pm&nbsp;<br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki&nbsp;<br>12:15 pm&nbsp;<br><strong>Keynote speech: Navigating new paths &amp; finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy&nbsp;<br>12:30 pm<br><strong>Entrepreneurship Path&nbsp;</strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm&nbsp;<br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero&nbsp;<br>1:00 pm&nbsp;<br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br>&nbsp;<br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka &nbsp;<br><em>(no registration, but seats limited!)&nbsp;</em><br>1:35 pm&nbsp;<br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset&nbsp;<br>2:05 pm&nbsp;<br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki&nbsp;<br>2:35 pm&nbsp;<br><strong>Validating and testing your business idea</strong><br>The Shortcut&nbsp;<br>3:05 pm<br><strong>International growth</strong><br>Tech Nordic Advocates<br>OTHER PROGRAM</div></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:f66bd8fb-1a75-482c-abee-b71e3640d781/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65552",
            "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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T12:14:34.476806Z",
                    "last_modified_time": "2025-01-29T12:14:34.476819Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758990.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-29T12:14:34.453474Z",
            "last_modified_time": "2025-01-29T12:14:34.536800Z",
            "date_published": null,
            "start_time": "2025-02-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E816C877B9583822B9A4991559C7C6C7/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E816C877B9583822B9A4991559C7C6C7/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/E816C877B9583822B9A4991559C7C6C7/Ei_koskaan_yksin_12_"
            },
            "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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65552/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65424",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-10T14:14:32.195093Z",
                    "last_modified_time": "2025-01-10T14:14:32.195109Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758968.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-10T14:14:32.171812Z",
            "last_modified_time": "2025-01-29T12:14:28.842030Z",
            "date_published": null,
            "start_time": "2025-01-31T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ainahan on huominen (12) – Kino Helios",
                "sv": "Ainahan on huominen (12) – Kino Helios",
                "en": "Ainahan on huominen (12) – Kino Helios"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1F04954EABACB3E1A3B2593FB4F1485C/Ainahan_on_huominen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1F04954EABACB3E1A3B2593FB4F1485C/Ainahan_on_huominen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/1F04954EABACB3E1A3B2593FB4F1485C/Ainahan_on_huominen_12_"
            },
            "description": {
                "fi": "<p>Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse.</p><p>40-luvun Italiaan sijoittuva draamakomedia kuvaa kauniisti ja voimallisesti sitä yhteiskunnallista murroskohtaa, jossa naisten ääni alkoi toisen maailmansodan jälkeen päästä kuuluviin. Roomalaisperheen äidin roolina on uurastaa näkymättömissä. Aviomies hakkaa ja haukkuu, mutta autokorjaamolla työskentelevä lempeä nuoruudenrakastettu pehmentää pelon sävyttämää arkea. Kun posti tuo yllättävän kirjeen, kuinka pitkään nurkkaan ajettu nainen enää alistuu asemaansa itsestäänselvyytenä?</p><p>Ainahan on huominen on kaikkien aikojen tuottoisin naisen ohjaama italialainen elokuva – kotimaassaan vuonna 2023 jopa katsotumpi kuin Barbie! Italian elokuvatoimittajat valitsivat elokuvan vuoden parhaaksi, samoin sekä tuomaristo että yleisö Rooman elokuvafestivaalilla. Göteborgin elokuvafestivaalilla se palkittiin vuoden parhaana kansainvälisenä elokuvana.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 12<br>Kesto: 118 min.<br>Ensi-ilta: 20.12.2024<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65424/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65431",
            "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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153722,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-13T09:14:44.625420Z",
                    "last_modified_time": "2025-01-13T09:14:44.625438Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758981.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153722/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-13T09:14:44.600389Z",
            "last_modified_time": "2025-01-29T07:15:04.986510Z",
            "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,
            "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,
            "provider": null,
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AAA4FB8B47B4D96C55E6A65C7D2FDDD4/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/AAA4FB8B47B4D96C55E6A65C7D2FDDD4/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/AAA4FB8B47B4D96C55E6A65C7D2FDDD4/Ei_koskaan_yksin_12_"
            },
            "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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65431/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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,
            "name": {
                "fi": "Shumicon",
                "sv": "Shumicon",
                "en": "Shumicon"
            },
            "location_extra_info": null,
            "provider": 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."
            },
            "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"
            },
            "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>"
            },
            "provider_contact_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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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,
            "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,
            "provider": 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."
            },
            "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_"
            },
            "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>"
            },
            "provider_contact_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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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,
            "name": {
                "fi": "Hyvään päätyyn",
                "sv": "Hyvään Päätyyn",
                "en": "Hyvään päätyyn"
            },
            "location_extra_info": null,
            "provider": 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!"
            },
            "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"
            },
            "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>"
            },
            "provider_contact_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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "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,
            "name": {
                "fi": "MUIAT - nykysirkusesitys – Akropatit",
                "sv": "MUIAT - nykysirkusesitys – Akropatit",
                "en": "MUIAT - nykysirkusesitys – Akropatit"
            },
            "location_extra_info": null,
            "provider": 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."
            },
            "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"
            },
            "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>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65275/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}