GET
/
public
/
v1
/
providers
/
{provider_id}
/
service-locations
curl --request GET \
  --url https://api.silnahealth.com/public/v1/providers/{provider_id}/service-locations \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "records": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "npi": "1234567890",
      "tin": "123456789",
      "address_line_1": "54 Broome St",
      "address_line_2": "Apt 3",
      "provider_group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "city": "New York",
      "state": "NY",
      "zip_code": "10001",
      "name": "<string>",
      "ptan_number": null,
      "primary_taxonomy_code": null,
      "provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "source_id": "my-unique-id-123"
    }
  ],
  "first_id": null,
  "last_id": null
}

Authorizations

Authorization
string
header
required

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

Path Parameters

provider_id
string
required

Query Parameters

starting_after
string
ending_before
string
limit
integer
source_id
string
state
string

Response

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

V1 Service Location

first_id
string | null
last_id
string | null