My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Americanized Rebel Without a Green Card by Sara Saedi
  • PDF EPUB Download Fire in His Fingertips A Flirty Fireman Ravishes Me with His Smoldering Gaze Vol.
  • Download PDF A Haunt for Jackals by J. L. Odom
  • DOWNLOAD PDF EPUB The Dragons Bride A Deal With A Demon 1 by Katee Robert
  • Online Read Ebook No Rest for the Wicked by Kresley Cole
  • pdf download Cunning Folk Life in the Era of Practical Magic by Tabitha Stanmore
  • DOWNLOADS Pathfinder RPG Guns Gears Remastered P2 by Michael Sayre Mark Seifter Logan Bonner Jes
  • PDF Download Be More Moo Deng The Unofficial Coloring Book by DK
  • PDF EPUB Download A Promise for His Daughter by Danielle Thorne Full Book
  • Read online Flirting With Disaster A Novel by Naina Kumar
  • Online Read Ebook Cujo by Stephen King
  • DOWNLOADS Bea Mullins Takes a Shot by Emily Deibert
  • download pdf Beautiful Chaos On Motherhood Finding Yourself and Overwhelming Love by Jessica Urlic
  • Bookshops Bonedust Deluxe Edition by Travis Baldree on Ipad
  • Download Pdf Bellas Journey by Victoria A Farias Lucia Benito
  • Read Pdf The Parent Plan Part 3 by Paula Detmer Riggs
  • Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nathan Grayson on
  • PDF DOWNLOAD Lloyd Kaufman Interviews by Mathew Klickstein on Iphone
  • epub download Deify A Mythical Solo Role-Playing Game by Allyson DAntonio Maia Trewartha
  • PDF EPUB Download The Happy Pear 20 Recipes and Learnings From the First 20 Years by David Flynn St
  • Artificial Wisdom Salvation Has A Price by Thomas R. Weaver on Iphone New Format
  • PDF Hollywood Hearts by Toni Logan
  • PDF EPUB Download The Ranchers Secret Son by Betsy St. Amant Full Book
  • epub download The Vision Board Oracle A 52-Card Deck and Guidebook by Amy Zerner Monte Farber
  • Behind You by Mike Omer on Iphone New Format
  • Read Pdf Rick Riordan Presents A Touch of Blood by Sajni Patel
  • Read online The Prince and the Scribe by Logan Kelly
  • PDF Slaves to Darkness by John French
  • Online Read Ebook The Amish Widows Secret by Cheryl Williford
  • Online Read Ebook At Home in Stone Creek Ranchers Wild Secret by Linda Lael Miller
  • Learning from the Mess Method ological Praxis in Rhetoric and Writing Studies by Ashley J. Holmes E
  • PDF Download A Husband for Christmas by Gail Gaymer Martin
  • Breaking the Code by Maria Lokken on Iphone New Format
  • Read online La felicidad by Gabriel Rolón
  • Pdf ePub Murder in Paradise A George Molly Palmer-Jones Novel by Ann Cleeves download ebook
  • DOWNLOAD PDF EPUB DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • Read online Chronicles of an Aristocrat Reborn in Another World Manga Vol. 8 by Yashu Nini Mo
  • PDF Download Loving Caleb When Love is Denied From the Start by Sandreka Y Brown Y D Rowland
  • Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage on Iphone New Format
  • No Rest for the Wicked by Kresley Cole on Audiobook New
  • Online Read Ebook Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramakri
  • Centers of Gravity by Marko Kloos on Iphone New Format
  • Read online Sito An American Teenager and the City that Failed Him by Laurence Ralph
  • download pdf Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Debr
  • epub download A Haunt for Jackals by J. L. Odom
  • Original Love The Four Inns on the Path of Awakening by Henry Shukman on Iphone New Format
  • PDF DOWNLOAD Shadow of Darkstone The Beginning by M. D. Quarles on Iphone
  • Mark of the Witch by Maggie Shayne on Iphone New Format
  • download pdf Neighborhood Story Vol. 4 by Ai Yazawa
  • PDF EPUB Download Legends of the Dark Angels A Space Marine Omnibus by Various Full Book
  • 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