List all pets.
/pet
List all pets.
Returns
name: string
photoUrls: array of string
id: optional number
formatint64
List all pets.
curl /api/v3/pet \
-H "Authorization: Bearer $BARKEND_API_KEY"
[
{
"name": "doggie",
"photoUrls": [
"string"
],
"id": 10,
"category": {
"id": 1,
"name": "Dogs"
},
"status": "available",
"tags": [
{
"id": 0,
"name": "name"
}
]
}
]
Returns Examples
[
{
"name": "doggie",
"photoUrls": [
"string"
],
"id": 10,
"category": {
"id": 1,
"name": "Dogs"
},
"status": "available",
"tags": [
{
"id": 0,
"name": "name"
}
]
}
]