Design / iterate the v0 event page (preview only)
curl --request POST \
--url https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"instructions": "<string>",
"forceRebootstrap": true
}
'import requests
url = "https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate"
payload = {
"instructions": "<string>",
"forceRebootstrap": True
}
headers = {
"cookie": "better-auth.session_token=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({instructions: '<string>', forceRebootstrap: true})
};
fetch('https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate', 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/dashboard/events/{eventId}/site/generate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'instructions' => '<string>',
'forceRebootstrap' => true
]),
CURLOPT_COOKIE => "better-auth.session_token=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate"
payload := strings.NewReader("{\n \"instructions\": \"<string>\",\n \"forceRebootstrap\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "better-auth.session_token=")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate")
.header("cookie", "better-auth.session_token=")
.header("Content-Type", "application/json")
.body("{\n \"instructions\": \"<string>\",\n \"forceRebootstrap\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = 'better-auth.session_token='
request["Content-Type"] = 'application/json'
request.body = "{\n \"instructions\": \"<string>\",\n \"forceRebootstrap\": true\n}"
response = http.request(request)
puts response.read_body{
"eventId": "<string>",
"orgSlug": "<string>",
"eventSlug": "<string>",
"v0ProjectId": "<string>",
"v0ChatId": "<string>",
"v0VersionId": "<string>",
"previewDemoUrl": "<string>",
"previewWebUrl": "<string>",
"previewUpdatedAt": "2023-11-07T05:31:56Z",
"publishedDeploymentUrl": "<string>",
"publishedDeploymentId": "<string>",
"publicPath": "<string>"
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}dashboard
Design / iterate the v0 event page (preview only)
Creates or iterates a v0 project/chat for the event and persists preview URLs. Does not deploy or publish — use POST …/site/publish for the branded public URL.
POST
/
api
/
v1
/
dashboard
/
events
/
{eventId}
/
site
/
generate
Design / iterate the v0 event page (preview only)
curl --request POST \
--url https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"instructions": "<string>",
"forceRebootstrap": true
}
'import requests
url = "https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate"
payload = {
"instructions": "<string>",
"forceRebootstrap": True
}
headers = {
"cookie": "better-auth.session_token=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({instructions: '<string>', forceRebootstrap: true})
};
fetch('https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate', 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/dashboard/events/{eventId}/site/generate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'instructions' => '<string>',
'forceRebootstrap' => true
]),
CURLOPT_COOKIE => "better-auth.session_token=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate"
payload := strings.NewReader("{\n \"instructions\": \"<string>\",\n \"forceRebootstrap\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "better-auth.session_token=")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate")
.header("cookie", "better-auth.session_token=")
.header("Content-Type", "application/json")
.body("{\n \"instructions\": \"<string>\",\n \"forceRebootstrap\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eventlink.co/api/v1/dashboard/events/{eventId}/site/generate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = 'better-auth.session_token='
request["Content-Type"] = 'application/json'
request.body = "{\n \"instructions\": \"<string>\",\n \"forceRebootstrap\": true\n}"
response = http.request(request)
puts response.read_body{
"eventId": "<string>",
"orgSlug": "<string>",
"eventSlug": "<string>",
"v0ProjectId": "<string>",
"v0ChatId": "<string>",
"v0VersionId": "<string>",
"previewDemoUrl": "<string>",
"previewWebUrl": "<string>",
"previewUpdatedAt": "2023-11-07T05:31:56Z",
"publishedDeploymentUrl": "<string>",
"publishedDeploymentId": "<string>",
"publicPath": "<string>"
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}Authorizations
Better Auth session cookie.
Path Parameters
Event id
Minimum string length:
1Example:
"be1bbd83-5d72-4dd1-8948-ee01a42d1939"
Body
application/json
Response
Page designed; preview URLs updated
Minimum string length:
1Minimum string length:
1Minimum string length:
1Available options:
DRAFT, PUBLISHED Minimum string length:
1⌘I