My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • PDF DOWNLOAD Joan Didion Memoirs Later Writings LOA 386 Political Fictions Fixed Ideas Where
  • PDF EPUB Download The Power of Dua by Aliyah Umm Raiyaan Full Book
  • PDF EPUB Download The Amish Nurses Suitor and The Nannys Amish Family by Carrie Lighte Patricia Joh
  • PDF EPUB Download The Knight and the Moth by Rachel Gillig Full Book
  • The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda on Iphone New Format
  • PDF Download His to Defend A Possessive Hero Mafia Romance by Rhenna Morgan
  • PDF EPUB Download Making Call of Duty Modern Warfare by Andy McVittie Full Book
  • epub download Gold by Raven Kennedy
  • Online Read Ebook Tegan and Sara Junior High by Tegan Quin Sara Quin Tillie Walden
  • Harry Potter and the Sorcerers Stone MinaLima Edition by Minalima Design J. K. Rowling on Audiobook
  • Download PDF My Mechanical Romance by Alexene Farol Follmuth
  • Pdf ePub The Soldiers Surprise Family by Jolene Navarro download ebook
  • Pdf ePub Your Magnificent Mouth A Training Young Hearts rhyming book by Abbey Wedgeworth Emma Rand
  • Download Pdf Killer in Shellview County by R. Barri Flowers
  • PDF Kindle Breakthrough The Quest for Life-Changing Medicines by Dr William Pao
  • pdf download Akane-banashi Vol. 10 by Yuki Suenaga Takamasa Moue
  • DOWNLOAD PDF EPUB A Fortunes Redemption by Stella Bagwell
  • PDF EPUB Download Rani Choudhury Must Die by Adiba Jaigirdar Full Book
  • Download PDF The Villainess Turns the Hourglass Vol. 6 by Antstudio
  • Lessons for Living What Only Adversity Can Teach You by Phil Stutz on Audiobook New
  • PDF EPUB Download Kingmakers Graduation Deluxe Edition by Sophie Lark Full Book
  • Read online My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • DOWNLOAD PDF EPUB When Supernatural Battles Became Commonplace Volume 12 by Kota Nozomi 029 Tets
  • PDF EPUB Download The Mentorship Edge Creating Maximum Impact through Lateral and Hierarchical Mento
  • download pdf High-Powered Hot-Blooded by Susan Mallery
  • Pdf ePub Cider with Rosie by Laurie Lee Simon Winchester download ebook
  • Read online Quiero morir pero quiero comer tteokbokki by Baek Sehee
  • Harlequin Special Edition March 2025 - Box Set 1 of 1 by Christine Rimmer Tara Taylor Quinn Michel
  • PDF DOWNLOAD We Three Queens by Rhys Bowen on Iphone
  • Boulevard 2 Después de él Boulevard 2 After Him by Flor Salvador on Ipad
  • The Roots of Goodness Zen Master Dogens Teaching on the Eight Qualities of a Great Person by Kosho U
  • Stereophonic by David Adjmi Will Butler on Audiobook New
  • PDF Kindle Their Mistletoe Matchmakers by Keli Gwyn
  • Pdf ePub Lorne The Man Who Invented Saturday Night Live by Susan Morrison download ebook
  • Sample APIs
    • Find pet by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  1. Sample APIs

Finds Pets by status

GET
/pet/findByStatus
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/findByStatus?status'
Response Response Example
200 - Success example
{
    "code": 0,
    "data": [
        {
            "name": "Hello Kitty",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Cat"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Cat"
                }
            ],
            "status": "sold"
        },
        {
            "name": "White Dog",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Dog"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Dog"
                }
            ],
            "status": "sold"
        }
    ]
}

Request

Query Params
status
string 
required
Status values that need to be considered for filter

Responses

🟢200OK
application/json
Body
array of:
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
id
integer <int64>
optional
Category ID
>= 1
name
string 
optional
Category Name
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
id
integer <int64>
optional
Tag ID
>= 1
name
string 
optional
Tag Name
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠400Invalid status value
Modified at 2025-06-12 23:12:01
Previous
Deletes a pet
Built with