My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Prometeo Americano American Prometheus by Kai Bird Martin J. Sherwin
  • PDF DOWNLOAD Jonesy Complete Collection by Sam Humphries Caitlin Rose Boyle on Iphone
  • download pdf Sea of Stars The Concept Art of Bryce Kho by Bryce Kho
  • Online Read Ebook Fermented Hot Sauce Cookbook A Step-by-Step Guide to Making Hot Sauce From Scratch
  • epub download ADHD is Awesome A Guide To Mostly Thriving With ADHD by Penn Holderness Kim Holdernes
  • Read online The Why Is Everything A Story of Football Rivalry and Revolution by Michael Silver
  • DOWNLOAD PDF EPUB Peril from the Past by Dana Mentink Shirlee McCoy
  • PDF Bad Therapy Why the Kids Arent Growing Up by Abigail Shrier
  • pdf download Eleven Madison Park The Plant-Based Chapter A Cookbook by Daniel Humm
  • Download PDF A Good Life 15 Essential Habits for Living with Hope and Joy by Pope Francis
  • PDF Brutalist Japan A Photographic Tour of Post-War Japanese Architecture by Paul Tulett
  • The Art of Mac Malware Volume 2 Detecting Malicious Software by Patrick Wardle on Iphone New Format
  • PDF EPUB Download A Fly on the Wall by Kalman Stein Full Book
  • Read Pdf Nuestra parte de noche by Mariana Enriquez
  • Download Pdf World of Warcraft Exploring Azeroth Kalimdor by
  • download pdf The Underground Library A Novel by Jennifer Ryan
  • Pdf ePub Death Valley Summer by Brandon Wallace download ebook
  • Pdf ePub The Housemaid by Freida McFadden download ebook
  • pdf download The Adventures of Sherlock Holmes by Arthur Conan Doyle
  • epub download More Tales from Fur After Dark by Eric W Schwartz
  • Finding Her Way by Marta Perry on Audiobook New
  • Read Pdf Sapiens A Graphic History Volume 3 The Masters of History by Yuval Noah Harari
  • PDF Download Heavenly Tyrant Iron Widow Book 2 by Xiran Jay Zhao
  • A Ghost of Caribou A Novel of Suspense by Alice Henderson on Iphone New Format
  • Read pdf Dragon and Chameleon 02 by RYO ISHIYAMA
  • Pdf ePub If the Sun Never Sets If Love 2 by Ana Huang download ebook
  • Online Read Ebook Short Stories In Italian for Beginners Volume 2 by Olly Richards
  • Online Read Ebook Out of the Cocoon The Journey to Becoming by Rosemary Esehagu
  • Pdf ePub We Lived on the Horizon A Novel by Erika Swyler download ebook
  • Pdf ePub The Cambridge History of Strategy by Isabelle Duyvesteyn Beatrice Heuser download ebook
  • Online Read Ebook Now It All Makes Sense How An ADHD Diagnosis Brought Clarity To My Life by Alex Pa
  • PDF The Psychology of Fashion by Carolyn Mair
  • Read online Wilderness Hostage by Janice Kay Johnson
  • PDF Snarky Sharky by Bethan Clarke Nikolas Ilic
  • PDF EPUB Download Too Many Losing Heroines Light Novel Vol. 2 by Takibi Amamori Imigimuru Full Bo
  • Read online Strange Pictures A Novel by Uketsu Jim Rion
  • epub download Nesting A Novel by Roisín ODonnell
  • PDF DOWNLOAD The Expectant Father The Ultimate Guide for Dads-to-Be Fifth Edition The New Father b
  • PDF DOWNLOAD Fantastic Four The Ultimate Guide The Ultimate Guide to Marvels Original Superhero Fa
  • Pdf ePub The Afternoon of Christianity The Courage to Change by Tomás Halík Gerald Turner download
  • Read pdf Metro Girl An Alexandra Barnaby Adventure by Janet Evanovich
  • epub download Chef Snoopy Cookbook Tasty Recipes for Young Chefs by Weldon Owen
  • PDF The Wizard Novel by Shi Wu Uri
  • Download Pdf Pretty Good House by Michael Maines Daniel Kolbert Emily Mottram Christopher Briley
  • Cross My Heart A Novel by Megan Collins on Ipad
  • Read Pdf The Last Hamilton A Novel by Jenn Bregman
  • PDF EPUB Download Royal Scoundrel by Saxon James Full Book
  • epub download Hidden Angels A completely addictive and pulse-pounding crime thriller by Carolyn Arno
  • PDF Download Corrupted Chaos by Shain Rose
  • PDF EPUB Download Terraria Volume 1 The Journey Begins by Brendan J. Vogel Matt Clingempeel Gran
  • 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