My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Kindle Lalchimiste téléchargement
  • Kindle Maman sen va-t-en guerre - Ma vie de grand reporter téléchargement
  • Lire en ligne Sérusier - Denis correspondance - De la Définition du Néo-traditionnisme à lABC de la
  • télécharger pdf Danse - Quest-ce quune arabesque
  • Kindle La faucheuse Tome 1 téléchargement
  • Pdf ePub Attachée... Déshabillée... Les Yeux Bandés Nouvelle érotique MFM pour adultes par LAURA SP
  • Télécharger Pdf Kunsten at blive pensionist på fuldtid
  • Pdf ePub Loeuvre du serpent par Norman Jangot téléchargement ebook
  • Pdf ePub Knowledge Management par téléchargement ebook
  • PDF How to Grow Your Self Esteem Effective Tools That are Scientifically Proven to Help you Become
  • Télécharger PDF Instaurer une relation complice avec son cheval
  • Lire en ligne Lettre dune inconnue
  • TÉLÉCHARGER PDF EPUB The Legend of Vanquishing Immortals and Demons - The Legend of Vanquishing Im
  • Pdf ePub Lart den faire juste assez - Doser ses efforts sans sépuiser par Gaëtan Cousin téléchargem
  • PDF The Four Arts series téléchargement
  • Télécharger PDF Lamour en bateau
  • TÉLÉCHARGEMENTS Archie a du flair
  • téléchargement pdf Marvel Comics II Tome 9
  • PDF Beyond my Wounds I Am Witness of Gods Power - Beyond my Wounds par Heidy Mejia
  • téléchargement pdf Bob Marley
  • Lecture en ligne Ebook Le peuple de lair Tome 1
  • Kindle Le kit de lapprenti mangaka - Tout pour créer ses premiers personnages mangas - Avec 10 feui
  • PDF Kindle Black Beauty par Anna Sewell Cori Samuel
  • PDF Kindle How to Raise Financially Intelligent Kids Staying Debt-Free or Becoming Capitalists - Fi
  • Lecture en ligne Ebook Adam Binder - LIntégrale
  • Pdf ePub Wunderland - Où danse un peu du désastre et de la magie du monde par Pauline Clavière télé
  • PDF Fatal woman téléchargement
  • téléchargement pdf Strategor - 8e éd. - Toute la stratégie de la start-up à la multinationale
  • Télécharger PDF The Iron Knight
  • Télécharger PDF Finale
  • téléchargement pdf Watchers - Tome 1
  • téléchargement epub Skye Doe Tome 3
  • Télécharger Pdf La cage 2
  • Télécharger Pdf Cured - Two imaginary boys
  • téléchargement epub La vie des dinosaures
  • téléchargement pdf Runaway Princess
  • PDF Kindle Le Montespan par Jean Teulé
  • PDF Intruse - Ou comment guérir dune intoxication amaternelle téléchargement
  • TÉLÉCHARGER PDF EPUB Dream World
  • TÉLÉCHARGER PDF EPUB El Messi que no Conoces El Hombre Detrás de la Magia
  • télécharger pdf Skin Deep - Santas Shorts
  • PDF From Friends To Forever - Book 2 2 téléchargement
  • PDF Calimity Montana Tome 1 par Devney Perry Sylvie Del Cotto
  • TÉLÉCHARGER PDF EPUB Performer après 50 ans - Comment rester en forme et compétitif tout au long d
  • téléchargement pdf Mariés jusquà Noël
  • TÉLÉCHARGER PDF EPUB İtaatkar Şef ve diğer hikayeler - Hakimiyet ve erotik boyun eğme 7
  • Lire en ligne La république des voraces
  • télécharger pdf Where Demons Dwell - Dark Kingdom 3
  • PDF Stärke deinen Reichtum Die finanzielle Zukunft selbst in die Hand nehmen indem du die Denkweis
  • PDF Le dragon par Evgueni Schwartz
  • 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