# Finds pets by tags Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing. Endpoint: GET /pets/findByTags Version: 1.0.20-SNAPSHOT Security: petstore_auth ## Query parameters: - `tags` (array) Tags to filter by ## Response 200 fields (application/xml): - `id` (integer) Example: 10 - `name` (string, required) Example: "doggie" - `category` (object) - `photoUrls` (array, required) - `tags` (array) - `status` (string) pets status in the store Enum: "available", "pending", "sold" ## Response 400 fields