My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Quand on eut mangé le dernier chien
  • PDF Kindle Sense and Sensibility par Jane Austen
  • téléchargement epub Borders and Border Spaces in the EU Volume 1 - European Border Management from a
  • Pdf ePub Enjoying Mr. Hardwood par Christine Gray téléchargement ebook
  • PDF Young Pirates The Red Raven téléchargement
  • téléchargement pdf Tai-Chi - Die Hände - Wir denken weil wir Hände haben
  • Lecture en ligne Ebook LES SENS DE LAMOUR
  • TÉLÉCHARGEMENTS Finale
  • PDF Kindle Cinderellas Billion-Dollar Invitation par Michele Renae
  • Pdf ePub The Solace of Truth - Collected Short Stories 5 par Joe Vasicek J.M. Wight téléchargemen
  • PDF Kindle 100 jeux Animal Jack par Kid Toussaint Miss Prickly
  • Pdf ePub LOdyssée dHakim Tome 1 par Fabien Toulmé téléchargement ebook
  • Pdf ePub Seduced by the Trickster God - Legendary Lovers 1 par Skye Calloway téléchargement ebook
  • Lire en ligne Le Retour des Nains T2 Les Dragons dairain
  • téléchargement epub As A Man Thinketh
  • Lecture en ligne Ebook Earning Independence - Abroad - Earning Series 2
  • Télécharger Pdf Lanatomie du scénario - Comment devenir un scénariste hors pair
  • PDF Kindle On la trouvait plutôt jolie par Michel Bussi
  • TÉLÉCHARGER PDF EPUB Les dieux voyagent toujours incognito
  • TÉLÉCHARGEMENTS Nutzen wir die freie Meinungsäußerung um Bibliotheken zu loben
  • TÉLÉCHARGEMENTS Der Aggro Code
  • PDF Kindle Im On One par
  • téléchargement epub Irrésistible ballerine
  • Lecture en ligne Ebook Pokohan
  • PDF Wild Chance par
  • télécharger pdf My Cowboy of Convenience - Cowboys of Sunnydale 4
  • téléchargement pdf Sérotonine
  • PDF Kindle Cartes animaux totem stickers brillants par Marion Blanc
  • télécharger pdf Emet
  • télécharger pdf Witch Interrupted
  • Lecture en ligne Ebook Hommage à La Loiseleux mon arrière-grand-mère
  • PDF All About Pyramids A Kids Guide to Ancient Egypts Greatest Wonders - Educational Books For Kids
  • Télécharger PDF De lurgence à la conscience - Quand la médecine rejoint la spiritualité
  • TÉLÉCHARGER PDF EPUB Guide du Routard Colombie 2023 24
  • Télécharger PDF The Keepers Time
  • Télécharger Pdf Ilaria - Ou la conquête de la désobéissance
  • Lire en ligne Lalimentation intuitive - Le grand livre
  • 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-12 02:17:55
Previous
Deletes a pet
Built with