My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lecture en ligne Ebook Skilled Trade Career Planning For Teens The Handbook Of Lucrative Skilled Tra
  • PDF The Shaolin Cowboy Tome 1 par Geof Darrow Peter Doherty Lovern Kindzierski Alex Wald Lorrai
  • TÉLÉCHARGER PDF EPUB Steam - Triple Trouble 0.6
  • PDF Love Mix-Up Tome 9 par Wataru Hinekure Aruko Aline Kukor
  • Lecture en ligne Ebook Histoire des races maudites de la France et de lEspagne - Tome 2
  • téléchargement epub Cupid Eine außerirdische Science-Fiction-Romanze - Kolonie-Feiertage 4
  • Pdf ePub Short Horror Erotic Stories par téléchargement ebook
  • télécharger pdf Hunger Games Tome 2
  • Pdf ePub La machine à gagner - Révélations sur le RN en marche vers lElysée par Tristan Berteloot t
  • Télécharger Pdf Le chant dAchille
  • Pdf ePub La Méthode CHANGE MA VIE - Créez la vie extraordinaire qui vous ressemble par Clotilde Dus
  • téléchargement pdf Watchers - Tome 1
  • TÉLÉCHARGER PDF EPUB Finale
  • PDF Kindle Le Clan des Salamandres Tome 1 par Virginie Demay Emilio Urbano Manuela Razzi Arianna
  • PDF Her Mistress Teaches Him How To Do It Sordid Liaisons 2 BDSM Age Gap Voyeur Humiliation Breedi
  • Télécharger PDF Une machine comme moi
  • TÉLÉCHARGER PDF EPUB 39 4
  • Lecture en ligne Ebook Déployer lamour de soi - Renouez avec vous et révélez votre flamme intérieur
  • télécharger pdf Hanna The Job Quitter
  • Lecture en ligne Ebook The Hunchback of Notre-Dame
  • PDF Kindle The Brothers at Horseshoe Ranch par J. S. Cooper
  • Lire en ligne Emma
  • téléchargement pdf Lart subtil de sen foutre
  • Lecture en ligne Ebook Kanji Kana - Index alphabétique des 14 000 mots français simples ou composé
  • PDF 10 Mindsets to Embrace For Teenage Success Happiness and A Determined Path in Life par
  • Lecture en ligne Ebook Behind Blue Eyes
  • PDF Kindle South Central Indiana Day Trips - Road Trip Indiana Series 3 par Mossy Feet Books
  • télécharger pdf Rory Costas Tome 3
  • téléchargement pdf The Clusion Wars The Apocalyptic Clash Between Liberal Inclusion and Conservative
  • TÉLÉCHARGER PDF EPUB Modern Romance January 2024 Books 5-8 - The Bump in Their Forbidden Reunion T
  • Pdf ePub Sérusier - Denis correspondance - De la Définition du Néo-traditionnisme à lABC de la pein
  • téléchargement pdf Faits divers en Bretagne - Volume 4 Chroniques radiophoniques de France Bleu Bre
  • téléchargement epub Stranger Things Expanded Edition
  • TÉLÉCHARGER PDF EPUB Le temps glisse le long des jours
  • PDF Mr. December - The Calendar Heroes 2 par Michele Dunaway
  • Télécharger PDF Cher connard
  • PDF Cinderellas Billion-Dollar Invitation téléchargement
  • PDF The Gentleman 3000 - Maxime Jarays Books téléchargement
  • Kindle Campus Escort Tome 1 téléchargement
  • Télécharger Pdf The Angel in the Woods
  • TÉLÉCHARGER PDF EPUB Building Material - The Memoir of a Park Avenue Doorman
  • télécharger pdf La faille
  • TÉLÉCHARGEMENTS Compass - T02 - Lueurs de lEst
  • téléchargement epub Equality and Diversity Companies under challenge
  • Lire en ligne Little Lou Ugly Jack Prophet John - Character of the Song 1
  • TÉLÉCHARGEMENTS My Missing Piece Tome 2
  • téléchargement epub Dream World
  • Télécharger Pdf Healthy Hunger Overcoming Food Addiction - Overcoming Addiction
  • téléchargement epub The idea of you
  • TÉLÉCHARGEMENTS Somatic Yoga for Trauma Recovery 52 Illustrated Truma-Informed Yoga Poses Guided Se
  • 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