Skip to main content
GET
https://api.vomo.org/v1
/
certificates
Get All Certifications
curl --request GET \
  --url https://api.vomo.org/v1/certificates \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 101,
      "name": "Safe Food Handling",
      "requirement": "Complete the online food safety module and pass the quiz.",
      "slug": "a1b2c3d4-safe-food-handling",
      "expiration_in_months": 12,
      "creator_id": 7903,
      "organization_id": 50,
      "created_at": "2025-11-01T09:00:00+00:00",
      "updated_at": "2025-11-01T09:00:00+00:00"
    },
    {
      "id": 102,
      "name": "Volunteer Orientation",
      "requirement": "Attend a 1-hour orientation session.",
      "slug": "b2c3d4e5-volunteer-orientation",
      "expiration_in_months": null,
      "creator_id": 7903,
      "organization_id": 50,
      "created_at": "2025-11-02T10:00:00+00:00",
      "updated_at": "2025-11-02T10:00:00+00:00"
    }
  ],
  "links": {
    "first": "https://api.vomo.org/v1/certificates?page=1",
    "last": "https://api.vomo.org/v1/certificates?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "to": 3,
    "path": "https://api.vomo.org/v1/certificates",
    "per_page": 15,
    "total": 3
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

name_like
string

The certification name, or part of a name, to search for.

created_before
string<date-time>

Date the Certification was created on or before.

created_after
string<date-time>

Date the Certification was created on or after

updated_before
string<date-time>

Date the Certification was updated on or before.

updated_after
string<date-time>

Date the Certification was updated on or after

Response

Returns the paginated list of certifications for your organization. The response includes pagination links and meta fields to navigate additional pages.

data
object[]

Pagination navigation links returned on every paginated list response. Each URL points at the specific list endpoint being called.

meta
object

Pagination metadata returned on every paginated list response.

Last modified on June 5, 2026