GET
/
v3
/
order
/
area
/
info
curl --request GET \
     --url '{{BASE_URL}}/v3/order/area/info?zip_code=85004' \
     --header 'accept: application/json' \
     --header 'x-vital-api-key: {YOUR_KEY}'
{
  "zip_code": "85004",
  "phlebotomy": {
    "is_served": true,
    "providers": [
        {
          "name": "getlabs",
          "tier": ["appointment-ready"]
        },
        {
          "name": "phlebfinders",
          "tier": ["appointment-request"]
        }
    ]
  },
  "central_labs": {
    "labcorp": {
      "patient_service_centers": {
        "within_radius": 5,
        "radius": "25"
      }
    }
  }
}
curl --request GET \
     --url '{{BASE_URL}}/v3/order/area/info?zip_code=85004' \
     --header 'accept: application/json' \
     --header 'x-vital-api-key: {YOUR_KEY}'
{
  "zip_code": "85004",
  "phlebotomy": {
    "is_served": true,
    "providers": [
        {
          "name": "getlabs",
          "tier": ["appointment-ready"]
        },
        {
          "name": "phlebfinders",
          "tier": ["appointment-request"]
        }
    ]
  },
  "central_labs": {
    "labcorp": {
      "patient_service_centers": {
        "within_radius": 5,
        "radius": "25"
      }
    }
  }
}

Authorizations

x-vital-api-key
string
header
required

Vital Team API Key

Query Parameters

zip_code
string
required

Zip code of the area to check

radius
enum<string>

Radius in which to search in miles

Available options:
10,
20,
25,
50
lab
enum<string> | null

Lab to check for PSCs

Available options:
quest,
labcorp,
bioreference

Response

200
application/json
Successful Response
zip_code
string
required
phlebotomy
object
required
central_labs
object
required