My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online The Great Voyage Disney Moana 2 by RH Disney Disney Storybook Art Team
  • PDF EPUB Download Cocktales 3 tales 3 eras 3 bars by Chantz Perkins Full Book
  • PDF EPUB Download Resident Alien Volume 8 The Book of Life by Peter Hogan Steve Parkhouse Full Bo
  • PDF EPUB Download Schroeder by Neal Cassidy Full Book
  • PDF Download The Underwater Basilica of Nicaea Archaeology in the Birthplace of Christian Theology
  • Online Read Ebook Deluge Gaza and Israel from Crisis to Cataclysm by Jamie Stern-Weiner Avi Shlaim
  • Read Pdf Semantic Error comic Vol. 1 by Angy
  • PDF DOWNLOAD Wintersteel by Will Wight on Iphone
  • PDF EPUB Download Get Better at Anything 12 Maxims for Mastery by Scott H. Young Full Book
  • download pdf DC Cinematic Universe A Celebration of DC at the Movies by Nick Jones Stephen Wiacek
  • Read pdf My Dear Detective Mitsukos Case Files Vol. 2 by Natsumi Ito
  • Pdf ePub Black Psychedelic Revolution From Trauma to Liberation--How to heal from racial generatio
  • Night Sky Almanac 2025 A stargazers guide by Wil Tirion on Iphone New Format
  • Online Read Ebook Brutalist Japan A Photographic Tour of Post-War Japanese Architecture by Paul Tule
  • Portfolio by Mark Schultz on Iphone New Format
  • Read Pdf A New Science of Heaven How the new science of plasma physics is shedding light on spirit
  • Online Read Ebook God of Pain Special Edition Print by Rina Kent
  • epub download Its Now or Nether Minecraft Ironsword Academy 2 by Caleb Zane Huett
  • Read pdf Out of Circulation A Village Library Mystery 11 by Elizabeth Spann Craig
  • Download Pdf Bismillah Lets Eat Fresh and Vibrant Recipes from my Family to Yours by Zehra Allibhai
  • Online Read Ebook Intermezzo A Novel by Sally Rooney
  • PDF Download The Worst Journey in the World Volume 1 Making Our Easting Down The Graphic Novel by
  • epub download I Was Reincarnated as the Villainess in an Otome Game but the Boys Love Me Anyway Vol
  • pdf download The Evolution of Claire Jurassic World by Tess Sharpe Random House
  • PDF Regenerative Hepatology and Liver Transplantation by Paulo Martins MD PhD Pedro Baptista Phar
  • Read Pdf Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis D.C.
  • Read pdf The Betrayal of Thomas True by A. J. West
  • Pdf ePub Blood and Oil Mohammed bin Salmans Ruthless Quest for Global Power by Bradley Hope Justin
  • PDF Kindle The Frontier Lord Begins with Zero Subjects Volume 6 by Fuurou Kinta Hengtee Lim
  • Read Pdf Play Along by Liz Tomforde
  • Humans A Monstrous History by Surekha Davies on Ipad
  • Download Pdf Hitorijime My Hero 15 by Memeco Arii
  • ASAP by Axie Oh on Ipad
  • Download Pdf Filthy Rich Vampires Three Queens by Geneva Lee
  • Online Read Ebook Disney Princess Explore the Castles Activity Book With Over 500 Stickers by IglooB
  • PDF The Dawn of the Cursed Queen by Amber V Nicole
  • epub download James Ensor Wildest Dreams Beyond Impressionism by Herwig Todts
  • Mania A Novel by Lionel Shriver on Ipad
  • PDF Kindle Unicorn Team The Nine Leadership Types You Need to Launch Your Big Ideas with Speed and
  • PDF EPUB Download Hexy Btch Tales from My Life the Afterlife and Beyond by Daisy May Cooper Full B
  • Read pdf Lovemaking How to Talk about Sex with Your Spouse by Renzo Ortega Monica Ortega Emily S
  • Download PDF Cannabis Farming How to Grow Harvest and Process Organic Field-Grown Cannabis by Ada
  • Pdf ePub The Hundredth Voice by Caitlin Like download ebook
  • Download PDF Vagabondo by Paul Freeman
  • Read pdf Punk 57 by Penelope Douglas
  • Download PDF Only Big Bumbum Matters Tomorrow A Novel by Damilare Kuku
  • epub download Heaven A Novel by Mieko Kawakami Sam Bett David Boyd
  • DOWNLOAD PDF EPUB Hope Harmony A Music Romance Anthology by Bliss Brown Carr Diamond Hardt
  • epub download The Bad Boy and the Tomboy by Nicole Nwosu
  • Pdf ePub Riding the Tiger Vladimir Putins Russia and the Uses of War by Leon Aron 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
Previous
Deletes a pet
Built with