My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Favorites A Novel by Layne Fargo download ebook
  • PDF EPUB Download Blackmailed into the Marriage Bed by Melanie Milburne Full Book
  • Download Pdf Pretty Delicious Simple Modern Mediterranean Served with Style A Cookbook by Alia Elk
  • Hauntress by Minetaro Mochizuki on Ipad
  • PDF EPUB Download The Cycle Confronting the Pain of Periods and PMDD by Shalene Gupta Full Book
  • epub download Black or White Vol. 9 by Sachimo
  • Her Amish Chaperone and The Amish Bakers Rival by Leigh Bale Marie E. Bast on Audiobook New
  • pdf download Death Valley Summer by Brandon Wallace
  • Shakespeares First Folio All The Plays A Childrens Edition Special Limited Edition by William Shakes
  • Read pdf The Art of the Line in Drawing A Step-by-Step Guide to Creating Simple Expressive Drawin
  • PDF Kindle The Nanny Share An addictive twisty and gripping psychological thriller by Emily Shiner
  • PDF DOWNLOAD The Staff Engineers Path A Guide for Individual Contributors Navigating Growth and Ch
  • Download PDF Close Your Eyes and Count to 10 A Novel by Lisa Unger
  • Download Pdf Icarus by K. Ancrum
  • Gifted by Suzuki Suzumi Allison Markin Powell on Ipad
  • PDF EPUB Download Pass the Monster Meat Milady 7 by Chika Mizube Kanata Hoshi Peperon Full Book
  • Download PDF Arctic Knits Jumpers Socks Mittens and More by Weichien Chan
  • Download PDF Surrounded by Liars How to Stop Half-Truths Deception and Gaslighting from Ruining Yo
  • Brave Like Godzilla by Charlie Moon on Ipad
  • Pdf ePub Blue Lock Volume 17 by Muneyuki Kaneshiro Yusuke Nomura download ebook
  • Download Pdf Runaway Horses by Carlo Fruttero Franco Lucentini Gregory Dowling
  • DOWNLOADS Stanley Kubricks The Shining by J. W. Rinzler M M Lee Unkrich
  • Read pdf On the Calculation of Volume Book I by Solvej Balle Barbara J. Haveland
  • Online Read Ebook Virtual Barrels Quantitative Trading in the Oil Market by Ilia Bouchouev
  • DOWNLOADS Our South Black Food Through My Lens by Ashleigh Shanti
  • Download Pdf Our New Social Life Science-Backed Strategies for Creating Meaningful Connection by Nat
  • Read online Ballad of Sword and Wine Qiang Jin Jiu Novel Vol. 1 by Tang Jiu Qing St
  • Pdf ePub The Vanishing of Josephine Reynolds A Novel by Jennifer Moorman download ebook
  • Download PDF Alliance Unbound by C. J. Cherryh Jane S. Fancher
  • DOWNLOADS Finding Home - Alternate Cover by Lauren Rowe
  • pdf download Minecraft Mega Bite-Size Builds Over 20 Incredible Mini Projects by Mojang AB
  • Online Read Ebook Tras el hielo by Stephanie Archer María Cárcamo Ramos
  • Read online Yonoi Tsukihikos Happy Hell Vol. 1 by Hina Sakurada
  • epub download Fashion School in a Book Design Journal The Practical Workbook for Collection Developm
  • Online Read Ebook Get Better at Anything 12 Maxims for Mastery by Scott H. Young
  • epub download Simple Pleasures Easy Recipes for Everyday Indulgence by Emma Fontanella
  • 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