cURL
curl --request GET \ --url https://petstore3.swagger.io/api/v3/pet/findByStatus \ --header 'Authorization: Bearer <token>'
[ { "name": "doggie", "photoUrls": [ "<string>" ], "id": 10, "category": { "id": 1, "name": "Dogs" }, "tags": [ { "id": 123, "name": "<string>" } ], "status": "available" } ]
Multiple status values can be provided with comma separated strings.
The access token received from the authorization server in the OAuth 2.0 flow.
Status values that need to be considered for filter
available
pending
sold
successful operation
"doggie"
10
Show child attributes
1
"Dogs"
pet status in the store
Was this page helpful?