Finds Pets by tags

Finds Pets by tags

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

Query Parameters
  • tags
    required

    Tags to filter by

Responses
  • 200

    successful operation

  • 400

    Invalid tag value

GET/pet/findByTags
curl https://petstore.swagger.io/v2/pet/findByTags
[
  {
    "id": 1,
    "category": {
      "id": 1,
      "name": "…"
    },
    "name": "doggie",
    "photoUrls": [
      "…"
    ],
    "tags": [
      {
        "id": 1,
        "name": "…"
      }
    ],
    "status": "available"
  }
]