Documentation
Explore our guides and examples to integrate Vetigen into your applications.
QUICK LINKS
Try it out
GET /api/v1/patients
REQUEST
curl https://api.vetigen.com/api/v1/patients \
-H "X-API-Key: sk_live_YOUR_KEY" \
-H "Content-Type: application/json"RESPONSE
{
"success": true,
"data": {
"items": [
{
"fp": "patient_01JQMK...",
"name": "Luna",
"species": "cat",
"breed": "British Shorthair",
"sex": "female",
"date_of_birth": "2021-03-15",
"owner_customer_fp": "customer_01JQMK..."
}
],
"total": 1,
"page": 1,
"page_size": 20,
"has_more": false
},
"message": "OK"
}