/pets
limit
int
How many items to return at one time (max 100)
A paged array of pets
[
{
"id": 123,
"name": "string",
"tag": "string"
}
]
/pets
id
int
required
name
string
required
tag
string
{
"id": 123,
"name": "string",
"tag": "string"
}
Null response
Empty response
/pets/{petId}
petId
string
required
The id of the pet to retrieve
Expected response to a valid request
{
"id": 123,
"name": "string",
"tag": "string"
}
Was this page helpful?