Find pet by ID
GET/pet/:petId
Returns a single pet
Request
Path Parameters
ID of pet to return
Responses
- 200
- 400
- 404
successful operation
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
- Array [
- ]
- cat
- dog
- bee
category Category
Category ID
Possible values: non-empty
Category name
sub object
Test Sub Category
Dumb Property
The name given to a pet
Possible values: <= 20
The list of URL to a cute photos featuring pet
tags Tag[]
Possible values: >= 1
Tags attached to the pet
Possible values: non-empty
Tag name
Possible values: [available, pending, sold]
Pet status in the store
Possible values: [cat, dog, bee]
Type of a pet
Possible values: [clueless, lazy, adventurous, aggressive]
Default value: lazy
The measured skill for hunting
Possible values: >= 1
Default value: 1
The size of the pack the dog is from
Average amount of honey produced per day in ounces
{
  "id": 0,
  "category": {
    "id": 0,
    "name": "string",
    "sub": {
      "prop1": "string"
    }
  },
  "name": "Guru",
  "photoUrls": [
    "string"
  ],
  "friend": {},
  "tags": [
    {
      "id": 0,
      "name": "string"
    }
  ],
  "status": "available",
  "petType": {
    "huntingSkill": "adventurous"
  }
}
- Schema
- Example (from schema)
Schema
- Array [
- ]
- cat
- dog
- bee
category Category
Category ID
Possible values: non-empty
Category name
sub object
Test Sub Category
Dumb Property
The name given to a pet
Possible values: <= 20
The list of URL to a cute photos featuring pet
tags Tag[]
Possible values: >= 1
Tags attached to the pet
Possible values: non-empty
Tag name
Possible values: [available, pending, sold]
Pet status in the store
Possible values: [cat, dog, bee]
Type of a pet
Possible values: [clueless, lazy, adventurous, aggressive]
Default value: lazy
The measured skill for hunting
Possible values: >= 1
Default value: 1
The size of the pack the dog is from
Average amount of honey produced per day in ounces
<root>
  <id>0</id>
  <category>
    <id>0</id>
    <name>string</name>
    <sub>
      <prop1>string</prop1>
    </sub>
  </category>
  <name>Guru</name>
  <photoUrls>string</photoUrls>
  <friend/>
  <tags>
    <id>0</id>
    <name>string</name>
  </tags>
  <status>available</status>
  <petType>
    <huntingSkill>adventurous</huntingSkill>
  </petType>
</root>
Invalid ID supplied
Pet not found