GET
/
public
/
v1
/
providers
curl --request GET \
  --url https://api.silnahealth.com/public/v1/providers/ \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "records": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "legal_name": "<string>",
      "dba": "<string>",
      "source_id": "my-unique-id-123"
    }
  ],
  "first_id": null,
  "last_id": null
}

This will only return providers that you have access to through your API token. If you are using an API token created through an MSO, we will return all providers belonging to your MSO. If you are using an API token created through a provider, will will return only that provider.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

starting_after
string
ending_before
string
limit
integer
source_id
string

Response

200
application/json
has_more
boolean
required
records
object[]
required

Provider Response Schema

first_id
string | null
last_id
string | null