Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&hide_recurring_children=true&page=247
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19256,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=248",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=246"
    },
    "data": [
        {
            "id": "kulke:61822",
            "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: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:p2625/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6907,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T11:13:00.610026Z",
                    "last_modified_time": "2024-02-06T13:23:06.771755Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742295.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6907/?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": "2023-12-29T11:13:00.595273Z",
            "last_modified_time": "2024-04-05T17:13:44.412134Z",
            "date_published": null,
            "start_time": "2024-02-14T08:30:00Z",
            "end_time": "2024-02-14T09:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/610B1C152F30393000BA175CC0201398/Vauvasirkuksen_jatkokurssi",
                "en": "http://www.stoa.fi/en/events/event/610B1C152F30393000BA175CC0201398/Baby_Circus_for_the_Advanced"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vauvasirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 10.30-11.15 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.</p><p>Viiden kerran kurssi on suunnattu vauvasirkuskurssin käyneille. Stoan seuraava vauvasirkuksen alkeiskurssi alkaa 20.3.2024. <br> <br>Sirkus on hyvin monialaista, ja kurssilla opitut taidot ja liikkeet tarjoavat perustan paitsi sirkustaidoille, myös arkitaidoille ja myöhemmin myös monille liikuntalajeille.</p><p>Jännittävä ja vuorovaikutteinen tunti auttaa lasta löytämään mielen ja kehon yhteyden varhaisessa ikävaiheessa. Tässä tärkeässä oppimisjaksossa lapsen utelias mieli janoaa uusia kokemuksia ja niihin liittyviä tunteita. Tavoitteena on tarjota ilahduttavia hetkiä leikin äärellä ja mahdollisuuksia syventää vanhempien ja lasten välistä suhdetta.</p><p>Tervetuloa sukeltamaan sirkustaiteiden maailmaan!<br>Ohjaaja: sirkusohjaaja Enrique Salas<br>Vauvasirkusryhmän ikäsuositus: 5kk -1-vuotiaat, ei vielä kävelevät lapset  <br>Paikka: Stoan musiikkisali  <br>Kesto: 5 x 45 min   <br>Kieli: suomi, englanti ja espanja</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>During this advanced circus course Wed 7.2.-13.3. (5x) at 10.30-11.15 both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course.</p><p>The course is meant for those who have already completed the Baby Circus for Beginners course. Next beginners’ course begins 20 March 2024.</p><p>Circus is very multi-disciplinary which allows for the introduction of many skills and movements that benefit not only circus skills but provide a foundation for many sports and life in general.</p><p>Expect an exciting and interactive class to help your child connect mind and body at an early age helping them enter a crucial learning period, where their curious minds are eager for new experiences and all of the fancy sensations that come with them. Playing and creating deeper bonds between parents and kids is our goal.</p><p>Welcome to play and dive into the circus arts.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Info: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Vauvasirkuksen jatkokurssi",
                "en": "Baby Circus for the Advanced"
            },
            "short_description": {
                "fi": "Vauvasirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 10.30-11.15 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.",
                "en": "During this advanced circus course Wed 7.2.-13.3. (5x) at 10.30-11.15 both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61822/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61611",
            "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: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: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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6475,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:08.164228Z",
                    "last_modified_time": "2024-02-06T13:23:06.679409Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738482.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6475/?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": "2023-12-07T14:14:08.150397Z",
            "last_modified_time": "2024-04-05T17:13:44.360893Z",
            "date_published": null,
            "start_time": "2024-02-14T08:00:00Z",
            "end_time": "2024-02-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EAACF6C71C8BD60A1174DF314F11E265/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/EAACF6C71C8BD60A1174DF314F11E265/Naperokino",
                "en": "http://www.annantalo.fi/en/events/event/EAACF6C71C8BD60A1174DF314F11E265/Naperokino"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä. Lisäksi ke 17.1., 14.2. ja 24.4. pääset myös tapaamaan ja halaamaan Naperokinossa vierailevaa isoa Myyrää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>",
                "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>",
                "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61611/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61676",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6906,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T11:13:00.509669Z",
                    "last_modified_time": "2024-02-06T13:23:06.583101Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742499.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6906/?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": "2023-12-29T11:13:00.493986Z",
            "last_modified_time": "2024-04-05T17:13:44.303929Z",
            "date_published": null,
            "start_time": "2024-02-14T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4F07BB8231E3A7267F7841951602A8F2/PERUTTU_LAKON_VUOKSI_Sonya_Lindfors_Something_like_this",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4F07BB8231E3A7267F7841951602A8F2/CANCELLED_Sonya_Lindfors_Something_like_this",
                "en": "http://www.stoa.fi/en/events/event/4F07BB8231E3A7267F7841951602A8F2/CANCELLED_Sonya_Lindfors_Something_like_this"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Esitys, jossa tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.</p><p>Nuorille suunnatussa teoksessa neljä katutanssitaustaista esiintyjää kohtaavat näyttämöllä. Yksinkertaisesta lähtökohdasta rakentuu rikas kokonaisuus, jossa kohtaukset rakentuvat katsojien silmien edessä. Erilaisista taustoista tulevat esiintyjät tanssivat, kertovat tarinoita ja pitävät hauskaa – yhdessä. Tällä näyttämöllä on tilaa monenlaisille tarinoille.</p><p>Something like this tekee näyttämöstä tanssilattian, jossa tarinat, identiteetit ja tekemisen tavat voivat kohdata. Teos kysyy yhdessä katsojien kanssa: Miten esitys tulisi katsoa tai kokea, miten tanssi tai liike siirtyy kehosta toiseen, millaisia asioita tanssilla tai liikkeellä voi kertoa? Millainen on yhteisöllinen dramaturgia?</p><p>Teos toteutetaan osana Zodiakin Zodiak-nuoret hanketta. Esitys kiertää pääkaupunkiseudun kulttuuritaloissa keväällä 2024.</p><p>Ensi-ilta Zodiak stagella 30.8.2023<br>Kohderyhmä: 13+ (yläkoulut + toisen asteen oppilaitokset)<br>Kesto 50–55 min<br>Ilmoittautuminen: kultus.fi 10.1. klo 10</p><p>Lisätiedot: hanna.westerholm@hel.fi</p><p>Konsepti ja ohjaus: Sonya Lindfors<br>Koreografia: Sonya Lindfors & työryhmä<br>Esiintyjät: Akim Bakhtaoui, Linda Ilves, Ramona Panula, Sophia Wekesa<br>Äänisuunnittelu: Sebastian Kurtén<br>Valosuunnittelu: Erno Aaltonen<br>Pukusuunnittelu: Sanna Levo<br>Prosessissa mukana esiintyjänä: Selma Kauppinen<br>Tuotanto: Zodiak - Uuden tanssin keskus, osana Zodiak-nuoret –hanketta<br>Tukija: Jane ja Aatos Erkon Säätiö</p><p>Mahdollisuus työpajaan esityksen jälkeen (max 30 osallistujaa). Työpajan kesto 30-45 minuuttia.<br>Something like this -työpassa sukelletaan katutanssin ja näyttämön maailmaan. Työpassa liikutaan, keskustellaan ja tehdään erilaisia harjoitteita teoksesta esiintyjien lempeässä ja kannustavassa ohjauksessa. Kuten esityksessäkin, työpajassa yhdessä tekeminen, kokeminen jakaminen ja jammailu on keskiössä. Kysy lisää: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.</p>",
                "en": "<p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>"
            },
            "name": {
                "fi": "PERUTTU LAKON VUOKSI Sonya Lindfors: Something like this",
                "sv": "CANCELLED Sonya Lindfors: Something like this",
                "en": "CANCELLED Sonya Lindfors: Something like this"
            },
            "short_description": {
                "fi": "Esitys, jossa tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.",
                "sv": "Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.",
                "en": "Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61676/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61814",
            "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: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:p2625/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6900,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T10:14:23.401549Z",
                    "last_modified_time": "2024-02-06T13:23:06.483909Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742290.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6900/?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": "2023-12-29T10:14:23.375992Z",
            "last_modified_time": "2024-04-05T17:13:44.211751Z",
            "date_published": null,
            "start_time": "2024-02-14T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/20BDA08ABE676A131878D9A1EC433460/Taaperosirkuksen_jatkokurssi_",
                "en": "http://www.stoa.fi/en/events/event/20BDA08ABE676A131878D9A1EC433460/Toddler_Circus_for_the_Advanced"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Taaperosirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 9.15-10 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.</p><p>Viiden kerran mittainen kurssi on suunnattu vauvasirkuskurssin tai taaperojen alkeiskurssin käyneille. Stoan seuraava alkeiskurssi alkaa 20.3.2024. <br> <br>Sirkus on hyvin monialaista, ja kurssilla opitut taidot ja liikkeet tarjoavat perustan paitsi sirkustaidoille, myös arkitaidoille ja myöhemmin myös monille liikuntalajeille.</p><p>Jännittävä ja vuorovaikutteinen tunti auttaa lasta löytämään mielen ja kehon yhteyden varhaisessa ikävaiheessa. Tässä tärkeässä oppimisjaksossa lapsen utelias mieli janoaa uusia kokemuksia ja niihin liittyviä tunteita. Tavoitteena on tarjota ilahduttavia hetkiä leikin äärellä ja mahdollisuuksia syventää vanhempien ja lasten välistä suhdetta.</p><p>Tervetuloa sukeltamaan sirkustaiteiden maailmaan!</p><p>Ohjaaja: sirkusopettaja, sirkustaiteilija Enrique Salas</p><p>Taaperosirkuksen osallistujat: 1–2-vuotiaat, jo kävelevät lapset  <br>Paikka: Stoan musiikkisali  <br> <br>Kesto: 5 x 45 min   <br>Kieli: suomi, englanti ja espanja    <br> <br>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>During this advanced circus course Wed 7.2.-13.3. (5x) at 9.15-10, both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course.</p><p>The course is meant for those who have already completed the Toddler Circus for Beginners course. Next beginners’ course begins 20 March 2024.</p><p>Circus is very multi-disciplinary which allows for the introduction of many skills and movements that benefit not only circus skills but provide a foundation for many sports and life in general.</p><p>Expect an exciting and interactive class to help your child connect mind and body at an early age helping them enter a crucial learning period, where their curious minds are eager for new experiences and all of the fancy sensations that come with them. Playing and creating deeper bonds between parents and kids is our goal.<br> <br>Welcome to play and dive into the circus arts.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Language: English, Spanish and Finnish    <br>Age recommendation: 1–2 years old with a parent or grandparent  <br>Duration: 5 x 45 min</p><p>Registration 10.1. at 10 a.m. www.stoa.fi</p><p>Info: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Taaperosirkuksen jatkokurssi",
                "en": "Toddler Circus for the Advanced"
            },
            "short_description": {
                "fi": "Taaperosirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 9.15-10 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.",
                "en": "During this advanced circus course Wed 7.2.-13.3. (5x) at 9.15-10, both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61785",
            "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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6862,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T10:12:43.076346Z",
                    "last_modified_time": "2024-02-06T13:23:06.389191Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742280.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6862/?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": "2023-12-28T10:12:43.063193Z",
            "last_modified_time": "2024-04-05T17:13:44.153253Z",
            "date_published": null,
            "start_time": "2024-02-13T15:30:00Z",
            "end_time": "2024-02-13T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B6FD824936FAC3797EFEFFC5DED5CB87/Stoan_perhesirkuskurssi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B6FD824936FAC3797EFEFFC5DED5CB87/Cirkus_for_familjer_",
                "en": "http://www.stoa.fi/en/events/event/B6FD824936FAC3797EFEFFC5DED5CB87/Circus_course_for_families_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkus on aina herättänyt uteliaisuutta ja iloa niin isoissa kuin pienissäkin. Tämä lapsen ja aikuisen yhteinen harrastus avaa ovia sirkuksen maailmaan.</p><p>Sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan lapseensa.</p><p>Ohjaaja: Enrique Salas <br>Kesto: 10 x 45 min <br>Max. osallistujamäärä: 12 paria <br>Kielet: englanti, espanja, suomi <br>Maksuton.</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15</p><p>Nu är det dags för skoj och lek i cirkusens magiska värld. Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv. Föräldrar får pröva på cirkuskonst och självklart också knyta an till sitt eget barn.</p><p>Lektioner för barn i åldern 3–6 tillsammans med vuxen.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas  <br>Längd: 10 x45 min. <br>Språk: engelska, spanska och finska  <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1. kl 10. www.stoa.fi<br>Mera info: hanna.westerholm@hel.fi</p>",
                "en": "<p>The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15</p><p>Now it is time to have fun with your little toddler throughout the magic of circus. It will be a complete sensory experience for your child, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more. Parents will get a chance to have a go at some circus skills and of course bond with your own little one.</p><p>Classes for children from 3 to 6 years of age accompanied by an adult.</p><p>Instructor: circus instructor and performer Enrique Salas  <br>Duration: 10 x 45 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi<br>More info: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Stoan perhesirkuskurssi",
                "sv": "Cirkus för familjer",
                "en": "Circus course for families"
            },
            "short_description": {
                "fi": "Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).",
                "sv": "Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15",
                "en": "The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61785/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61776",
            "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:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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:732/?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:p2625/?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:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6851,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T09:14:08.344325Z",
                    "last_modified_time": "2024-02-06T13:23:06.299952Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742270.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6851/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-12-28T09:14:08.316224Z",
            "last_modified_time": "2024-04-05T17:13:44.095114Z",
            "date_published": null,
            "start_time": "2024-02-13T14:00:00Z",
            "end_time": "2024-02-13T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/686E79E64F6C2067D4AC36E71FE12630/Stoan_seniorisirkuskurssi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/686E79E64F6C2067D4AC36E71FE12630/Cirkus_for_seniorer_",
                "en": "http://www.stoa.fi/en/events/event/686E79E64F6C2067D4AC36E71FE12630/Circus_course_for_seniors_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Liikunnan ei tarvitse olla tylsää! Ikäihmisten kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä. Kurssiaika: ti 6.2. -16.4. klo 16-17 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua pureutumalla etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p>Ohjaaja: sirkusohjaaja Enrique Salas  <br>Paikka: Stoan musiikkisali    <br>Kesto: 10 x 60 min    <br>Max. osallistujamäärä: 20<br>Kieli: englanti, espanja, suomi <br>Maksuton</p><p>Ennakkoilmoittautuminen ke 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla puolella olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträfflig sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas  <br>Åldersrekommendation: för seniorer  <br>Längd: 10 x 60 min <br>Språk: engelska, spanska och finska  <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1.2024 kl 10.00 på stoa.fi.</p><p>Info: hanna.westerholm@hel.fi</p>",
                "en": "<p>At the senior circus course, the participants get to, for example, practise their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control.</p><p>Instructor: circus instructor and performer Enrique Salas  <br>Age recommendation: for senior citizens  <br>Duration: 10 x 60 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi</p><p>More info: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Stoan seniorisirkuskurssi",
                "sv": "Cirkus för seniorer",
                "en": "Circus course for seniors"
            },
            "short_description": {
                "fi": "Liikunnan ei tarvitse olla tylsää! Ikäihmisten kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä. Kurssiaika: ti 6.2. -16.4. klo 16-17 (ei talvilomaviikolla ti 20.2.).",
                "sv": "Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.",
                "en": "At the senior circus course, the participants get to, for example, practise their balance and mobility using circus equipment."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61776/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61164",
            "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:104/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6946,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-02T08:12:52.656264Z",
                    "last_modified_time": "2024-02-06T13:23:06.012101Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738158.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-02T07:13:06.237764Z",
            "last_modified_time": "2024-04-05T17:13:43.951727Z",
            "date_published": null,
            "start_time": "2024-02-12T16:00:00Z",
            "end_time": "2024-02-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/146371CAE8A9D3411C693BA5FAD188D2/Kirjailijavieraana_Minna_Rytisalo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/146371CAE8A9D3411C693BA5FAD188D2/Kirjailijavieraana_Minna_Rytisalo",
                "en": "http://www.kanneltalo.fi/en/events/event/146371CAE8A9D3411C693BA5FAD188D2/Kirjailijavieraana_Minna_Rytisalo"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Rytisalon Jenny Hill -teoksen Mäen Jenni on tavallinen, eronnut nainen. Hänen sisällään säihkyy kuitenkin Jenny Hill, joka uskaltaa enemmän ja kommentoi sitä, miten maailma katsoo naista.</p><p>Hän ei tyydy annettuihin määritelmiin vaan kyseenalaistaa totuudet.</p><p>Haastattelija FM <b>Tuija Takala</b>.</p><p><b>Minna Rytisalon</b> <i>Jenny Hill</i> (WSOY, 2023) on vaikuttava romaani naiseudesta, keski-iästä, vaihdevuosista, vanhenemisesta ja siitä, millaista on elää naisena tässä maailmassa – ja vähän myös satujen prinsessoista ja Brigitte Macronista. Minna Rytisalon kieli lumoaa. Jenny Hill on sävykäs ja ajankohtainen romaani, joka tekee rohkeasti oikeutta naisen ruumiillisuudelle.</p><p>Rytisalo kertoo tilaisuudessa myös <i>Huokauksia luokasta</i> -teoksestaan (WSOY 2023), jonka hän on kirjoittanut yhdessä kirjailija <b>Tommi Kinnusen kanssa</b>. Teos koostuu vuoden aikana käydystä kirjeenvaihdosta, jossa päällimmäisenä aiheena on suomalaisen koululaitoksen nykytila. Kinnunen ja Rytisalo kirjoittavat opettamisen ihanuudesta, siitä kuinka hienoa on raottaa ovia kielen ja kirjallisuuden maailmaan ja nähdä kuinka nuoret seiskaluokkalaisista abiturientteihin asti löytävät omat vahvuutensa.</p><p>Kaikkea tätä kuitenkin varjostavat rakenteelliset haasteet: sekä opettajien että oppilaiden uupuminen ja mielenterveysongelmat. Taustalla ovat opetussuunnitelman, YTL:n ja korkeakoulujen vaatimukset sekä jatkuva uudistusten kierre. Kinnunen ja Rytisalo eivät vain vatvo ongelmia vaan pohtivat myös ratkaisuja. Peilatessaan ajatuksiaan he myös avautuvat toisilleen ja lukijalle, hahmottavat maailmaa sanoin, kertovat kirjailijantyöstä, maailmantilaan kohdistuvista huolista – ja vähän myös koirista ja omenapuista.</p><p>Sodankylässä syntyneen ja Kuusamossa asuvan Minna Rytisalon (s. 1974) esikoisteos <i>Lempi</i> (2016) oli arvostelu- ja myyntimenestys. Se palkittiin Kiitos kirjasta -mitalilla, Botnia-palkinnolla ja kirjabloggaajien myöntämällä Blogistanian Finlandialla. Lempin käännösoikeudet on myyty viiteen maahan. <i>Rouva C.</i> (2018) lumosi lukijat ja sai Vuoden kirja -palkinnon, Kaarlen palkinnon ja Tulenkantaja-palkinnon. Molemmista romaaneista on tehty näyttämösovituksia.</p><p><b>Maksuttomat maanantait</b> on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p><p>Kieli: suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Jenni Mäki i Rytisalos verk Jenny Hill är en vanlig, frånskild kvinna. Men inuti strålar Jenny Hill, som vågar mer och kommenterar hur världen ser på en kvinna.</p><p>Intervjuare FM <b>Tuija Takala</b>.</p><p><b>Kostnadsfria måndagar</b> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt.</p>",
                "en": "<p>In Rytisalo’s Jenny Hill, Jenni Mäki is an ordinary, divorced woman. Yet, inside of her sparkles Jenny Hill, a daring character who comments on the way the world looks at women.</p><p>Interviewer Ph.M. <b>Tuija Takala</b>.</p><p><b>Free Mondays</b> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all.</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Minna Rytisalo – Maksuttomat maanantait",
                "sv": "Kirjailijavieraana Minna Rytisalo – Kostnadsfria måndagar",
                "en": "Kirjailijavieraana Minna Rytisalo – Free Mondays"
            },
            "short_description": {
                "fi": "Rytisalon Jenny Hill -teoksen Mäen Jenni on tavallinen, eronnut nainen. Hänen sisällään säihkyy kuitenkin Jenny Hill, joka uskaltaa enemmän ja kommentoi sitä, miten maailma katsoo naista.",
                "sv": "Jenni Mäki i Rytisalos verk Jenny Hill är en vanlig, frånskild kvinna. Men inuti strålar Jenny Hill, som vågar mer och kommenterar hur världen ser på en kvinna.",
                "en": "In Rytisalo’s Jenny Hill, Jenni Mäki is an ordinary, divorced woman. Yet, inside of her sparkles Jenny Hill, a daring character who comments on the way the world looks at women."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61164/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61857",
            "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:105/?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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7079,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:56.755012Z",
                    "last_modified_time": "2024-02-06T13:23:05.829457Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736590.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7079/?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-01-10T13:12:56.741488Z",
            "last_modified_time": "2024-04-05T17:13:43.868998Z",
            "date_published": null,
            "start_time": "2024-02-12T08:15:00Z",
            "end_time": "2024-02-12T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0086368CDC5A8148D2CC3CB8D2A554A4/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0086368CDC5A8148D2CC3CB8D2A554A4/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/0086368CDC5A8148D2CC3CB8D2A554A4/The_dance_and_play"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "short_description": {
                "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61857/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61856",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7078,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:56.674470Z",
                    "last_modified_time": "2024-02-06T13:23:05.736202Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736573.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7078/?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-01-10T12:13:01.706795Z",
            "last_modified_time": "2024-04-05T17:13:43.821036Z",
            "date_published": null,
            "start_time": "2024-02-12T07:15:00Z",
            "end_time": "2024-02-12T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/238B5A466FD89B1A8A0A89961223593C/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/238B5A466FD89B1A8A0A89961223593C/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/238B5A466FD89B1A8A0A89961223593C/The_dance_and_play"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61856/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61812",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22,50 €",
                        "sv": "22,50 €",
                        "en": "22,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/joakim-tinderholt-his-band-nor-malmitalo-17956046/",
                        "sv": "https://www.lippu.fi/event/joakim-tinderholt-his-band-nor-malmitalo-17956046/",
                        "en": "https://www.lippu.fi/event/joakim-tinderholt-his-band-nor-malmitalo-17956046/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6899,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T10:14:23.088467Z",
                    "last_modified_time": "2024-02-06T13:23:05.642209Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742034.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6899/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-29T10:14:23.055829Z",
            "last_modified_time": "2024-04-05T17:13:43.762758Z",
            "date_published": null,
            "start_time": "2024-02-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/24FD6C772409D036A06C69BE55C59A71/Joakim_Tinderholt_his_band_NOR_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/24FD6C772409D036A06C69BE55C59A71/Joakim_Tinderholt_his_band_NOR_",
                "en": "http://www.malmitalo.fi/en/events/event/24FD6C772409D036A06C69BE55C59A71/Joakim_Tinderholt_his_band_NOR_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Oslolainen Joakim Tinderholt on niittänyt kansainvälistä mainetta juurimusiikin ystävien keskuudessa 2000-luvun alkupuolelta lähtien.</p><p>Tinderholt rakentaa repertuaariansa vintage-henkisestä 1950-luvun bluesista, rhythm’n’bluesista ja rock’n’rollista sekä varhaisesta soulista. Tyylillisesti mm. JD McPhersonin ja Nick Curranin tapaisiin amerikkalaisartisteihin rinnastettu karismaattinen laulaja, kitaristi ja lauluntekijä tuo Malmitaloon ainoalle Suomen-keikalleen norjalaisen vakioyhtyeensä, jonka kanssa hän on tehnyt tähän mennessä kolme albumia. Julkaisuista tuorein, ”Deadlines” ilmestyi loppuvuonna 2023.</p>",
                "sv": "<p>Osloartisten Joakim Tinderholts repertoar bygger på 1950-talsblues i vintage-anda, rhythm’n’blues och rock’n’roll samt tidig soul, och han har från och med början av 2000-talet uppnått internationell framgång bland rootsmusikens vänner.</p><p>Tinderholt är en karismatisk sångare, gitarrist och låtskrivare, vars stil har jämförts med bland annat de amerikanska artisterna JD McPherson och Nick Curran. Tinderholt och hans norska standardband har till dags dato släppt tre album, och framträder en enda gång i Finland på Malms kulturhus. Det färskaste albumet ”Deadlines” utkom i slutet av 2023.</p>",
                "en": "<p>The Oslo-based Joakim Tinderholt, whose repertoire ranges from vintage-inspired 1950s blues, rhythm and blues and rock and roll to early soul, has been building an international reputation among roots music fans since the early 2000s.</p><p>Stylistically comparable  to American artists such as JD McPherson and Nick Curran, the charismatic singer, guitarist, and songwriter brings his Norwegian backing band – with whom he has made three albums so far – to Malmitalo for his only concert in Finland. Their most recent release, ‘Deadlines’, was published in late 2023.</p>"
            },
            "name": {
                "fi": "Joakim Tinderholt & his band (NOR)",
                "sv": "Joakim Tinderholt & his band (NOR)",
                "en": "Joakim Tinderholt & his band (NOR)"
            },
            "short_description": {
                "fi": "Oslolainen Joakim Tinderholt on niittänyt kansainvälistä mainetta juurimusiikin ystävien keskuudessa 2000-luvun alkupuolelta lähtien.",
                "sv": "Osloartisten Joakim Tinderholts repertoar bygger på 1950-talsblues i vintage-anda, rhythm’n’blues och rock’n’roll samt tidig soul, och han har från och med början av 2000-talet uppnått internationell framgång bland rootsmusikens vänner.",
                "en": "The Oslo-based Joakim Tinderholt, whose repertoire ranges from vintage-inspired 1950s blues, rhythm and blues and rock and roll to early soul, has been building an international reputation among roots music fans since the early 2000s."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61812/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61593",
            "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:33/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3459574/",
                        "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3459574/",
                        "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3459574/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T13:15:24.984377Z",
                    "last_modified_time": "2024-02-06T13:23:05.170284Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737961.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T13:15:24.961587Z",
            "last_modified_time": "2024-04-05T17:13:43.624276Z",
            "date_published": null,
            "start_time": "2024-02-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8233B640905FAE9BB07F673B867ED126/Red_Nose_Company_Punahilkan_paluu",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8233B640905FAE9BB07F673B867ED126/Red_Nose_Company_Rodluvans_aterkomst",
                "en": "http://www.vuotalo.fi/en/events/event/8233B640905FAE9BB07F673B867ED126/Red_Nose_Company_The_Return_of_Little_Red_Riding_Hood"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.</p><p>Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan. Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa?</p><p>Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä. Esitys on suunnattu erityisesti alakoululaisille ja heidän perheilleen.</p><p>Esityksen kesto: n. 60 min <br>Ikäsuositus: 6+ <br>Kieli: suomi</p><p>Työryhmä <br>Ohjaus: Niina Sillanpää <br>Käsikirjoitus: Minna Puolanto, Hanna Seppä ja Niina Sillanpää <br>Rooleissa: Minna Puolanto (Babylon) ja Hanna Seppä (Ré) <br>Valo- ja äänisuunnittelu: Jere Kolehmainen <br>Pukusuunnittelu: Noora Salmi <br>Kuvat: Ilari Kallinen<br>Tuotanto: Red Nose Companyn yhteistuotanto Kanneltalon kanssa</p><p>Ensi-ilta Kanneltalossa 7.9.2023.</p>",
                "sv": "<p>I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.</p><p>Sagan om Rödluvan har berättats från generation till generation i hundratals år. Nu får vi se den älskade sagan på scen i en glädjerik tolkning av clownerna Babylon och Ré.</p><p>Manteln som Rödluvan får av sin mormor ger henne superkrafter och hjälper henne att klara sig i kniviga situationer. Trots superkrafterna behövs även publikens hjälp. Hur kommer mötet mellan vargen och Rödluvan att gå till i den här moderna, uppdaterade versionen?</p><p>Utan att spara på humorn leder clownerna publiken till att fundera över teman kring tillit och trygghet.</p><p>Längd: 60 min.<br>Åldersrekommendation: 6+<br>Språk: finska</p>",
                "en": "<p>In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic.</p><p>The story of Little Red Riding Hood has been told from generation to generation for hundreds of years. Now the beloved tale is brought to the stage in a hilarious interpretation by two clowns, Babylon and Ré.</p><p>The cape, a gift from her grandmother, gives Little Red Riding Hood superpowers and helps her survive tricky situations. Despite the superpowers, the audience’s help is also needed. How will the encounter between the wolf and Little Red Riding Hood play out in this modernised version?</p><p>The clowns will lead the audience to consider the themes of trust and safety, not forgetting humour.</p><p>Performance duration: 60 min<br>Age recommendation: 6+<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "Red Nose Company: Punahilkan paluu – Eli kuinka mennään kunnolla metsään ja tullaan supersankariksi",
                "sv": "Red Nose Company: Rödluvans återkomst",
                "en": "Red Nose Company: The Return of Little Red Riding Hood"
            },
            "short_description": {
                "fi": "Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.",
                "sv": "I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.",
                "en": "In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61593/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61622",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6503,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T15:14:44.540994Z",
                    "last_modified_time": "2024-02-06T13:23:04.973870Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737766.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6503/?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": "2023-12-07T15:14:44.516103Z",
            "last_modified_time": "2024-04-05T17:13:43.523205Z",
            "date_published": null,
            "start_time": "2024-02-10T10:00:00Z",
            "end_time": "2024-02-10T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/993AF4B0481F96B8C0F1A6929535E977/Ursa_Minor_Skidien_viittomakielen_paiva_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/993AF4B0481F96B8C0F1A6929535E977/Ursa_Minor_Barnens_teckenspraksdag",
                "en": "http://www.annantalo.fi/en/events/event/993AF4B0481F96B8C0F1A6929535E977/Ursa_Minor_Children_s_sign_language_day"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa Annantalolle viettämään Skidien viittomakielen päivää.</p><p>Tervetuloa Annantalolle viettämään Skidien viittomakielen päivää 2024! Juhlimme viittomakielistä lastenkulttuuria, jonka takia Skidien viittomakielen päivä järjestetään viittomakielen päivän 12.2 kanssa samoihin aikoihin.</p><p>Tapahtuman aikana matkaamme avaruuteen ja pääsemme tutkimaan tähtien ja planeettojen maailmaa viittomakielisten astronauttiopettajien ohjauksessa. Ohjelmassa on muun muassa luvassa askartelua, satuja ja leikkejä. Alla on tarkempi ohjelma:</p><p>12:00 Tapahtuma alkaa<br>12:15 Askartelutuokio pienemmille taideluokassa & aistituokio Juhlasalissa<br>13:00 Tauko<br>13:15 Askartelutuokio vanhemmille taideluokassa & aistituokio Juhlasalissa<br>14:00 Tauko<br>14:15 Satutuokio<br>15:00 Tapahtuma päättyy</p><p>Tapahtuma on ilmainen ja avoin kaikille lapsille ja lapsenmielisille, niin viittomakielisille kuin puhuvillekin. Tapahtuma on viittomakielinen ja paikalla on viittomakielen tulkkeja. Nähdään Annantalolla</p>",
                "sv": "<p>Välkommen till Annegården för att fira Barnens teckenspråksdag.</p><p>Det ska bli en oförglömlig resa till rymden, där barn kan utforska stjärnornas och planeternas värld under ledning av astronautlärare som talar teckenspråk.</p><p>Evenemanget är gratis och öppet för alla.</p>",
                "en": "<p>Welcome to Annantalo to celebrate children’s sign language day. This</p><p>This will be an unforgettable journey into space, where children can explore the world of stars and planets under the guidance of sign language astronaut teachers.</p><p>The event is free of charge and open to everyone.</p>"
            },
            "name": {
                "fi": "Ursa Minor: Skidien viittomakielen päivä",
                "sv": "Ursa Minor: Barnens teckenspråksdag",
                "en": "Ursa Minor: Children’s sign language day"
            },
            "short_description": {
                "fi": "Tervetuloa Annantalolle viettämään Skidien viittomakielen päivää.",
                "sv": "Välkommen till Annegården för att fira Barnens teckenspråksdag.",
                "en": "Welcome to Annantalo to celebrate children’s sign language day. This"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61622/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61203",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/",
                        "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/",
                        "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T12:13:17.432822Z",
                    "last_modified_time": "2024-02-06T13:23:04.878061Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739143.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T12:13:17.410098Z",
            "last_modified_time": "2024-04-05T17:13:43.468442Z",
            "date_published": null,
            "start_time": "2024-02-09T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0A7FDFA0170A27CBAEEFC835ECF57A6E/Itakuskus_stand_up_-klubi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0A7FDFA0170A27CBAEEFC835ECF57A6E/Itakuskus_stand_up-klubb",
                "en": "http://www.stoa.fi/en/events/event/0A7FDFA0170A27CBAEEFC835ECF57A6E/Itakuskus_Stand-up_Club"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti <b>Fabe</b>. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: <b>Koomikko Mebe</b>! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä!  ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"</p><p>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.</p><p>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\"</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18 (salissa anniskelua)<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi</p>",
                "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p><p>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe<br> <br>Längd: ca. 2,5 t. <br>Åldersgräns: 18 (servering av alkohol i teatersalen)<br>Språk: finska, ibland engelska</p>",
                "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p><p>servering av alkohol i teatersalen</p><p>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe</p><p>Duration: approx. 2,5 h<br>Age rating: 18 (alcohol service in the theatre)<br>Language: Finnish, occasionally featuring English-speaking performers</p>"
            },
            "name": {
                "fi": "Itäkuskus stand up -klubi",
                "sv": "Itäkuskus stand up-klubb",
                "en": "Itäkuskus Stand-up Club"
            },
            "short_description": {
                "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"",
                "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”",
                "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61203/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:62999",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7385,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-26T10:14:21.283967Z",
                    "last_modified_time": "2024-02-06T13:23:04.791757Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744312.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7385/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-26T10:14:21.256246Z",
            "last_modified_time": "2024-04-05T17:13:43.408282Z",
            "date_published": null,
            "start_time": "2024-02-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C349E638E196084CC7BB127FE3D7FF45/Haivahdys_purppuraa_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C349E638E196084CC7BB127FE3D7FF45/Haivahdys_purppuraa_12_",
                "en": "http://www.malmitalo.fi/en/events/event/C349E638E196084CC7BB127FE3D7FF45/The_Color_Purple_12_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Warner Bros. Pictures kutsuu sinut kokemaan poikkeuksellisen sisarussuhteen kolmen naisen välillä, joita yhdistää särkymätön side Häivähdys purppuraa -elokuvassa.</p><p>Tämän rohkean, uuden kuvauksen on ohjannut Blitz Bazawule ja tuottaneet Oprah Winfrey, Steven Spielberg, Scott Sanders ja Quincy Jones.</p><p>Elokuvaa ”Häivähdys purppuraa” tähdittävät Taraji P. Henson, Danielle Brooks, Colman Domingo, Corey Hawkins, H.E.R., Halle Bailey, Aunjanue Ellis-Taylor ja Fantasia Barrino.</p><p>Käsikirjoitus Marcus Gardley, perustuen Alice Walkerin romaaniin ja musiikkinäytelmään, Marsha Normanin kirjaan (musiikkinäytelmästä), musiikki ja lyriikat Brenda Russell, Allee Willis ja Stephen Bray.</p><p>Kesto 141 min<br>Ikäraja 12</p><p>Ensi-ilta 19.1.</p>",
                "en": "<p>Warner Bros. Pictures invites you to experience the extraordinary sisterhood of three women who share one unbreakable bond in “The Color Purple.”</p><p>This bold new take on the beloved classic is directed by Blitz Bazawule and produced by Oprah Winfrey, Steven Spielberg, Scott Sanders and Quincy Jones.</p><p>“The Color Purple” stars Taraji P. Henson, Danielle Brooks, Colman Domingo, Corey Hawkins, H.E.R., Halle Bailey, Aunjanue Ellis-Taylor and Fantasia Barrino.</p><p>The screenplay is by Marcus Gardley, based on the novel by Alice Walker and based on the musical stage play, book (of the musical stage play) by Marsha Norman, music and lyrics by Brenda Russell, Allee Willis and Stephen Bray.</p>"
            },
            "name": {
                "fi": "Häivähdys purppuraa (12) – Kino Helios",
                "sv": "Häivähdys purppuraa (12) – Kino Helios",
                "en": "The Color Purple (12) – Kino Helios"
            },
            "short_description": {
                "fi": "Warner Bros. Pictures kutsuu sinut kokemaan poikkeuksellisen sisarussuhteen kolmen naisen välillä, joita yhdistää särkymätön side Häivähdys purppuraa -elokuvassa.",
                "en": "Warner Bros. Pictures invites you to experience the extraordinary sisterhood of three women who share one unbreakable bond in “The Color Purple.”"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:62999/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61480",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-17981755",
                        "sv": "https://www.lippu.fi/event/name-17981755",
                        "en": "https://www.lippu.fi/event/name-17981755"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6300,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T14:13:59.078751Z",
                    "last_modified_time": "2024-02-06T13:23:04.702005Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739553.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6300/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T14:13:59.033842Z",
            "last_modified_time": "2024-04-05T17:13:43.355626Z",
            "date_published": null,
            "start_time": "2024-02-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/63414F55E8B4B456ADC1EF0EDBD738E8/The_Show_Mykkakomedia",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/63414F55E8B4B456ADC1EF0EDBD738E8/The_Show",
                "en": "http://www.kanneltalo.fi/en/events/event/63414F55E8B4B456ADC1EF0EDBD738E8/The_Show"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Mykkäkomedia, josta ei vauhtia ja kommelluksia puutu.</p><p>The Show taivuttelee lavan täydeltä fyysistä komiikkaa ja kuljettaa katsojat 1900-luvun alun varieteenäytösten ja mustavalkoelokuvien maailmaan. Esiintyjät taikovat lavalle yllättävien tilanteiden ja tapahtumien vyöryn kehojaan, kahta sermiä ja kourallista rekvisiittaa käyttäen. Esityksen innoittajina ovat olleet mykkäelokuvien kultakauden slapstick-komediat.</p><p>Näyttelijät: Mika Juusela ja Antti Kemppainen<br>Ohjaus: Harry Bergman<br>Äänisuunnittelu: Harry Bergman ja Harri Neuvonen</p><p>Kesto: noin 1 t<br>Ikäsuositus: nuoret ja aikuiset, 12+ <br>Kieli: suomi</p>",
                "sv": "<p>En stumkomedi som inte saknar fart och äventyr.</p><p>The Show packar scenen full av fysisk komik och flyttar åskådarna till världen av varietéföreställningar och svartvita filmer i början av 1900-talet.</p><p>Skådespelare: Mika Juusela och Antti Kemppainen<br>Regi: Harry Bergman<br>Ljuddesign: Harry Bergman och Harri Neuvonen</p><p>Längd: ca 1 timme<br>Ålder: 12+<br>Språk: finska</p>",
                "en": "<p>A silent comedy filled with momentum and mishaps.</p><p>The Show is a stage full of physical comedy that transports viewers to the world of early 20th-century variety shows and black-and-white films.</p><p>On stage: Mika Juusela and Antti Kemppainen<br>Directed by: Harry Bergman<br>Sound design: Harry Bergman and Harri Neuvonen</p><p>Duration: about 1 hour<br>Age: 12+<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "The Show – Mykkäkomedia",
                "sv": "The Show",
                "en": "The Show"
            },
            "short_description": {
                "fi": "Mykkäkomedia, josta ei vauhtia ja kommelluksia puutu.",
                "sv": "En stumkomedi som inte saknar fart och äventyr.",
                "en": "A silent comedy filled with momentum and mishaps."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61480/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61398",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kanneltalo/the-show-mykkae-komedia-3543917/",
                        "sv": "https://www.lippu.fi/artist/kanneltalo/the-show-mykkae-komedia-3543917/",
                        "en": "https://www.lippu.fi/artist/kanneltalo/the-show-mykkae-komedia-3543917/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6145,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-22T14:13:50.303320Z",
                    "last_modified_time": "2024-02-06T13:23:04.415583Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739549.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6145/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-22T14:13:50.282691Z",
            "last_modified_time": "2024-04-05T17:13:43.299320Z",
            "date_published": null,
            "start_time": "2024-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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/074E1FF87A67CF235A04C464C4CD631A/The_Show_Mykkakomedia_ENSI-ILTA",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/074E1FF87A67CF235A04C464C4CD631A/The_Show_PREMIAR",
                "en": "http://www.kanneltalo.fi/en/events/event/074E1FF87A67CF235A04C464C4CD631A/The_Show_PREMIERE"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Mykkäkomedia, josta ei vauhtia ja kommelluksia puutu.</p><p>The Show taivuttelee lavan täydeltä fyysistä komiikkaa ja kuljettaa katsojat 1900-luvun alun varieteenäytösten ja mustavalkoelokuvien maailmaan. Esiintyjät taikovat lavalle yllättävien tilanteiden ja tapahtumien vyöryn kehojaan, kahta sermiä ja kourallista rekvisiittaa käyttäen. Esityksen innoittajina ovat olleet mykkäelokuvien kultakauden slapstick-komediat.</p><p>Näyttelijät: Mika Juusela ja Antti Kemppainen<br>Ohjaus: Harry Bergman<br>Äänisuunnittelu: Harry Bergman ja Harri Neuvonen</p><p>Kesto: noin 1 t<br>Ikäsuositus: nuoret ja aikuiset, 12+ <br>Kieli: sanaton</p><p>Muut esitykset:<br>Pe 9.2. klo 18<br>La 10.2. klo 15<br>Pe 1.3. klo 18<br>La 2.3. klo 15</p>",
                "sv": "<p>En stumkomedi som inte saknar fart och äventyr.</p><p>The Show packar scenen full av fysisk komik och flyttar åskådarna till världen av varietéföreställningar och svartvita filmer i början av 1900-talet.</p><p>Skådespelare: Mika Juusela och Antti Kemppainen<br>Regi: Harry Bergman<br>Ljuddesign: Harry Bergman och Harri Neuvonen</p><p>Längd: ca 1 timme<br>Ålder: 12+<br>Språk: mållös</p><p>Andra föreställningar:</p><p>9 februari kl. 18<br>10 februari kl.15<br>1 mars kl. 18<br>2 mars kl. 15</p>",
                "en": "<p>A silent comedy filled with momentum and mishaps.</p><p>The Show is a stage full of physical comedy that transports viewers to the world of early 20th-century variety shows and black-and-white films.</p><p>Cast: Mika Juusela and Antti Kemppainen<br>Directed by: Harry Bergman<br>Sound design: Harry Bergman and Harri Neuvonen</p><p>Duration: about 1 hour<br>Age:12+<br>Language: non-verbal</p><p>Other events:<br>9th of February at 6 PM<br>10th of February at 3 PM<br>1st of March at 6 PM<br>2nd of March at 3 PM</p>"
            },
            "name": {
                "fi": "The Show – Mykkäkomedia | ENSI-ILTA",
                "sv": "The Show | PREMIÄR",
                "en": "The Show | PREMIERE"
            },
            "short_description": {
                "fi": "Mykkäkomedia, josta ei vauhtia ja kommelluksia puutu.",
                "sv": "En stumkomedi som inte saknar fart och äventyr.",
                "en": "A silent comedy filled with momentum and mishaps."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63007",
            "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: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: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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vuotalon-elokuvat-vuotalo-18217735/",
                        "en": "https://www.lippu.fi/event/vuotalon-elokuvat-vuotalo-18217735/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-31T10:13:53.511361Z",
                    "last_modified_time": "2024-02-06T13:23:04.046513Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744478.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-31T10:13:53.452215Z",
            "last_modified_time": "2024-04-05T17:13:43.131401Z",
            "date_published": null,
            "start_time": "2024-02-07T16:00:00Z",
            "end_time": "2024-02-07T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/592F89617336C557ADFDC86BAE90EAFA/DocPoint-jatkot_Nasrin_s_voice_Kaisa_Rastimo",
                "en": "http://www.vuotalo.fi/en/events/event/592F89617336C557ADFDC86BAE90EAFA/DocPoint-jatkot"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Vuotalo, DocPoint"
            },
            "description": {
                "fi": "<p>Näytöksen jälkeen Docpoint-festivaalin ohjelmajohtaja Inka Achté haastattelee elokuvan ohjaaja Kaisa Rastimoa.</p><p>Kun Nasrin oli kolmetoistavuotias, hänet naitettiin aikuiselle miehelle. Kurdiperhe oli matkustanut Eurooppaan, ja salakuljetusta harjoittava kaukainen sukulainen majoitti heidät luokseen. Kun mies pyysi Nasrinin kättä, hänen isänsä myöntyi – eikä tyttö itse ymmärtänyt, mitä avioliitto todella tarkoittaa, joten hän hymyili sanomatta mitään. Häiden jälkeen perhe jatkoi matkaa, eikä Nasrin enää ollutkaan äidin tyttö, niin kuin oli ajatellut.</p><p>Nasrin kasvoi aikuiseksi liian nopeasti, ilman mahdollisuutta vaikuttaa omaan elämäänsä: hänestä tuli äiti ensimmäistä kertaa neljätoistavuotiaana. Miestä piti totella, ja elämä oli suljettua. Heidän muutettuaan Suomeen Nasrin sai kuitenkin mahdollisuuden käydä koulua sekä opiskella kieltä ja ammatin. Ensimmäistä kertaa hän ymmärsi, miten hänen oikeuksiaan oli poljettu ja vaati avioeroa, jonka lopulta sai. Kosto oli kuitenkin raastava: mies kaappasi Nasrinin kolme tytärtä Irakiin.</p><p>Kaisa Rastimon ohjaamassa elokuvassa Nasrin saa mahdollisuuden kertoa oman tarinansa omilla sanoillaan – äänen, joka häneltä vietiin varhain. Nuoren naisen sanat paljastavat niin tämän sinnikkyyden ja oikeudentunnon kuin ikävän ja epätoivonkin. Ei ole muuta vaihtoehtoa kuin taistella omien tyttöjen puolesta, jotta he voisivat saada erilaisen elämän. Äidin toivo ei nujerru, eikä Nasrin suostu olemaan enää hiljaa.</p><p>Kirjoittaja: Mimosa Ahderinne</p><p>Kieli: suomi, soranî, turkki<br>Tekstitys: englanti<br>Kesto: 74 min<br>Ikäraja: K7<br>Vuosi: 2024<br>Tuotantomaa: Suomi</p><p>Ohjaaja: Kaisa Rastimo<br>Tuottaja: Ella Ruohonen<br>Tuotantoyhtiö: Image Club Oy</p><p>Sisäänpääsy on maksuton</p>"
            },
            "name": {
                "fi": "DocPoint-jatkot: Nasrin's voice, Kaisa Rastimo – Elokuvanäytös + Q & A",
                "en": "DocPoint-jatkot"
            },
            "short_description": {
                "fi": "Näytöksen jälkeen Docpoint-festivaalin ohjelmajohtaja Inka Achté haastattelee elokuvan ohjaaja Kaisa Rastimoa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63007/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61412",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-24T11:13:45.935797Z",
                    "last_modified_time": "2024-02-06T13:23:03.854645Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740213.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-24T11:13:45.902601Z",
            "last_modified_time": "2024-04-05T17:13:43.048303Z",
            "date_published": null,
            "start_time": "2024-02-07T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/688E0C3DBA87C4547BBAA15E8EC8F0C3/HOW_radio_Global_Club_Nights",
                "sv": "http://www.caisa.fi/sv/evenemang/event/688E0C3DBA87C4547BBAA15E8EC8F0C3/HOW_radio_Global_Club_Nights",
                "en": "http://www.caisa.fi/en/events/event/688E0C3DBA87C4547BBAA15E8EC8F0C3/HOW_radio_Global_Club_Nights"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Aiheenamme tänään on koulutuksen ja kouluttajan rooli suomalaisessa musiikkiskenessä sekä muusikoiden mahdollisuudet kouluttajan uralla.</p><p>Tune in! <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a></p><p>Tänään keskitymme yhdessä International School of Music Finlandin rehtori <b>Giedre Tabocchinin</b> kanssa ulkomaalaistaustaisiin muusikoihin ja heidän mahdollisuuksiinsa jakaa omaa kulttuuriperintöään ja näin lisätä monimuotoisuutta ja rikastuttaa paikallisia perinteitä.</p><p>Keskustelemme myös ISM Finlandin visiosta luoda kansainvälinen ja monimuotoinen musiikkiyhteisö ulkomaalaisille perheille ja muille, jotka haluavat uppoutua monikulttuuriseen ympäristöön laadukkaan musiikkiopetuksen kautta.</p><p>ISM Finland perustettiin vuonna 2015, ja se oli Suomen ensimmäinen englanninkielinen musiikkikoulu.</p><p>Giedre Tabocchini on liettualainen pianisti, joka on asunut Suomessa vuodesta 2008. Tänä syksynä Giedre nimitettiin ISM:n uudeksi rehtoriksi.</p><p>--</p><p>Helsinki Open Waves -radion, Caisan ja Sibelius-Akatemian Global Music -osaston yhteistuottamissa keskusteluissa tarkastellaan musiikkia niin muusikon kuin musiikkiteollisuuden näkökulmasta, monimuotoisuuteen keskittyvässä, neutraalissa ja turvallisessa tilassa. Kuuntele ohjelmaa HOW-radion aalloilla osoitteessa <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>Keskustelun kieli on englanti.</p><p>--</p><p>Global Club Nights -live-klubi-iltoja järjestetään Caisassa kuukausittain! Lue lisää Caisan <u><a href=\"https://www.caisa.fi/fi/tapahtumat/?q=Global%20Club%20Nights\">tapahtumakalenterista</u></a>.</p><p>Helsinki Open Waves on voittoa tavoittelematon ja yhteisölähtöinen alusta, jonka osallistujat voivat toteuttaa omia sisältöjään juuri niin kuin haluavat ja ilmaista itseään omalla kielellään ja kulttuurinsa kautta. Lue lisää <u><a href=\"https://www.caisa.fi/fi/tapahtumat/event/bfdfdd7f694211e35cf77b582ce20924/helsinki_open_waves\">täältä</u></a>.</p>",
                "sv": "<p>Ämnet för den här eftermiddagen är vilken roll utbildningen och utbildaren spelar på den finska musikscenen, samt vilka möjligheter musiker som följer utbildarens instruktioner har.</p><p>Tune in! <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>Tillsammans med International School of Music Finlands rektor <b>Giedre Tabocchini</b> fokuserar vi på musiker med utländsk bakgrund och deras möjligheter att dela med sig av sitt arv för att främja en mångfald som i sig blir ett mervärde i den långa raden av lokala traditioner. Vi kommer även att prata om ISM Finlands vision att skapa en internationell och varierad musikcommunity för inflyttade familjer och andra som vill uppleva en multikulturell miljö genom kvalitativ musikutbildning.</p><p>ISM Finland grundades 2015 och var Finlands första engelskspråkiga musikskola.</p><p>Giedre Tabocchini är pianist från Litauen och bor i Finland sedan 2008. I höstas utsågs Giedre till ny rektor för ISM.</p>",
                "en": "<p>This afternoon, the topic of HOW radio’s Global Club Nights discussion is the role of education and the educator in the Finnish music scene along with the possibilities of musicians following the educator’s path.</p><p>Tune in to the HOW-radio online at <u><a href=\"https://www.helsinkiopenwaves.com\">helsinkiopenwaves.com</u></a>.</p><p>We will focus on musicians with a foreign background and their opportunities for sharing their own heritage, creating diversity, and adding to the richness of the local traditions. We will also be discussing the International School of Music Finland’s vision to create an international and diverse musical community for expat families and others who are interested in experiencing a multicultural environment through high-quality music education.</p><p>ISM Finland was established in 2015 as Finland’s first English-speaking music school. <b>Giedre Tabocchini</b> is a Lithuanian pianist who has been living in Finland since 2008. This autumn, Giedre was appointed as the new ISM Principal.</p><p>--</p><p>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s <u><a href=\"https://www.caisa.fi/en/events/?q=Global%20Club%20Nights\">event calendar</u>.</a></p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more <u><a href=\"https://www.caisa.fi/en/events/event/BFDFDD7F694211E35CF77B582CE20924/Helsinki_Open_Waves_\">here</u></a>.</p>"
            },
            "name": {
                "fi": "HOW radio: Global Club Nights – International School of Music Finland with Giedre Tabocchini",
                "sv": "HOW radio: Global Club Nights – International School of Music Finland with Giedre Tabocchini",
                "en": "HOW radio: Global Club Nights – International School of Music Finland with Giedre Tabocchini"
            },
            "short_description": {
                "fi": "Aiheenamme tänään on koulutuksen ja kouluttajan rooli suomalaisessa musiikkiskenessä sekä muusikoiden mahdollisuudet kouluttajan uralla.",
                "sv": "Ämnet för den här eftermiddagen är vilken roll utbildningen och utbildaren spelar på den finska musikscenen, samt vilka möjligheter musiker som följer utbildarens instruktioner har.",
                "en": "This afternoon, the topic of HOW radio’s Global Club Nights discussion is the role of education and the educator in the Finnish music scene along with the possibilities of musicians following the educator’s path."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61412/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61833",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6961,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-03T09:14:18.365077Z",
                    "last_modified_time": "2024-02-06T13:23:03.760039Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742825.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6961/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-03T09:14:18.312213Z",
            "last_modified_time": "2024-04-05T17:13:42.996509Z",
            "date_published": null,
            "start_time": "2024-02-07T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/016EF8C4769D23979C00E703F2F59AA7/TAYTEENVARATTU_Lounaskonsertti_UMO_Helsinki_Ensemble_Tribuutti_Chet_Bakerille_",
                "en": "http://www.savoyteatteri.fi/en/events/event/016EF8C4769D23979C00E703F2F59AA7/FULLY_BOOKED_Lunchtime_concert_UMO_Helsinki_Ensemble_Tribute_to_Chet_Baker_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra",
                "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra"
            },
            "description": {
                "fi": "<p>Tässä lounaskonsertissa muistellaan jazztrumpetisti ja laulaja Chet Bakeria (USA 1929–1988).</p><p>Trumpetistina Baker oli länsirannikkolaisen 1950-luvun cool jazzin tyyliniekka. Hänen laulutapansa edusti pehmeää ja intiimiä crooner-tyyliä. Konsertissa kuullaan alle kuusikymppisenä boheemielämän pimeälle puolelle menehtyneen Bakerin rakastetuimpia klassikoita, mm. hänen tunnuskappaleekseen muodostunut My Funny Valentine.</p><p>”Chet Baker soitti trumpettia kuin unelma ja lauloi pehmeästi kuin tähtiyö.”</p><p>UMO Helsinki Ensemble on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan. Konsertin ohjelmiston on suunnitellut trumpetisti Mikko Pettinen, joka myös luotsaa ensembleä. Tässä konsertissa kuulemme Pettisen trumpetismin lisäksi hänen laulunlahjojaan.</p><p>Konsertin kesto 1 h.</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 4 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä.</p>",
                "en": "<p>In this lunchtime concert, UMO Helsinki Ensemble pays tribute to the trumpet legend and vocalist Chet Baker (USA 1929–1988).</p><p>As a trumpeter, Baker was a pioneer of West Coast cool jazz in the 1950s. His singing represented a soft and intimate crooner style. This concert features the most beloved classics of Baker, like My Funny Valentine, which has become his trademark. Baker died on the dark side of bohemian life under the age of 60.</p><p>\"Chet Baker played trumpet like a dream and sang softly like a starry night.\"</p><p>The UMO Helsinki Ensemble is a smaller musical group assembled from the UMO Helsinki Jazz Orchestra, whose musicians have a long career both in the ranks of the UMO and in numerous individual projects. The program for the concert was planned by trumpeter Mikko Pettinen, who leads the ensemble but also sings.</p><p>Duration 1 hour.</p><p>Please note! The admission is free but it is recommendable to book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi webshop (0 €). At Lippu.fi stores commission is 3 € / order, at R-kioski 3 € / order + 1 € / ticket. Max. 4 tickets / booking. Larger group bookings directly from Savoy. Entry with an advance ticket until 11:50. After this, any empty seats will be filled with customers without tickets. Please arrive early for the doors will be closed once the concert has started.</p>"
            },
            "name": {
                "fi": "TÄYTEENVARATTU! Lounaskonsertti: UMO Helsinki Ensemble – Tribuutti Chet Bakerille – Orkesteria johtaa Mikko Pettinen",
                "en": "FULLY BOOKED! Lunchtime concert: UMO Helsinki Ensemble – Tribute to Chet Baker"
            },
            "short_description": {
                "fi": "Tässä lounaskonsertissa muistellaan jazztrumpetisti ja laulaja Chet Bakeria (USA 1929–1988).",
                "en": "In this lunchtime concert, UMO Helsinki Ensemble pays tribute to the trumpet legend and vocalist Chet Baker (USA 1929–1988)."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61833/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61610",
            "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: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: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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6474,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:07.658251Z",
                    "last_modified_time": "2024-02-06T13:23:03.665596Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738480.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6474/?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": "2023-12-07T14:14:07.639267Z",
            "last_modified_time": "2024-04-05T17:13:42.936986Z",
            "date_published": null,
            "start_time": "2024-02-07T08:00:00Z",
            "end_time": "2024-02-07T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/36C6B16EF78CC729E970FB1C38C557B5/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/36C6B16EF78CC729E970FB1C38C557B5/Naperokino",
                "en": "http://www.annantalo.fi/en/events/event/36C6B16EF78CC729E970FB1C38C557B5/Naperokino"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä. Lisäksi ke 17.1., 14.2. ja 24.4. pääset myös tapaamaan ja halaamaan Naperokinossa vierailevaa isoa Myyrää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>",
                "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>",
                "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61610/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}