Skip to content
arena-demo-day-demo-docs-demo-site
Search
Ctrl
K
Auto
Light
Dark
Get started
Guides
API Reference
Get started
HTTP
HTTP
HTTP
TypeScript
TypeScript
Guides
API Reference
API Reference
Overview
Pets
Overview
Update
Create
Find By Status
Find By Tags
Retrieve
Update By ID
Delete
Upload Image
Store
Overview
List Inventory
Orders
Overview
Create
Retrieve
Delete
Users
Overview
Create
Create With List
Login
Logout
Retrieve
Update
Delete
Auto
Light
Dark
API Reference
Copy Markdown
Open in
Claude
Open in
ChatGPT
Open in
Cursor
Copy Markdown
View as Markdown
Pets
Update an existing pet
put
/pet
Add a new pet to the store
post
/pet
Finds Pets by status
get
/pet/findByStatus
Finds Pets by tags
get
/pet/findByTags
Find pet by ID
get
/pet/{petId}
Updates a pet in the store with form data
post
/pet/{petId}
Deletes a pet
delete
/pet/{petId}
uploads an image
post
/pet/{petId}/uploadImage
Models
Expand
Collapse
Category
=
object
{
id
,
name
}
id
:
optional
number
name
:
optional
string
Pet
=
object
{
name
,
photoUrls
,
id
,
3 more
}
name
:
string
photoUrls
:
array of
string
id
:
optional
number
category
:
optional
Category
{
id
,
name
}
id
:
optional
number
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
name
:
optional
string