Finds Pets by tags.
Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
GET
/api/v3/pet/findByTags Authentication
Requires OAuth2 (scopes write:pets, read:pets).
Query parameters
tags array of string required Tags to filter by
Response 200
successful operation
Response 400
Invalid tag value
Response default
Unexpected error
Request
curl -X GET /api/v3/pet/findByTagsResponse
[ { "id": 10, "name": "doggie", "category": { "id": 1, "name": "Dogs" }, "photoUrls": [ "string" ], "tags": [ { "id": 0, "name": "string" } ], "status": "available" }]