GET
/
v3
/
insurance
/
search
/
payor
curl --request GET \
     --url '{{BASE_URL}}/v3/insurance/search/payor?insurance_name=AETNA' \
     --header 'accept: application/json' \
     --header 'x-vital-api-key: {YOUR_KEY}' 
'
[
  {
    "code": "AARPA",
    "name": "AARP",
    "aliases": [
      "AARP",
      "AARP"
    ],
    "org_address": {
      "first_line": "PO BOX 740819",
      "second_line": null,
      "country": "US",
      "zip": "30374",
      "city": "ATLANTA",
      "state": "GA"
    }
  },
]
curl --request GET \
     --url '{{BASE_URL}}/v3/insurance/search/payor?insurance_name=AETNA' \
     --header 'accept: application/json' \
     --header 'x-vital-api-key: {YOUR_KEY}' 
'
[
  {
    "code": "AARPA",
    "name": "AARP",
    "aliases": [
      "AARP",
      "AARP"
    ],
    "org_address": {
      "first_line": "PO BOX 740819",
      "second_line": null,
      "country": "US",
      "zip": "30374",
      "city": "ATLANTA",
      "state": "GA"
    }
  },
]

Authorizations

x-vital-api-key
string
header
required

Vital Team API Key

Query Parameters

insurance_name
string | null
provider
enum<string> | null
Available options:
change_healthcare,
availity
provider_payor_id
string | null

Response

200
application/json
Successful Response
payor_code
string
required

Payor code returned for the insurance information.

name
string
required

Insurance name returned for the insurance information.

aliases
string[]
required

Insurance name aliases returned for the insurance information.

org_address
object
required

Insurance business address returned for the insurance information.