API ReferenceProvidersRetrieve Provider

Retrieve Provider

GET /api/v1/providers/{slug}/

Retrieve details for a specific provider by its slug, including all format variants.

Authentication

No authentication required. This is a public endpoint.

Path Parameters

ParameterTypeDescription
slugstringThe URL-friendly identifier of the provider (e.g. adp, gusto, paylocity).

Response

Status: 200 OK

{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "ADP",
  "slug": "adp",
  "description": "ADP payroll provider integration",
  "supported_formats": ["payroll_journal", "tax_report", "benefits_summary"],
  "format_variants": [
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "name": "ADP Payroll Journal v2",
      "format_type": "payroll_journal",
      "version": "2.0"
    }
  ]
}

Response Fields

FieldTypeDescription
idstring (UUID)Unique identifier for the provider.
namestringDisplay name of the provider.
slugstringURL-friendly identifier.
descriptionstringBrief description of the provider.
supported_formatsarray of stringsList of document format types this provider supports.
format_variantsarrayList of format variant objects for this provider.

Format Variant Object

FieldTypeDescription
idstring (UUID)Unique identifier for the format variant.
namestringDisplay name of the format variant.
format_typestringThe type of document format.
versionstringVersion identifier for this format variant.

Errors

StatusDescription
404Provider not found.

Code Examples

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