My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger Pdf Kétamine - C13H16ClNO
  • TÉLÉCHARGEMENTS The Hunger Games Tome 1
  • TÉLÉCHARGER PDF EPUB ابنة آدم
  • téléchargement epub Clément chez les calmistes
  • TÉLÉCHARGER PDF EPUB Les enfants traumatisés par les conflits de guerre
  • PDF Kindle Thérèse Desqueyroux par François Mauriac
  • TÉLÉCHARGEMENTS Tout mon brevet 2025 en studyfiches - 3e toutes les matières - fiches visuelles qui
  • PDF Kindle Méditer avec la musique classique - Une sophrologue et un musicologue vous invitent à vi
  • téléchargement epub A Paixão do Jovem Werther
  • Pdf ePub The Phantasmagoria Volume 1 par Roberto Scarlato téléchargement ebook
  • Lecture en ligne Ebook Guide du Routard Colombie 2023 24
  • téléchargement epub Réussir son mémoire en 6 étapes - Licence Master
  • Kindle Horribles monstres - Un voyage au coeur de lhorreur téléchargement
  • TÉLÉCHARGER PDF EPUB Wicked Tome 1
  • PDF The Sacrifice Duet - The Sacrifice téléchargement
  • TÉLÉCHARGER PDF EPUB Les carmélites de Compiègne - Martyres de la révolution
  • téléchargement pdf Simple et rapide - 24 projets de couture à réaliser en un après-midi. Inclus des
  • TÉLÉCHARGER PDF EPUB Là où brillent les étoiles
  • PDF Dune main déliée - Pratique dune nouvelle équitation à la française contribution à la libérati
  • Lire en ligne The Punisher Lintégrale
  • PDF Kindle Some Lovely Short Stories by Paul Richards par Paul Richards
  • PDF Kindle Les cahiers dEsther Tome 8 par Riad Sattouf
  • Lecture en ligne Ebook Ingleside Reviews Path to Wellness Your Guide to a Healthy Lifestyle - Ingles
  • Pdf ePub La saison des apparences - Naissance des corps dété par Christophe Granger Aurélie Boissi
  • Télécharger Pdf Corniche Kennedy
  • Télécharger PDF Shadows Beneath the Sun A Journey Through Love Loss and Redemption
  • Kindle Bel-Ami téléchargement
  • Pdf ePub La reine Charlotte - Avant les Bridgerton par Julia Quinn Shonda Rhimes Anne Busnel Em
  • Télécharger Pdf Cybersécurité - Analyser les risques mettre en oeuvre les solutions
  • téléchargement epub Phoenix Rising
  • PDF The Dark Deliverance - Immortals of East Greenwich Trilogy 3 par Diana B. Lynn
  • téléchargement epub WildC.A.T.s - Evolution
  • PDF Kindle Daddy and Kitten par Morgan Synatra
  • Télécharger PDF Ich werde meinen Chef fertigmachen
  • Télécharger Pdf Terre Air Feu et Eau - 75 techniques pour pratiquer avec les éléments
  • PDF Au soir dAlexandrie par Alaa El Aswany Gilles Gauthier
  • TÉLÉCHARGEMENTS Codex HGE - Nouveau programme R2C
  • TÉLÉCHARGER PDF EPUB Balloon Theater Short Stories and Personal Essays
  • Lire en ligne Hommage à La Loiseleux mon arrière-grand-mère
  • Lire en ligne Psicología oscura
  • TÉLÉCHARGEMENTS Detached - The Mystic Chronicles 1
  • TÉLÉCHARGEMENTS Empower Your Self-Esteem Nurture Your Self-Worth Build Emotional Resilience and Cu
  • Lire en ligne Some Lovely Plays by Paul Richards
  • Kindle Твоя дочь как ты téléchargement
  • Lecture en ligne Ebook Edito B2 - 4ème édition - Livre didierfle.app SANTILLANA
  • TÉLÉCHARGER PDF EPUB Mastering Reiki
  • Télécharger PDF A Taste of Honey
  • PDF Terms of Obsession - Sins and Secrets 0.5 par H. N. DeFore
  • PDF Kindle Comptabilité DCG 9 - Manuel applications par Alain Donadio Gilles Meyer
  • PDF Kindle Supernova Tome 1 par Axelle Ménéglier
  • 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
Modified at 2025-06-14 22:08:15
Previous
Deletes a pet
Built with