Skip to main content
GET
/
patients
/
{id}
cURL
curl --request GET \
  --url https://api.cuddles.care/v1/patients/{id} \
  --header 'Authorization: Bearer <token>'
{
  "firstName": "Kitti",
  "lastName": "Slane",
  "weight": 10,
  "dob": "2021-11-28",
  "ownedDate": "2022-01-12",
  "gender": "Male",
  "species": "Cat",
  "breedNature": "Pure",
  "sireName": "Oreo",
  "damName": "Lucy",
  "otherOrigin": null,
  "color": "Orange,Black",
  "microchip": "#979007FOF",
  "description": "Toyger cats are medium-sized, tiger-spotted, exceptionally rare short-haired cats. Much of the toyger's appeal lies in its wild tiger-like appearance while being a domesticated cat.",
  "breed": "Toyger",
  "origin": "Pet Shop",
  "coatType": "Smooth",
  "coatLength": "Short",
  "petName": "Kitti Slane",
  "images": {
    "primary": {
      "id": "5dfa0577-7c61-4258-aaf7-9359c2151b5d",
      "type": "image"
    },
    "default": "default-cat.svg"
  },
  "geoLocation": {
    "lon": -95.6630612,
    "lat": 29.5766453
  },
  "patientName": "Kitti Slane",
  "location": {
    "streetAddress": "6518 Monrovia Ln",
    "aptSuiteOther": null,
    "city": "Sugar Land",
    "state": "Texas",
    "zip": 77479,
    "country": "USA",
    "neighborhood": null,
    "county": "Fort Bend County"
  },
  "type": "patient",
  "id": "cf7eb4b6-8c9b-4b74-87f2-fb2b938103a9"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

ID of patient to retrieve

Response

Retrieves a single patient

The response is of type object.