My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Falling for Gage by Mia Sheridan
  • PDF EPUB Download Un dueto con el duque de las sirenas by Elise Kova Full Book
  • Pdf ePub The Curious Cases of Sherlock Holmes - Volume Three by Stephen Herczeg download ebook
  • PDF Scout Camp Sex Death and Secret Societies Inside the Boy Scouts of America by James Renner
  • Download PDF Exquisite Corpse by Poppy Z. Brite
  • pdf download You Are Fatally Invited A Novel by Ande Pliego
  • Online Read Ebook Green Dot A Novel by Madeleine Gray
  • Making Pottery without a Kiln Happy Little Projects to Make for Your Home by Daniela Schmidt-Kohl on
  • Read Pdf USS Arizona BB-39 From Keel Laying to Pearl Harbor Memorial by David Doyle
  • PDF DOWNLOAD Jujutsu Kaisen The Official Character Guide by Gege Akutami on Iphone
  • download pdf Platform Engineering A Guide for Technical Product and People Leaders by Camille Fou
  • Read Pdf Here and Now by Corinne Michaels
  • Read online Disney Wish A Recipe for Adventure by Wendy Shang
  • PDF Kindle Abiding in Emptiness A Guide for Meditative Practice by Bhikkhu Analayo
  • Lincolns Last Card The Emancipation Proclamation as a Case of Command by Richard J. Ellis on Iphone
  • epub download Queen Charlotte Before the Bridgertons came the love story that changed the ton... by
  • Online Read Ebook Code Name Arc Angel The Demise of The Devil by Bruce Jarvis
  • PDF DOWNLOAD Batman Resurrection by John Jackson Miller on Iphone
  • download pdf Ian Fleming The Complete Man by Nicholas Shakespeare
  • pdf download Ambessa Chosen of the Wolf A League of Legends Arcane Novel by C. L. Clark
  • PDF A Certain Scientific Railgun Vol. 19 by Kazuma Kamachi Motoi Fuyukawa
  • epub download Todd Hido Intimate Distance Revised and Expanded Edition Over Thirty Years of Photogra
  • PDF Amish Reckoning by Jocelyn McClay
  • Batman Knightfall Omnibus Vol. 2 Knightquest 2025 Edition by Chuck Dixon Michael T. Gilbert Tom Gr
  • DOWNLOADS Your Lie in April Omnibus 2 Vol. 4-6 by Naoshi Arakawa
  • Cozy Cuties Coloring Book for Adults and Kids by Coco Wyo on Audiobook New
  • PDF The Count of Monte Cristo by Alexandre Dumas
  • The Nine OClock Whistle Stories of the Freedom Struggle for Civil Rights in Enfield North Carolina
  • PDF Download Grandmaster of Demonic Cultivation Mo Dao Zu Shi Manhua Vol. 4 by Mo Xiang Tong Xiu
  • Read pdf The Mosaic Effect How the Chinese Communist Party Started a Hybrid WAR in Americas Backya
  • Pdf ePub Choujin X Vol. 8 by Sui Ishida download ebook
  • DOWNLOAD PDF EPUB Daily Lessons to be studied during the month of Ramadan by Abd-al-aziz Ibn Abdul
  • Modern Libertarianism A Brief History of Classical Liberalism in the United States by Brian Doherty
  • PDF Kindle The Other Valley A Novel by Scott Alexander Howard
  • Read pdf Failure Frame I Became the Strongest and Annihilated Everything With Low-Level Spells Lig
  • PDF EPUB Download A Fright to Remember Monster High School Spirits 1 by Mattel Adrianna Cuevas Full
  • Online Read Ebook Which Way Around the Galaxy by Cressida Cowell
  • Read Pdf Disrupting the Game From the Bronx to the Top of Nintendo by Reggie Fils-Aimé
  • pdf download Marvel Encyclopedia New Edition by Alan Cowsill Melanie Scott James Hill
  • Read Pdf The X-Files Perihelion by Claudia Gray
  • DOWNLOADS Exam Essentials SBAs for Pre-Hospital Emergency Medicine by Victoria Lee Stephanie Cowan
  • Read Pdf The Laws of Connection The Scientific Secrets of Building a Strong Social Network by Davi
  • PDF DOWNLOAD UNRAVELED A love letter to those finding their way by Deanna Lorea Anna Bennett on I
  • Missing Baby Doe by B. J. Daniels on Iphone New Format
  • PDF Download Vida y muerte del Cartel de Medellín Life and Death of the Medellin Cartel by CARLO
  • Read online The Rainbow Diet A Guidebook to the Science and Art of Colorful Foods for Health and Wel
  • PDF EPUB Download Learning from the Mess Method ological Praxis in Rhetoric and Writing Studies by
  • PDF Kindle Own Your Past Change Your Future A Not-So-Complicated Approach to Relationships Mental
  • The Winter Soldier Cold Front by Mackenzi Lee on Ipad
  • PDF EPUB Download The National Parks Travelers Companion A Journal Featuring Bucket Lists Writing P
  • 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-13 00:38:50
Previous
Deletes a pet
Built with