Tests
Get All Available Labs
Orders
At-home Phlebotomy
Patient Service Center (PSC)
Tests
Health Insurance
Tests
Get All Available Labs
GET all the labs.
GET
/
v3
/
lab_tests
/
labs
curl --request GET \
--url '{{BASE_URL}}/v3/lab_tests/labs' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}'
[
{
"id": 1,
"slug": "labcorp",
"name": "LabCorp",
"first_line_address": "123 Main St",
"city": "San Francisco",
"zipcode": "91789",
"collection_methods": ["at_home_phlebotomy", "walk_in_test"],
"sample_types": ["saliva", "serum"]
}
]
curl --request GET \
--url '{{BASE_URL}}/v3/lab_tests/labs' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}'
[
{
"id": 1,
"slug": "labcorp",
"name": "LabCorp",
"first_line_address": "123 Main St",
"city": "San Francisco",
"zipcode": "91789",
"collection_methods": ["at_home_phlebotomy", "walk_in_test"],
"sample_types": ["saliva", "serum"]
}
]
Authorizations
Vital Team API Key
Response
200 - application/json
Successful Response
The response is of type object[]
.
curl --request GET \
--url '{{BASE_URL}}/v3/lab_tests/labs' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}'
[
{
"id": 1,
"slug": "labcorp",
"name": "LabCorp",
"first_line_address": "123 Main St",
"city": "San Francisco",
"zipcode": "91789",
"collection_methods": ["at_home_phlebotomy", "walk_in_test"],
"sample_types": ["saliva", "serum"]
}
]