My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Star Wars - Stickers par Hemma téléchargement ebook
  • télécharger pdf Last Second Chance - The Trouble with Weddings 5
  • Télécharger PDF John Laras The Samaritan Themes and Elements of Style - A Guide to Reading John Lara
  • Lecture en ligne Ebook Fondamentaux - Droit des sociétés 2024-2025
  • PDF Kindle Lévolutionnisme théiste de Teilhard de Chardin - Une analyse exhaustive de ses enseignem
  • PDF Law Of Attraction Manifestation Bundle 6 Ready-To-Use Guided Manifestations Sessions on Attract
  • Télécharger PDF Un conservatisme à la carte en Russie
  • téléchargement pdf Le deuxième tireur
  • Télécharger PDF La face cachée du Dalaï-Lama
  • Télécharger PDF Letzte Ausfahrt Mekka - Nach einer wahren Geschichte
  • Télécharger Pdf HotWife Encounters- 50 HotWife Sexy Erotic Stories - HotWife Erotic Tales
  • Pdf ePub Baby Mama par Shaw Hart téléchargement ebook
  • Lire en ligne Julien Green - Journal intégral 1919-1940
  • PDF Sueño Verde par Alejandrin
  • télécharger pdf Harry Potter Tome 2
  • Lire en ligne La bible du Tage Mage
  • Kindle Lacrum - Ceux den haut téléchargement
  • TÉLÉCHARGER PDF EPUB La saison des apparences - Naissance des corps dété
  • Kindle Frapper lépopée téléchargement
  • Télécharger Pdf The Allotment
  • téléchargement pdf Lueurs Spirituelles
  • Télécharger PDF Unattainable - The Ben Libby Series 2
  • PDF Madame téléchargement
  • téléchargement pdf La formation de lacteur
  • Kindle La formation technique et professionnelle en France - Années 1820 - 1980 téléchargement
  • Télécharger Pdf OVNI Sommes-nous en danger - Le livre noir de lufologie
  • Lire en ligne Les enfants traumatisés par les conflits de guerre
  • téléchargement pdf Libéré
  • Télécharger Pdf Grandir un peu
  • TÉLÉCHARGEMENTS Correspondance - 1944-1959
  • téléchargement epub LIle au trésor
  • PDF 10 Trucos de la Gente de Éxito - Revolución Digital 0 téléchargement
  • téléchargement epub Stärke deine Dankbarkeit Dein Mangeldenken überwinden und mit der Freude am Lebe
  • télécharger pdf Les soeurs et autres espèces du vivant
  • PDF Kindle Die Schöpfung. So könnte es gewesen sein. par Wolfgang Brenneisen
  • TÉLÉCHARGEMENTS Paper Art - Découpez pliez collez créez
  • Pdf ePub Guide du Routard Normandie 2020 21 par téléchargement ebook
  • télécharger pdf Petites histoires de fantômes
  • Kindle Rebel - Après Wilder et Nova la suite de la série New Adult tant attendue - Les Renegades
  • TÉLÉCHARGER PDF EPUB Game of Alliances. Tome 1 English
  • PDF Premier amour par Ivan Tourgueniev
  • PDF A Baby For The Navy SEAL téléchargement
  • Kindle LES SENS DE LAMOUR téléchargement
  • téléchargement pdf Departe de Acasă Aproape de Inimă
  • Télécharger PDF The Fear of Failure the Audacity to Dare do it Afraid
  • PDF Haunting Highways Real-Life Ghost Stories from Truck Drivers par Joseph Capps
  • Télécharger PDF Plötzlich Chef - Praktische Werkzeuge und Strategien um als neue Führungskraft erfo
  • téléchargement epub Les manipulateurs sont parmi nous - Qui sont-ils Comment sen protéger
  • Lire en ligne Dune main déliée - Pratique dune nouvelle équitation à la française contribution à l
  • téléchargement epub The Wolves of Vimar Collection The Complete Series - The Wolves Of Vimar
  • 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 23:32:01
Previous
Deletes a pet
Built with