Skip to content
Blume is now publicly available.
Blume
Esc
navigateopen⌘Jpreview

Finds Pets by status.

Multiple status values can be provided with comma separated strings.

GET/pet/findByStatus
Query parameters
statusstringrequired
Status values that need to be considered for filter
default: "available"
Allowed:availablependingsold
Responses
200successful operation
Array of Pet
idinteger<int64>
namestringrequired
categoryCategory
Show properties
idinteger<int64>
namestring
photoUrlsstring[]required
tagsTag[]
Show properties
Array of Tag
idinteger<int64>
namestring
statusstring
pet status in the store
Allowed:availablependingsold
400Invalid status value
defaultUnexpected error
Request
curl -X GET "/api/v3/pet/findByStatus?status=available"
Response
[
  {
    "id": 10,
    "name": "doggie",
    "category": {
      "id": 1,
      "name": "Dogs"
    },
    "photoUrls": [
      "string"
    ],
    "tags": [
      {
        "id": 0,
        "name": "string"
      }
    ],
    "status": "available"
  }
]