https://petstore3.swagger.io/api/v3/pet/findByStatusRetrieves a list of pets based on their status, allowing multiple status values to be specified as a comma-separated string.
Status values that need to be considered for filter
Schema
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [],
"tags": [],
"status": "example_status"
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}curl --request GET \
--url 'https://petstore3.swagger.io/api/v3/pet/findByStatus' \
--header 'accept: application/json' \
--header 'content-type: application/json'{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}https://petstore3.swagger.io/api/v3/pet/findByStatusRetrieves a list of pets based on their status, allowing multiple status values to be specified as a comma-separated string.
Status values that need to be considered for filter
Schema
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [],
"tags": [],
"status": "example_status"
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}curl --request GET \
--url 'https://petstore3.swagger.io/api/v3/pet/findByStatus' \
--header 'accept: application/json' \
--header 'content-type: application/json'{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}