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
Payors
Get Payor
GET
/
public
/
v1
/
payors
/
{payor_id}
Copy
curl --request GET \
--url https://api.silnahealth.com/public/v1/payors/{payor_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "AETNA",
"alternate_identifiers": [
{
"identifier": "AETNA_INSC",
"standard": "AVAILITY",
"payor_types": [
"COMMERCIAL",
"MEDICARE"
]
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Payors Response
Payors Response
Copy
curl --request GET \
--url https://api.silnahealth.com/public/v1/payors/{payor_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "AETNA",
"alternate_identifiers": [
{
"identifier": "AETNA_INSC",
"standard": "AVAILITY",
"payor_types": [
"COMMERCIAL",
"MEDICARE"
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.