Lab Tests
Get Available Tests
GET

/v3/lab_tests

x-vital-api-key*
curl --request GET \
  --url https://api.tryvital.io/v3/lab_tests \
  --header 'x-vital-api-key: <x-vital-api-key>'
from vital import Client

client = Client(api_key, "sandbox")

data = client.Order.Result.pdf("<order_id">)

[
  {
    "lab_test": {
      "name": "Lipids Panel",
      "description": "Cholesterol test",
      "sample_type": "dried blood spot",
      "method": "testkit",
      "price": 10,
      "is_active": true,
      "lab": {
        "slug": "USSL",
        "name": "US Specialty Lab",
        "first_line_address": "123 Main St",
        "city": "New York",
        "zipcode": "10001"
      },
      "markers": [
        {
          "name": "Thyroid Stimulating Hormone",
          "slug": "tsh",
          "description": ""
        }
      ]
    }
  }
]

​
Response

ClientFacingLabTest
array