v1

latestOpenAPI 3.0.02026-08-062438369.6 KB
Projects

List of Projects and Volunteers for 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/projects/today

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.

datestring

Today's date.

total_projectsinteger

Number of projects happening today.

statusstring

Response status. Always 'OK' on success.

Example response

{
  "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"
            }
          ]
        }
      ]
    }
  ],
  "status": "OK"
}