My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement pdf Le Petit Pape Pie 3 14 Tome 2
  • Télécharger PDF La Méthode Boclet - Le programme de 4 semaines pour passer à laction
  • PDF Kindle Changing Room Desires Her Secret Plan with Two par Scarlett Rose
  • TÉLÉCHARGEMENTS Le deuxième tireur
  • Télécharger PDF La délicatesse
  • Lire en ligne Le psy de poche
  • téléchargement pdf Misdeed
  • TÉLÉCHARGEMENTS Guide du Routard Naples 2023 24
  • TÉLÉCHARGER PDF EPUB A Son as a Gift for the CEO
  • téléchargement pdf Echoes of The Heart Storms of The Mind
  • télécharger pdf Le chant des pentes
  • Télécharger Pdf Les rois du péché Tome 1
  • Lecture en ligne Ebook 35 Golden Rules to Invest in Yourself and Be Successful.
  • PDF Kindle Profils américains N 8 1996 par Antoine Cazé Michel Bandry
  • PDF Kindle Archie a du flair par Sylvie Baud-Stef Sacha Drawzas
  • Lecture en ligne Ebook Emotions enquête et mode demploi Tome 2
  • Kindle Arthur Rimbaud Cahiers de Douai. Emancipation créatrices - Bac français 1re générale et te
  • Télécharger Pdf Passions des sables - Série intégrale - La captive de Santara - Dans les bras du pri
  • PDF One Right Answer Infinite Wrong Answers Why Humanity Is Addicted to Being Wrong - The Logos Se
  • TÉLÉCHARGEMENTS Promoted Wins Losses and Lessons from the Promotional Products Business
  • PDF As Aventuras de Huckleberry Finn par Mark Twain
  • Lecture en ligne Ebook Hunted Claimed By The Sasquatch Monster Erotica Romance - Her Monster Mate R
  • PDF Creuser par Steezy Célestin
  • Kindle Le lys dans la vallée téléchargement
  • Télécharger Pdf Médée
  • téléchargement epub Lady - High Hills University
  • Pdf ePub Grenzgänger par téléchargement ebook
  • Lire en ligne Fantastic Four lIntégrale Tome 4
  • Télécharger PDF Amoureuse dun sportif
  • téléchargement pdf Borders and Border Spaces in the EU Volume 1 - European Border Management from a
  • Télécharger PDF Of Shadows and Sails - The Tarakona Chronicles 2
  • téléchargement pdf Whesra
  • Télécharger PDF Splinter Ash
  • PDF Kindle Inoubliable B. B. par Alain Wodrascka François Bagnaud Brigitte Bardot
  • PDF Kindle Voir lEspace - Astronomie et science populaire illustrée 1840-1969 par Elsa De Smet
  • PDF Kindle Más Que Una Aventura - Lilac Harbor 1 par Shaw Hart
  • téléchargement pdf Lorsque mes défunts se manifestent
  • Kindle La Canne de M. de Balzac téléchargement
  • Télécharger Pdf The impact of internet in this modern world
  • Télécharger PDF Shopify Mastery The Ultimate Guide to E-commerce Success
  • Lecture en ligne Ebook Bonbon Noir
  • Lecture en ligne Ebook Le mammouth et la fourmilière - Quel devenir pour lécole publique et ses prof
  • Lire en ligne Property of the North Pole
  • téléchargement epub Oliva
  • Lire en ligne Conan de Barbaar Elfde Deel - Conan de Barbaar 11
  • PDF Balance Under Pressure par Morgan
  • Télécharger Pdf David Attenborough Lines to Live By - Embrace the wonder of your world
  • télécharger pdf Après la démocratie
  • TÉLÉCHARGEMENTS The Ghosts Embrace
  • Lire en ligne How to Grow Your Self Esteem Effective Tools That are Scientifically Proven to Help
  • 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