Service Locations
Get Service Locations
API Documentation
Payors
- GETGet Payor
- GETGet Payors
- GETGet Provider Payors
- Payor Inference
Providers
- GETGet Provider
- GETGet Providers
- Service Locations
- Places of Service
Patients
- DELDelete Patient
- GETGet Patient
- PATCHUpdate Patient
- POSTCreate Patient
- GETGet Patients
- PUTCreate or Update Patient
- Places of Service
- Plans
- Diagnoses
Benefit Checks
Prior Authorizations
Service Locations
Get Service Locations
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
V1 Service Location
The service location's Silna identifier
National Provider Identifier
Required string length:
10
Example:
"1234567890"
Tax Identification Number
Required string length:
9
Example:
"123456789"
Primary address line
Example:
"54 Broome St"
ID of the associated provider group
City name
Example:
"New York"
Two-letter state code
Example:
"NY"
ZIP code
Example:
"10001"
Location name
The associated provider's Silna identifier
Secondary address line
Example:
"Apt 3"
PTAN number
Primary taxonomy code
An API client's (internal) identifier for a service location
Example:
"my-unique-id-123"
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
}