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 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=helmet

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 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

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 /linkedevents/v1/event/?format=api&publisher=ytj%3A0586977-6
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 38382,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=2&publisher=ytj%3A0586977-6",
        "previous": null
    },
    "data": [
        {
            "id": "helsinki:aghc3ibg4i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21062/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/joulutori/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/vanhanjoulutori/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 107094,
                    "license": "event_only",
                    "created_time": "2024-03-11T13:03:44.488248Z",
                    "last_modified_time": "2024-03-11T13:07:33.603429Z",
                    "name": "Jouluisia piparkakkuja",
                    "url": "http://api.hel.fi/linkedevents/media/images/20141214_1401__MG_5706_1017.jpg",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Kuvituskuva/ Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Jouluisia piparkakkuja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107094/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-11T13:07:34.266071Z",
            "last_modified_time": "2024-03-28T10:50:36.605553Z",
            "date_published": null,
            "start_time": "2024-12-13T22:01:00Z",
            "end_time": "2024-12-22T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Vanhan Joulutori on perinteinen suomalainen joulutori, jossa on mukana käsityöyrittäjiä, palvelun tuottajia ja designia.</p><p>Tapahtumasta löytyy laaja kattaus taidokkaasti luotuja sisustusesineitä, grafiikkaa, keramiikkaa, jouluisia herkkuja ja paljon muuta.</p><p>Keskustan sydämessä sijaitseva Vanha Ylioppilastalo luo tapahtumalle historialliset puitteet ja virittää joulun tunnelmaan.</p><p>&nbsp;</p><p>Vanha Ylioppilastalo<br>14.-22.12.2024<br>Vapaa pääsy</p>",
                "sv": "<p>Den traditionella julmarknaden i Gamla studenthuset samlar under samma tak hantverksföretagare, designprodukter och juldelikatesser.<br><br>I evenemanget finns ett brett utbud av elegant formgivna inredningsföremål, grafik, keramik, juldelikatesser och mycket annat.&nbsp;<br><br>Gamla studenthuset<br>14.-22.12.2024<br><br>Fritt inträde</p>",
                "en": "<p>Traditional Christmas Market will be held at the historic venue, Old Student House.</p><p>The event offers two full floors of high-quality Finnish Christmas delicacies and handicrafts, created by some of Finland’s best designers and artisans.</p><p>&nbsp;</p><p>Old Student House - Vanha Ylioppilastalo<br>14.-22.12.2024<br>Free entry</p>"
            },
            "name": {
                "fi": "Vanhan Joulutori 2024",
                "sv": "Vanhan joulutori - Jultorg på Gamla studenthuset 2024",
                "en": "Vanhan Joulutori Christmas Market 2024"
            },
            "short_description": {
                "fi": "Vanhan Joulutori on perinteinen suomalainen joulutori, jossa on mukana käsityöyrittäjiä, palvelun tuottajia ja designia.",
                "sv": "Den traditionella julmarknaden i Gamla studenthuset samlar under samma tak hantverksföretagare, designprodukter och juldelikatesser.",
                "en": "Traditional Christmas Market will be held at the historic venue, Old Student House. "
            },
            "provider": {
                "fi": "Arahi Oy",
                "sv": "Arahi Oy",
                "en": "Arahi Oy"
            },
            "info_url": {
                "fi": "http://www.vanhanjoulutori.fi",
                "sv": "https://www.vanhanjoulutori.fi/shortly-in-english/",
                "en": "https://www.vanhanjoulutori.fi/shortly-in-english/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3ibg4i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghc3iyn3i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/syoviikot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/syoviikot/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "12€ / annos",
                        "sv": "12€ / portion",
                        "en": "12€ / portion"
                    },
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 101598,
                    "license": "event_only",
                    "created_time": "2024-01-19T08:56:13.897621Z",
                    "last_modified_time": "2024-01-19T08:56:49.684451Z",
                    "name": "SYÖ!-viikot",
                    "url": "http://api.hel.fi/linkedevents/media/images/syo12-3-edited.jpg",
                    "cropping": "336,0,1685,1350",
                    "photographer_name": "City (c) Mai Puttonen",
                    "alt_text": "Ihmisiä syömässä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101598/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-11T13:10:44.457397Z",
            "last_modified_time": "2024-03-28T10:28:59.461616Z",
            "date_published": null,
            "start_time": "2024-05-16T21:01:00Z",
            "end_time": "2024-05-30T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "kampanjassa mukana olevat helsinkiläisravintolat",
                "sv": "Många restauranger i Helsingfors",
                "en": "multiple restaurants in Helsinki"
            },
            "description": {
                "fi": "<p>SYÖ!-viikkojen aikana yli 100 ravintolaa ympäri Suomen kattavat pöytiin parastaan vain 12 eurolla kahden viikon ajan.</p><p>&nbsp;</p><p>Helsinki sekä lukuisat ravintolat ympäri Suomen</p><p>17.-30.5.2024</p><p>Annokset 12€</p>",
                "sv": "<p>Under SYÖ!-veckorna erbjuder över 100 restauranger runt om i Finland sina bästa rätter för bara 12 € i två veckors tid.&nbsp;<br><br>Helsingfors, samt många restauranger runt om i Finland<br><br>17.-30.5.2024</p><p>Portioner 12€</p>",
                "en": "<p>During The SYÖ! weeks, over 100 restaurants across Finland are serving up their best dishes for just 12€ for two weeks.</p><p>&nbsp;</p><p>Helsinki and all over Finland</p><p>17.-30.5.2024</p><p>Portions 12€</p>"
            },
            "name": {
                "fi": "SYÖ!-viikot II/2024",
                "sv": "SYÖ! Veckorna II/2024",
                "en": "SYÖ! Weeks II/2024"
            },
            "short_description": {
                "fi": "SYÖ!-viikkojen aikana yli 100 ravintolaa ympäri Suomen kattavat pöytiin parastaan vain 12 eurolla kahden viikon ajan.",
                "sv": "Under SYÖ!-veckorna erbjuder över 100 restauranger runt om i Finland sina bästa rätter för bara 12 € i två veckors tid. ",
                "en": "During The SYÖ! weeks, over 100 restaurants across Finland are serving up their best dishes for just 12€ for two weeks."
            },
            "provider": {
                "fi": "City.fi",
                "sv": "City.fi",
                "en": "City.fi"
            },
            "info_url": {
                "fi": "https://syoviikot.fi/",
                "sv": "https://syoviikot.fi/",
                "en": "https://syoviikot.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3iyn3i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agf7wa7kpa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18295/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22135/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://lautasella.messukeskus.com/info/",
                        "sv": "https://lautasella.messukeskus.com/info/",
                        "en": "https://lautasella.messukeskus.com/info/"
                    },
                    "info_url": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 99618,
                    "license": "event_only",
                    "created_time": "2023-11-23T07:09:34.220352Z",
                    "last_modified_time": "2023-11-23T07:10:19.565547Z",
                    "name": "Lautasella",
                    "url": "http://api.hel.fi/linkedevents/media/images/2M1A3240.jpg",
                    "cropping": "344,0,1705,1361",
                    "photographer_name": "Helsingin Messukeskus (c) Pekka Hannila",
                    "alt_text": "Ruoka-annoksia ja ihmisiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/99618/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T07:10:19.782328Z",
            "last_modified_time": "2024-03-27T14:09:42.394273Z",
            "date_published": null,
            "start_time": "2024-10-26T07:00:00Z",
            "end_time": "2024-10-27T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Lautasella on erityisruokavalioiden oma tapahtuma Messukeskuksessa, joka järjestetään samaan aikaan Viini &amp; Ruoka -messujen sekä Helsingin Kirjamessujen kanssa.&nbsp;</p><p>Tarjolla on maistuvia herkkuja, joissa huomioidaan niin gluteenittomuus, vege ja vegaanisuus sekä erilaiset allergiat.</p><p>Tutustu uutuustuotteisiin, tee ostoksia ja maistele herkkuja! Poimi kotiin vietäväksi myös inspiroivat vinkit ja ideat hyvään, turvalliseen ja maukkaaseen arkeen luennoilta, tietoiskuista sekä esityksistä.<br>&nbsp;</p><p>Messukeskus</p><p>26.-27.10.2024</p><p>10.00-18.00</p><p>Samalla lipulla sisäänpääsy myös Viini &amp; Ruoka- sekä Helsingin Kirjamessuille</p>",
                "sv": "<p>På tallriken 2024 är ett eget evenemang för specialkost, som arrangeras i Mässcentret samtidigt med Vin &amp; Mat-mässan samt Helsingfors Bokmässan.&nbsp;<br><br>På evenemanget kan du smaka på läckra delikatesser där hänsyn har tagits till glutenfrihet, vegetarism, veganism och olika allergier.<br><br>Bekanta dig med nya produkter, handla och smaka på läckerheter! Ta även med dig hem inspirerande tips och idéer för en god, säker och läcker vardag från föreläsningarna och presentationerna<br><br>Mässcentret<br><br>26.-27.10.2024<br>10.00-18.00<br><br>I samma biljett ingår inträde till också Vin &amp; Mat- samt Helsingfors bokmässan.&nbsp;</p>",
                "en": "<p>The Finnish Coeliac Association and Messukeskus will organise the Lautasella 2024 fair in Helsinki on Saturday and Sunday 26.–27.10.2024.</p><p><br>On the plate is a special diet event, which will be held at the same time as the Wine &amp; Food Fair and the Helsinki Book Fair.</p><p>The event offers tasty delicacies that take gluten-free, vegetarian and vegan into account as well as various allergies.</p><p>Check out new products, shop and taste delicacies! Pick up inspiring tips and ideas for a good, safe and tasty everyday life from lectures, information bulletins and presentations to take home.<br>&nbsp;</p><p>Messukeskus<br>26.-27.10.2024</p><p>10.00-18.00</p><p>At the same time with the same ticket Wine &amp; Food Fair and Helsinki Book Fair</p>"
            },
            "name": {
                "fi": "Lautasella 2024",
                "sv": "På tallriken 2024",
                "en": "On The Plate Fair 2024"
            },
            "short_description": {
                "fi": "Lautasella on erityisruokavalioiden oma tapahtuma Messukeskuksessa, joka järjestetään samaan aikaan Viini & Ruoka -messujen sekä Helsingin Kirjamessujen kanssa.",
                "sv": "På tallriken är ett eget evenemang för specialkost, som arrangeras i Mässcentret samtidigt med Vin & Mat-mässan samt Helsingfors Bokmässan. ",
                "en": "The Celiac Association and Messukeskus organize the On the Plate Fair 2023 trade fair in October. "
            },
            "provider": {
                "fi": "Messukeskus",
                "sv": "Messukeskus",
                "en": "Messukeskus"
            },
            "info_url": {
                "fi": "https://lautasella.messukeskus.com/",
                "sv": "https://lautasella.messukeskus.com/?lang=en",
                "en": "https://lautasella.messukeskus.com/?lang=en"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7wa7kpa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agf7woub7m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4750/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    },
                    "info_url": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    },
                    "description": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 99621,
                    "license": "event_only",
                    "created_time": "2023-11-23T08:09:15.764917Z",
                    "last_modified_time": "2023-11-23T08:09:57.179671Z",
                    "name": "Viini & Ruoka",
                    "url": "http://api.hel.fi/linkedevents/media/images/2M1A3313.jpg",
                    "cropping": "364,0,1802,1439",
                    "photographer_name": "Helsingin Messukeskus (c) Pekka Hannila",
                    "alt_text": "Hymyiloevä nainen  ja viinipulloja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/99621/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T08:09:57.519208Z",
            "last_modified_time": "2024-03-27T14:00:58.766160Z",
            "date_published": null,
            "start_time": "2024-10-23T21:01:00Z",
            "end_time": "2024-10-27T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Viini &amp; Ruoka on herkullinen ja monipuolinen tapahtuma, joka kokoaa viinin- ja ruoanrakastajat, kulinaristit ja gastrofiilistelijät saman katon alle Messukeskukseen.&nbsp;</p><p>Tapahtuma tulvii makunystyröitä hiveleviä kokemuksia, tastingeja, ohjelmaa ja messutarjouksia.<br>&nbsp;</p><p>Messukeskus</p><p>24.–27.10.2024</p>",
                "sv": "<p>Vin &amp; Mat är ett läckert och mångsidigt evenemang, som för samman vin- och matentusiaster, kulinarister och matintresserade under samma tak i Mässcentret.&nbsp;<br><br>Evenemanget bjuder på en rad smakrika och njutbara smakupplevelser, provsmakningar, program och mässerbjudanden.&nbsp;<br><br>Mässcentret<br>24.–27.10.2024</p>",
                "en": "<p>Wine &amp; Food is the a delicious and versatile event, that gathers wine and food lovers, foodies and gastro connoisseurs under the same roof at the Messukeskus.&nbsp;</p><p>The event is flooded with taste bud-pleasing experiences, tastings, program and fair offers.<br>&nbsp;</p><p>Messukeskus<br>24.-27.10.2024</p>"
            },
            "name": {
                "fi": "Viini & Ruoka 2024",
                "sv": "Vin & Mat 2024",
                "en": "Wine & Food 2024"
            },
            "short_description": {
                "fi": "Viini & Ruoka on herkullinen ja monipuolinen tapahtuma, joka kokoaa viinin- ja ruoanrakastajat, kulinaristit ja gastrofiilistelijät saman katon alle ",
                "sv": "Vin & Mat är ett läckert och mångsidigt evenemang, som för samman vin- och matentusiaster, kulinarister och matintresserade under samma tak i Mässcentret. ",
                "en": "Wine & Food is the a delicious and versatile event, that gathers wine and food lovers, foodies and gastro connoisseurs under the same roof at the Messukeskus. "
            },
            "provider": {
                "fi": "Messukeskus",
                "sv": "Messukeskus",
                "en": "Messukeskus"
            },
            "info_url": {
                "fi": "https://viinijaruoka.messukeskus.com/",
                "sv": "https://viinijaruoka.messukeskus.com/?lang=en",
                "en": "https://viinijaruoka.messukeskus.com/?lang=en"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7woub7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agf3sfyywy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/kansainvalisetsuurmarkkinat/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 96718,
                    "license": "event_only",
                    "created_time": "2023-09-22T07:48:29.049483Z",
                    "last_modified_time": "2023-09-22T07:49:09.144714Z",
                    "name": "Kansainväliset suurmarkkinat",
                    "url": "http://api.hel.fi/linkedevents/media/images/Hki_senaatintori-1.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "(c) TMK Tori- ja markkinakaupan palvelukeskus Oy",
                    "alt_text": "Torikojuja ja ihmisiä Senaatintorilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96718/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-10T11:56:20.546398Z",
            "last_modified_time": "2024-03-27T13:54:53.903265Z",
            "date_published": null,
            "start_time": "2024-09-17T21:01:00Z",
            "end_time": "2024-09-22T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Kansainväliset suurmarkkinat tarjoavat upeaa, kansainvälistä markkinatunnelmaa.&nbsp;</p><p>Mukana on lukuisia kauppiaita yli 30 eri maasta esittelemässä toinen toistaan houkuttelevampia ruokakojuja, käsitöitä ja muita erikoisuuksia.&nbsp;</p><p>&nbsp;</p><p>Helsinki (paikka ilmoitetaan myöhemmin)</p><p>18.-22.9.2024</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den internationella stormarknaden erbjuder enastående internationell marknadsstämning.<br><br>I evenemanget kommer försäljare från över 30 länder att delta, med matstånd, hantverk och andra specialiteter.<br><br>Helsingfors (mer information om evenemangsplatsen kommer senare)<br><br>18.-22.9.2024<br>Fritt inträde</p>",
                "en": "<p>The great international market event, International Grand Market of Helsinki, is hosting many traders from over 30 countries offering attractive food stalls, crafts and other specialities.<br>&nbsp;</p><p>Helsinki</p><p>18.-22.9.2024</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Helsingin kansainväliset suurmarkkinat 2024",
                "sv": "Helsingfors internationella stormarknad 2024",
                "en": "International Grand Market of Helsinki 2024"
            },
            "short_description": {
                "fi": "Kansainväliset suurmarkkinat tarjoavat upeaa, kansainvälistä markkinatunnelmaa. ",
                "sv": "Den internationella stormarknaden erbjuder enastående internationell marknadsstämning.",
                "en": "The great international market event, International Grand Market of Helsinki, is hosting many traders from over 30 countries offering attractive food stalls"
            },
            "provider": {
                "fi": "TMK Tori- ja markkinakaupan palvelukeskus Oy",
                "sv": "TMK Tori- ja markkinakaupan palvelukeskus Oy",
                "en": "TMK Tori- ja markkinakaupan palvelukeskus Oy"
            },
            "info_url": {
                "fi": "https://www.eurooppamarkkinat.fi/helsinki/",
                "sv": "https://www.eurooppamarkkinat.fi/helsinki/",
                "en": "https://www.eurooppamarkkinat.fi/helsinki/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf3sfyywy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggsc42o4u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16019/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "http://www.suuretoluet.fi",
                        "sv": "http://www.suuretoluet.fi",
                        "en": "http://www.suuretoluet.fi"
                    },
                    "info_url": {
                        "fi": "http://www.suuretoluet.fi",
                        "sv": "http://www.suuretoluet.fi",
                        "en": "http://www.suuretoluet.fi"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 44563,
                    "license": "event_only",
                    "created_time": "2018-05-25T09:37:51.854221Z",
                    "last_modified_time": "2022-04-07T09:16:38.241308Z",
                    "name": "Local Beers",
                    "url": "http://api.hel.fi/linkedevents/media/images/20140709_1207__MG_0161_4255.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Olutlaseja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-19T11:20:21.486668Z",
            "last_modified_time": "2024-03-27T13:02:36.645107Z",
            "date_published": null,
            "start_time": "2024-07-16T21:01:00Z",
            "end_time": "2024-07-20T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Suuret Oluet Pienet Panimot on olut- ja pienpanimotapahtuma, joka järjestetään Helsingissä heinäkuussa.&nbsp;</p><p>Oluttapahtuman päätähtinä loistavat kotimaiset pienpanimot.</p><p>&nbsp;</p><p>Helsinki<br>17.-20.7.2024</p><p>Paikka- ja tapahtumatiedot tarkentuvat myöhemmin, K-18</p>",
                "sv": "<p>Stora öl - Små bryggerier är en småbryggerifestival, som ordnas i Helsingfors i juli.&nbsp;<br><br>Ölfestivalens huvudstjärnör är utmärkta inhemska småbryggerier.<br><br>Helsingfors<br>17.-20.7.2024</p><p>Ytterligare information om plats och evenemang kommer senare.<br><br>Åldersgräns: 18 år</p>",
                "en": "<p>The beer festival is focusing on local beers produced in small breweries. Kippis!&nbsp;</p><p>The festival showcases craft beers, ciders, long drinks, distillery products, and soft drinks produced by microbreweries.</p><p>Selected as Finnish Travel Event of the Year for 2016, it was also granted the EcoCompass certificate for the event in Helsinki.</p><p>&nbsp;</p><p>Helsinki<br>17.-20.7.2024</p><p>The place and the program will be published later, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Suuret Oluet Pienet Panimot 2024",
                "sv": "Stora öl - Små bryggerier 2024",
                "en": "Great Beers - Small Breweries 2024"
            },
            "short_description": {
                "fi": "Suuret Oluet Pienet Panimot on olut- ja pienpanimotapahtuma, joka järjestetään Helsingissä heinäkuussa. ",
                "sv": "Stora öl - Små bryggerier är en småbryggerifestival, som ordnas i Helsingfors i juli. ",
                "en": "The beer festival is focusing on local beers produced in small breweries"
            },
            "provider": {
                "fi": "Suuret Oluet Pienet Panimot ",
                "sv": "",
                "en": "Great Beers - Small Breweries"
            },
            "info_url": {
                "fi": "https://suuretoluet.fi/helsinki/",
                "sv": "https://suuretoluet.fi/helsinki/",
                "en": "https://suuretoluet.fi/helsinki/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggsc42o4u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg4k3qeh4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67814/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "40€",
                        "sv": "40€",
                        "en": "40€"
                    },
                    "info_url": {
                        "fi": "https://coolhead.fi/CBGF-2024/",
                        "sv": "https://coolhead.fi/CBGF-2024/",
                        "en": "https://coolhead.fi/CBGF-2024/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 92478,
                    "license": "cc_by",
                    "created_time": "2023-05-23T11:30:13.322369Z",
                    "last_modified_time": "2023-05-23T11:32:23.098943Z",
                    "name": "Kuvituskuva",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kuvituskuva_ravintola.jpg",
                    "cropping": "151,0,749,598",
                    "photographer_name": "Kuvituskuva / Linked Events",
                    "alt_text": "Ihmisiä terassilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/92478/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-20T07:32:18.144438Z",
            "last_modified_time": "2024-03-27T11:51:19.299774Z",
            "date_published": null,
            "start_time": "2024-07-05T12:00:00Z",
            "end_time": "2024-07-06T20:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Craft Beer Garden Festivaalia juhlitaan heinäkuussa CoolHead Brew'n kesäterassilla Viikissä.</p><p>Tapahtumassa pääsee nauttimaan maailmanluokan oluista, hyvästä musiikista sekä herkullisesta ruuasta.</p><p>&nbsp;</p><p>Coolhead Taproom &amp; Terrace</p><p>5.-6.7.2024</p><p>15.00-23.00</p><p>Early Bird 40€, K-18</p>",
                "sv": "<p>Craft Beer Garden Festivalen firas i juli på CoolHead Brews uteservering i Vik.<br><br>I evenemanget får man chansen att smaka på världsklassiga öl, bra musik och äta läcker mat.&nbsp;<br><br>Coolhead Taproom &amp; Terrace</p><p>5.-6.7.2024</p><p>15.00-23.00</p><p>Early Bird 40€<br><br>Åldersgräns: 18 år</p>",
                "en": "<p>Craft Beer Garden Festival will take place in July at Coolhead Taproom &amp; Terrace in Viikki district.</p><p>The Craft Beer Garden Festival is offering world class beers,good music and delicious food.&nbsp;</p><p>&nbsp;</p><p>Coolhead Taproom &amp; Terrace &nbsp;</p><p>5.-6.7.2024</p><p>15.00-23.00</p><p>Early Bird tickets 40€, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Craft Beer Garden Festivaali 2024",
                "sv": "Craft Beer Garden Festival 2024",
                "en": "Craft Beer Garden Festivaali 2024"
            },
            "short_description": {
                "fi": "Craft Beer Garden Festivaalia juhlitaan heinäkuussa CoolHead Brew'n kesäterassilla Viikissä.",
                "sv": "Craft Beer Garden Festivalen firas i juli på CoolHead Brews uteservering i Vik.",
                "en": "Craft Beer Garden Festival will take place in July at Coolhead Taproom & Terrace in Viikki district."
            },
            "provider": {
                "fi": "CoolHead Brew",
                "sv": "CoolHead Brew",
                "en": "CoolHead Brew"
            },
            "info_url": {
                "fi": "https://coolhead.fi/CBGF-2024/",
                "sv": "https://coolhead.fi/CBGF-2024/",
                "en": "https://coolhead.fi/CBGF-2024/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4k3qeh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agftqnxpr4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:627/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5127/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://craftbeerhelsinki.fi/",
                        "sv": "https://craftbeerhelsinki.fi/",
                        "en": "https://craftbeerhelsinki.fi/"
                    },
                    "info_url": {
                        "fi": "https://craftbeerhelsinki.fi/",
                        "sv": "https://craftbeerhelsinki.fi/",
                        "en": "https://craftbeerhelsinki.fi/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 88452,
                    "license": "cc_by",
                    "created_time": "2023-01-13T09:09:41.059811Z",
                    "last_modified_time": "2023-01-13T09:10:23.073796Z",
                    "name": "Craft Beer Helsinki",
                    "url": "http://api.hel.fi/linkedevents/media/images/CBHevent.jpg",
                    "cropping": "258,0,1283,1026",
                    "photographer_name": "RH Events Oy (c) Joonas Kukkonen",
                    "alt_text": "Ihminen käsissään kaksi olutlasia",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-16T11:20:06.303773Z",
            "last_modified_time": "2024-03-27T11:46:01.420026Z",
            "date_published": null,
            "start_time": "2024-06-27T11:00:00Z",
            "end_time": "2024-06-29T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Craft Beer Helsinki on vuodesta 2016 järjestetty käsityöläisolutfestivaali, joka järjestetään vuosittain Rautatientorilla.</p><p>Mukana tapahtumassa on yli 30 panimoa ympäri maailmaa. Loistavien oluiden lisäksi tarjolla siidereitä, viinejä ja tietenkin ruokaa.</p><p>&nbsp;</p><p>Rautatientori</p><p>27.-29.6.2024</p><p>To klo 14-24, pe klo 12-01, la klo 12-24</p><p>K-18</p>",
                "sv": "<p>Craft Beer Helsinki är en festival för hantverksöl som ordnats sedan 2016 på Järnvägstorget.&nbsp;<br><br>Över 30 bryggerier från runtom i världen deltar i evenemanget. Förutom utmärkta öl finns också cider, vin och naturligtvis mat.&nbsp;<br><br>Järnvägstorget<br><br>27.-29.6.2024</p><p>To kl. 14-24, fre kl. 12-01, lö kl. 12-24</p><p>Åldersgräns 18 år</p>",
                "en": "<p>Craft Beer Helsinki is a beer festival organized since 2016 yearly at the Railway Square.&nbsp;</p><p>The event will present more than 30 breweries, besides craft beer, there will be also wines, ciders and of course food.<br>&nbsp;</p><p>Railway Square</p><p>27.-29.6.2024</p><p>&nbsp;</p><p>Thu 14.00-24.00</p><p>Fri 12.00-01.00</p><p>Sat 12.00-24.00</p><p>&nbsp;</p><p>Age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Craft Beer Helsinki 2024",
                "sv": "Craft Beer Helsinki 2024",
                "en": "Craft Beer Helsinki 2024"
            },
            "short_description": {
                "fi": "Craft Beer Helsinki on vuodesta 2016 järjestetty käsityöläisolutfestivaali, joka vuonna 2023 järjestetään kesän lisäksi myös maaliskuussa Wanhassa Satamassa.",
                "sv": "Craft Beer Helsinki är en festival för hantverksöl som ordnats sedan 2016 på Järnvägstorget. ",
                "en": "Craft Beer Helsinki is a beer festival organized since 2016 yearly at the Railway Square. "
            },
            "provider": {
                "fi": "RH Events Oy",
                "sv": "RH Events Oy",
                "en": "RH Events Oy"
            },
            "info_url": {
                "fi": "https://craftbeerhelsinki.fi/",
                "sv": "https://craftbeerhelsinki.fi/",
                "en": "https://craftbeerhelsinki.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agftqnxpr4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agft22yxli",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:627/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p19896/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://instagram.com/burgerloversfinland",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.burgerlovers.fi/",
                        "sv": "https://www.burgerlovers.fi/",
                        "en": "https://www.burgerlovers.fi/"
                    },
                    "info_url": {
                        "fi": "https://www.burgerlovers.fi/",
                        "sv": "https://www.burgerlovers.fi/",
                        "en": "https://www.burgerlovers.fi/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 78042,
                    "license": "event_only",
                    "created_time": "2022-03-01T13:39:32.250723Z",
                    "last_modified_time": "2022-03-01T13:46:25.151501Z",
                    "name": "Burger Lovers Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/c8b22f8f-1e07-4381-a4f7-6b9.jpg",
                    "cropping": "298,0,902,605",
                    "photographer_name": "Burger Lovers Finland (c) Antti Suikkari",
                    "alt_text": "Hampurilainen pöydällä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/78042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-17T11:35:10.438436Z",
            "last_modified_time": "2024-03-27T08:07:55.448178Z",
            "date_published": null,
            "start_time": "2024-06-11T21:01:00Z",
            "end_time": "2024-06-15T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Burger Lovers Festival järjestetään ensi kesäkuussa Rautatientorilla.</p><p>Tarjolle tulee useita erityylisiä ja eri tekniikoilla valmistettuja hampurilaisia. Perinteisten burgerien lisäksi listoilta tulee löytymään myös vegaanisia ja kasvisvaihtoehtoja.&nbsp;</p><p>Festivaaliin osallistuvat ravintolat tarjoilevat annoksia myyntipisteiltään ja koko festivaalialue toimii anniskelualueena.&nbsp;</p><p>Listaus burgerimyyjistä julkaistaan myöhempänä ajankohtana.</p><p>&nbsp;&nbsp;</p><p>Rautatientori&nbsp;</p><p>12.-15.6.2024</p><p>Vapaa pääsy</p>",
                "sv": "<p>Burgers Lovers Festuval ordnas i juni på Järnvägstorget.<br><br>Under evenemanget serveras olika slags hamburgare som är tillagade med olika tekniker. Förutom traditionella hamburgare finns också veganska och vegetariska alternativ på menyn.<br><br>Restaurangerna som deltas i evenemanget erbjuder portioner från sina egna försäljningsställen. Hela festivalområdet fungerar som alkoholserveringsområde.&nbsp;<br><br>Listan över hamburgarförsäljarna publiceras vid en senare tidpunkt.&nbsp;<br><br>Järnvägstorget<br>12.-15.6.2024<br><br>Fritt inträde</p>",
                "en": "<p>Burger Lovers Festival is the first food festival in Finland specialized in burgers.&nbsp;</p><p>The burger restaurants will be published on March/April.<br>&nbsp;</p><p>Railway Square&nbsp;</p><p>12.-15.6.2024</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Burger Lovers Festival 2024",
                "sv": "Burger Lovers Festival 2024",
                "en": "Burger Lovers Festival 2024"
            },
            "short_description": {
                "fi": "Burger Lovers Festival järjestetään ensi kesäkuussa kolmannen kerran.",
                "sv": "Burgers Lovers Festuval ordnas i juni på Järnvägstorget.",
                "en": "Burger Lovers Festival is the first food festival specialized in burgers"
            },
            "provider": {
                "fi": "Burger Lovers Finland ",
                "sv": "Burger Lovers Finland ",
                "en": "Burger Lovers Finland "
            },
            "info_url": {
                "fi": "https://www.burgerlovers.fi/",
                "sv": "https://www.burgerlovers.fi/",
                "en": "https://www.burgerlovers.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agft22yxli/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggpz665sq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtm5l7mm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdqitwbwe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggsb37j6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiohxvsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agftqm6pve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf42fmaby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agfy6f4hqq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agesbstele/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7wgeruu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agfr34n2ka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agft22yxli/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agftqnxpr4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agesb27esm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agfbpl6s4e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf3sfyywy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7wa7kpa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggblul2zq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggblu6xlu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtkugnhi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtbj6ldi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggvi6pem4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggvu7a4f4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggcjfebge/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggv6d22iu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggsc42o4u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7woub7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af677xzshq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggyrwnpo4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggy3cigka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzyui4pe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzzbktvm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2dj5pqe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2o6nndi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2fa72zm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2ye2ura/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2yh5wci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg3danacm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4ag4cq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2n4idvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg3ert77a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4bkb4lm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4clky5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4k3qeh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4luehb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4q6wrry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggwjfovka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggfq3nlzy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5bcfokq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5fkf6ci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5fmjpfy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg57i4gme/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5uxavte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6kkewyy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6kbusdu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5clwjnq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6lw7kfa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6lxxprq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6lwjanu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6ytilsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg664iqpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7dmngam/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7a5v2pe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7auqot4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7be3xoy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg66wiyd4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg677ypzi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg663ogaq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6566z2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ko4r6y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wvjjam/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67kpf6a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ddyz7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wrawy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6yw2cny/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cjrxpi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7c5qsf4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bdt3ku/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67qslwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7joahyy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7lcf25a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6w6dqze/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg674jdvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67yc4we/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6xeynua/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67udcf4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67msfem/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67ched4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cxtzvq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wtudte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg66zb44i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ak4qgi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6y5foii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cynoky/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg663ykey/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bcragm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bbwwnq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67k7qj4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7afdjxy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7aihxhq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bginre/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6vmqd7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg65wjzm4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6vvca4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bp3fva/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg66heyai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5vnfi7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg674nm24/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg65na5ja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg64dvcpq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6ybefiq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wvspiu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbkvauwa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7adngdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha5h3oci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghajey7lm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghajdfoce/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb3g2l2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7c5kise/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczfu3by/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3ibg4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3iyn3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67dj7ue/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cbkpxi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdqvdrxu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdx2dypi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghd2kyzky/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghefe2tri/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghefmgxeu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghefuu5ry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghd23dtle/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfdi3x7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghffbrzwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfe7h7v4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghffeiv6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfotkcym/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfoh7sb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgln3pwe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhkmcxeq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhk2yawq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhxrrmbe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhxtytx4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhxwnilm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibf7zhu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibji4nq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghiahcdcm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 101341,
                    "license": "event_only",
                    "created_time": "2024-01-12T09:19:55.323419Z",
                    "last_modified_time": "2024-01-12T09:23:33.311297Z",
                    "name": "Helsinki ruokavuosi 2024",
                    "url": "http://api.hel.fi/linkedevents/media/images/hki_paiva13_053_Lauri_Rotko_3335.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "© Lauri Rotko / Helsinki Partners",
                    "alt_text": "Henkilöitä istuu katetun pöydän äärellä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-12T09:23:33.918063Z",
            "last_modified_time": "2024-03-27T07:34:36.328961Z",
            "date_published": null,
            "start_time": "2023-12-31T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Ruoka on yksi Helsingin tapahtumallisuuden ja matkailun keskeisiä teemoja vuonna 2024, jolloin Helsinki muuttuu upeiden ruokatapahtumien näyttämöksi. Yksi vuoden huipputapahtumista on Helsingin kaupungin 27. toukokuuta isännöimä pohjoismaisten ravintoloiden Michelin-tähtien julkistamistilaisuus. Se on maailman tunnetuimpia ruoka-alan tapahtumia, joka kokoaa Helsinkiin alan pohjoismaiset huiput.<br><br>Ruokavuoden tapahtumia on koko vuoden ajan. Erityisesti alkukesän ruokaviikkojen aikana 24.5.-16.6. ravintola-, matkailu- ja tapahtuma-alan toimijat esittelevät Helsingin monipuolista ruokakulttuuria kaupunkilaisille ja vierailijoille.</p>",
                "sv": "<p>Mat är ett centralt tema för Helsingfors evenemang och turism år 2024, då Helsingfors kommer att vara skådeplatsen för stora evenemang som kretsar kring mat.&nbsp;</p><p>Ett av årets viktigaste händelser är offentliggörandet av de nordiska restaurangernas Michelin-stjärnor den 27 maj. Evenemanget som Helsingfors står värd för är ett av världens mest kända inom matbranschen och i Helsingfors samlas därför de allra främsta namnen inom matbranschen i Norden.&nbsp;</p><p>&nbsp;</p><p>Matårets evenemang ordnas under hela året. Aktörer inom restaurang-, turism- och evenemangbranschen presenterar Helsingfors mångsidiga matkultur till stadsbor och besökare särskilt under försommarens matveckor från 24.5.-16.6.2024.</p>",
                "en": "<p>Food is one of the central themes of Helsinki's events and tourism in 2024, when Helsinki will become the scene of wonderful food events.&nbsp;</p><p>One of the top events of the year is the announcement of the Michelin stars of Nordic restaurants, hosted by the city of Helsinki on May 27. It is one of the world's most well-known events in the food industry, which gathers the Nordic tops of the industry in Helsinki.</p><p>There are food year events throughout the year. Especially during the early summer food weeks 24.5.-16.6. operators in the restaurant, tourism and event industries present Helsinki's diverse food culture to city dwellers and visitors.</p>"
            },
            "name": {
                "fi": "Helsingin ruokavuosi 2024",
                "sv": "Helsingfors matår 2024",
                "en": "Helsinki’s Food Year  2024"
            },
            "short_description": {
                "fi": "Ruoka on yksi Helsingin tapahtumallisuuden ja matkailun keskeisiä teemoja vuonna 2024, jolloin Helsinki muuttuu upeiden ruokatapahtumien näyttämöksi.",
                "sv": "Mat är ett centralt tema för Helsingfors evenemang och turism år 2024, då Helsingfors kommer att vara skådeplatsen för stora evenemang som kretsar kring mat. ",
                "en": "Food is one of the central themes of Helsinki's events and tourism in 2024, when Helsinki will become the scene of wonderful food events. "
            },
            "provider": {
                "fi": "Helsingin kaupunki",
                "sv": "Helsingfors stad",
                "en": "City of Helsinki"
            },
            "info_url": {
                "fi": "https://www.hel.fi/ruokakaupunki",
                "sv": "https://www.hel.fi/sv/beslutsfattande-och-forvaltning/information-om-helsingfors/matstaden-helsingfors",
                "en": "https://www.hel.fi/en/decision-making/information-on-helsinki/food-city-helsinki"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghhkmcxeq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21269/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14799/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/lakritsifestivaalit/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "sv": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "en": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit"
                    },
                    "info_url": {
                        "fi": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "sv": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "en": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 96422,
                    "license": "cc_by",
                    "created_time": "2023-09-13T11:38:56.582832Z",
                    "last_modified_time": "2023-09-13T11:41:04.318547Z",
                    "name": "Lakritsi- & Salmiakkifestivaalit 2023",
                    "url": "http://api.hel.fi/linkedevents/media/images/358425778_828163712033901_3795754462211560966_n.jpg",
                    "cropping": "130,0,646,516",
                    "photographer_name": "© Lakritsifestivaalit",
                    "alt_text": "Lakritsia taustalla ja edessä tapahtuman nimi",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96422/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-25T10:38:06.136439Z",
            "last_modified_time": "2024-03-25T10:38:06.136456Z",
            "date_published": null,
            "start_time": "2024-10-25T21:01:00Z",
            "end_time": "2024-10-27T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Lakritsi- &amp; Salmiakkifestivaaleilla ylistetään yhdessä maukasta mustaa kultaa. Festivaaleilla kävijät saavat kokea lakritsia monella eri tavalla.&nbsp;</p><p>Makeana, suolaisena, suklaan kera ja mausteena ruoanlaitossa ja leipomisessa. Maistellen, oppien lisää lakritsista ja löytäen uusia suosikkeja.<br><br>Wanha Satama<br>26.-27.10.2024</p>",
                "sv": "<p>Lakrits- &amp; Salmiakfestivalen är Finlands mötesplats för lakritsälskare sedan 2013, en fest fylld med goda smakupplevelser, spännande aktiviteter och ny kunskap om lakrits.&nbsp;<br><br>Wanha Satama<br>26.-27.10.2024</p>",
                "en": "<p>The Licorice Festival will be held in October at Wanha Satama premises.</p><p>At the Licorice Festival, the visitors learn to experience licorice in many different ways.\n</p><p>\nSweet, salty, with chocolate and as a spice in cooking and baking.&nbsp;</p><p>The fair is offering tasting, learning more about licorice and discovering new favourites.<br><br>Wanha Satama<br>26.-27.10.2024</p>"
            },
            "name": {
                "fi": " Lakritsi- & Salmiakkifestivaalit 2024",
                "sv": "Lakrits- & Salmiakfestivalen 2024",
                "en": "Licorice Festival in Helsinki 2024"
            },
            "short_description": {
                "fi": "Lakritsi- & Salmiakkifestivaaleilla ylistetään yhdessä maukasta mustaa kultaa. ",
                "sv": "Lakrits- & Salmiakfestivalen är Finlands mötesplats för lakritsälskare sedan 2013, en fest fylld med goda smakupplevelser, spännande aktiviteter och ny kunskap.",
                "en": "The Licorice Festival will be held in October at Wanha Satama premises."
            },
            "provider": {
                "fi": " Lakritsi- & Salmiakkifestivaalit",
                "sv": " Lakritsi- & Salmiakkifestivaalit",
                "en": " Lakritsi- & Salmiakkifestivaalit"
            },
            "info_url": {
                "fi": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                "sv": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                "en": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhkmcxeq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghhkhpnoe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21062/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4749/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5127/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "22-25€",
                        "en": "22-25€"
                    },
                    "info_url": {
                        "fi": "http://www.grandchampagnehelsinki.fi",
                        "en": "http://www.grandchampagnehelsinki.fi"
                    },
                    "description": {
                        "fi": "sisäänpääsylippu",
                        "en": "entrance fee"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41890,
                    "license": "event_only",
                    "created_time": "2018-01-18T13:02:46.183742Z",
                    "last_modified_time": "2024-03-25T10:17:58.861305Z",
                    "name": "Grand Champagne Helsinki",
                    "url": "http://api.hel.fi/linkedevents/media/images/EssiAvellan_0025.jpg",
                    "cropping": "297,0,1278,981",
                    "photographer_name": "(c) Grand Champagne Helsinki",
                    "alt_text": "Nainen haistelee samppanjaa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41890/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-25T10:17:59.420123Z",
            "last_modified_time": "2024-03-25T10:17:59.420144Z",
            "date_published": null,
            "start_time": "2024-04-25T13:00:00Z",
            "end_time": "2024-04-27T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Samppanja kupli kolmen päivän ajan Vanhalla Ylioppilastalolla, kun Grand Champagne -tapahtuma avaa ovensa kooten yhteen samppanjan ystävät, nautiskelijat ja alan huippunimet.</p><p>Yleisötapahtumassa samppanjan saloihin meitä johdattivat kotimaisten kärkinimien lisäksi ulkomaiset huippuasiantuntijat.</p><p>Vanhalla Ylioppilastalolla järjestettävässä rennossa ja tunnelmallisessa tapahtumassa pääsi maistelemaan niin tunnettuja samppanjaklassikoita kuin harvinaisempia herkkuja. Niiden ohella tapahtumassa on tarjolla samppanjaan sopivia herkkuja.</p><p>&nbsp;</p><p>Vanha ylioppilastalo</p><p>25.-27.4.2024</p><p>To 16.00-21.00</p><p>Pe 15.00-21.00</p><p>La 12.00-20.00</p><p>&nbsp;</p><p>Liput 22-25€, K-18</p>",
                "en": "<p>Bubbles fill the Old Student House in April bringing together champagne lovers, gourmands and top names in the industry.</p><p>The three-day event features experts sharing their know-how, passion and champagnes.&nbsp;</p><p>The Old Student House provides a relaxed atmosphere where you can taste well-known classics and classy rarities. Delicacies and snacks &nbsp;are available to enhance your experience.</p><p>You can also deepen and expand your knowledge by participating in various Master Classes held by local experts and prestigious guests from Champagne. The Master Classes are confined to a limited number of places and hence, should be booked in advance. A separate fee applies for the Master Classes.</p><p>&nbsp;</p><p>Old Student House</p><p>25.-27.4.2024</p><p>Thu 16.00-21.00</p><p>Fri 15.00-21.00</p><p>Sat 12.00-20.00</p><p>&nbsp;</p><p>Tickets 22-25€, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Grand Champagne Helsinki 2024",
                "en": "Grand Champagne Helsinki 2024"
            },
            "short_description": {
                "fi": "Samppanja kupli kolmen päivän ajan Vanhalla Ylioppilastalolla, kun Grand Champagne -tapahtuma avaa ovensa kooten yhteen samppanjan ystävät",
                "en": "Bubbles fill the Old Student House in April bringing together champagne lovers, gourmands and top names in the industry. "
            },
            "provider": {
                "fi": "Ceesta",
                "en": "Ceesta"
            },
            "info_url": {
                "fi": "http://www.grandchampagnehelsinki.fi",
                "en": "http://www.grandchampagnehelsinki.fi"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhkhpnoe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghglof3b4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20815/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "35-109€",
                        "en": "35-109€"
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/odysseus-2024-kulttuuritehdas-korjaamo-helsinki-lippuja/95372",
                        "en": "https://www.tiketti.fi/odysseus-2024-kulttuuritehdas-korjaamo-helsinki-lippuja/95372"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 116606,
                    "license": "event_only",
                    "created_time": "2024-03-22T10:32:32.751503Z",
                    "last_modified_time": "2024-03-22T10:33:08.659683Z",
                    "name": "Kuvituskuva - Ihmisiä soittamassa",
                    "url": "http://api.hel.fi/linkedevents/media/images/keikka_Riku_Pihlanto_Sm7piBt.jpg",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Kuvituskuva / Helsinki Partners (c) Riku Pihlanto",
                    "alt_text": "Ihmisiä soittamassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/116606/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-22T10:33:09.145756Z",
            "last_modified_time": "2024-03-22T10:33:09.145776Z",
            "date_published": null,
            "start_time": "2024-07-18T21:01:00Z",
            "end_time": "2024-07-20T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Seikkailulliselle musiikille omistettu Odysseus-festivaali muuttaa Lonnasta Kulttuuritehdas Korjaamolle, jossa tapahtuma levittäytyy kaikkiin Korjaamon sisätiloihin ja lisäksi sen tunnelmalliselle kesäpihalle.</p><p>Festivaalilla nähdään mm. Jenny Hvalin ja Håvard Voldenin muodostama norjalaisduo Lost Girls, uuden Monkey Mind -albuminsa materiaalia esittävä trumpetisti Verneri Pohjola kvartetteineen, hypnoottista improvisoitua musiikkia esittävä ruotsalais-australialainen Ghosted, australialainen kokeellisen musiikin edelläkävijä Oren Ambarchi, sekä vastikään uuden ylistetyn levynsä julkaissut Islaja.</p><p>&nbsp;</p><p>Kulttuuritehdas Korjaamo</p><p>19.-20.7.2024</p><p>&nbsp;</p><p>Ohjelma: (päivitetty 22.3.2024)</p><p>Perjantai 19.7.&nbsp;<br>AINON<br>Heta Bilaletdin<br>Islaja<br>Janne Westerlund<br>Lost Girls (NO)<br>Oren Ambarchi (AU)<br>Superposition<br>Varropas<br>Verneri Pohjola: Monkey Mind<br>Ville Leinonen<br>Wilberg + Pekkola + Toivonen</p><p>&nbsp;</p><p>Lauantai 20.7.<br>Aino Juutilainen<br>Enji (MN)<br>Ensemble Nist-Nah (AU)<br>Ghosted (SE/AU)<br>Grande Mahogany<br>Hatis Noit (JP)<br>Horse Lords (US)<br>Juho Toivonen<br>KMRU (KE)<br>Laihonen &amp; Salmi<br>Mikko Joensuu<br>Otto Willberg<br>The Stance Brothers<br>Ustad Noor Bakhsh (PK)<br>Victor Herrero (ES)<br>Yam Ha</p><p>Lisää esiintyjiä molemmille päiville julkistetaan kevään aikana.</p><p>&nbsp;</p><p>Liput 35-109€ Tiketistä</p>",
                "en": "<p>The Odysseus Festival, dedicated to adventurous music, moves this year from Lonna to the Culture Factory Korjaamo, where the event spreads to all the interior spaces and in addition to its atmospheric summer yard.&nbsp;</p><p>At the festival, you can see e.g. Norwegian duo Lost Girls formed by Jenny Hval and Håvard Volden, trumpeter Verneri Pohjola performing material from his new Monkey Mind album with his quartet, Swedish-Australian Ghosted performing hypnotic improvised music, Australian experimental music pioneer Oren Ambarchi, and Islaja, who recently released her new acclaimed album.&nbsp;</p><p>&nbsp;</p><p>Culture Factory Korjaamo</p><p>19.-20.7.2024</p><p>&nbsp;</p><p>The artists: (updated 22.3.2024)</p><p>Friday 19.7.&nbsp;<br>AINON<br>Heta Bilaletdin<br>Islaja<br>Janne Westerlund<br>Lost Girls (NO)<br>Oren Ambarchi (AU)<br>Superposition<br>Varropas<br>Verneri Pohjola: Monkey Mind<br>Ville Leinonen<br>Wilberg + Pekkola + Toivonen</p><p>&nbsp;</p><p>Saturday 20.7.<br>Aino Juutilainen<br>Enji (MN)<br>Ensemble Nist-Nah (AU)<br>Ghosted (SE/AU)<br>Grande Mahogany<br>Hatis Noit (JP)<br>Horse Lords (US)<br>Juho Toivonen<br>KMRU (KE)<br>Laihonen &amp; Salmi<br>Mikko Joensuu<br>Otto Willberg<br>The Stance Brothers<br>Ustad Noor Bakhsh (PK)<br>Victor Herrero (ES)<br>Yam Ha</p><p><br>More performers for both days will be announced later.</p><p>Tickets 35-109€ from Tiketti</p>"
            },
            "name": {
                "fi": "Odysseus-festivaali 2024",
                "en": "Odysseus Festival 2024"
            },
            "short_description": {
                "fi": "Seikkailulliselle musiikille omistettu Odysseus-festivaali muuttaa Lonnasta Kulttuuritehdas Korjaamolle",
                "en": "We Jazz is arranging Odysseus Festival for the third time on Lonna Island next July."
            },
            "provider": {
                "fi": "We Jazz",
                "en": "We Jazz"
            },
            "info_url": {
                "fi": "https://www.odysseusfestival.fi/",
                "en": "https://www.odysseusfestival.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghglof3b4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghglbp3ei",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:73548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2969/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "79-99€",
                        "sv": "79-99€",
                        "en": "79-99€"
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/carolafesten-bole-arena-club-helsinki-lippuja/96271",
                        "sv": "https://www.tiketti.fi/carolafesten-bole-arena-club-helsinki-lippuja/96271",
                        "en": "https://www.tiketti.fi/carolafesten-bole-arena-club-helsinki-lippuja/96271"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 116498,
                    "license": "event_only",
                    "created_time": "2024-03-22T09:36:20.632102Z",
                    "last_modified_time": "2024-03-22T09:37:42.766348Z",
                    "name": "Carola Häggkvist",
                    "url": "http://api.hel.fi/linkedevents/media/images/CEwpLHsR.jpg",
                    "cropping": "320,0,1605,1285",
                    "photographer_name": "Loud'n Live Promotions Oy / Carola Häggkvist",
                    "alt_text": "Nainen laulamassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/116498/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-22T09:37:43.211824Z",
            "last_modified_time": "2024-03-22T09:37:43.211843Z",
            "date_published": null,
            "start_time": "2024-05-29T21:01:00Z",
            "end_time": "2024-05-30T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Ruotsin ehdottomasti suosituin naislaulaja, Carola Häggkvist, saapuu konsertoimaan Helsinkiin ensi toukokuussa.</p><p>Carola nähdään nimeään kantavalla Carolafesten-sisäfestivaalilla Pasilan Böle Arenassa kolmen suomalaisen huippuartistin, Krista Siegfridsin, Virve Rostin ja Einin noustessa lavalle ennen häntä.&nbsp;</p><p><br>Carolan ura on kestänyt jo yli 40 vuotta ja hänen albumeitaan on myyty miljoonia kappaleita. Hän nousi koko Euroopan tietouteen vuoden 1983 euroviisuissa Främling-kappaleensa myötä. Vuonna 1991 hän voitti kisan Fångad av en stormvind -laulullaan. Carolafesten-festivaalilla kuullaan Carolan tunnetuimpia lauluja.&nbsp;</p><p>&nbsp;</p><p>Böle Arena</p><p>30.5.2024, kellonajat tarkentuvat myöhemmin</p><p>Liput 79-99€ Tiketistä, K-18</p>",
                "sv": "<p>Sveriges populäraste sångerska, Carola Häggkvist, uppträder i Helsingfors nästa maj.\n</p><p>\nHon uppträder på inomhusfestivalen Carolafesten i Böle Arena, med tre finländska toppartister, Krista Siegfrids, Virve Rosti och Eini, som uppträder före henne.\n</p><p>\n\nCarolas karriär har varat i mer än 40 år och hon har sålt miljontals album. Hon uppmärksammades av hela Europa i Eurovision Song Contest 1983 med sin låt Främling. 1991 vann hon tävlingen med sin låt Fångad av en stormvind.&nbsp;</p><p>På Carolafesten uppträder hon sina mest kända låtar.\n</p><p>&nbsp;</p><p>\nBöle Arena\n</p><p>\n30.5.2024, tidtabellen fås senare\n</p><p>\nBiljetter 79-99€ &nbsp;från Tiketti, åldersgräns 18 år</p>",
                "en": "<p>Sweden's most popular female singer, Carola Häggkvist, will perform in Helsinki next May.\n</p><p>\nCarola can be seen at the Carolafesten indoor festival in Böle Arena, with three supporting top Finnish artists, Krista Siegfrids, Virve Rosti and Eini.</p><p>\n\nCarola's career has lasted more than 40 years and she has sold millions of albums. She became famous in the 1983 Eurovision Song Contest with her song Främling. In 1991, she won the contest with her song Fångad av en stormvind.&nbsp;</p><p>At the Carolafesten festival, Carola will perform most of her famous songs.\n</p><p>\n\n\nBöle Arena\n</p><p>\n30.5.2024, the starting time will be announced later\n</p><p>\nTickets €79-99 from Tiketti, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Carolafesten: Carola Häggkvist",
                "sv": "Carolafesten: Carola Häggkvist",
                "en": "Carolafesten: Carola Häggkvist"
            },
            "short_description": {
                "fi": "Ruotsin ehdottomasti suosituin naislaulaja, Carola Häggkvist, saapuu konsertoimaan Helsinkiin ensi toukokuussa.",
                "sv": "Sveriges populäraste sångerska, Carola Häggkvist, uppträder i Helsingfors nästa maj.",
                "en": "Sweden's most popular female singer, Carola Häggkvist, will perform in Helsinki next May."
            },
            "provider": {
                "fi": "Loud'n Live Promotions Oy",
                "sv": "Loud'n Live Promotions Oy",
                "en": "Loud'n Live Promotions Oy"
            },
            "info_url": {
                "fi": "https://carola.com",
                "sv": "https://carola.com",
                "en": "https://carola.com"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghglbp3ei/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghgkkbt64",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:9355/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4277/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "24/10€",
                        "en": "24/10€"
                    },
                    "info_url": {
                        "fi": "https://www.carnivals.fi/",
                        "en": "https://www.carnivals.fi/en/home"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 116391,
                    "license": "event_only",
                    "created_time": "2024-03-22T07:47:28.499213Z",
                    "last_modified_time": "2024-03-22T07:55:16.829780Z",
                    "name": "Jäätelötötterö kädessä",
                    "url": "http://api.hel.fi/linkedevents/media/images/Helsinki_FoodCulture_Tuukka_aDmQXC8.jpg",
                    "cropping": "399,0,2001,1602",
                    "photographer_name": "Kuvituskuva / Helsinki Partners (c) Tuukka Koski / Koski Syväri",
                    "alt_text": "Jäätelötötterö kädessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/116391/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-22T07:55:17.377979Z",
            "last_modified_time": "2024-03-22T08:54:22.549812Z",
            "date_published": null,
            "start_time": "2024-04-19T12:00:00Z",
            "end_time": "2024-04-21T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Jäätelö- ja suklaakarnevaali järjestetään huhtikuussa Kaapelitehtaalla Helsinki Coffee Festivalin yhteydessä.</p><p><br>Tapahtuma on ainutlaatuinen herkuttelukarnevaali kaikenikäisille, jossa tutustutaan kesän uutuusmakuihin ja maistellaan jäätelöä sekä suklaata saman katon alla. Karnevaaleilla valitaan vuoden jäätelöt ja vuoden suklaat eri kategorioissa.&nbsp;</p><p>Maistelun lomassa voi nauttia DJ:den soittamasta musasta ainutlaatuisessa tunnelmassa.</p><p>&nbsp;</p><p>Festareilla pääset tutustumaan mm.</p><p>jäätelömaistiaisiin ja ostettaviin laadukkaisiin annoksiin<br>moniin eri suklaamakuihin sekä ostamaan kotiin mukaan artesaanisuklaata</p><p><br>kaikenlaisiin teelajikkeisiin<br>eri paahtimoiden kahveihin<br>uusimpiin kombuchamakuihin<br>hankkimaan kotiin uusimpia kahvi- ja teelaitteita<br>&nbsp;</p><p>Kaapelitehdas<br>19.-21.4.2024</p><p>Liput 24/10€ Tiketistä ja ovelta, samalla lipulla pääsee molempiin tapahtumiin</p>",
                "en": "<p>The ice cream and chocolate carnival will be organized in April at Cable Factory at the same time as Helsinki Coffee Festival.</p><p>The event is a unique treat carnival for all ages, where you get to know the new summer flavours and taste ice cream and chocolate under the same roof.&nbsp;</p><p>At the carnival, ice creams and chocolates of the year will be selected in different categories.</p><p>The event tickles all the senses and during the tasting you can enjoy music played by DJs in a unique atmosphere.</p><p>&nbsp;</p><p>The event offers:</p><p>ice cream tastings and quality portions&nbsp;</p><p>many different chocolate flavours&nbsp;</p><p>artisan chocolate to take home</p><p>all kinds of tea varieties</p><p>coffees from different roasters</p><p>the latest kombucha flavours</p><p>the latest coffee and tea equipment for home</p><p>&nbsp;</p><p>Cable Factory<br>19.-21.4.2024</p><p>Tickets 24/10€ from Tiketti and at the entrance, the same ticket is valid for the both events</p>"
            },
            "name": {
                "fi": "Jäätelö- ja suklaakarnevaali 2024",
                "en": " Ice Cream & Chocolate Carnival 2024"
            },
            "short_description": {
                "fi": "Pohjois-Euroopan suurin kahvifestivaali Helsinki Coffee Festival järjestetään huhtikuussa Kaapelitehtaalla, Ruoholahdessa.",
                "en": "The ice cream and chocolate carnival will be organized in April at Cable Factory at the same time as Helsinki Coffee Festival."
            },
            "provider": {
                "fi": "Helsinki Coffee Festival ",
                "en": "Helsinki Coffee Festival "
            },
            "info_url": {
                "fi": "https://www.carnivals.fi/",
                "en": "https://www.carnivals.fi/en/home"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgkkbt64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agft2twmgi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:41176/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/sidewayshel/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/sidewayshel/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/sidewayshel",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "109-189€",
                        "sv": "109-189€",
                        "en": "109-189€"
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/sideways-2024-nordis-helsinki-lippuja/91563",
                        "sv": "https://www.tiketti.fi/sideways-2024-nordis-helsinki-lippuja/91563",
                        "en": "https://www.tiketti.fi/sideways-2024-nordis-helsinki-lippuja/91563"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68072,
                    "license": "event_only",
                    "created_time": "2020-11-13T08:02:04.170963Z",
                    "last_modified_time": "2022-06-16T07:42:14.617920Z",
                    "name": "Sideways",
                    "url": "http://api.hel.fi/linkedevents/media/images/alue-Sideways18_c_Petri_Ant_FPbGT4R.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Sideways (c) Petri Anttila",
                    "alt_text": "Festivaalilava ja ihmisiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-17T11:04:16.189430Z",
            "last_modified_time": "2024-03-22T08:33:25.461567Z",
            "date_published": null,
            "start_time": "2024-06-12T21:01:00Z",
            "end_time": "2024-06-15T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Nordis",
                "sv": "Nordis",
                "en": "Nordis"
            },
            "description": {
                "fi": "<p>Sideways on Helsingin festivaalikesän avaava, kolmepäiväinen festivaali, joka pidetään Nordiksella.&nbsp;</p><p>Tapahtuma tarjoaa jälleen kymmeniä keikkoja genrerajoista piittaamatta ja ohjelma on täynnä sekä kestosuosikkeja että uusia löytöjä.</p><p>Torstai 13.6. (päivitys 19.3.2024)<br>Bat For Lashes (UK) · Frank Carter &amp; The Rattlesnakes (UK) · Chelsea Wolfe (US) · Armand Hammer (US) · Royel Otis (AU) · Lauri Haav · Rättö &amp; Lehtisalo · Veesta · Elsi Sloan · Emma &amp; Matilda · Knife Girl · Räjäyttäjät · Virta</p><p>Perjantai 14.6.&nbsp;<br>Jungle (UK) · Fontaines D.C. (IE) · L7 (US) · Julie Byrne (US) · Ismo Alanko Yksin · Kuumaa · Oranssi Pazuzu · Ursus Factory · Yona · Aaro630 · Good Boys · Iisa · Janne Westerlund · Luukas Oja · M · Paha Vaanii · Yeboyah</p><p>Lauantai 15.6.&nbsp;<br>Peggy Gou (KR) · Ladytron (UK) · Ane Brun (NO) · The Armed (US) · Yune Pinku Live (IE) · Alessandro Cortini (IT) · Derya Yildirim &amp; Grup Simsek (TR) · Karri Koira · Pariisin Kevät · Pehmoaino · Asa · Eevil Stöö · &nbsp;Erottaja DJ’S · &nbsp;F · Huora · Jesse Markin · Joalin · Mikko Joensuu · Pekko Käppi &amp; K:H:H:L · Tinyhawk &amp; Bizzarro · Viitasen Piia</p><p>&nbsp;</p><p>Nordis<br>13.-15.6.2024</p><p>Liput 109-189€ Tiketistä, K-18</p>",
                "sv": "<p>Musikfestivalen Sideways öppnar årligen Helsingfors festivalsommar i juni på Nordis.</p><p>&nbsp;</p><p>Torsdag 13.6. (uppdatering 19.3.2024)<br>Bat For Lashes (UK) · Frank Carter &amp; The Rattlesnakes (UK) · Chelsea Wolfe (US) · Armand Hammer (US) · Royel Otis (AU) · Lauri Haav · Rättö &amp; Lehtisalo · Veesta · Elsi Sloan · Emma &amp; Matilda · Knife Girl · Räjäyttäjät · Virta</p><p>Fredag 14.6.&nbsp;<br>Jungle (UK) · Fontaines D.C. (IE) · L7 (US) · Julie Byrne (US) · Ismo Alanko Yksin · Kuumaa · Oranssi Pazuzu · Ursus Factory · Yona · Aaro630 · Good Boys · Iisa · Janne Westerlund · Luukas Oja · M · Paha Vaanii · Yeboyah</p><p>Lördag 15.6.&nbsp;<br>Peggy Gou (KR) · Ladytron (UK) · Ane Brun (NO) · The Armed (US) · Yune Pinku Live (IE) · Alessandro Cortini (IT) · Derya Yildirim &amp; Grup Simsek (TR) · Karri Koira · Pariisin Kevät · Pehmoaino · Asa · Eevil Stöö · &nbsp;Erottaja DJ’S · &nbsp;F · Huora · Jesse Markin · Joalin · Mikko Joensuu · Pekko Käppi &amp; K:H:H:L · Tinyhawk &amp; Bizzarro · Viitasen Piia</p><p>&nbsp;</p><p>Nordis</p><p>13.-15.6.2024</p><p>Biljetter 109-189€ från Tiketti, åldersgräns 18 år</p>",
                "en": "<p>Kicking of the summer of music festivals, Sideways takes place in the area of Nordis, near the Helsinki Ice Hall and Eläintarha Sports Field.&nbsp;</p><p>It offers a wide variety of good music, food, drinks and various sideshows.</p><p>&nbsp;</p><p>Thursday 13.6. (updated 19.3.2024)<br>Bat For Lashes (UK) · Frank Carter &amp; The Rattlesnakes (UK) · Chelsea Wolfe (US) · Armand Hammer (US) · Royel Otis (AU) · Lauri Haav · Rättö &amp; Lehtisalo · Veesta · Elsi Sloan · Emma &amp; Matilda · Knife Girl · Räjäyttäjät · Virta</p><p>Friday 14.6.&nbsp;<br>Jungle (UK) · Fontaines D.C. (IE) · L7 (US) · Julie Byrne (US) · Ismo Alanko Yksin · Kuumaa · Oranssi Pazuzu · Ursus Factory · Yona · Aaro630 · Good Boys · Iisa · Janne Westerlund · Luukas Oja · M · Paha Vaanii · Yeboyah</p><p>Saturday 15.6.&nbsp;<br>Peggy Gou (KR) · Ladytron (UK) · Ane Brun (NO) · The Armed (US) · Yune Pinku Live (IE) · Alessandro Cortini (IT) · Derya Yildirim &amp; Grup Simsek (TR) · Karri Koira · Pariisin Kevät · Pehmoaino · Asa · Eevil Stöö · &nbsp;Erottaja DJ’S · &nbsp;F · Huora · Jesse Markin · Joalin · Mikko Joensuu · Pekko Käppi &amp; K:H:H:L · Tinyhawk &amp; Bizzarro · Viitasen Piia</p><p>&nbsp;</p><p>Nordis<br>13.-15.6.2024</p><p>Tickets 109-189€ from Tiketti, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Sideways 2024",
                "sv": "Sideways 2024",
                "en": "Sideways 2024"
            },
            "short_description": {
                "fi": "Sideways on Helsingin festivaalikesän avaava, kolmepäiväinen festivaali, joka pidetään Nordiksella. ",
                "sv": "Musikfestivalen Sideways öppnar årligen Helsingfors festivalsommar i juni på Nordis.",
                "en": "Kicking of the summer of music festivals, Sideways takes place in the area of Nordis, near the Helsinki Ice Hall and Eläintarha Sports Field."
            },
            "provider": {
                "fi": "Fullsteam Agency",
                "sv": "Fullsteam Agency",
                "en": "Fullsteam Agency"
            },
            "info_url": {
                "fi": "https://sidewayshelsinki.fi/",
                "sv": "https://sidewayshelsinki.fi/",
                "en": "https://sidewayshelsinki.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agft2twmgi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghgkn47tq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3984/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://liikkeellamarraskuussa.fi/",
                        "sv": "https://liikkeellamarraskuussa.fi/",
                        "en": "https://liikkeellamarraskuussa.fi/"
                    },
                    "info_url": {
                        "fi": "https://liikkeellamarraskuussa.fi/",
                        "sv": "https://liikkeellamarraskuussa.fi/",
                        "en": "https://liikkeellamarraskuussa.fi/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 116392,
                    "license": "event_only",
                    "created_time": "2024-03-22T08:10:25.535370Z",
                    "last_modified_time": "2024-03-22T08:12:07.390193Z",
                    "name": "Liikkeellä marraskuussa",
                    "url": "http://api.hel.fi/linkedevents/media/images/20131106_1752_L1007989_3919.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Ihmisiä tanssimassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/116392/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-22T08:12:07.976346Z",
            "last_modified_time": "2024-03-22T08:12:07.976375Z",
            "date_published": null,
            "start_time": "2024-11-06T22:01:00Z",
            "end_time": "2024-11-17T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Liikkeellä marraskuussa on pääkaupunkiseudulla järjestettävä kansainvälinen nykytanssifestivaali, joka esittelee vuosittain ohjelmistossaan uusia näkökulmia avaavaa, ajankohtaista ja kiinnostavaa nykytanssia.</p><p>Ohjelma julkistetaan syyskuun puolivälissä.</p><p>&nbsp;</p><p>Helsinki</p><p>7.-17.11.2024</p>",
                "sv": "<p>I huvudstadsregionen arrangeras årligen På gång i november -dansfestivalen, som presenterar samtidsdans ur aktuella och intressanta perspektiv.&nbsp;</p><p>Programmet kommer att offentliggöras i mitten av september.</p><p>&nbsp;</p><p>Helsingfors</p><p>7.-17.11.2024</p>",
                "en": "<p>Moving in November is the a significant contemporary dance festival in the Helsinki area.&nbsp;</p><p>Every year, the festival introduces interesting, topical and edgy dance works in its programme.</p><p>The program will be released in mid-September.</p><p>&nbsp;</p><p>Helsinki</p><p>7.-17.11.2024</p>"
            },
            "name": {
                "fi": "Liikkeellä marraskuussa -festivaali  2024",
                "sv": "På gång i november -festival 2024",
                "en": "Moving in November Festival 2024"
            },
            "short_description": {
                "fi": "Liikkeellä marraskuussa on pääkaupunkiseudulla järjestettävä kansainvälinen nykytanssifestivaali, joka esittelee vuosittain ohjelmistossaan ",
                "sv": "I huvudstadsregionen arrangeras årligen På gång i november -dansfestivalen, som presenterar samtidsdans ur aktuella och intressanta perspektiv. ",
                "en": "Moving in November is the a significant contemporary dance festival in the Helsinki area. "
            },
            "provider": {
                "fi": "Liikkeellä marraskuussa -festivaali ",
                "sv": "På gång i november -festival",
                "en": "Moving in November Festival"
            },
            "info_url": {
                "fi": "https://liikkeellamarraskuussa.fi/",
                "sv": "https://liikkeellamarraskuussa.fi/",
                "en": "https://liikkeellamarraskuussa.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgkn47tq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agesbstele",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:9355/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4277/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "24/10€",
                        "sv": "24/10€",
                        "en": "24/10€"
                    },
                    "info_url": {
                        "fi": "https://www.carnivals.fi/",
                        "sv": "https://www.carnivals.fi/en/home",
                        "en": "https://www.carnivals.fi/en/home"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 40758,
                    "license": "event_only",
                    "created_time": "2017-12-08T09:36:17.289577Z",
                    "last_modified_time": "2021-12-21T09:49:43.536078Z",
                    "name": "Helsinki Coffee Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/Coffee-Festival.jpg",
                    "cropping": "492,0,1076,583",
                    "photographer_name": "Helsinki Coffee Festival",
                    "alt_text": "Piirrettyjä kahvikuppeja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/40758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-07-04T12:04:42.231950Z",
            "last_modified_time": "2024-03-21T14:01:50.449736Z",
            "date_published": null,
            "start_time": "2024-04-18T21:01:00Z",
            "end_time": "2024-04-21T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Pohjois-Euroopan suurin kahvifestivaali Helsinki Coffee Festival järjestetään huhtikuussa Kaapelitehtaalla, Ruoholahdessa. Yhden viikonlopun ajan Kaapelitehtaalle syntyy Suomen suurin kahvikauppa ja pop up -kahvila ja kahvin ystävien unelmakohde, jossa on tänä vuonna mukana yli 70 osastoa, joista yli 30 kahvipaahtimoa sekä lisäksi teetä, kombuchaa ja laitteita.</p><p>&nbsp;</p><p>Festareilla pääset tutustumaan mm.<br>kaikenlaisiin teelajikkeisiin<br>eri paahtimoiden kahveihin<br>uusimpiin kombuchamakuihin<br>jäätelömaistiaisiin ja ostettaviin laadukkaisiin annoksiin<br>moniin eri suklaamakuihin sekä ostamaan kotiin mukaan artesaanisuklaata<br>hankkimaan kotiin uusimpia kahvi- ja teelaitteita</p><p>Tapahtuma hivelee kaikkia aisteja ja maistelun lomassa voi nauttia DJ:den soittamasta musasta ainutlaatuisessa tunnelmassa.<br>&nbsp;</p><p>Samana viikonloppuna ja samoissa tiloissa järjestetään myös Jäätelö- ja suklaakarnevaali. Pääset siis samalla lipulla maistelemaan myös parhaita jäätelöitä ja nauttimaan herkullisesta suklaavalikoimasta.<br>&nbsp;</p><p>Kaapelitehdas<br>19.-21.4.2024</p><p>Liput 24/10€ Tiketistä ja ovelta</p>",
                "sv": "<p>Helsinki Coffee Festival och Glass- &amp; chokladkarneval</p><p>På Kabelfabriken öppnar ett smakrikt evenemang när både Glass- och chokladkarnevalen och Nordeuropas största kaffefestival äger rum samtidigt i april.&nbsp;<br>&nbsp;</p><p>Kabelfabriken<br>19.-21.4.2024</p><p>Mera information on programmet fås senare</p>",
                "en": "<p>Helsinki Coffee Festival and Ice Cream &amp; Chocolate Carnival 2024</p><p>&nbsp;</p><p>In April, the tastiest event of the year and Northern Europe's largest pop-up coffee shop will open at the Cable Factory, when the Ice Cream and Chocolate Carnival and the Helsinki Coffee Festival are held in the same place, at the same time.</p><p>&nbsp;</p><p>Cable Factory<br>19.-21.4.2024</p><p>More information will be released later</p>"
            },
            "name": {
                "fi": "Helsinki Coffee Festival 2024",
                "sv": "Helsinki Coffee Festival 2024",
                "en": "Helsinki Coffee Festival 2024"
            },
            "short_description": {
                "fi": "Pohjois-Euroopan suurin kahvifestivaali Helsinki Coffee Festival järjestetään huhtikuussa Kaapelitehtaalla, Ruoholahdessa.",
                "sv": "Helsinki Coffee Festival och Glass- & chokladkarneval",
                "en": "Helsinki Coffee Festival and Ice Cream & Chocolate Carnival 2024"
            },
            "provider": {
                "fi": "Helsinki Coffee Festival ",
                "sv": "Helsinki Coffee Festival ",
                "en": "Helsinki Coffee Festival "
            },
            "info_url": {
                "fi": "https://www.carnivals.fi/",
                "sv": "https://www.carnivals.fi/en/home",
                "en": "https://www.carnivals.fi/en/home"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agesbstele/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agglbgxgd4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:62843/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10649/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "6/16€",
                        "en": "6/16€"
                    },
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 114504,
                    "license": "event_only",
                    "created_time": "2024-03-21T13:30:00.580811Z",
                    "last_modified_time": "2024-03-21T13:32:16.307851Z",
                    "name": "Daido Moriyama: From Pretty Woman, Tokyo, 2017",
                    "url": "http://api.hel.fi/linkedevents/media/images/Daido-Moriyama-From-Pretty.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "Helsingin valokuvataiteen museo (c) Daido Moriyama / Daido Moriyama Photo Foundation /",
                    "alt_text": "Mallinukke",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/114504/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T13:26:30.702318Z",
            "last_modified_time": "2024-03-21T13:35:42.151008Z",
            "date_published": null,
            "start_time": "2024-03-07T22:01:00Z",
            "end_time": "2024-06-02T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Japanlaisen valokuvaaja Daido Moriyaman näyttely on esillä ensimmäistä kertaa Suomessa.</p><p>Valokuvataiteilija ja katuvalokuvaaja Daido Moriyama (s. 1938) tutkii teoksissaan japanilaisen yhteiskunnan länsimaalaistumista visuaalisen kulttuurin kautta.&nbsp;</p><p>Moriyamalla on vahva tunnistettava visuaalinen kädenjälki, ja hän on merkittävästi muuttanut ihmisten tapaa katsoa valokuvaa.&nbsp;</p><p>Näyttely on laaja retrospektiivi, joka perustuu taiteilijan yli kuusikymmenvuotiseen uraan.</p><p>&nbsp;</p><p>Suomen valokuvataiteen museo, K1</p><p>8.3.-2.6.2024</p><p>Ma–pe klo 11–20, la–su 11–18</p><p>Sisäänpääsy 6/16€, alle 18-v. vapaa pääsy</p>",
                "en": "<p>Japanese photographer Daido Moriyama's exhibition will be held in Finland for the first time.</p><p>Photo artist and street photographer Daido Moriyama (b. 1938) explores the westernization of Japanese society through visual culture in his works.</p><p>Moriyama has a strong recognizable visual signature and has significantly changed the way people look at photography.</p><p>The exhibition is an extensive retrospective based on the artist's more than sixty-year career.&nbsp;</p><p>&nbsp;</p><p>Finnish Museum of Photography, K1</p><p>8.3.-2.6.2024</p><p>Mon-Fri 11.00-20.00</p><p>Sat-Sun 11.00-18.00</p><p>Admission fee 6/16€, under 18 yrs free entry</p>"
            },
            "name": {
                "fi": "Daido Moriyama: Retrospektiivi",
                "en": "Daido Moriyama: Retrospective"
            },
            "short_description": {
                "fi": "Japanlaisen valokuvaaja Daido Moriyaman näyttely on esillä ensimmäistä kertaa Suomessa.",
                "en": "Japanese photographer Daido Moriyama's exhibition will be held in Finland for the first time."
            },
            "provider": {
                "fi": "Suomen valokuvataiteen museo",
                "en": "Finnish Museum of Photography"
            },
            "info_url": {
                "fi": "https://www.valokuvataiteenmuseo.fi/fi/nayttelyt/daido-moriyama-retrospektiivi",
                "en": "https://www.valokuvataiteenmuseo.fi/en/exhibitions/daido-moriyama-retrospective"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agglbgxgd4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agglbmnfoq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:62843/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10649/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.valokuvataiteenmuseo.fi/",
                        "en": "https://www.valokuvataiteenmuseo.fi"
                    },
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 78030,
                    "license": "event_only",
                    "created_time": "2022-03-01T09:23:22.958696Z",
                    "last_modified_time": "2022-03-01T09:31:22.687687Z",
                    "name": "Kaapelitehdas",
                    "url": "http://api.hel.fi/linkedevents/media/images/2_21.jpg.jpg",
                    "cropping": "120,0,1080,960",
                    "photographer_name": "Helsingin kaupunki / aineistopankki (c) Matti Tirri",
                    "alt_text": "Kaapelitehdas ulkoapäin",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/78030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T13:51:21.471084Z",
            "last_modified_time": "2024-03-21T13:22:09.728171Z",
            "date_published": null,
            "start_time": "2024-06-13T21:01:00Z",
            "end_time": "2024-10-06T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Kesällä 2024 K1:ssä sukelletaan Emma Sarpaniemen (s.1993) performatiivisten muotokuvien maailmaan.&nbsp;</p><p>Sarpaniemi tutkii yhdessä ja yksin rakennetuissa muotokuvissa naiseuteen ja feminiinisyyteen liittyviä esteettisiä ja sosiaalisia normeja empatian ja huumorin keinoin. Sarpaniemi haluaa antaa arkisille esineille uusia symbolisia merkityksiä: kuvien lähtökohtana on usein kirpputorilta löydetty esine tai vaate.&nbsp;</p><p>Värit ja leikkisyys on usein yhdistetty naiiviuteen, mutta Sarpaniemi kääntää leikkisyyden voimavaraksi ravistelleessaan totuttuja naiseuden käsitteitä ja normatiivisia sukupuolirooleja.&nbsp;<br>&nbsp;</p><p>Suomen valokuvataiteen museo, K1</p><p>14.6.-6.10.2024</p>",
                "en": "<p>In the summer of 2024, Finnish Museum of Photography will dive into the world of performative portraits by Emma Sarpaniemi (b.1993).</p><p>Sarpaniemi explores aesthetic and social norms related to femininity and femininity in portraits created together and alone, using empathy and humor.</p><p>&nbsp;</p><p>Finnish Museum of Photography, K1</p><p>14.6.-6.10.2024</p>"
            },
            "name": {
                "fi": "Emma Sarpaniemi",
                "en": "Emma Sarpaniemi"
            },
            "short_description": {
                "fi": "Kesällä 2024 K1:ssä sukelletaan Emma Sarpaniemen (s.1993) performatiivisten muotokuvien maailmaan. ",
                "en": "In the summer of 2024, Finnish Museum of Photography will dive into the world of performative portraits by Emma Sarpaniemi (b.1993)."
            },
            "provider": {
                "fi": "Suomen valokuvataiteen museo",
                "en": "Finnish Museum of Photography"
            },
            "info_url": {
                "fi": "https://www.valokuvataiteenmuseo.fi/fi/nayttelyt/emma-sarpaniemi",
                "en": "https://www.valokuvataiteenmuseo.fi/"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agglbmnfoq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}