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
| Field | Type | Description |
|---|---|---|
count | integer | Total number of providers. |
next | string or null | URL for the next page of results. |
previous | string or null | URL for the previous page of results. |
results | array | List of provider objects. |
Provider Object
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique identifier for the provider. |
name | string | Display name of the provider. |
slug | string | URL-friendly identifier (e.g. adp, gusto). |
description | string | Brief description of the provider. |
supported_formats | array of strings | List of document format types this provider supports. |
Code Examples
curl https://api.parsifyhq.com/api/v1/providers/