GET
/
pet
/
findByStatus
[
  {
    "id": 10,
    "name": "doggie",
    "category": {
      "id": 1,
      "name": "Dogs"
    },
    "photoUrls": [
      "<string>"
    ],
    "tags": [
      {
        "id": 123,
        "name": "<string>"
      }
    ],
    "status": "available"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

status
enum<string>
default:available

Status values that need to be considered for filter

Available options:
available,
pending,
sold

Response

200
application/json
successful operation
name
string
required
Example:

"doggie"

photoUrls
string[]
required
id
integer
Example:

10

category
object
tags
object[]
status
enum<string>

pet status in the store

Available options:
available,
pending,
sold