Find pet by ID
GEThttps://petstore.swagger.io/v2/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
- cat
- dog
- bee
category
Category
The name given to a pet
Possible values: <= 20
The list of URL to a cute photos featuring pet
tags
Tag[]
Possible values: [available
, pending
, sold
]
Pet status in the store
petType
string
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
- cat
- dog
- bee
category
Category
The name given to a pet
Possible values: <= 20
The list of URL to a cute photos featuring pet
tags
Tag[]
Possible values: [available
, pending
, sold
]
Pet status in the store
petType
string
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
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://petstore.swagger.io/v2/pet/:petId' \
-H 'Accept: application/json' \
-H 'api_key: <API_KEY_VALUE>'