GET
/
public
/
v1
/
providers
/
Get 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",
      "silna_url": "<string>"
    }
  ],
  "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<uuid>
ending_before
string<uuid>
limit
integer
source_id
string

Response

has_more
boolean
required
records
V1Provider · object[]
required
first_id
string<uuid> | null
last_id
string<uuid> | null