/licensesList all licensesPaginated list of every license record held by your company, ordered by state code. Filter with the query parameters below.
| Parameter | Type | Description |
|---|---|---|
| state | string | Comma separated two-letter state codes, for example CA,NY,TX. |
| status | string | Comma separated status values, for example active,pending. See the status model on this page. |
| license_type | string | Partial match on the license type, for example Money Transmission. |
| verified | boolean | Restrict to licenses Payna has or has not verified with the regulator. |
| page | integer | Page number, starting at 1. Defaults to 1. |
| limit | integer | Results per page. Defaults to 50, maximum 200. |
Response fields
data · each array item
idstring · RequiredUnique license record ID.
state_codestring · RequiredTwo-letter US state code.
license_typestring · Requiredactivity_typeenum: lending | debt_collection | money_transmission | mortgage | other · Requiredlicense_numberstring · Optionalnmls_idstring · Optionalregulatorstring · Optionalstatusenum: active | deficient | pending | applying | not_licensed · RequiredCore license status (5-value model). For accurate display, prefer status_detail.category and status_detail.code — the top-level status can say "applying" for abandoned applications or "pending" for withdrawal-requested licenses; status_detail resolves those correctly.
sub_statusstring · OptionalDetailed sub-status within the core status category. Known values: expired, suspended, nmls_deficiency, no_license_needed, in_state_office_required, withdrawn, surety_bond_only (bond-only states — compliance is a surety bond on file, no license exists).
raw_statusstring · OptionalVerbatim status string from the regulator.
issued_datestring · Optionalrenewal_datestring · OptionalDeadline to file the renewal — the single "act-by" date for the license. NMLS licenses run on a renewal cycle (not a hard expiry); state-portal licenses may use the same field.
days_until_renewalinteger · OptionalDays until the renewal date from today. Negative means the renewal date has passed without a recorded renewal.
verifiedboolean · RequiredWhether Payna has verified this license record with the regulator.
verified_atstring · Optionaljurisdiction_levelstring · Optionalfiling_methodstring · Optionalupdated_atstring · RequiredLast time this record was updated in Payna.
status_detailobject · RequiredDerived, machine-stable descriptor of the license status. Render per-state nuance off `code`/`category` instead of parsing `raw_status`. Always present and well-formed.
status_detail.codestring (enum) · RequiredStable machine slug — safe to branch on.
status_detail.labelstring · RequiredHuman-readable label.
status_detail.categoryenum: active | in_progress | deficient | exited | not_pursued | needs_review · RequiredColor bucket: active→green, in_progress→blue/amber, deficient→red, exited/not_pursued→gray, needs_review→amber.
status_detail.intentionalboolean · RequiredTrue when the unlicensed posture is deliberate (voluntary withdrawal / no-license-needed / in-state-office / surety-bond-only) — i.e. not a problem.
status_detail.is_nmlsboolean · RequiredFalse for state-portal (non-NMLS) jurisdictions such as TX/DE debt collection.
status_detail.portalobject · RequiredState portal for non-NMLS jurisdictions; null for NMLS or when there is no online portal.
status_detail.source_textstring · RequiredPassthrough of the underlying raw_status.
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"state_code": "CA",
"license_type": "California - DFPI Debt Collection License",
"activity_type": "debt_collection",
"license_number": "11622-99",
"nmls_id": "2671499",
"regulator": "DFPI",
"status": "active",
"sub_status": null,
"raw_status": "Approved",
"issued_date": "2025-07-17",
"renewal_date": "2026-12-31",
"days_until_renewal": 168,
"verified": false,
"verified_at": null,
"jurisdiction_level": null,
"filing_method": null,
"updated_at": "2026-07-16T18:36:49Z",
"status_detail": {
"code": "licensed",
"label": "Licensed",
"category": "active",
"intentional": false,
"is_nmls": true,
"portal": null,
"source_text": "Approved"
}
}
],
"meta": {
"total": 37,
"page": 1,
"limit": 50,
"synced_at": "2026-07-16T18:36:49Z"
}
}