My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download 2120 by George Wylesol
  • epub download You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by
  • Online Read Ebook 100 Tactical Patterns You Must Know Learn to Recognize Key Chess Moves by Frank Er
  • epub download An Offer from a Gentleman by Julia Quinn
  • PDF EPUB Download David Buschs Sony Alpha a6700 ILCE-6700 Guide to Digital Photography by David D.
  • Download PDF Mastering Palo Alto Networks - Second Edition Secure your infrastructure and apply best
  • DOWNLOADS The Money-Saving Garden Year A Month-by-month Guide to a Great Garden that Costs Less by A
  • PDF EPUB Download The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlin
  • PDF EPUB Download Long Past Dues by James J. Butcher Full Book
  • How to Draw a Secret by Cindy Chang on Iphone New Format
  • pdf download A New Science of Heaven How the new science of plasma physics is shedding light on spir
  • Read Pdf Our Hideous Progeny A Novel by C.E. McGill
  • download pdf The Last Wish Illustrated Edition by
  • Read pdf Weyward A Novel by Emilia Hart
  • pdf download Ruined Sinners to Reclaim Sin and Depravity in Historical Biblical Theological and P
  • Read Pdf A Giant among Giants The Baseball Life of Willie McCovey by Chris Haft
  • PDF Download Microsoft 365 Outlook For Dummies by Faithe Wempen
  • pdf download Bordeaux The Smart Travellers Wine Guide by Georgie Hindle
  • Read pdf Ghosts of Panama A Strongman Out of Control A Murdered Marine and the Special Agents Ca
  • download pdf Great Fundraising Organizations Why and How The Worlds Best Charities Excel at Raising
  • Tearmoon Empire Volume 14 by Nozomu Gilse Gilse Madeleine Gilse on Iphone New Format
  • download pdf Its Now or Nether Minecraft Ironsword Academy 2 by Caleb Zane Huett
  • Download PDF Get In My Swamp An Ogre Love Story by G.M. Fairy
  • PDF DOWNLOAD Truth or Beard Deluxe Edition by Penny Reid on Iphone
  • PDF DOWNLOAD Talk to Me Lessons from a Family Forged by History by Rich Benjamin on Iphone
  • Read pdf Why I Dyed My Hair Purple and Other Unorthodox Stories by Kori Morgan
  • Read online The War Against Tuberculosis Samuel G. Dixon and the Rise of Modern Public Health in Pen
  • Pdf ePub How to Read a Room Navigate Any Situation Lead with Confidence and Create an Impact at W
  • PDF Whotopia The Ultimate Guide to the Whoniverse by Jonathan Morris Simon Guerrier Una McCormack
  • House of Crimson Curses A Steamy Vampire Fantasy Romance by Ruby Roe on Iphone New Format
  • DOWNLOAD PDF EPUB Vinland Saga Deluxe 5 by Makoto Yukimura
  • Read online Like Mother Like Mother A Novel by Susan Rieger
  • DOWNLOADS From These Roots My Fight with Harvard to Reclaim My Legacy by Tamara Lanier
  • Pdf ePub Sally Face Art Lore and More by Steve Gabry download ebook
  • PDF EPUB Download Behind the Screens Illustrated Floor Plans and Scenes from the Best TV Shows of Al
  • Read online A Calamity of Souls by David Baldacci
  • DOWNLOADS Bright Shining As the Sun An Émile Cinq-Mars Novel by John Farrow
  • Download Pdf Star Wars Temptation of the Force The High Republic by Tessa Gratton
  • PDF EPUB Download Bloom by Delilah S. Dawson Full Book
  • DOWNLOADS Graph Algorithms the Fun Way Powerful Algorithms Decoded Not Oversimplified by Jeremy Kub
  • PDF Kindle Give Me Liberty A Revised History of the American Revolution by Gilbert Shelton Ted Ric
  • download pdf The Comeuppance by Branden Jacobs-Jenkins
  • If the Song Doesnt Work Change the Dress The Illustrated Memoirs of Broadway Costume Designer Patri
  • PDF Kindle Aurelia by Stephen R. Lawhead
  • DOWNLOADS Case File Compendium Bing An Ben Novel Vol. 4 by Rou Bao Bu Chi Rou DanKe Boki yubuxiu
  • PDF What Alive Means Psychoanalytic Explorations by Thomas H. Ogden
  • epub download Who Can Afford to Be Critical An Inquiry into What We Cant Do Alone as Designers and
  • Download Pdf These Deadly Prophecies by Andrea Tang
  • Pdf ePub The Vision Board Oracle A 52-Card Deck and Guidebook by Amy Zerner Monte Farber download
  • PDF EPUB Download Are You Prepared for the Storm of Love Making Letters of Love and Lust from the Wh
  • 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