cURL
curl https://acme.orgo.space/api/v1/events/01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12 \
-H "Api-Token: $ORGO_API_TOKEN"const uuid = "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12";
const res = await fetch(
`https://acme.orgo.space/api/v1/events/${uuid}`,
{ headers: { "Api-Token": process.env.ORGO_API_TOKEN } },
);
const event = await res.json();
$uuid = '01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12';
$response = $client->get("/api/v1/events/{$uuid}", [
'headers' => ['Api-Token' => getenv('ORGO_API_TOKEN')],
]);
import requests
url = "https://app.orgo.space/api/v1/events/{uuid}"
headers = {"Api-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.orgo.space/api/v1/events/{uuid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Api-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.orgo.space/api/v1/events/{uuid}")
.header("Api-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/events/{uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Api-Token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": 12,
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"name": "Annual General Meeting 2026",
"slug": "annual-general-meeting-2026",
"description": "Quarterly chapter meeting open to all members.",
"status": "PUBLISHED",
"dateTimeBegin": "2026-03-15T18:00:00+00:00",
"dateTimeEnd": "2026-03-15T21:00:00+00:00",
"timezone": "America/New_York",
"location": "Boston Public Library, 700 Boylston St, Boston, MA 02116",
"isPublic": true,
"maxCapacity": 200,
"attendeeCount": 87,
"hasEventTicketing": true,
"cover": "https://cdn.orgo.space/events/12/cover.jpg",
"unit": {
"id": 4,
"name": "Boston"
},
"createdBy": {
"id": 42,
"fullName": "James Patterson"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"dateUpdated": "2026-01-15T10:30:00+00:00"
}Event
Get an event
Returns full event details including settings, product/ticketing configuration, and media. Accessible to all authenticated tenant members.
GET
/
api
/
v1
/
events
/
{uuid}
cURL
curl https://acme.orgo.space/api/v1/events/01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12 \
-H "Api-Token: $ORGO_API_TOKEN"const uuid = "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12";
const res = await fetch(
`https://acme.orgo.space/api/v1/events/${uuid}`,
{ headers: { "Api-Token": process.env.ORGO_API_TOKEN } },
);
const event = await res.json();
$uuid = '01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12';
$response = $client->get("/api/v1/events/{$uuid}", [
'headers' => ['Api-Token' => getenv('ORGO_API_TOKEN')],
]);
import requests
url = "https://app.orgo.space/api/v1/events/{uuid}"
headers = {"Api-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.orgo.space/api/v1/events/{uuid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Api-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.orgo.space/api/v1/events/{uuid}")
.header("Api-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/events/{uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Api-Token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": 12,
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"name": "Annual General Meeting 2026",
"slug": "annual-general-meeting-2026",
"description": "Quarterly chapter meeting open to all members.",
"status": "PUBLISHED",
"dateTimeBegin": "2026-03-15T18:00:00+00:00",
"dateTimeEnd": "2026-03-15T21:00:00+00:00",
"timezone": "America/New_York",
"location": "Boston Public Library, 700 Boylston St, Boston, MA 02116",
"isPublic": true,
"maxCapacity": 200,
"attendeeCount": 87,
"hasEventTicketing": true,
"cover": "https://cdn.orgo.space/events/12/cover.jpg",
"unit": {
"id": 4,
"name": "Boston"
},
"createdBy": {
"id": 42,
"fullName": "James Patterson"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"dateUpdated": "2026-01-15T10:30:00+00:00"
}Authorizations
ApiTokenJWT
Server-to-server authentication. Generate a token in the admin UI at
Settings → Developers → API Access. Send the raw token in the
Api-Token header — there is no Bearer prefix.
Tokens can be marked read-only at creation time, in which case the API
rejects any non-GET request with 403 Forbidden.
Path Parameters
Event identifier
Response
Event resource
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Maximum string length:
2000Show child attributes
Show child attributes

