My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Wild Edible Plants of Arkansas by on Audiobook New
  • Online Read Ebook Whispers of the Heart by Ruth Scofield
  • PDF Download Lonely Planet Pocket Valencia by Lucy Lovell
  • Sweetness in the Skin A Novel by Ishi Robinson on Audiobook New
  • Read online The Kew Book of Drawing Flora and Fauna 20 stunning step-by-step tutorials by Joy-Louise
  • DOWNLOADS Queen Charlotte Before the Bridgertons came the love story that changed the ton... by Juli
  • Download Pdf You A Novel by Caroline Kepnes
  • Online Read Ebook All in the Family by Heather Graham
  • Read online The Talented Mrs. Mandelbaum The Rise and Fall of an American Organized-Crime Boss by Ma
  • download pdf Wellness A novel by Nathan Hill
  • PDF Kindle The Hidden Dungeon Only I Can Enter Manga Vol. 11 by Meguru Seto Tomoyuki Hino Takehan
  • download pdf The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • Read pdf The Book of Bill by Alex Hirsch
  • epub download Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube
  • PDF Dance of Wings A Dark Paranormal Romance by Taylor Aston White
  • Game of Thrones House of the Dragon Season 2 Inside the Dawn of the Targaryen Civil War by Gina Mc
  • Download PDF The Knight and the Moth by Rachel Gillig
  • Online Read Ebook The Ballad of Songbirds and Snakes A Hunger Games Novel by Suzanne Collins
  • Download PDF American Teenager How Trans Kids Are Surviving Hate and Finding Joy in a Turbulent Era
  • epub download The Language of Remembering by Patrick Holloway
  • PDF DOWNLOAD Unmasking Autism Discovering the New Faces of Neurodiversity by Devon Price on Iphone
  • DOWNLOADS Their Amish Agreement by Patricia Davids Patrice Lewis
  • epub download Learning Kali Linux Security Testing Penetration Testing Ethical Hacking by Ric Mess
  • pdf download Im So Glad We Had This Time Together A Memoir by Maurice Vellekoop
  • The Rialto in Richmond The Money War Between the States Other Mysteries of the Civil War by Joseph
  • Download PDF The Housemaids Secret by Freida McFadden
  • The Art of Joy A Novel by Goliarda Sapienza Anne Milano Appel Angelo Pellegrino on Ipad
  • PDF DOWNLOAD Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley on Iphone
  • Read Pdf Alice in Wonderland Tiny Tarot Deck and Guidebook by Minerva Siegel Lisa Vannini
  • PDF 7th Time Loop The Villainess Enjoys a Carefree Life Married to Her Worst Enemy Manga Vol. 4 by
  • Read Pdf Who Would Win Ultimate Pterosaur Rumble by Jerry Pallotta Rob Bolster
  • DOWNLOADS Billionaires Mediterranean Proposal by Julia James
  • PDF EPUB Download Enough with This Slow Life I Was Reincarnated as a High Elf and Now Im Bored Volum
  • PDF His Wyoming Baby Blessing and Her Last Chance Cowboy by Jill Kemerer Tina Radcliffe
  • Download Pdf The Way of Integrity Finding the Path to Your True Self by Martha Beck
  • PDF Kindle Pickleballers by Ilana Long
  • epub download Down to a Science by Kat Paige
  • epub download The Lean Micro Farm How to Get Small Embrace Local Live Better and Work Less by Ben
  • PDF EPUB Download Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Rich
  • Read Pdf The Heaven Earth Grocery Store 2023 BN Book of the Year by James McBride
  • Download PDF The Last Colony An Old Mans War Novel by John Scalzi
  • PDF Pathfinder RPG Guns Gears Remastered Special Edition P2 by Michael Sayre Mark Seifter Logan
  • Download Pdf Too Close to Home by Lynette Eason
  • Read online The Marriage Wish Gods Gift by Dee Henderson
  • Lightfall Book One of The Everlands by Ed Crocker on Audiobook New
  • PDF EPUB Download Futures Edge by Gareth L. Powell Full Book
  • PDF EPUB Download The Restless Wave A Novel of the United States Navy by James Stavridis USN Full Bo
  • Download PDF Staceys Mistake A Graphic Novel The Baby-Sitters Club 14 by Ann M. Martin Ellen T. Cre
  • Pdf ePub Obey Me The Comic Vol. 1 by Subaru Nitou NTT Solmare download ebook
  • PDF Kindle Shatter Me by Tahereh Mafi
  • 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