Finds Pets by tagsDeprecated

Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.

SecurityOAuth2: petstore_auth
Request
query Parameters
tags
required
Array of strings

Tags to filter by

get
/pet/findByTags
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 tag value

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