Skip to content

List all pets

GET
/pets
curl --request GET \
--url https://example.com/pets

A paged array of pets

Media type application/json
Array<object>
object
id
required
integer format: int64
name
required
string
tag
string
Example generated
[
{
"id": 1,
"name": "example",
"tag": "example"
}
]
Suggest an edit to this page