List of Projects and Volunteers Today
curl --request GET \
--url https://api.vomo.org/v1/projects/today \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vomo.org/v1/projects/today', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vomo.org/v1/projects/today"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://api.vomo.org/v1/projects/today");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vomo.org/v1/projects/today",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.vomo.org/v1/projects/today")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vomo.org/v1/projects/today")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyconst url = 'https://api.vomo.org/v1/projects/today';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"date": "2025-11-15",
"total_projects": 2,
"projects": [
{
"name": "Saturday Pantry Pack",
"volunteer": [
{
"full_name": "Priya Sharma",
"display_name": "Priya Sharma +1",
"guests": [
{
"full_name": "Priya Guest"
}
]
},
{
"full_name": "Aisha Mohamed",
"display_name": "Aisha Mohamed",
"guests": []
}
]
},
{
"name": "Neighborhood Cleanup Drive",
"volunteer": [
{
"full_name": "Marcus Castellano",
"display_name": "Marcus Castellano +2",
"guests": [
{
"full_name": "Elena Castellano"
},
{
"full_name": "Marcus Guest"
}
]
}
]
}
],
"status": "OK"
}{
"error": {
"code": 401,
"message": "No API key provided"
}
}{
"message": "Too Many Attempts."
}{
"message": "Server Error"
}Projects
List of Projects and Volunteers Today
Returns all volunteer projects happening today (based on your organization’s timezone), along with the list of signed-up volunteers for each. Use this endpoint to display a real-time roster of today’s serving events and attendees, for example on a check-in kiosk or daily briefing report.
GET
https://api.vomo.org/v1
/
projects
/
today
List of Projects and Volunteers Today
curl --request GET \
--url https://api.vomo.org/v1/projects/today \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vomo.org/v1/projects/today', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vomo.org/v1/projects/today"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://api.vomo.org/v1/projects/today");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vomo.org/v1/projects/today",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.vomo.org/v1/projects/today")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vomo.org/v1/projects/today")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyconst url = 'https://api.vomo.org/v1/projects/today';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"date": "2025-11-15",
"total_projects": 2,
"projects": [
{
"name": "Saturday Pantry Pack",
"volunteer": [
{
"full_name": "Priya Sharma",
"display_name": "Priya Sharma +1",
"guests": [
{
"full_name": "Priya Guest"
}
]
},
{
"full_name": "Aisha Mohamed",
"display_name": "Aisha Mohamed",
"guests": []
}
]
},
{
"name": "Neighborhood Cleanup Drive",
"volunteer": [
{
"full_name": "Marcus Castellano",
"display_name": "Marcus Castellano +2",
"guests": [
{
"full_name": "Elena Castellano"
},
{
"full_name": "Marcus Guest"
}
]
}
]
}
],
"status": "OK"
}{
"error": {
"code": 401,
"message": "No API key provided"
}
}{
"message": "Too Many Attempts."
}{
"message": "Server Error"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Returns today's date, the total count of projects happening today, and a list of project names with their signed-up volunteers and any guests.
Last modified on June 5, 2026
Was this page helpful?
⌘I