Skip to content
Barkend
Search
Ctrl
K
Cancel
Auto
Light
Dark
Get started
Guides
API Reference
X-ray
Get started
HTTP
HTTP
HTTP
TypeScript
TypeScript
Go
Go
Guides
API Reference
X-ray
Overview
Pets
List
Create
Retrieve
Delete
Auto
Light
Dark
API Reference
Copy Markdown
Open in
Claude
Open in
ChatGPT
Open in
Cursor
Copy Markdown
View as Markdown
Pets
List all pets.
get
/pet
Add a new pet to the store.
post
/pet
Find pet by ID.
get
/pet/{petId}
Deletes a pet.
delete
/pet/{petId}
Models
Expand
Collapse
Pet
=
object
{
name
,
photoUrls
,
id
,
3 more
}
name
:
string
photoUrls
:
array of
string
id
:
optional
number
format
int64
category
:
optional
object
{
id
,
name
}
id
:
optional
number
format
int64
name
:
optional
string
status
:
optional
"available"
or
"pending"
or
"sold"
pet status in the store
Accepts one of the following:
"available"
"pending"
"sold"
tags
:
optional
array of
object
{
id
,
name
}
id
:
optional
number
format
int64
name
:
optional
string