My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF My Forbidden Billionaire Enemies to Lovers Romance - Blue Sky Empire 2 téléchargement
  • PDF Kindle Christmas At Joes par Alexander Martin
  • Pdf ePub Vertige - Dix ans denquêtes sur la crise écologique et climatique par Cécile Cazenave Val
  • Télécharger Pdf Daddy and Kitten
  • PDF Kindle Mistletoe Magic par Daisy Landish
  • Télécharger PDF Cherry Locked - The Dark Desire 1
  • PDF Goddess Energy Liberate the Divine Feminine in You Radiate Magnetic Confidence and Embrace Se
  • Pdf ePub Érosion sociale par téléchargement ebook
  • téléchargement epub Metamorfosi - o Lasino doro
  • TÉLÉCHARGEMENTS La phytembryothérapie - Lembryon de la gemmothérapie
  • PDF Mars Darkside téléchargement
  • PDF Kindle Reiseblog Wahle Ausgabe November 2023 - Meran in Südtirol Italien par Stefan Wahle Buch
  • PDF Kindle Cold Christmas Nights - Same Time Next Christmas The Bravos of Valentine Bay Cinderel
  • TÉLÉCHARGEMENTS The war
  • Télécharger PDF New To Me - Firefighters of Jacaranda Bay 3
  • Lire en ligne A BloodStained War - Bloodstained Shadows 2
  • Pdf ePub Rückkehr nach Mykene - Eine Klytaimnestra Saga par Hermann Selchow téléchargement ebook
  • PDF Kindle Healthy Hunger Overcoming Food Addiction - Overcoming Addiction par Logan Reed
  • télécharger pdf Zuliq And the Chocolate Chip Cookie Crumb Trail
  • téléchargement epub Scandale et faux-semblants
  • Pdf ePub The Echoes of Destiny par téléchargement ebook
  • PDF Beg Me Please Deluxe Edition - Queens Knights 1 téléchargement
  • PDF The idea of you téléchargement
  • Lecture en ligne Ebook A Second Christmas Kiss - Hometown Holiday Series 5
  • télécharger pdf LArbre à chat de Noël - Les Assassins à moustaches 8
  • Pdf ePub Bring It On Face It Fight It Win It par Anshumala Singh téléchargement ebook
  • Pdf ePub Jouons du piano - Volume 1 Méthode de piano pour débutants par Elvira Caflers Natalia G
  • Lecture en ligne Ebook The Secluded Queen - Legacy of an Armored Queen 1
  • Pdf ePub Un layon au clair de lune par Benoît Lugan téléchargement ebook
  • Pdf ePub Fatal woman par Nivale Tod téléchargement ebook
  • PDF La couleur des choses téléchargement
  • TÉLÉCHARGEMENTS The Trainwreck - Beguiling a Billionaire 6
  • PDF Hiérarchie - La société des anges téléchargement
  • Kindle 26e biennale internationale de Vallauris téléchargement
  • Lire en ligne Mitología nórdica para principiantes Descubre los apasionantes y misteriosos mitos y
  • TÉLÉCHARGEMENTS Au coeur de nos tempêtes
  • Lire en ligne Il ne faut rien dire
  • téléchargement pdf Les amis de Frida au crochet
  • PDF Kindle Breum Tome 3 par Marsault
  • TÉLÉCHARGEMENTS Verity
  • télécharger pdf Nice Try - Selected Short Stories
  • Télécharger Pdf Metamorfosi - o Lasino doro
  • PDF The War of the Worlds téléchargement
  • PDF Le jeu des tricheurs par Anita Rigins
  • TÉLÉCHARGEMENTS Maux damour Tome 3
  • Lecture en ligne Ebook Poesia Cristã - Poesia Cristã 1
  • téléchargement pdf Kheira à contre-pied
  • TÉLÉCHARGER PDF EPUB Les enfants traumatisés par les conflits de guerre
  • Télécharger PDF Brave New World
  • Télécharger Pdf Spirited Away - Souls Redeemed 1
  • 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:27:30
Previous
Deletes a pet
Built with