Skip to content

Finds Pets by tags
deprecated

Request

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

Security
petstore_auth(Required scopes: write:petsread:pets)
Query
tagsArray of stringsrequired

Tags to filter by

curl -i -X GET \
  'https://innovario.apishowdown.com/_mock/petstore/pet/findByTags?tags=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

Body
Array [
idinteger, (int64)(Id)read-only

Pet ID

Find more info here
categoryobject(Category)

Categories this pet belongs to

namestringrequired

The name given to a pet

Example:"Guru"
photoUrlsstring or integer or null, [ 1 .. 10 ] itemsrequired
Default:[]
One of:

The list of URL to a cute photos featuring pet

[ 1 .. 10 ] items
isString
friendobject(Pet)Recursive
tagsArray of objects, ( 0 .. 100 )(Tag)

Tags attached to the pet

statusstring

Pet status in the store

Default:"pending"
Enum:"available""pending""sold"
petTypestring

Type of a pet

Enum:"cat""dog""bee"
Discriminator
huntingSkillstring or booleanrequired

The measured skill for hunting

Default:"lazy"
Enum:"clueless""lazy""adventurous""aggressive"012
Example:"adventurous"
]
Response
[ { "id": 0, "category": {}, "name": "Guru", "photoUrls": [], "friend": {}, "tags": [], "status": "available", "petType": "cat", "huntingSkill": "adventurous" } ]