My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub O Guia Completo Da Renda Passiva - Coleção Vida Equilibrada 11 par Editora Prosperar Luc
  • TÉLÉCHARGEMENTS Full Moon Games The Complete Trilogy
  • télécharger pdf Child Sacrifice
  • PDF Discoveries Way Beyond Your Very Bones téléchargement
  • TÉLÉCHARGEMENTS De lautre côté du miroir - Itinéraires insolites de flibustiers de la finance c. 186
  • Télécharger Pdf Les talibans face à lopium
  • PDF Coco und Andy - Tipps für kleine Besseresser téléchargement
  • Télécharger Pdf Light and Sound - The Song of Everywhen 4
  • téléchargement pdf La Française doit voter - Les combats de Louise Weiss
  • PDF Compass - T02 - Lueurs de lEst téléchargement
  • Télécharger PDF Dernier virage - Essais libres
  • télécharger pdf Pride and Prejudice
  • PDF Play it Again par Aidan Wayne
  • Lecture en ligne Ebook Broken Oath - Forsaken Bonds 1
  • téléchargement pdf Ann dAngleterre
  • PDF La neige ne tombe pas en hiver par Bruno Combes
  • PDF Lécologisation du travail social - Les établissements sociaux à lépreuve du changement climatiq
  • Lire en ligne Le guide du super futur papa
  • PDF Dirty Rich Boss A Billionaire Boss Office Romance par Alice Fox
  • TÉLÉCHARGER PDF EPUB Yona princesse de laube Tome 42
  • télécharger pdf Le cercle des 17 Tome 2
  • Kindle Tant pis pour lamour. Ou comment jai survécu à un manipulateur téléchargement
  • PDF Conan Die Barbaar Derde Deel - Conan Die Barbaar 3 par Erika Sanders
  • Pdf ePub Homo chaoticus - Révolution dans lévolution par Didier Raoult téléchargement ebook
  • TÉLÉCHARGEMENTS Grammaire japonaise systématique. Tome 2 Les expressions verbales et les expression
  • télécharger pdf An Agent for Laurel - Pinkerton Matchmakers 20
  • PDF Kindle Dithmarscher Jakobsweg - Jakobspilgern mit Hund auf der Westküstenroute der Via Jutlandi
  • TÉLÉCHARGEMENTS Scott Pilgrim Intégrale
  • TÉLÉCHARGER PDF EPUB Commun - Essai sur la révolution au XXIe siècle
  • PDF Oma stürzt in die Märchen-Anderswelt téléchargement
  • PDF Creating Your Best Life A Self-Help Blueprint téléchargement
  • PDF Le livre de la route vers lest téléchargement
  • téléchargement pdf Boost Your E-Commerce Warehouse
  • Lecture en ligne Ebook Der magische Chiemsee
  • Lire en ligne Mi lado más oscuro
  • téléchargement epub Eternal Whispers 100 Poem of Timeless Love
  • TÉLÉCHARGEMENTS Leonardo Da Vinci 1452-1519 - The Complete Paintings
  • Pdf ePub The Second Rising - The Chronicles of Arghost 1 par Derren Parsons téléchargement ebook
  • téléchargement epub A tout jamais
  • Lire en ligne Daredevil Echo Quête de vision
  • Lecture en ligne Ebook Hotwife Beach Vacation First Time Exhibitionist Hotwife - Hotwife Summer 1
  • TÉLÉCHARGEMENTS Behind the Ice
  • téléchargement pdf Lorangeraie
  • Télécharger Pdf Tinsley the Sparkling Christmas Elf A Childrens Short Story Book
  • Télécharger PDF Le soldat désaccordé
  • Pdf ePub Bound by Secrets par Sarah Park téléchargement ebook
  • PDF Unter Feuer Band 4 - Unter Feuer 4 par Christina Ross
  • Lire en ligne Ghosts of the Crusade - Parisian Ghosts 2
  • téléchargement pdf The Power of Divine Love
  • PDF The Upside of Early Retirement Learn the Financial Strategies That Make Early Retirement a Real
  • 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-09 21:43:15
Previous
Deletes a pet
Built with