Lab Testing - Orders
Get Area Info
GET information about an area with respect to lab-testing.
Information returned:
- Whether a given zip code is served by our Phlebotomy network.
GET
/
v3
/
order
/
area
/
info
Authorization
Query
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
}
}
Authorizations
x-vital-api-key
string
headerrequiredAPI key based authentication
Query Parameters
zip_code
string
requiredZip code of the area to check
Response
200 - application/json
phlebotomy
object
requiredzip_code
string
requiredcurl --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
}
}