API ReferenceProvidersList Providers

List Providers

GET /api/v1/providers/

Returns a paginated list of all payroll providers supported by Parsify. This is useful for discovering which providers are available before uploading documents.

Authentication

No authentication required. This is a public endpoint.

Response

Status: 200 OK

{
  "count": 12,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "ADP",
      "slug": "adp",
      "description": "ADP payroll provider integration",
      "supported_formats": ["payroll_journal", "tax_report", "benefits_summary"]
    }
  ]
}

Response Fields

FieldTypeDescription
countintegerTotal number of providers.
nextstring or nullURL for the next page of results.
previousstring or nullURL for the previous page of results.
resultsarrayList of provider objects.

Provider Object

FieldTypeDescription
idstring (UUID)Unique identifier for the provider.
namestringDisplay name of the provider.
slugstringURL-friendly identifier (e.g. adp, gusto).
descriptionstringBrief description of the provider.
supported_formatsarray of stringsList of document format types this provider supports.

Code Examples

curl https://api.parsifyhq.com/api/v1/providers/