My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB His Child Her Love
  • Lire en ligne Embracing Emerald - The Silvia Saga 1
  • TÉLÉCHARGEMENTS Ravished and Spanked
  • Télécharger Pdf Open World Spawn - ZPOCALYPTO - A World of GAMELAND Series 14
  • TÉLÉCHARGER PDF EPUB Disparition programmée Tome 2
  • Télécharger PDF Vivant parmi les morts
  • PDF Kindle Broken par Constance Ely
  • TÉLÉCHARGEMENTS Les Immortelles Tome 3
  • Lecture en ligne Ebook Secret Indulgence Forbidden Age Gap Older Man Younger Woman Story - Romantic
  • PDF Reconnaître cuisiner Champignons de France téléchargement
  • télécharger pdf Guide du Routard Istanbul 2020 21
  • PDF Kindle More than words - Une Love Story par Mia Sheridan Caroline de Hugo
  • Lire en ligne Dolorès ou Le ventre des chiens
  • TÉLÉCHARGER PDF EPUB Dès que sa bouche fut pleine
  • TÉLÉCHARGER PDF EPUB I Am Human Too Never Ever - The Love games 3
  • Télécharger Pdf Le grand guide Major Mouvement pour soigner vos douleurs
  • TÉLÉCHARGEMENTS Instaurer une relation complice avec son cheval
  • Pdf ePub Sense Irritability - Austen in Austin 1 par Emma Lee Jayne téléchargement ebook
  • téléchargement pdf Nhích Tới Thành Công Với 52 Thói Quen Nhỏ
  • Télécharger PDF No Mistake - Onyx Black Ops 2
  • PDF Kindle La montagne cest toi - Se libérer de lautosabotage par Brianna Wiest Naomi Defays
  • Télécharger Pdf Terms of Obsession - Sins and Secrets 0.5
  • PDF Le vol de Sorcebois par Téo Sauzède
  • télécharger pdf Utiliser le livre dans la médiation scientifique - Guide pratique à lusage des prof
  • Télécharger PDF Momos Medical History Tome 2
  • Lecture en ligne Ebook Permis de culture avec Whats up world
  • Télécharger Pdf Tasty Balls - Cedar Falls 28
  • Kindle Devils wolf Tome 3 téléchargement
  • téléchargement epub Le haras de Canterwood Tome 13
  • Télécharger PDF LHéritage fossile
  • Pdf ePub La Résilience verticale par téléchargement ebook
  • Kindle Devils wolf Tome 1 téléchargement
  • Télécharger PDF Silver and Salt - Beneath the Fire Tree 1
  • PDF Couture rose téléchargement
  • PDF Little Lou Ugly Jack Prophet John - Character of the Song 1 par Gene Strother
  • Pdf ePub Lambition entre nous par Lola Brunet Chloé Roch téléchargement ebook
  • Télécharger PDF Lord Difficult - Maitlands Rogues 3
  • Pdf ePub La canne de M. de Balzac par Delphine de Girardin Martine Reid téléchargement ebook
  • téléchargement pdf Tennis - Les fondamentaux tactiques
  • PDF Crescent City Tome 2 par Sarah J. Maas Chloé Bardan
  • TÉLÉCHARGER PDF EPUB One Kiss to Desire - Blackwood Legacy 1
  • Télécharger Pdf Alexandre Milliardère le dernier homme
  • Lecture en ligne Ebook Bound by Secrets
  • Pdf ePub Baba Yaga - die absichtsvollen Reisenden - Baba Yaga 1 par Susanna D. Stark téléchargemen
  • PDF Kindle Real-Life Advice From Experts par PAYİDAR BİLGE
  • téléchargement pdf Permis de culture avec Whats up world
  • téléchargement pdf Sweet Second Chances - Texas Redemption 2
  • Kindle Wish Asha et la bonne étoile - Mes premiers autocollants téléchargement
  • Lecture en ligne Ebook Les aveuglés - Le palais des murmures
  • PDF Lart dapaiser son enfant - Pour quil retrouve force et confiance téléchargement
  • 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 21:02:40
Previous
Deletes a pet
Built with