My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lire en ligne West Central Indiana Day Trips - Road Trip Indiana Series 5
  • Lecture en ligne Ebook Père-patrie
  • TÉLÉCHARGER PDF EPUB Goldman
  • Télécharger PDF Lélevage des reines
  • Télécharger PDF Mitología nórdica para principiantes Descubre los apasionantes y misteriosos mitos y
  • Télécharger PDF Kétamine - C13H16ClNO
  • PDF Kindle Jimmys Swamp Years The Complete Collection par
  • Lire en ligne Wanderlust Exploring the World One Journey at a Time
  • Pdf ePub Seduced by the Trickster God - Legendary Lovers 1 par Skye Calloway téléchargement ebook
  • téléchargement epub Petite Grande
  • PDF Le loup du prince - Tome 2 - Lobsession du loup par Mylène Ormerod
  • Lecture en ligne Ebook Léveil des consciences - Tome 2 pensées pour moi-même et pour les autres
  • PDF Kindle Maxton Hall - tome 2 - Le roman à lorigine de la série Prime Video - Sauve-toi par Mona
  • PDF Là où brillent les étoiles téléchargement
  • Pdf ePub Little Things - Your positive toolkit for when life feels stressful par Fearne Cotton télé
  • téléchargement epub La mort est un nouveau soleil
  • télécharger pdf Réussis ton Bac de français 1re générale
  • PDF Vivre avec la Terre - Méthode de la ferme du Bec Hellouin - Manuel des jardiniers-maraîchers
  • PDF Lénergie de linvisible par Sandrine Muller-Bohard
  • TÉLÉCHARGEMENTS One Right Answer Infinite Wrong Answers Why Humanity Is Addicted to Being Wrong - T
  • télécharger pdf Dictionnaire du bien-être
  • Kindle Four Dimes and a Quarter téléchargement
  • Télécharger PDF Mon bloc de styliste Animaux mignons - Des coloriages avec des stickers pour habille
  • Lecture en ligne Ebook Sur un malentendu
  • TÉLÉCHARGER PDF EPUB The Scarlet Letter
  • télécharger pdf Athéna Tome 05 - Tempête dans les bandelettes
  • Télécharger Pdf 100 fiches pour comprendre la science politique
  • Lire en ligne Lécorchée
  • TÉLÉCHARGER PDF EPUB Hunted Claimed By The Sasquatch Monster Erotica Romance - Her Monster Mate R
  • PDF Kindle Hereafter Lies R.I.P. - HEREAFTER LIES 1 par
  • Télécharger Pdf Good Love - The Ballinger Sisters 3
  • Télécharger PDF Los inútiles cazadores de fantasmas
  • PDF A Senhora de Wildfell Hall par Anne Brontë
  • téléchargement pdf Friends Central Perk - Le livre de cuisine officiel
  • TÉLÉCHARGER PDF EPUB Utiliser le livre dans la médiation scientifique - Guide pratique à lusage de
  • PDF Die wichtigsten Instrumente der strategischen Unternehmensplanung - Grundlagen für Ausbildung
  • TÉLÉCHARGER PDF EPUB Solo Leveling Tome 15
  • PDF Blood of Hercules par
  • télécharger pdf Gray - Eye Candy Ink Second Generation 4
  • TÉLÉCHARGER PDF EPUB Les Vaisseaux du coeur
  • TÉLÉCHARGER PDF EPUB Le droit des comités sociaux et économiques et des comités de groupe - Commi
  • PDF How To Write A Resume The Ultimate Guide On How To Write A Resume For A Job téléchargement
  • PDF Reiseblog Wahle Ausgabe November 2023 - Meran in Südtirol Italien par Stefan Wahle Buch Guru M
  • Lecture en ligne Ebook Mariés jusquà Noël
  • PDF Extra Scientiam Nulla Salus How Science Undermines Reason - Ontological Mathematics 8 par
  • Télécharger Pdf Pierre de Ronsard Mignonne allons voir si la rose
  • Lecture en ligne Ebook Rêve Akerman
  • PDF Kindle Money-Wise Practical Steps to Build a Substantial Nest Egg par James Parducci
  • Télécharger PDF Qui es-tu
  • Télécharger Pdf The Truth About Gracie
  • 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-15 22:53:01
Previous
Deletes a pet
Built with