Skip to content
Get started

Pets

Finds Pets by status
get/pet/findByStatus
Finds Pets by tags
get/pet/findByTags
Find pet by ID
get/pet/{petId}
Deletes a pet
delete/pet/{petId}
uploads an image
post/pet/{petId}/uploadImage
ModelsExpand Collapse
Category = object { id, name }
id: optional number
name: optional string
Pet = object { name, photoUrls, id, 3 more }
name: string
photoUrls: array of string
id: optional number
category: optional Category { id, name }
id: optional number
name: optional string
status: optional "available" or "pending" or "sold"

pet status in the store

Accepts one of the following:
"available"
"pending"
"sold"
tags: optional array of object { id, name }
id: optional number
name: optional string