Skip to main content
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>'
{
  "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"
}

Authorizations

Authorization
string
header
required

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.

date
string

Today's date.

Example:

"2025-11-15"

total_projects
integer

Number of projects happening today.

Example:

2

projects
object[]

List of projects with volunteer rosters for today.

status
string

Response status. Always 'OK' on success.

Example:

"OK"

Last modified on June 5, 2026