List all pets
GET/pets
Returns a list of all pets.
Request
Query Parameters
limit int32
Maximum number of results to return
Responses
- 200
An array of pets
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id int64required
name stringrequired
tag string
[
{
"id": 0,
"name": "string",
"tag": "string"
}
]
Loading...