My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • As Long as the Lemon Trees Grow by Zoulfa Katouh on Ipad
  • Read Pdf Outer Banks Dead Break by Jay Coles
  • download pdf Creative Cyanotype Techniques and Inspiration by Angela Chalmers
  • Rosewater A Novel by Liv Little on Ipad
  • PDF Kindle Nada de esto es verdad None of This Is True by Lisa Jewell
  • PDF Kindle The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • DOWNLOADS Pokémon Súper Extra Delux Guía esencial definitiva Super Extra Deluxe Essential Handbook
  • PDF Download Killer in Shellview County by R. Barri Flowers
  • PDF Download The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talking Ab
  • Read online Validation How the Skill Set That Revolutionized Psychology Will Transform Your Relation
  • Download PDF The Digger and the Flower Board Book by Joseph Kuefler
  • My Heart Is a Chainsaw by Stephen Graham Jones on Audiobook New
  • Read pdf Danes Mark by Lora Leigh
  • Pdf ePub The Metabolism Makeover Workbook by Megan Hansen RDN download ebook
  • Drawn Together Studio DB Architecture and Interiors by Britt Zunino Damian Zunino Tim McKeough Ji
  • Online Read Ebook The Dreams We Knew A Novel of the Roaring Twenties by Rachel Scott McDaniel
  • The Alchemy of Talent Leading Teams to Peak Performance by Vijay Pendakur on Audiobook New
  • PDF EPUB Download The Alliance Saga - Clouded Moon 1 Shifting Roots by Avalon Roselin Tennelle Flow
  • Download Pdf The Beauty of Horror 7 Backwards Records Coloring Book by Alan Robert
  • PDF EPUB Download A Kingdom of Flesh and Fire by Jennifer L. Armentrout Full Book
  • Online Read Ebook Casualties of Truth by Lauren Francis-Sharma
  • The New Recruit Comic Vol. 1 by MOSCARETO Zec on Audiobook New
  • DOWNLOAD PDF EPUB Saving 80 000 Gold in Another World for My Retirement 7 light novel by Funa
  • PDF Kindle Maya Natasha A Novel by Elyse Durham
  • Pdf ePub A Soaring Season The Incredible Inspiring Story of the 2003-04 Saint Josephs Hawks by Aar
  • Pdf ePub Tears in the Danube by Nadine Nader download ebook
  • Online Read Ebook All the Captive Girls by Linda Hurtado Bond
  • Pdf ePub Kelly Slater A Life of Waves by Kelly Slater Todd Glaser Eddie Vedder download ebook
  • Read pdf Notes on Surviving the Fire A Novel by Christine Murphy
  • Murder on the Cornish Coast Completely addictive British cozy crime mystery by Helena Dixon on Ipad
  • Pdf ePub Prince of Montéz Pregnant Mistress by Sabrina Philips download ebook
  • Life Hacks for a Little Alien by Alice Franklin on Ipad
  • epub download Serious Cryptography 2nd Edition A Practical Introduction to Modern Encryption by Jea
  • Hell Mode Vol. 7 The Hardcore Gamer Dominates in Another World with Garbage Balancing by Hamuo Mo
  • PDF DOWNLOAD Holly A Belladonna Novella by Adalyn Grace on Iphone
  • download pdf La grieta del silencio by Javier Castillo
  • 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-15 09:22:46
Previous
Deletes a pet
Built with