Get events report
curl --request GET \
--url https://app.orgo.space/api/v1/events-report \
--header 'Api-Token: <api-key>'import requests
url = "https://app.orgo.space/api/v1/events-report"
headers = {"Api-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Token': '<api-key>'}};
fetch('https://app.orgo.space/api/v1/events-report', 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/events-report",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Api-Token: <api-key>"
],
]);
$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/events-report"
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-report")
.header("Api-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/events-report")
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": 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,
"owner": {
"id": 42,
"firstName": "James",
"lastName": "Patterson",
"fullName": "James Patterson",
"timezone": "America/New_York",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"professionHeadline": "Lead organizer at Boston Chapter",
"bio": "Volunteer organizer in the Boston chapter since 2022."
},
"type": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar",
"createIsGrantedRole": "ROLE_USER"
},
"unit": {
"id": 42,
"name": "Boston Chapter"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": true,
"isGeneralMeetingEx": true,
"isGeneralMeetingElection": true,
"isTraining": true,
"eventMedia": [
{
"id": 42,
"media": "/api/v1/medias/1"
}
],
"parentEvent": "/api/v1/events/1",
"position": 42,
"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",
"isAnnualReport": true,
"product": {
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productPrices": [
"/api/v1/product_prices/1"
],
"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",
"displayOnProfile": true,
"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."
},
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"hasVoting": true,
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"isPast": true,
"status": "ACTIVE",
"newsletterEnabled": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"slugGo": "agm26",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"id": 42,
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"isFinal": true
},
"sendAttendanceReminder": true,
"sendOneHourReminder": true,
"invitesSent": true,
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string",
"allowedUserType": {
"id": 42,
"name": "Boston Chapter"
}
}
]Event
Get events report
Returns up to 200 events per page for reporting purposes. Uses the same filters as the standard event collection but with a higher page size suitable for dashboards and analytics.
GET
/
api
/
v1
/
events-report
Get events report
curl --request GET \
--url https://app.orgo.space/api/v1/events-report \
--header 'Api-Token: <api-key>'import requests
url = "https://app.orgo.space/api/v1/events-report"
headers = {"Api-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Token': '<api-key>'}};
fetch('https://app.orgo.space/api/v1/events-report', 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/events-report",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Api-Token: <api-key>"
],
]);
$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/events-report"
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-report")
.header("Api-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.orgo.space/api/v1/events-report")
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": 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,
"owner": {
"id": 42,
"firstName": "James",
"lastName": "Patterson",
"fullName": "James Patterson",
"timezone": "America/New_York",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png",
"professionHeadline": "Lead organizer at Boston Chapter",
"bio": "Volunteer organizer in the Boston chapter since 2022."
},
"type": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"icon": "calendar",
"createIsGrantedRole": "ROLE_USER"
},
"unit": {
"id": 42,
"name": "Boston Chapter"
},
"dateCreated": "2026-01-15T10:30:00+00:00",
"tags": "string",
"goal": "Increase active volunteer participation by 20% this quarter.",
"target": "All active members in the Boston local center.",
"activities": "Welcome remarks, working-group breakouts, and a social hour to close.",
"advertising": "Promoted via newsletter, on the homepage, and through partner channels.",
"budget": "Estimated $1,200 for venue and refreshments.",
"partners": "Boston Public Library, City of Boston Civic Engagement Office.",
"numberOfParticipants": 42,
"isGeneralMeeting": true,
"isGeneralMeetingEx": true,
"isGeneralMeetingElection": true,
"isTraining": true,
"eventMedia": [
{
"id": 42,
"media": "/api/v1/medias/1"
}
],
"parentEvent": "/api/v1/events/1",
"position": 42,
"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",
"isAnnualReport": true,
"product": {
"uuid": "01938d8e-9c4f-7c2a-b8e1-3f7a9b8c4f12",
"id": 42,
"name": "Boston Chapter",
"nameEn": "Boston Chapter",
"productPrices": [
"/api/v1/product_prices/1"
],
"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",
"displayOnProfile": true,
"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."
},
"meet": "https://meet.google.com/abc-defg-hij",
"settings": [
"string"
],
"hasVoting": true,
"sdg": [
"string"
],
"isPublic": true,
"hasEventTicketing": true,
"timezone": "America/New_York",
"isPast": true,
"status": "ACTIVE",
"newsletterEnabled": true,
"placesApiId": "ChIJOwg_06VPwokRYv534QaPC8g",
"slugGo": "agm26",
"placeLatitude": 42.3601,
"placeLongitude": -71.0589,
"gamificationPoints": 42,
"badge": {
"id": 42,
"name": "Boston Chapter",
"logo": "https://cdn.orgo.space/tenants/acme/logo.png"
},
"customStatus": {
"id": 42,
"name": "Boston Chapter",
"color": "#16A34A",
"isFinal": true
},
"sendAttendanceReminder": true,
"sendOneHourReminder": true,
"invitesSent": true,
"requiresRegistrationForm": true,
"maxCapacity": 42,
"registrationManuallyClosed": true,
"registrationFormText": "string",
"allowedUserType": {
"id": 42,
"name": "Boston Chapter"
}
}
]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.
Query Parameters
The collection page number
The number of items per page
Required range:
0 <= x <= 100Enable or disable pagination
Available options:
asc, desc Available options:
asc, desc Available options:
asc, desc Available options:
asc, desc Available options:
asc, desc Response
200 - application/json
Event collection
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

