GET
/
providers
cURL
curl --request GET \
  --url https://enrollments.us.stedi.com/2024-09-01/providers \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": "10334e76-f073-4b5d-8984-81d8e5107857",
      "name": "BDQ Dental Inc",
      "npi": "1999999992",
      "taxIdType": "EIN",
      "taxId": "555123456"
    },
    {
      "id": "10234e76-f067-4b5d-8984-81d8e5107123",
      "name": "Example Medical Associates",
      "npi": "1999999984",
      "taxIdType": "EIN",
      "taxId": "100100111"
    }
  ]
}
This is a beta endpoint. We may make backwards incompatible changes.
This endpoint retrieves all of the provider records in your Stedi account. This endpoint returns only the provider record; it doesn’t include information about associated transaction enrollments. To retrieve enrollment information, use the List Enrollments endpoint.

Authorizations

Authorization
string
header
required

A Stedi API Key for authentication.

Query Parameters

pageSize
number

The maximum number of elements to return in a page. If not specified, the default is 100.

Required range: 1 <= x <= 500
pageToken
string

pageToken is an opaque token returned by a previous call to this operation in the nextPageToken. If not specified, the first page of results is returned.

Required string length: 1 - 1024
filter
string

A filter to apply to the list of providers. Currently, name, npi, and taxId are supported. For example, name=BDQ will return all providers with a name that contains BDQ. The filter is case-insensitive.

Response

200
application/json

ListProviders 200 response

Output containing a paginated list of providers.