---
title: "Get Authorized Providers"
method: GET
path: "/authorized-providers"
tags: ["public-api"]
---

# Get Authorized Providers

`GET /authorized-providers`

Retrieve all authorized providers for the organization.

Returns a list of providers that have been authorized or are pending authorization.
Providers with signed_at=null are pending authorization (they haven't signed the form yet).
Providers with signed_at populated have completed the authorization process.

Returns:
    ApiResponse containing a list of AuthorizedProviderResponse objects

## Response `200`

Successfully retrieved authorized providers

- ApiResponseListApiSchemasPlatformPublicApiProviderAuthorizedProviderResponse
  - `status` union
    - 'success'
    - 'error'
  - `error` ApiError
    - `title` string, required
    - `description` string, required
    - `code` string, required
  - `data` ApiSchemasPlatformPublicApiProviderAuthorizedProviderResponse[]
    - `npi` string, required — The NPI of the provider.
    - `first_name` string, required — The first name of the provider.
    - `last_name` string, required — The last name of the provider.
    - `email` string — The email of the provider.
    - `fax_number` string — The provider's fax number.
    - `phone_number` string — The provider's phone number.
    - `address` OptionalAddress — Represents a postal address with optional fields. Used for cases where address information may not be complete at creation time.
      - `street` string — Street address of residence.
      - `street_line_2` string — Additional street address information.
      - `city` string — City of residence.
      - `state_province` string — State or province of residence.
      - `zip_postal_code` string — ZIP or postal code part of the address.
      - `country` string — Country of residence.
    - `signed_at` string, date-time — The date and time when the provider signed the authorization form. If null, the authorization is pending.

---

[API](https://skmtc.net/develophealth/apis/develop-health-public-api.md) · [All operations](https://skmtc.net/develophealth/apis/develop-health-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/develophealth/develop-health-public-api/revisions/1684e1dda9be/schema)
