My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Aristóteles y Dante se sumergen en las aguas del mundo by
  • Read pdf Yes Mistress Why Men Crave Female Domination by Alicia Zadig
  • Read pdf American Populist Huey Long of Louisiana by Thomas E. Patterson
  • Big Nate This Means War by Lincoln Peirce on Iphone New Format
  • Read pdf The Legendary Lynx by Alex Segura Sandy Jarrell
  • Online Read Ebook xGenius Expected Goals and the Science of Winning Football Matches by James Tippet
  • epub download Pretty Delicious Simple Modern Mediterranean Served with Style A Cookbook by Alia El
  • Download PDF KinnPorsche Novel Vol. 2 by Daemi Avaritia Billy Balibally
  • PDF Kindle Let This Grieving Soul Retire Volume 6 Light Novel by Tsukikage Chyko Grant U
  • download pdf Social Security Medicare Government Pensions Get the Most Out of Your Retirement and
  • Read online Booster Shots The Urgent Lessons of Measles and the Uncertain Future of Childrens Health
  • PDF Kindle Hauntress by Minetaro Mochizuki
  • Read online Death at a Scottish Christmas by Lucy Connelly
  • DOWNLOAD PDF EPUB Lets Buy the Land and Cultivate It in a Different World Manga Vol. 7 by Rokujuuy
  • PDF DOWNLOAD Mavericks Life stories and lessons of historys most extraordinary misfits by Jenny Dr
  • PDF Kindle The Wizard of Oz by L. Frank Baum Lemn Sissay
  • PDF Kindle Cursebound A Novel by Saara El-Arifi
  • Read online The False One By John Fletcher and Philip Massinger by Domenico Lovascio
  • Read Pdf Captain America The Shield of Sam Wilson by Sheree Renée Thomas Jesse J. Holland M. Kyo
  • pdf download Dantes Inferno A Graphic Novel Adaptation by Dante Alighieri Paul Brizzi Gaëtan Brizz
  • Online Read Ebook King Diamond Abigail by Dan Watters Damien Worm Rantz Hoseley King Diamond Z2
  • PDF Kindle Woman of Wolves by Jess McFarlane
  • PDF EPUB Download Modern Poetry Poems by Diane Seuss Full Book
  • PDF EPUB Download I Hate Fairyland Book Three by Skottie Young Brett Bean Full Book
  • Read pdf Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • Read Pdf Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley
  • The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinbach on Iphone
  • download pdf Choujin X Vol. 8 by Sui Ishida
  • PDF Download Firefly Planisphere Latitude 42 Degrees North by Robin Scagell
  • PDF Download Right-Wing Women by Andrea Dworkin Moira Donegan
  • Download Pdf Karl Lagerfeld A Fashion History by MARIE OTTAVI
  • Love of Kill Vol. 14 After the File by Fe Eleanor Summers on Ipad
  • The Quick Guide to Prompt Engineering Generative AI Tips and Tricks for ChatGPT Bard Dall-E and M
  • Pdf ePub Dragon and Chameleon 02 by RYO ISHIYAMA download ebook
  • PDF Download Beta Vulgaris A Novel by Margie Sarsfield
  • DOWNLOAD PDF EPUB On Call A Doctors Journey in Public Service by Anthony Fauci M.D.
  • Read pdf Walt Disneys Uncle Scrooge The Diamond Jubilee Collection by Carl Barks
  • Pdf ePub Killing Me Souffl A Bakeshop Mystery by Ellie Alexander download ebook
  • DOWNLOAD PDF EPUB Too Late to Awaken What Lies Ahead When There Is No Future by Slavoj Zizek
  • Online Read Ebook All-American Ads of the 60s by Steven Heller Jim Heimann
  • Read Pdf Into the Dark Forest by Liz Flanagan Joe Todd-Stanton
  • PDF EPUB Download Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen Full Book
  • Read online El Pozo de la Ascensión Nacidos de la Bruma-Mistborn edición ilustrada 2 by Brandon Sa
  • download pdf The Wars of the Roses The Medieval Art of Graham Turner by Graham Turner
  • PDF Download Jonesy Complete Collection by Sam Humphries Caitlin Rose Boyle
  • Read pdf How We Sold Our Future The Failure to Fight Climate Change by Jens Beckert Ray Cunningha
  • Read Pdf Why Nothing Works Who Killed Progress-and How to Bring It Back by Marc J. Dunkelman
  • Online Read Ebook Collision Stories From the Science of CERN by Lucy Caldwell Steven Moffat Luan G
  • Anchored In Faith New Years Resolutions with Biblical Wisdom by Amevi-Sylvana Kpadjouda Kpanougou on
  • The Scarlet Papers by Matthew Richardson on Iphone New Format
  • 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