List all pets.
GET/pets
List all pets.
Returns
name: string
photoUrls: array of string
id: optional number
formatint64
List all pets.
curl http://localhost:4000/api/v3/pets \
-H "Authorization: Bearer $BARKEND_BEARER_TOKEN"[
{
"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"
}
]
}
]