Lab Testing - Health Insurance
Search Insurance Payor Information
POST
/v3/insurance/search/payor
x-vital-api-key*
curl --request POST \
--url '{{BASE_URL}}/v3/insurance/search/payor' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}' \
--data '
{
"insurance_name": "BLUE SHIELD PROMISE",
"insurance_state": "CA",
}
'
[
{
"code": "FCREF",
"name": "BLUE SHIELD PROMISE",
"orgAddress": {
"first_line": "601 POTRERO GRANDE DR",
"city": "MONTEREY PARK",
"state": "CA",
"zip": "91755",
"country": "USA"
}
}
]
Body
application/json
insurance_namerequired
string
insurance_state
string
Response
200 - application/json
coderequired
string
Payor code returned for the insurance information required by Labcorp.
namerequired
string
Insurance name returned for the insurance information required by Labcorp.
org_addressrequired
object
Insurance business address returned for the insurance information required by Labcorp.
curl --request POST \
--url '{{BASE_URL}}/v3/insurance/search/payor' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}' \
--data '
{
"insurance_name": "BLUE SHIELD PROMISE",
"insurance_state": "CA",
}
'
[
{
"code": "FCREF",
"name": "BLUE SHIELD PROMISE",
"orgAddress": {
"first_line": "601 POTRERO GRANDE DR",
"city": "MONTEREY PARK",
"state": "CA",
"zip": "91755",
"country": "USA"
}
}
]