My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement epub La Bible racontée aux enfants en 365 histoires
  • PDF Kindle Mayday par
  • téléchargement epub Le petit chat et moi
  • PDF Elevator Encounters - Encounters of the Public Kind 1 téléchargement
  • TÉLÉCHARGER PDF EPUB Amor Pasión Y Muerte
  • Pdf ePub Manuel du pilote ULM par Cépaduès téléchargement ebook
  • PDF Whispers of Rohingya par
  • Télécharger PDF Elevator Encounters - Encounters of the Public Kind 1
  • PDF Kindle Parle-leur de batailles de rois et déléphants par Mathias Enard
  • TÉLÉCHARGEMENTS A Tale from an Ancient Civilization
  • Pdf ePub The Dragons Flower Black Supremacy - The Dragons Flower 8 par Choco Lily téléchargement e
  • TÉLÉCHARGEMENTS Crazy Boss
  • PDF Kindle Les prélats de Faneas Tome 1 par C. Abécassis Weigel
  • téléchargement pdf Capturé par le roi des fées
  • TÉLÉCHARGEMENTS Abfuhr an den Shifter Boss - Rejecting Fate 1
  • Pdf ePub Danse - Quest-ce quune arabesque par Sophie Bordet-Pétillon téléchargement ebook
  • téléchargement epub The Most Wonderful Crime of the Year - A Novel
  • PDF You Have the Power to Create Your Own World - Empowering Todays Christian Youth 1 téléchargeme
  • TÉLÉCHARGEMENTS LHéritage fossile
  • Pdf ePub Contes et nouvelles par Fédor Mikhaïlovitch Dostoïevski téléchargement ebook
  • TÉLÉCHARGEMENTS Les Rivières pourpres
  • Lire en ligne Pop-Porn - Le porno cest pas la vraie vie
  • Lecture en ligne Ebook Borderline Tome 1
  • PDF Silly Short Stories to Make You Smile par Mahe Dee
  • Télécharger Pdf Sombrer - Le Retour de la siréne 2
  • télécharger pdf Seek - How Curiosity Can Transform Your Life and Change the World
  • PDF Le Totalitarisme en marche - De la perversion de la loi à lhomo sacer une philosophie du prése
  • TÉLÉCHARGEMENTS Crazy Boss
  • TÉLÉCHARGER PDF EPUB Her Brother-In-Laws Keeper
  • PDF Disparition programmée Tome 2 par Roland Smith Dominique Piat
  • TÉLÉCHARGEMENTS Archipels
  • Lire en ligne Joe Abercrombie - LIntégrale
  • Lire en ligne Star Wars
  • téléchargement epub Pack mensuel Black Rose - 10 romans 1 Gratuit Août 2024
  • Télécharger Pdf Bon appétit - BTS
  • téléchargement epub Viviendo en Equilibrio - Welfare 1
  • PDF Emotional Intelligence 7 Secrets to Building Incredible Relationships Achieve Success in Your
  • Pdf ePub Uncertain Endeavor - The Elopement Project 3 par Elizabeth Adams téléchargement ebook
  • téléchargement epub Leadership Strategie - nicht nur für Pferdeleute
  • téléchargement epub Julius Caesar
  • Lecture en ligne Ebook Danse - Quest-ce quune arabesque
  • TÉLÉCHARGEMENTS Les travailleurs de la mer - Daprès Victor Hugo
  • Télécharger Pdf Encyclopédie pratique de la pêche
  • TÉLÉCHARGEMENTS The Power of Self-Control
  • Télécharger PDF Frapper lépopée
  • TÉLÉCHARGEMENTS LAs de pique
  • Kindle Je navais que quinze ans - Emprise et manipulation psycho-spirituelle téléchargement
  • téléchargement pdf Mon manuel de magnétiseur - Apprenez lart de soigner avec vos mains
  • PDF Chien du heaume par Justine Niogret
  • TÉLÉCHARGER PDF EPUB La vague
  • 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