Verification
Get Verification
API Reference
Network Status
Verification
Get Verification
GET
/
v2
/
verifications
/
{verificationId}
curl --request GET \
--url https://api.soharhealth.com/v2/verifications/{verificationId} \
--header 'Authorization: Bearer <token>'
{
"verificationId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
"created": "2024-01-01T12:00:00.000Z",
"status": "complete.eligible",
"id": "123456",
"benefits": [
{
"networkStatus": "inn",
"tier": 1,
"copay": 30,
"coinsurance": 0.1,
"deductible": {
"total": 1000,
"remaining": 847.56,
"coverageLevelCode": "IND"
},
"outOfPocket": {
"total": 10000,
"remaining": 5103.21
}
}
],
"relatedEntities": [
{
"id": "01260",
"name": "Magellan",
"memberId": "00000000",
"entityIdentifierCode": "PRP"
}
],
"patient": {
"firstName": "JOHN",
"lastName": "DOE",
"dateOfBirth": "09/20/2023",
"memberId": "00000000",
"gender": "F",
"subscriberRelationshipCode": "18",
"address": {
"address1": "1 BROADWAY",
"address2": "P.O. BOX 123",
"city": "LOS ANGELES",
"state": "CA",
"zipCode": "90210"
}
},
"subscriber": {
"firstName": "JOHN",
"lastName": "DOE"
},
"plan": {
"name": "OPEN CHOICE",
"insuranceTypeCode": "HM",
"startDate": "09/20/2023",
"endDate": "09/20/2023"
},
"payer": {
"id": "60054",
"name": "Aetna"
},
"group": {
"number": "123456",
"name": "ACME CORPORATION"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
A verification
The response is of type object
.
curl --request GET \
--url https://api.soharhealth.com/v2/verifications/{verificationId} \
--header 'Authorization: Bearer <token>'
{
"verificationId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
"created": "2024-01-01T12:00:00.000Z",
"status": "complete.eligible",
"id": "123456",
"benefits": [
{
"networkStatus": "inn",
"tier": 1,
"copay": 30,
"coinsurance": 0.1,
"deductible": {
"total": 1000,
"remaining": 847.56,
"coverageLevelCode": "IND"
},
"outOfPocket": {
"total": 10000,
"remaining": 5103.21
}
}
],
"relatedEntities": [
{
"id": "01260",
"name": "Magellan",
"memberId": "00000000",
"entityIdentifierCode": "PRP"
}
],
"patient": {
"firstName": "JOHN",
"lastName": "DOE",
"dateOfBirth": "09/20/2023",
"memberId": "00000000",
"gender": "F",
"subscriberRelationshipCode": "18",
"address": {
"address1": "1 BROADWAY",
"address2": "P.O. BOX 123",
"city": "LOS ANGELES",
"state": "CA",
"zipCode": "90210"
}
},
"subscriber": {
"firstName": "JOHN",
"lastName": "DOE"
},
"plan": {
"name": "OPEN CHOICE",
"insuranceTypeCode": "HM",
"startDate": "09/20/2023",
"endDate": "09/20/2023"
},
"payer": {
"id": "60054",
"name": "Aetna"
},
"group": {
"number": "123456",
"name": "ACME CORPORATION"
}
}