List all pets

GET /pets

Query parameters

  • limit integer(int32)

    How many items to return at one time (max 100)

Responses

  • 200

    A paged array of pets

    Hide response attributes Show response attributes array[object]
GET /pets
curl \
 -X GET http://api.example.com/pets
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "tag": "string"
  }
]