Get public event (anonymous)
curl --request GET \
--url https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}import requests
url = "https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}', 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://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}",
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://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}"
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://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}")
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{
"id": 42,
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"name": "Boston Chapter",
"location": "Boston Common, Boston, MA",
"description": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"meetExists": true,
"type": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"tags": "string",
"eventMedia": [
{
"id": 42,
"media": {
"id": 42,
"entityId": 42,
"contentUrl": "https://civic-collective.example.com",
"type": "MEMBER",
"mimeType": "application/pdf"
}
}
],
"speakers": [
{
"id": 42,
"user": {
"id": 42,
"firstName": "James",
"lastName": "Patterson",
"fullName": "James Patterson",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"professionHeadline": "Lead organizer at Boston Chapter",
"bio": "Volunteer organizer in the Boston chapter since 2022."
},
"contact": {
"id": 42,
"name": "Boston Chapter",
"organisation": "Civic Collective",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"bio": "Volunteer organizer in the Boston chapter since 2022.",
"fullName": "James Patterson"
},
"speakerName": "Boston Chapter",
"speakerBio": "Volunteer organizer in the Boston chapter since 2022.",
"speakerLogo": "https://cdn.orgo.space/tenants/acme/logo.png",
"speakerHeadline": "Lead organizer at Boston Chapter"
}
],
"parentEvent": "/api/v1/events/1",
"subEvents": [
"/api/v1/events/1"
],
"logoFromAlbum": "https://cdn.orgo.space/tenants/acme/logo.png",
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"product": {
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productPrices": [
{
"id": 42,
"currency": "USD",
"price": 50,
"name": "Boston Chapter",
"isArchived": false,
"isSubscription": true,
"isRestricted": "string",
"fullDescription": "Quarterly chapter meeting open to all members.",
"displayNameOnPaymentPage": true,
"validFrom": "2026-01-15T10:30:00+00:00",
"validTo": "2026-01-15T10:30:00+00:00",
"maxSeats": 42,
"sortOrder": 42,
"groupName": "Boston Chapter",
"addons": [
"/api/v1/product_price_addons/1"
],
"availableSeats": 42,
"activeAddons": "/api/v1/collections/1"
}
],
"isArchived": false,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"isFee": true,
"isDonation": true,
"settings": [
"string"
],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"event": "/api/v1/events/1",
"productOptions": [
"/api/v1/product_options/1"
],
"type": "MEMBER",
"productPriceVariations": [
"/api/v1/product_price_variations/1"
],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
},
"settings": [
"string"
],
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"isPast": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"id": 42,
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string"
}Event
Get public event (anonymous)
Returns event details for the public registration page, including ticket prices, add-ons, and registration form configuration with resolved custom fields. Response is cached in Redis. Only accessible for events that are public or have ticketing enabled. No authentication required.
GET
/
api
/
v1
/
get_public_event_anonymous
/
{uuid}
Get public event (anonymous)
curl --request GET \
--url https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}import requests
url = "https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}', 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://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}",
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://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}"
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://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/get_public_event_anonymous/{uuid}")
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{
"id": 42,
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"name": "Boston Chapter",
"location": "Boston Common, Boston, MA",
"description": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"meetExists": true,
"type": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"tags": "string",
"eventMedia": [
{
"id": 42,
"media": {
"id": 42,
"entityId": 42,
"contentUrl": "https://civic-collective.example.com",
"type": "MEMBER",
"mimeType": "application/pdf"
}
}
],
"speakers": [
{
"id": 42,
"user": {
"id": 42,
"firstName": "James",
"lastName": "Patterson",
"fullName": "James Patterson",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"professionHeadline": "Lead organizer at Boston Chapter",
"bio": "Volunteer organizer in the Boston chapter since 2022."
},
"contact": {
"id": 42,
"name": "Boston Chapter",
"organisation": "Civic Collective",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"bio": "Volunteer organizer in the Boston chapter since 2022.",
"fullName": "James Patterson"
},
"speakerName": "Boston Chapter",
"speakerBio": "Volunteer organizer in the Boston chapter since 2022.",
"speakerLogo": "https://cdn.orgo.space/tenants/acme/logo.png",
"speakerHeadline": "Lead organizer at Boston Chapter"
}
],
"parentEvent": "/api/v1/events/1",
"subEvents": [
"/api/v1/events/1"
],
"logoFromAlbum": "https://cdn.orgo.space/tenants/acme/logo.png",
"dateTimeBegin": "2026-01-15T10:30:00+00:00",
"dateTimeEnd": "2026-01-15T10:30:00+00:00",
"product": {
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productPrices": [
{
"id": 42,
"currency": "USD",
"price": 50,
"name": "Boston Chapter",
"isArchived": false,
"isSubscription": true,
"isRestricted": "string",
"fullDescription": "Quarterly chapter meeting open to all members.",
"displayNameOnPaymentPage": true,
"validFrom": "2026-01-15T10:30:00+00:00",
"validTo": "2026-01-15T10:30:00+00:00",
"maxSeats": 42,
"sortOrder": 42,
"groupName": "Boston Chapter",
"addons": [
"/api/v1/product_price_addons/1"
],
"availableSeats": 42,
"activeAddons": "/api/v1/collections/1"
}
],
"isArchived": false,
"description": "Quarterly chapter meeting open to all members.",
"descriptionEn": "Quarterly chapter meeting open to all members.",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"isFee": true,
"isDonation": true,
"settings": [
"string"
],
"descriptionInternal": "Quarterly chapter meeting open to all members.",
"event": "/api/v1/events/1",
"productOptions": [
"/api/v1/product_options/1"
],
"type": "MEMBER",
"productPriceVariations": [
"/api/v1/product_price_variations/1"
],
"metaGraphImage": "https://cdn.orgo.space/events/12/cover.jpg",
"heroVideoUrl": "https://civic-collective.example.com",
"thankYouMessage": "Looking forward to seeing you at the meeting.",
"descriptionDe": "Quarterly chapter meeting open to all members."
},
"settings": [
"string"
],
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"isPast": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"id": 42,
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string"
}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
Maximum string length:
2000⌘I

