Public event landing page data
curl --request GET \
--url https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}import requests
url = "https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"logo": "<string>"
},
"brandkit": {
"logos": {
"primary": "<string>",
"negative": "<string>"
},
"colors": {
"primary": "<string>",
"accent": "<string>",
"background": "<string>"
},
"font": "<string>"
},
"event": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"shortDescription": "<string>",
"description": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"timezone": "<string>"
},
"agenda": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"startsAt": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"location": "<string>",
"sortOrder": 123
}
],
"speakers": [
{
"id": "<string>",
"name": "<string>",
"title": "<string>",
"company": "<string>",
"bio": "<string>",
"avatar": "<string>",
"socialProfiles": {
"linkedin": "<string>",
"twitter": "<string>",
"bluesky": "<string>"
}
}
],
"sponsors": [
{
"id": "<string>",
"name": "<string>",
"website": "<string>",
"logo": "<string>",
"tierName": "<string>",
"sortOrder": 123
}
]
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}public
Public event landing page data
Returns organization brandkit, event details, agenda, event speakers, and event sponsors for a published PUBLIC or UNLISTED event. DRAFT events are readable when previewToken matches the event preview secret (v0 sandbox). Speakers and sponsors are event-scoped attachments.
GET
/
api
/
v1
/
public
/
orgs
/
{orgSlug}
/
events
/
{eventSlug}
Public event landing page data
curl --request GET \
--url https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}import requests
url = "https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eventlink.co/api/v1/public/orgs/{orgSlug}/events/{eventSlug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"logo": "<string>"
},
"brandkit": {
"logos": {
"primary": "<string>",
"negative": "<string>"
},
"colors": {
"primary": "<string>",
"accent": "<string>",
"background": "<string>"
},
"font": "<string>"
},
"event": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"shortDescription": "<string>",
"description": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"timezone": "<string>"
},
"agenda": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"startsAt": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"location": "<string>",
"sortOrder": 123
}
],
"speakers": [
{
"id": "<string>",
"name": "<string>",
"title": "<string>",
"company": "<string>",
"bio": "<string>",
"avatar": "<string>",
"socialProfiles": {
"linkedin": "<string>",
"twitter": "<string>",
"bluesky": "<string>"
}
}
],
"sponsors": [
{
"id": "<string>",
"name": "<string>",
"website": "<string>",
"logo": "<string>",
"tierName": "<string>",
"sortOrder": 123
}
]
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}Path Parameters
Organization slug
Minimum string length:
1Example:
"acme"
Event slug
Minimum string length:
1Example:
"summit-2026"
Query Parameters
Pass bypass to skip edge caching for live preview refreshes
Example:
"bypass"
DRAFT event preview secret (from event v0_preview_token). Allows sandbox pages to load unpublished event data.
Minimum string length:
1Response
Public event page payload
⌘I