Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
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
event/?start=now&end=today
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
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 coordinate system is the trusty old EPSG:4326 known from all online maps.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
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
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
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.
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
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
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
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
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 event/?local_ongoing_AND=lapset,musiiki
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. The search is non-intelligently fuzzy, it allows two edits per search term which would cover some typos and allow for some grammatic changes: lapsi would match lapset but not lasten.
Example:
event/?local_ongoing_AND=lapsa,musiikki
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, two variations: ?internet_ongoing_AND
and ?internet_ongoing_OR
Note, that local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsa,musiiki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: ?all_ongoing_AND
and ?all_ongoing_OR
Example:
event/?all_ongoing_AND=lapsa,musiiki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
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
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
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
Ordering
Default ordering is descending order by -last_modified_time
.
You may also order results by start_time
, end_time
,
name
and duration
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
GET /linkedevents/v1/event/?audience_min_age_gt=10
http://api.hel.fi/linkedevents/v1/event/?audience_min_age_gt=10&page=2", "previous": null }, "data": [ { "id": "helsinki:agejw5ltnu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:53341/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:agcl3tc74q/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 92538, "license": "cc_by", "created_time": "2023-05-25T15:02:59.403870Z", "last_modified_time": "2023-05-25T15:04:34.301348Z", "name": "_MG_1723_4455.jpg", "url": "http://api.hel.fi/linkedevents/media/images/_MG_1723_4455.jpg", "cropping": "381,0,1899,1518", "photographer_name": "Jussi Hellsten", "alt_text": "Ryhmä nuoria istuu nurmella puistossa ja aurinko paistaa", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/92538/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/" } ], "created_time": "2023-06-08T14:42:25.787761Z", "last_modified_time": "2023-06-09T09:30:03.154576Z", "date_published": null, "start_time": "2023-06-21T10:00:00Z", "end_time": "2023-06-21T13:00:00Z", "custom_data": null, "audience_min_age": 18, "audience_max_age": 29, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": "2023-06-08T20:00:00+03:00", "enrolment_end_time": "2023-06-20T15:00:00+03:00", "local": false, "search_vector_fi": "'-29':44C '13':16C '18':43C 'edeltäv':48C 'hietaniem':20C,22C 'hietanim':9B 'hietsu':39C 'ilmoittautumin':46C 'jälk':28C 'kahv':32C 'kahvil':41C 'kera':38C 'kesäpel':26C 'kesäretk':1A,57C 'kirj':61C 'klo':15C 'kuvaus':11C 'kävel':19C 'laita':54C 'lähd':12C 'men':50C 'mukav':7B 'muun':35C 'mölky':6B 'nime':63C 'ohjaamo':14C,29C 'ohjaamo@hel.fi':53C 'osallistu':31C 'osoit':52C 'otsiko':56C 'pel':27C 'pela':24C 'pelaam':3B 'petank':4B 'poruk':8B 'puhelinnumero':65C 'pul':37C 'päivä':49C 'päivämäär':60C 'ran':23C 'retk':13C,47C,59C 'siiry':18C 'sähköopost':51C 'tarjoa':30C 'teen':33C 'tule':2B 'uimaran':10B,21C,40C 'viest':55C,62C 'virvok':36C 'vuotia':45C 'yhd':25C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Kuvaus</strong><br>Lähdetään retkelle Ohjaamolta klo 13 ja siirrytään kävellen Hietaniemen uimarannalle. <br>Hietaniemen rannalla pelaamme yhdessä kesäpelejä.<br>Pelien jälkeen Ohjaamo tarjoaa osallistujille kahvin, teen tai muun virvokkeen pullan kera Hietsun uimarannan kahvilassa. <br><br><strong>Kenelle?</strong><br>18-29 -vuotiaille</p><p><strong>Ilmoittautuminen</strong> <br>Retkeä edeltävään päivään mennessä sähköopostilla osoitteeseen ohjaamo@hel.fi</p><p>Laita viestiin otsikoksi kesäretki ja retken päivämäärä, kirjoita viestiin nimesi ja puhelinnumerosi.<br> </p><p> </p>" }, "name": { "fi": "Kesäretki" }, "info_url": { "fi": "http://nuorten.hel.fi/ohjaamo" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Tule pelaamaan petankkia ja mölkkyä mukavassa porukassa Hietanimen uimarannalle." }, "provider": { "fi": "Ohjaamo " }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agejw5ltnu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylrc4", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylmai/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllyy/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllsm/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllmu/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllgy/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllae/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkza/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylksu/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkmy/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkgu/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkau/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yljva/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yljou/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yljie/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylj2u/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yli6m/" } ], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:03.340895Z", "last_modified_time": "2023-06-09T08:59:03.340938Z", "date_published": null, "start_time": "2023-06-10T15:00:00Z", "end_time": "2023-09-30T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylmai", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:02.033463Z", "last_modified_time": "2023-06-09T08:59:02.033498Z", "date_published": null, "start_time": "2023-09-30T15:00:00Z", "end_time": "2023-09-30T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylmai/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yllyy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.970518Z", "last_modified_time": "2023-06-09T08:59:01.970547Z", "date_published": null, "start_time": "2023-09-23T15:00:00Z", "end_time": "2023-09-23T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllyy/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yllsm", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.919657Z", "last_modified_time": "2023-06-09T08:59:01.919702Z", "date_published": null, "start_time": "2023-09-16T15:00:00Z", "end_time": "2023-09-16T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllsm/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yllmu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.871709Z", "last_modified_time": "2023-06-09T08:59:01.871733Z", "date_published": null, "start_time": "2023-09-09T15:00:00Z", "end_time": "2023-09-09T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllmu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yllgy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.826144Z", "last_modified_time": "2023-06-09T08:59:01.826171Z", "date_published": null, "start_time": "2023-09-02T15:00:00Z", "end_time": "2023-09-02T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllgy/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yllae", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.773186Z", "last_modified_time": "2023-06-09T08:59:01.773215Z", "date_published": null, "start_time": "2023-08-26T15:00:00Z", "end_time": "2023-08-26T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yllae/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylkza", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.717620Z", "last_modified_time": "2023-06-09T08:59:01.717650Z", "date_published": null, "start_time": "2023-08-19T15:00:00Z", "end_time": "2023-08-19T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkza/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylksu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.664423Z", "last_modified_time": "2023-06-09T08:59:01.664452Z", "date_published": null, "start_time": "2023-08-12T15:00:00Z", "end_time": "2023-08-12T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylksu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylkmy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.616655Z", "last_modified_time": "2023-06-09T08:59:01.616680Z", "date_published": null, "start_time": "2023-08-05T15:00:00Z", "end_time": "2023-08-05T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkmy/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylkgu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.567285Z", "last_modified_time": "2023-06-09T08:59:01.567311Z", "date_published": null, "start_time": "2023-07-29T15:00:00Z", "end_time": "2023-07-29T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkgu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylkau", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.520854Z", "last_modified_time": "2023-06-09T08:59:01.520884Z", "date_published": null, "start_time": "2023-07-22T15:00:00Z", "end_time": "2023-07-22T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylkau/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6ylj2u", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.473125Z", "last_modified_time": "2023-06-09T08:59:01.473157Z", "date_published": null, "start_time": "2023-07-15T15:00:00Z", "end_time": "2023-07-15T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylj2u/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yljva", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.426740Z", "last_modified_time": "2023-06-09T08:59:01.426766Z", "date_published": null, "start_time": "2023-07-08T15:00:00Z", "end_time": "2023-07-08T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yljva/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yljou", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.376066Z", "last_modified_time": "2023-06-09T08:59:01.376094Z", "date_published": null, "start_time": "2023-07-01T15:00:00Z", "end_time": "2023-07-01T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yljou/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yljie", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.326222Z", "last_modified_time": "2023-06-09T08:59:01.326252Z", "date_published": null, "start_time": "2023-06-17T15:00:00Z", "end_time": "2023-06-17T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yljie/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6yli6m", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6ylrc4/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/5905397159514363/5905397186181027/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92965, "license": "cc_by", "created_time": "2023-06-09T08:58:12.786431Z", "last_modified_time": "2023-06-09T08:58:59.922564Z", "name": "HitMix Bileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1_XeKzkgz.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92965/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T08:59:01.254957Z", "last_modified_time": "2023-06-09T08:59:01.254989Z", "date_published": null, "start_time": "2023-06-10T15:00:00Z", "end_time": "2023-06-10T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':58C '/hl':61C '18':57C '24':60C '30.9.2023':55C '6.5':54C 'ajo':40C 'bile':33C 'bileristeily':2A,7B,20C 'edust':15B,28C 'em':9B,22C 'helsing':14B,27C,31C,47C 'hitmix':1A 'huikea':12B,25C 'kauppator':50C 'kaver':41C 'kesä':5B,18C 'klo':56C 'koe':37C 'kuumim':6B,19C 'laiva':10B,23C 'lauantais':53C 'linnanlaitur':51C 'lipu':39C,59C 'lähd':3B,16C 'lähdö':44C 'lähtö':49C 'menev':32C 'muual':36C 'nap':38C 'paik':30C 'pääse':11B,24C 'risteily':52C 'saaristo':48C 'sunlines':8B,21C 'työporuk':43C 'täyttyv':45C 'varm':29C 'vauhd':46C 'ysäritunnelm':13B,26C 'ö':62C", "search_vector_en": "'-22':141C '/person':144C '18':140C '2000s':31B,78C '24':143C '30.9.2023':138C '6.5':137C '90s':29B,76C 'aboard':5B,52C 'archipelago':125C,127C 'best':90C 'catchi':25B,72C 'colleagu':117C 'cruis':3A,46C,50C,96C,135C 'danc':81C 'departur':128C 'dj':22B,69C 'drink':110C 'emma':10B,57C 'floor':82C 'food':108C 'friend':115C 'full':85C 'get':12B,59C 'good':107C 'greatest':18B,65C 'groov':14B,61C 'helsinki':102C,124C,126C 'hit':20B,26B,67C,73C 'hitmix':1A,44C,94C 'hot':48C 'legendari':8B,55C 'linnanlaituri':133C 'lot':105C 'm/s':9B,56C 'market':131C 'miss':42C 'night':112C 'parti':2A,19B,33C,45C,49C,66C,95C,100C 'peopl':87C 'pier':134C 'play':24B,71C 'saturday':136C 'sea':36C,93C,120C 'seasid':103C 'squar':132C 'step':4B,51C 'stun':119C 'ticket':142C 'time':91C 'ultim':99C 'view':121C 'want':40C", "search_vector_sv": "'-22':90C '/person':93C '18':89C '2023':87C '24':92C '30':85C '6.5':84C 'annanstan':62C 'arbetsgrupp':71C 'atmosfär':22B,43C 'avgång':72C,77C 'biljet':64C,91C 'cruis':3A 'emm':13B,34C 'fest':52C 'framför':23B,44C 'fyll':73C 'följ':4B,25C 'helsingfor':24B,45C,54C,75C 'het':9B,30C,51C 'hitmix':1A 'här':21B,42C 'in':18B,39C 'kl':88C 'komm':17B,38C,58C 'kryssning':81C 'lördag':83C 'party':2A 'plat':48C 'salutorget':79C 'septemb':86C 'ship':14B,35C 'skaff':63C 'skärgård':76C 'slottskaj':80C 'snabbt':74C 'sommarkryssning':10B,31C 'sunlin':12B,33C 'säkr':46C 'tid':66C 'upplev':60C 'vänn':69C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle. Varmista paikkasi Helsingin menevimpiin bileisiin, joita et muualla koe! Nappaa liput ajoissa kaveri- tai työporukallesi – lähdöt täyttyvät vauhdilla!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt lauantaisin 6.5. - 30.9.2023 klo 18-22<br><br>Liput 24€/hlö</p>", "sv": "<p>Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. Säkra din plats på de hetaste festerna i Helsingfors som du inte kommer att uppleva någon annanstans! Skaffa biljetterna i tid till dina vänner eller arbetsgrupp - avgångarna fylls snabbt!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på lördagar 6.5. - 30 september 2023 kl. 18-22<br><br>Biljetter 24€/person</p>", "en": "<p>The party at the sea you do not want to miss!<br><br>The HitMix Party Cruises are hot party cruises! Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s, and the dancing floor will be full of people having their best time at sea.<br><br>HitMix Party Cruise is the ultimate party at Helsinki seaside: a lot of good food and drink, a night off with friends or colleagues and stunning sea views to the Helsinki archipelago.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises Saturdays 6.5. - 30.9.2023 at: 18-22<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "HitMix Bileristeily", "sv": "HitMix Party Cruise", "en": "HitMix Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/hitmix-bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/hitmix-party-cruise/", "en": "https://www.sunlines.fi/en/party-cruises/hitmix-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Lähde mukaan kesän kuumimmille bileristeilyille! SunLinesin Emma - laivalla pääset huikeaan ysäritunnelmaan Helsingin edustalle.", "sv": "Följ med oss på de hetaste sommarkryssningarna! Med SunLines Emma - ship kan du komma in i en härlig atmosfär framför Helsingfors. ", "en": "Step aboard in the legendary M/S Emma and get your groove on to the greatest party hits! The DJ’s plays catchy hits of the ’90s and 2000s" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6yli6m/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6e2m5i", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/6108056809284194/6108056832617525/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2iki/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2id4/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2hq4/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2hk4/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2hee/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2h2q/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2gva/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2gni/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2gfq/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2g4u/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2fwy/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2fqa/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2fji/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2f6i/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2ezi/" } ], "images": [ { "id": 92963, "license": "cc_by", "created_time": "2023-06-09T07:32:25.478210Z", "last_modified_time": "2023-06-09T07:33:38.891073Z", "name": "HitMix2 (1).jpgBileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92963/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T07:33:42.271387Z", "last_modified_time": "2023-06-09T07:41:46.821340Z", "date_published": null, "start_time": "2023-06-16T15:00:00Z", "end_time": "2023-09-29T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':47C '/hl':51C '00':46C,48C '18':45C '24':50C '29.9.2023':43C '5.5':42C '70':28C 'bile':23C 'bileristeily':1A,4B,14C 'dj':24C 'em':2B,12C 'helsing':10B,20C,35C 'hiti':27C 'huippusuositu':3B,13C 'kauppator':38C 'kl':44C 'linnanlaitur':39C 'lipu':49C 'luvu':29C 'lähtö':37C 'menevim':26C 'mere':33C 'merimaisem':9B,19C 'nelituntis':22C 'perjantais':7B,17C,41C 'päivä':31C 'risteily':40C 'saaristo':11B,21C,36C 'soit':25C 'sykähdyttäv':8B,18C 'tervetulo':32C 'vievä':5B,15C 'viihtym':34C 'ö':52C", "search_vector_en": "'-22':98C '/person':102C '00':97C,99C '18':96C '24':101C '29.9.2023':94C '5.5':93C '70':72C 'archipelago':82C 'atmospher':61C 'beat':69C 'board':13B,32C 'breath':56C 'breath-tak':55C 'cruis':2A,44C,90C 'departur':64C,83C 'dj':79C 'emma':63C 'enjoy':15B,34C,53C 'everi':91C 'experi':6B,25C 'friday':92C 'full':66C 'get':11B,30C 'helsinki':20B,39C,81C 'legendari':42C 'linnanlaituri':88C 'm/s':62C 'market':86C 'parti':1A,5B,17B,24C,36C,43C,68C 'pier':89C 'play':76C 'sea':9B,21B,28C,40C,51C 'squar':87C 'stun':8B,27C 'take':46C,57C 'ticket':100C 'today':75C 'unforgett':4B,23C 'uniqu':60C 'view':10B,29C,58C", "search_vector_sv": "'-22.00':68C '/person':71C '18.00':67C '2023':65C '24':70C '29':63C '5.5':62C '70':43C 'avgång':55C 'bileristeily':1A 'biljet':69C 'dj':37C 'emm':5B,19C 'fest':35C 'fredag':3B,17C,61C 'fyr':32C 'havet':49C 'havslandskap':12B,26C 'helsingfor':14B,28C,53C 'het':40C 'hisn':11B,25C 'hits':41C 'idag':46C 'kl':66C 'kryssning':59C 'lång':34C 'n':38C 'njut':52C 'populär':7B,21C 'salutorget':57C 'seglingskryssning':8B,22C 'septemb':64C 'skärgård':15B,29C,54C 'slottskaj':58C 'spel':36C 'talet':44C 'tar':4B,18C 'timm':33C 'välkomm':47C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Emman huippusuositut bileristeilyt vievät sinut perjantaisin sykähdyttäviin merimaisemiin Helsingin saaristoon. Nelituntisissa bileissä DJ soittaa menevimmät hitit 70-luvulta tähän päivään. Tervetuloa merelle viihtymään!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt perjantaisin 5.5. - 29.9.2023 kl. 18:00-22:00<br><br>Liput: 24€/hlö</p>", "sv": "<p>På fredagar tar Emmas mycket populära seglingskryssningar dig till hisnande havslandskap i Helsingfors skärgård. Under den fyra timmar långa festen spelar DJ:n de hetaste hitsen från 70-talet till idag. Välkommen till havet för att njuta!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på fredagar 5.5. - 29 september 2023 kl. 18.00-22.00<br><br>Biljetter 24 €/person</p>", "en": "<p>An unforgettable party experience with stunning sea views. Get on board and enjoy a party at the Helsinki sea! The legendary party cruises will take you out to the sea to enjoy the breath-taking views and unique atmosphere. M/S Emma departures are full of party beats from the 70's until today played by our DJ's.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises every Friday 5.5. - 29.9.2023 at: 18:00-22:00<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "Bileristeily", "sv": "Bileristeily", "en": "Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/festkryssning/", "en": "https://www.sunlines.fi/en/party-cruises/emmas-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Emman huippusuositut bileristeilyt vievät sinut perjantaisin sykähdyttäviin merimaisemiin Helsingin saaristoon. ", "sv": "På fredagar tar Emmas mycket populära seglingskryssningar dig till hisnande havslandskap i Helsingfors skärgård.", "en": "An unforgettable party experience with stunning sea views. Get on board and enjoy a party at the Helsinki sea!" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2m5i/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agej6e2iki", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32362/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1917/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2m5i/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/6108056809284194/6108056832617525/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/sunlinesristeilyt/", "language": "fi" } ], "offers": [ { "is_free": false, "info_url": { "fi": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "sv": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes", "en": "https://fareharbor.com/embeds/book/sunlines/?button-tags=visitfinland&full-items=yes" }, "price": { "fi": "24€", "sv": "24€", "en": "24€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 92963, "license": "cc_by", "created_time": "2023-06-09T07:32:25.478210Z", "last_modified_time": "2023-06-09T07:33:38.891073Z", "name": "HitMix2 (1).jpgBileristeily", "url": "http://api.hel.fi/linkedevents/media/images/HitMix2_1.jpg", "cropping": "380,0,1900,1520", "photographer_name": "© SunLines", "alt_text": "Ihmisiä laivalla. Diskopallot katossa.", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/92963/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-06-09T07:33:41.085909Z", "last_modified_time": "2023-06-09T07:41:45.802198Z", "date_published": null, "start_time": "2023-09-29T15:00:00Z", "end_time": "2023-09-29T19:00:00Z", "custom_data": null, "audience_min_age": 22, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-22':47C '/hl':51C '00':46C,48C '18':45C '24':50C '29.9.2023':43C '5.5':42C '70':28C 'bile':23C 'bileristeily':1A,4B,14C 'dj':24C 'em':2B,12C 'helsing':10B,20C,35C 'hiti':27C 'huippusuositu':3B,13C 'kauppator':38C 'kl':44C 'linnanlaitur':39C 'lipu':49C 'luvu':29C 'lähtö':37C 'menevim':26C 'mere':33C 'merimaisem':9B,19C 'nelituntis':22C 'perjantais':7B,17C,41C 'päivä':31C 'risteily':40C 'saaristo':11B,21C,36C 'soit':25C 'sykähdyttäv':8B,18C 'tervetulo':32C 'vievä':5B,15C 'viihtym':34C 'ö':52C", "search_vector_en": "'-22':98C '/person':102C '00':97C,99C '18':96C '24':101C '29.9.2023':94C '5.5':93C '70':72C 'archipelago':82C 'atmospher':61C 'beat':69C 'board':13B,32C 'breath':56C 'breath-tak':55C 'cruis':2A,44C,90C 'departur':64C,83C 'dj':79C 'emma':63C 'enjoy':15B,34C,53C 'everi':91C 'experi':6B,25C 'friday':92C 'full':66C 'get':11B,30C 'helsinki':20B,39C,81C 'legendari':42C 'linnanlaituri':88C 'm/s':62C 'market':86C 'parti':1A,5B,17B,24C,36C,43C,68C 'pier':89C 'play':76C 'sea':9B,21B,28C,40C,51C 'squar':87C 'stun':8B,27C 'take':46C,57C 'ticket':100C 'today':75C 'unforgett':4B,23C 'uniqu':60C 'view':10B,29C,58C", "search_vector_sv": "'-22.00':68C '/person':71C '18.00':67C '2023':65C '24':70C '29':63C '5.5':62C '70':43C 'avgång':55C 'bileristeily':1A 'biljet':69C 'dj':37C 'emm':5B,19C 'fest':35C 'fredag':3B,17C,61C 'fyr':32C 'havet':49C 'havslandskap':12B,26C 'helsingfor':14B,28C,53C 'het':40C 'hisn':11B,25C 'hits':41C 'idag':46C 'kl':66C 'kryssning':59C 'lång':34C 'n':38C 'njut':52C 'populär':7B,21C 'salutorget':57C 'seglingskryssning':8B,22C 'septemb':64C 'skärgård':15B,29C,54C 'slottskaj':58C 'spel':36C 'talet':44C 'tar':4B,18C 'timm':33C 'välkomm':47C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Emman huippusuositut bileristeilyt vievät sinut perjantaisin sykähdyttäviin merimaisemiin Helsingin saaristoon. Nelituntisissa bileissä DJ soittaa menevimmät hitit 70-luvulta tähän päivään. Tervetuloa merelle viihtymään!<br><br>Helsingin saaristo, lähtö Kauppatorin Linnanlaiturilta<br>Risteilyt perjantaisin 5.5. - 29.9.2023 kl. 18:00-22:00<br><br>Liput: 24€/hlö</p>", "sv": "<p>På fredagar tar Emmas mycket populära seglingskryssningar dig till hisnande havslandskap i Helsingfors skärgård. Under den fyra timmar långa festen spelar DJ:n de hetaste hitsen från 70-talet till idag. Välkommen till havet för att njuta!<br><br>Helsingfors skärgård, avgång från Salutorget (Slottskajen)<br>Kryssningar på fredagar 5.5. - 29 september 2023 kl. 18.00-22.00<br><br>Biljetter 24 €/person</p>", "en": "<p>An unforgettable party experience with stunning sea views. Get on board and enjoy a party at the Helsinki sea! The legendary party cruises will take you out to the sea to enjoy the breath-taking views and unique atmosphere. M/S Emma departures are full of party beats from the 70's until today played by our DJ's.<br><br>Helsinki archipelago, departure from the Market Square, Linnanlaituri Pier<br>Cruises every Friday 5.5. - 29.9.2023 at: 18:00-22:00<br><br>Tickets 24 €/person</p>" }, "name": { "fi": "Bileristeily", "sv": "Bileristeily", "en": "Party Cruise" }, "info_url": { "fi": "https://www.sunlines.fi/bileristeilyt/bileristeily/", "sv": "https://www.sunlines.fi/sv/festkryssningar/festkryssning/", "en": "https://www.sunlines.fi/en/party-cruises/emmas-party-cruise/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Emman huippusuositut bileristeilyt vievät sinut perjantaisin sykähdyttäviin merimaisemiin Helsingin saaristoon. ", "sv": "På fredagar tar Emmas mycket populära seglingskryssningar dig till hisnande havslandskap i Helsingfors skärgård.", "en": "An unforgettable party experience with stunning sea views. Get on board and enjoy a party at the Helsinki sea!" }, "provider": { "fi": "SunLines", "sv": "SunLines", "en": "SunLines" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agej6e2iki/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 3255, "next": "