POST
/
v3
/
insurance
/
search
/
payor
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"
        }
    }
]

Authorizations

x-vital-api-key
string
headerrequired

Vital Team API Key

Body

application/json
insurance_name
string
required
insurance_state
string

Response

200 - application/json
code
string
required

Payor code returned for the insurance information.

name
string
required

Insurance name returned for the insurance information.

org_address
object
required

Insurance business address returned for the insurance information.