Finds Pets by status

Multiple status values can be provided with comma separated strings

SecurityOAuth2: petstore_auth
Request
query Parameters
status
required
Array of strings [ 1 .. 3 ] items

Status values that need to be considered for filter

Items Enum: "available" "pending" "sold"
get
/pet/findByStatus
Responses

200

successful operation

Response Schema:
Array
id
integer <int64>

Pet ID

object

Categories this pet belongs to

name
required
string

The name given to a pet

photoUrls
required
Array of strings <url> <= 20 items

The list of URL to a cute photos featuring pet

friend
object Recursive
Array of objects (Tag) non-empty

Tags attached to the pet

status
string

Pet status in the store

Enum: "available" "pending" "sold"
petType
string

Type of a pet

huntingSkill
required
string
Default: "lazy"

The measured skill for hunting

Enum: "clueless" "lazy" "adventurous" "aggressive"

400

Invalid status value

Response samples
[ { "id": 0, "name": "Guru", "friend": { }, "status": "available", "petType": "string" } ]