# Finds Pets by status Multiple status values can be provided with comma separated strings Endpoint: GET /pet/findByStatus Version: 1.0.0 Security: petstore_auth ## Query parameters: - `status` (array, required) Status values that need to be considered for filter Enum: "available", "pending", "sold" ## Response 200 fields (application/json): - `id` (integer) Pet ID - `category` (object) Categories this pet belongs to - `category.id` (integer) Category ID - `category.name` (string) Category name - `category.sub` (object) Test Sub Category - `category.sub.prop1` (string) Dumb Property - `name` (string, required) The name given to a pet Example: "Guru" - `photoUrls` (string,integer,null, required) The list of URL to a cute photos featuring pet - `friend` (object) - `tags` (array) Tags attached to the pet - `tags.id` (integer) Tag ID - `tags.name` (string) Tag name - `status` (string) Pet status in the store Enum: "available", "pending", "sold" - `petType` (string) Type of a pet - `huntingSkill` (integer) Enum: 0, 1, 2