My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Basic Human Anatomy An Essential Visual Guide for Artists by Roberto Osti on Iphone
  • Read pdf The Crash by Freida McFadden
  • PDF Download Viento y verdad Wind and Truth by Brandon Sanderson Manuel Viciano Delibano David
  • PDF The Psychology of Fashion by Carolyn Mair
  • The Rialto in Richmond The Money War Between the States Other Mysteries of the Civil War by Joseph
  • Pdf ePub Stay By My Side After the Rain Vol. 3 by Shoko Rakuta download ebook
  • epub download Las mujeres que aman demasiado Women Who Love Too Much by Robin Norwood
  • Look Up at The Moon by Karen Phillips Yuliana Simakovska on Ipad
  • PDF Download Why Its OK to Have Bad Spelling and Grammar by Jessica Flanigan
  • Online Read Ebook Assistant to the Villain by Hannah Nicole Maehrer
  • Read Pdf The Magical Revolution of the Reincarnated Princess and the Genius Young Lady Vol. 8 nov
  • pdf download Clown in a Cornfield by Adam Cesare
  • PDF Kindle Racing The Wind by R. W. Thompson
  • PDF EPUB Download The Mighty Quinns Tristan by Kate Hoffmann Full Book
  • Spectacular en español Caraval 4 - Ed. Coleccionista by Stephanie Garber on Iphone New Format
  • Flavorama A Guide to Unlocking the Art and Science of Flavor by Arielle Johnson René Redzepi on Iph
  • Yuletide Hearts and Reunited at Christmas by Ruth Logan Herne Belle Calhoune on Ipad
  • Read pdf Their Amish Agreement by Patricia Davids Patrice Lewis
  • PDF Download Guadalupe and the Flower World Prophecy How God Prepared the Americas for Conversion
  • Download PDF Raven of the Inner Palace Light Novel Vol. 7 by Kouko Shirakawa
  • PDF Kindle Dungeons Dragons Dungeon Club Time to Party by Molly Knox Ostertag Xanthe Bouma
  • The Business Trip A Novel by Jessie Garcia on Iphone New Format
  • PDF Kindle Bailey Scotts Diagnostic Microbiology by Patricia Tille
  • PDF EPUB Download Fagin the Thief A Novel by Allison Epstein Full Book
  • DOWNLOADS My Side of the River A Memoir by Elizabeth Camarillo Gutierrez
  • Read Pdf Just the Good Stuff No-BS Secrets to Success No Matter What Life Throws at You by Jim Van
  • PDF EPUB Download Yarichin Bitch Club Vol. 4 by Full Book
  • Download Pdf The Immortal by S. R. Finch
  • PDF Download Pig the Pug Stories Pig the Pug Pig the Fibber Pig the Winner by Aaron Blabey
  • The Blunder Years A Boyhood Memoir by Phil Caragol on Audiobook New
  • Read online I Am No Guide-Pearl Jam Song by Song by Brian Stipelman Brandon Rector
  • PDF DOWNLOAD An Angel for Dry Creek by Janet Tronstad on Iphone
  • PDF Kindle The Boyhood of Cain by Michael Amherst
  • Pdf ePub CPT Professional 2025 and CPT Quickref App Bundle by American Medical Association download
  • PDF DOWNLOAD Horizon Zero Dawn Vol. 1 The Sunhawk by Anne Toole Ann Maulina on Iphone
  • Designing Audio Circuits and Systems by Bob Cordell on Ipad
  • Download Pdf What Happens After Midnight by K. L. Walther
  • download pdf Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell
  • PDF EPUB Download The Apothecary Diaries Volume 12 Light Novel by Natsu Hyuuga Touko Shino Kevin
  • Online Read Ebook Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • epub download Black Wolf A Novel by Juan Gómez-Jurado
  • PDF Las 48 leyes del poder The 48 Laws of Power by Robert Greene
  • download pdf Sun Bird The Amazing Journey of the Arctic Tern by Lindsay Moore
  • PDF EPUB Download Batman Under the Red Hood The Deluxe Edition by Judd Winick Doug Mahnke Variou
  • DOWNLOADS David Hamilton Twenty Five Years of an Artist by David Hamilton
  • DOWNLOADS Ruthless Vows by Rebecca Ross
  • Read pdf Charlies Good Tonight The Life the Times and the Rolling Stones The Authorized Biograph
  • Online Read Ebook A Theory of Dreaming Deluxe Limited Edition by Ava Reid
  • Read online The End of Woman How Smashing the Patriarchy Has Destroyed Us by Carrie Gress
  • download pdf Wicked Official Coloring Book by Carolina Zambrano
  • 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-07 10:12:55
Previous
Deletes a pet
Built with