My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • télécharger pdf Le livre secret de Jeshua - La vie cachée de Jésus selon la mémoire du temps Tome
  • Lecture en ligne Ebook The Journal of Allison Beckett
  • téléchargement epub What Stories May Tell
  • TÉLÉCHARGEMENTS LAnge de la Nuit Tome 2
  • TÉLÉCHARGER PDF EPUB Bring It On Face It Fight It Win It
  • PDF Oh Santa par Sunny A Morgan
  • TÉLÉCHARGEMENTS The Path Unveiled
  • PDF Stärke deine Dankbarkeit Dein Mangeldenken überwinden und mit der Freude am Leben und der Kraft
  • TÉLÉCHARGEMENTS Emotions enquête et mode demploi Tome 2
  • PDF People We Meet on Vacation par Emily Henry Sandra Poirier
  • Lecture en ligne Ebook The Seven Year Slip
  • téléchargement pdf The Murder on the Links
  • TÉLÉCHARGEMENTS Meeting with my Mate - Monster Erotica Short Stories
  • Lire en ligne One Right Answer Infinite Wrong Answers Why Humanity Is Addicted to Being Wrong - Th
  • Kindle Harley-Davidson - Une collection iconique téléchargement
  • téléchargement pdf Mathématiques MPSI - Tout-en-un
  • Télécharger Pdf La vilaine Lulu
  • PDF Kindle Écrire ou mourir - Tome 2 par Manon Loisvaine
  • TÉLÉCHARGEMENTS Reclamata dallo zandiano - Le spose zandiane 6
  • Pdf ePub La cinquième discipline - Levier des organisations apprenantes par Peter Senge télécharge
  • Kindle Grandir un peu téléchargement
  • téléchargement epub Poulpy crochet - Coffret avec 1 crochet de 4mm 1 aiguille à laine 3 pelotes de
  • télécharger pdf Le grand manuel du pâtissier - Et vos rêves gourmands deviennent réalité
  • Lecture en ligne Ebook Dor et de jungle
  • télécharger pdf 3 Indian Bhabhi Sex Stories
  • téléchargement epub Féminisation Tome 2
  • PDF Comment se libérer des esprits possessifs et des entités - Une enquête paranormale aux frontiè
  • PDF Kindle Klaus Schulze - Le rêve éveillé par Emmanuel Saint-Bonnet
  • PDF Rêve Akerman par Florence Andoka
  • PDF Kindle Celles et ceux qui ont transformé le monde - Simone Veil par Aurore Aimelet Nicolas Gre
  • PDF La face cachée de Margo par John Green
  • téléchargement epub Banana Man Peeling and Revealing - Life in the Tropics 3
  • TÉLÉCHARGEMENTS Flush
  • téléchargement epub Zeroism
  • téléchargement epub Faire chanter la Vierge
  • TÉLÉCHARGER PDF EPUB Controla Tu Ira Y Controla Tu Vida - Guía Práctica Para El Control Del Enojo
  • Kindle Voyage dans lespace téléchargement
  • Kindle Somatic Yoga for Trauma Recovery 52 Illustrated Truma-Informed Yoga Poses Guided Sequences
  • Kindle Mistletoe Magic téléchargement
  • TÉLÉCHARGER PDF EPUB Mon coeur a déménagé
  • Télécharger PDF Call Ripley
  • Télécharger PDF Entends-tu le fracas de mon coeur
  • PDF Essential Gut Health for Women Over 50 téléchargement
  • PDF Kindle Civil War Tome 1 par Mark Millar Steve McNiven Morry Hollowell Khaled Tadil
  • télécharger pdf Tabarnak de Thanksgiving
  • Télécharger PDF Le cri du geai - Espace sous occupation sensible
  • TÉLÉCHARGEMENTS Capacidades Empáticas e Psíquicas Um Guia de Sobrevivência para Pessoas Altamente Se
  • PDF Ils ne savent pas ce quils font - La Tradition sans être tradi téléchargement
  • Kindle Ravished and Spanked téléchargement
  • Lecture en ligne Ebook A Ceo For Christmas - An Unexpected Christmas Baby The Daycare Chronicles T
  • 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
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-15 10:57:25
Previous
Deletes a pet
Built with