My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Les gars du Val Tome 2 par Henri Granpa téléchargement ebook
  • télécharger pdf The Mistress the Monster and the Marquess
  • Lire en ligne 3 Indian Bhabhi Sex Stories
  • téléchargement epub Mistletoe Miracle - Beneath the Mistletoe
  • Lire en ligne Дороже крыльев
  • Kindle Le théâtre iranien en transition - Les oeuvres de Bahram Beyzaie téléchargement
  • PDF Kindle A Chave da História - VESTIBULAR ENEM HISTÓRIA 1 par Flávio Vieira
  • Lire en ligne Marketing
  • TÉLÉCHARGEMENTS Recklessly in Love A Steamy Small-Town Forced Proximity Romance - Alpine Ridge
  • Lire en ligne Connellys Flame - Megalodon Team 3
  • Kindle Au coeur du 7 octobre - Témoignages téléchargement
  • TÉLÉCHARGER PDF EPUB Halte au manager-bashing - Réinventer lexpérience manager
  • Lecture en ligne Ebook La soldate
  • PDF Oma stürzt in die Märchen-Anderswelt téléchargement
  • télécharger pdf Salem - Fallen Ravens MC 1
  • PDF Kanji et Kana - Manuel et lexique des 2141 caractères officiels de lécriture japonaise suivi d
  • Lire en ligne Extinctions - Intégrale saison 1
  • Pdf ePub Rêve Akerman par Florence Andoka téléchargement ebook
  • PDF Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle déterminan
  • PDF Le rêve du jaguar téléchargement
  • Pdf ePub Zamira Wilson Tome 5 par Shannon Mayer téléchargement ebook
  • télécharger pdf Costumes dHalloween américains
  • téléchargement pdf Dictionnaire de la culture juridique
  • PDF Kindle Sirènes - Tome 1 Le Mercaniori par Florence Gérard
  • Pdf ePub Star Wars The Mandalorian - 1000 Stickers par Hachette Jeunesse téléchargement ebook
  • téléchargement pdf Carina - Le pouvoir de révéler ses secrets
  • Télécharger Pdf Terms of Obsession - Sins and Secrets 0.5
  • PDF 10 Book Ultimate Cuckold Box Set - Mona Rivers Box Sets 1 par
  • PDF Kindle Christmas At Joes par Alexander Martin
  • PDF Le vieux qui voulait sauver le monde par Jonas Jonasson
  • Kindle Reflection Poetry téléchargement
  • Lecture en ligne Ebook The Clusion Wars The Apocalyptic Clash Between Liberal Inclusion and Conserva
  • Télécharger PDF Verlassene Mütter verlassene Töchter - Handbuch für eine Versöhnung
  • TÉLÉCHARGER PDF EPUB Une famille si ordinaire
  • Pdf ePub The Spanish Love Deception par Elena Armas Emilie Terrao téléchargement ebook
  • Télécharger Pdf Clean As You Go
  • Télécharger PDF The Single Savers Playbook How to Spend Less Avoid Debt and Invest for the Future
  • PDF Mon inconnue téléchargement
  • PDF Lindustrie du Football - Tome 1 FIFA criminalité politique par Romain Molina
  • téléchargement epub LAnnée de la Défense Nationale - Comprendre les orientations stratégiques dans u
  • Pdf ePub Le bal des folles par Victoria Mas téléchargement ebook
  • Télécharger Pdf Silly Short Stories to Make You Smile
  • TÉLÉCHARGEMENTS Tu sogni ed io rimango in piedi
  • Lecture en ligne Ebook Une étrange défaite - Sur le consentement à lécrasement de Gaza
  • téléchargement epub Demain nos libertés
  • Télécharger PDF Captive Hearts A Dark Captive Romance
  • télécharger pdf The Shadowed Foe Deaths Dragon Book 3 - Deaths Dragon 3
  • PDF Creating Love par Whitney Gayle
  • téléchargement epub Huhito Fables Vol.35 - Fables 35
  • TÉLÉCHARGEMENTS Only this beautiful moment - 1939 1978 2019 entre Los Angeles et Téhéran
  • 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