Sign Up
get

List all pets

limitint

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

Format
int32
Max
100

Responses

Response examples

A paged array of pets

[
  {
    "id": 123,
    "name": "string",
    "tag": "string"
  }
]
post

Create a pet

idint

required

Format
int64
namestring

required

tagstring

Responses

Request examples

{
  "id": 123,
  "name": "string",
  "tag": "string"
}

Response examples

Null response

Empty response

get

Info for a specific pet

petIdstring

required

The id of the pet to retrieve

Responses

Response examples

Expected response to a valid request

{
  "id": 123,
  "name": "string",
  "tag": "string"
}

Was this page helpful?