Documentation

Explore our guides and examples to integrate Vetigen into your applications.

Try it out

GET /api/v1/patients

REQUEST

curl https://api.vetigen.com/api/v1/patients \
  -H "Authorization: Bearer sk_live_xxx" \
  -H "Content-Type: application/json"

RESPONSE

{
  "success": true,
  "data": {
    "items": [
      {
        "fp": "patient_01JQMK...",
        "name": "Luna",
        "species": "cat",
        "breed": "British Shorthair",
        "owner": { "fp": "customer_01JQMK...", "name": "Jane Doe" }
      }
    ],
    "total": 1,
    "page": 1,
    "page_size": 20,
    "has_more": false
  }
}