My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Frank Thornes Complete Iron Devil by Frank Thorne
  • download pdf Designing Terry Pratchetts Discworld by Paul Kidby
  • Download PDF Nocturnes for the King of Naples by Edmund White Garth Greenwell
  • CompTIA Security Practice Tests Exam SY0-701 by David Seidl on Ipad
  • DOWNLOAD PDF EPUB Three Kinds of Lucky by Kim Harrison
  • Orlam by Pj Harvey on Audiobook New
  • PDF Dandadan Vol. 11 by Yukinobu Tatsu
  • download pdf JoJo A-GoGo by Hirohiko Araki
  • The Marvel Art of David Nakayama by David Nakayama on Iphone New Format
  • Star Wars Visions Ronin A Visions Novel by Emma Mieko Candon on Ipad
  • epub download Feeding Ghosts A Graphic Memoir by Tessa Hulls
  • DOWNLOAD PDF EPUB Ruthless Creatures A Queens and Monsters Novel by J.T. Geissinger
  • DOWNLOAD PDF EPUB In Our Time by Tom Wolfe
  • PDF DOWNLOAD Cat of Many Tails by Ellery Queen Richard Dannay on Iphone
  • PDF DOWNLOAD Tom Clancy Zero Hour by Don Bentley on Iphone
  • DOWNLOAD PDF EPUB Succession Season One The Complete Scripts by Jesse Armstrong
  • download pdf The Dog Who Followed the Moon by James Norbury
  • download pdf Sorry I Didnt Mean to Make it Weird by Avalon Dragoon
  • Pdf ePub Aurelia by Stephen R. Lawhead download ebook
  • Read pdf The Complete Harrow County by Cullen Bunn Tyler Crook
  • Download PDF Dengue Boy A Novel by Michel Nieva Rahul Bery
  • PDF EPUB Download Nelson Textbook of Pediatrics 2-Volume Set by Robert M. Kliegman MD Joseph W.
  • Read pdf by Kiril Hristov
  • Sissy School Training for Feminine Submission by Violet Lace on Ipad
  • epub download Big Nate In the Zone by Lincoln Peirce
  • Raising Mentally Strong Kids How to Combine the Power of Neuroscience with Love and Logic to Grow Co
  • Its a Love Skate Relationship by Carli J. Corson on Iphone New Format
  • Download Pdf The Love Lyric by Kristina Forest
  • pdf download Throbbing Gristle An Endless Discontent by Ian Trowell
  • A Witchs Year Journey Through The Changing Seasons In A Constant Process Of Unfolding And Becoming.
  • DOWNLOADS The Wrong Wolf by Chris Craighead Matthew Klein
  • DOWNLOADS Blood of My Monster Special Edition Print by Rina Kent
  • download pdf Post-Europe by Yuk Hui
  • epub download The Good Retirement Guide 2025 Everything You Need to Know about Health Property Inv
  • PDF EPUB Download What If Jesus Was Serious about Justice A Visual Guide to the Good News of Gods
  • pdf download Tarot for Love Relationships How to read the cards to nurture your heart soul by Jane
  • Online Read Ebook The Rainfall Market by You Yeong-Gwang Slin Jung
  • pdf download One-Punch Man Vol. 29 by ONE Yusuke Murata
  • More Than Words How to Think About Writing in the Age of AI by John Warner on Audiobook New
  • DOWNLOAD PDF EPUB Joan Didion Memoirs Later Writings LOA 386 Political Fictions Fixed Ideas W
  • PDF Download Can Anyone Tell Me Essential Questions about Grief and Loss by Meghan Riordan Jarvis
  • PDF Download Taming 7 by Chloe Walsh
  • Read online Killing Lily by Jillian Gardner
  • PDF Download Mr. X A Novel by Peter Straub
  • PDF DOWNLOAD The Likeness of Things Unlike A Poetics of Incommensurability by Sharon Cameron on Ip
  • Read Pdf Government Gangsters The Deep State the Truth and the Battle for Our Democracy by Kash
  • Only Big Bumbum Matters Tomorrow A Novel by Damilare Kuku on Ipad
  • Sleep Like a Polar Bear by Kyle Richard Olson on Ipad
  • Download PDF Petite Patisserie by Christophe Felder Camille Lesecq
  • pdf download The Queens of Crime A Novel by Marie Benedict
  • 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
Previous
Deletes a pet
Built with