My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Le dernier étage du monde
  • PDF Kindle The Power of Habit Creating Lasting Change in Your Life par Elphas Sipho Mdluli
  • téléchargement epub Le bestial serviteur du pasteur Huuskonen
  • téléchargement epub Guide du Routard Marrakech 2025 26
  • Pdf ePub La cinquième saison - Un roman vénitien par Erik Orsenna téléchargement ebook
  • télécharger pdf Shattered Reflections Simones Journey to Self-Discovery
  • téléchargement pdf Kamala Harris - LAmérique du futur
  • Lire en ligne Djengui
  • TÉLÉCHARGER PDF EPUB La cinquième discipline - Levier des organisations apprenantes
  • télécharger pdf Shinrin-Yoku - Lart et la science du bain de forêt
  • Lecture en ligne Ebook Le journal dAlan Rickman
  • téléchargement epub Contes italiens - Edition bilingue français-italien
  • téléchargement pdf Her Brother-In-Laws Keeper
  • TÉLÉCHARGER PDF EPUB Disney Princesses
  • PDF For the Love of Winter Volume Two téléchargement
  • PDF Kindle Cowboy Devils Embrace - Motley Crewd Shifters 1 par C.D. Gorri
  • TÉLÉCHARGER PDF EPUB La ronde des poupées
  • PDF Ein Haus - Zwei Männer - Drei Frauen - ... und unzählige Kameras téléchargement
  • TÉLÉCHARGEMENTS Fantastic Four lIntégrale Tome 4
  • PDF De lautre côté du miroir - Itinéraires insolites de flibustiers de la finance c. 1865-c. 1895 t
  • TÉLÉCHARGEMENTS Lais
  • TÉLÉCHARGEMENTS Lettres dItalie à Musset
  • Lire en ligne 3 mètres à colorier
  • téléchargement epub Propre comme à lhôtel - La méthode pour un intérieur 5 étoiles
  • Pdf ePub Til Death - Ricci Crime Family 2 par Carly Davis téléchargement ebook
  • Lire en ligne La passagère clandestine Le poison de la suspicion
  • PDF Indianas Traffic par Lina Déranor
  • téléchargement epub Connaissance et innovation
  • Kindle Ocean Eyes - Dir Verfallen téléchargement
  • téléchargement pdf Entre amis
  • Télécharger Pdf Snowfather and Other Christmas Stories
  • TÉLÉCHARGEMENTS Ann dAngleterre
  • téléchargement epub Ces prières que je fais dans le noir
  • Télécharger Pdf Avec Pierre de Ronsard
  • Pdf ePub Lonely Wolf par Aurore Payelle téléchargement ebook
  • téléchargement epub Assoiffés Tome 1
  • télécharger pdf Kit Morris Tome 1
  • Pdf ePub Seguidor Renunciar a mí mismo y seguir a Jesús para vivir el discipulado radical y la obed
  • Lire en ligne Requiem pour un joueur
  • télécharger pdf How To Get Off The Hamster Wheel
  • PDF Kindle Futur papa bien préparé par Frédéric Faurillon
  • PDF Say Yes téléchargement
  • téléchargement pdf Henri III - Un roi de tragédie
  • PDF Lais par Marie de France Charlotte Laugraud-de Sainte Hermine Philippe Walter
  • PDF Brumes à Mer La Mort du Tigre - Brumes à Mer 2 par Valérie Hoinard
  • PDF Kindle Devils wolf Tome 3 par Adéli Mays
  • PDF Kindle Sueño Verde par Alejandrin
  • PDF Quand on eut mangé le dernier chien téléchargement
  • téléchargement epub JFK Assassination Chokeholds
  • Télécharger Pdf Her Outcast Scot - The Highland Warrior Chronicles 5
  • 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