Finds Pets by status
/pet/findByStatus
Multiple status values can be provided with comma separated strings
Query Parameters
Returns
name: string
photoUrls: array of string
id: optional number
Finds Pets by status
curl https://petstore3.swagger.io/api/v3/pet/findByStatus \
-H "api_key: $PETSTORE_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"
}
]
}
]