My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Bad Guys in the Serpent and the Beast The Bad Guys 19 by Aaron Blabey on Audiobook New
  • Read online Ambition A Novel by Natalie Keller Reinert
  • Read Pdf Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros
  • download pdf Diagnosing Whiteness Anti-Blackness White Psychopathology Collective Psychosis and
  • DOWNLOAD PDF EPUB Lore Olympus Volume Two by
  • Read Pdf The Secret of Kells The Graphic Novel by Tomm Moore Nora Twomey Samuel Sattin
  • PDF Kindle I Have Some Questions for You by Rebecca Makkai
  • PDF Download Broughtupsy A Novel by Christina Cooke
  • Download PDF Rivers of London Stray Cat Blues by Ben Aaronovitch Andrew Cartmel José María Beroy
  • PDF Download Japanese Joinery by Dorian Bracht
  • download pdf The Perks of Being an S-Class Heroine Vol. 3 by Grrr
  • Troubled A Memoir of Foster Care Family and Social Class by Rob Henderson on Ipad
  • PDF DOWNLOAD The Disputed Austro-Hungarian Border Agendas Actors and Practices in Western Hungar
  • PDF Download Remnants of Ancient Life The New Science of Old Fossils by Dale E. Greenwalt
  • Download Pdf James Dean An American Icon by Thomas Brennan
  • PDF Download Punk 57 by Penelope Douglas
  • PDF DOWNLOAD Blood Dragon Book 3 The Ravens Fate by Micah Johnson on Iphone
  • Read Pdf Skys End by Marc J Gregson
  • Download Pdf Regenerative Hepatology and Liver Transplantation by Paulo Martins MD PhD Pedro Bapti
  • DOWNLOADS Over the Seawall Tsunamis Cyclones Drought and the Delusion of Controlling Nature by St
  • The Words Left Unspoken by Allie Michelle on Ipad
  • PDF High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves
  • pdf download Countering Chinas Great Game A Strategy for American Dominance by Michael Scott Sobolik
  • Doctor Who Evil of the Daleks by Frazer Hines on Iphone New Format
  • Read online Romanticize Your Life 365 Simple Ways to Embrace the Beauty of Every Day by Harper Celeb
  • epub download Agents of the Four Seasons Vol. 4 Dance of Summer Part II by Kana Akatsuki Sergio A
  • DOWNLOAD PDF EPUB The Game Boy Encyclopedia Every Game Released for the Nintendo Game Boy and Game
  • pdf download Grow a New Brain How Spirit and Power Plants Can Protect and Upgrade Your Brain by Albe
  • epub download Cambridge International AS and A Level Chemistry Revision Guide by Judith Potter Pete
  • Read pdf Ballad of Sword and Wine Qiang Jin Jiu Novel Vol. 1 by Tang Jiu Qing St
  • download pdf If Only I Had Told Her by Laura Nowlin
  • Online Read Ebook Neville Goddards Interpretation of Scripture Unlocking The Secrets of The Bible by
  • Online Read Ebook The Muppets Official Crochet Amigurumi 16 Projects to Create Your Favorite Muppets
  • pdf download Quicksilver by Callie Hart
  • PDF EPUB Download Five Banners Inside the Duke Basketball Dynasty by John Feinstein Full Book
  • Pdf ePub Pink Slime A Novel by Fernanda Trías Heather Cleary download ebook
  • DOWNLOAD PDF EPUB Leading Figures in the History of Omega Psi Phi Fraternity Inc. Volume 2 by Jud
  • Credence by Penelope Douglas on Ipad
  • 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