My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Les animaux ont-ils une culture par Damien Jayat Patrick Goulesque Frédéric Denhez
  • téléchargement epub Owls Lesson
  • TÉLÉCHARGEMENTS Mille Baisers pour un garçon
  • PDF Cybersécurité - Analyser les risques mettre en oeuvre les solutions téléchargement
  • Pdf ePub Le mal joli par Emma Becker téléchargement ebook
  • Lecture en ligne Ebook Amour et amitié - Suivi de Lettres choisies
  • TÉLÉCHARGEMENTS As A Man Thinketh
  • PDF Contes italiens - Edition bilingue français-italien téléchargement
  • Pdf ePub Dont blame me love made me crazy Tome 2 par Laura Gardénia téléchargement ebook
  • Télécharger Pdf Jane Eyre Rochesters Nacherzählung
  • téléchargement epub Le droit des comités sociaux et économiques et des comités de groupe - Commissi
  • télécharger pdf Centreon. Mise en oeuvre dune solution de supervision de votre réseau informatique
  • Télécharger Pdf Verlassene Mütter verlassene Töchter - Handbuch für eine Versöhnung
  • TÉLÉCHARGEMENTS Vice Virtue Dark Mafia Romance
  • TÉLÉCHARGER PDF EPUB Discours de la servitude intellectuelle - De la soumission intellectuelle au
  • téléchargement epub Amari and the Despicable Wonders
  • Lecture en ligne Ebook Le guide de la musculation au naturel
  • télécharger pdf Beg Me Please Deluxe Edition - Queens Knights 1
  • TÉLÉCHARGER PDF EPUB The Little Stars Wish
  • Télécharger PDF Le manuel dastrologie spirituelle - Devenir acteur de sa destinée
  • PDF Kindle Hotwife Beach Vacation First Time Exhibitionist Hotwife - Hotwife Summer 1 par Clara Br
  • Télécharger Pdf Misadventures in Ghosthunting
  • Kindle La coccinelle téléchargement
  • TÉLÉCHARGER PDF EPUB Le Journal du capitaine Wentworth
  • télécharger pdf La Martingale référentiel de fiches médicales pour lEDN - Gynécologie-Obstétrique
  • PDF Molière - Que diable allait-il faire dans cette galère par Sylvie Dodeller
  • Lire en ligne An Apple a day - Lessentiel de la grammaire et du vocabulaire anglais
  • TÉLÉCHARGEMENTS Overwork No More An Essential Guide to Reclaim Your Time Off Find Your Balance and
  • Lecture en ligne Ebook The Playful Path how Imagination and Childlike Wonder Shape our Best Selves
  • Télécharger PDF La soif sen va en buvant - Carnet de sagesse de 99 citations et pensées qui sauvent
  • Télécharger Pdf Slammed Tome 2 - Pour toi
  • téléchargement epub Dernier virage - Essais libres
  • Pdf ePub Rubata dallo zandiano - Le spose zandiane 7 par Renee Rose Rebel West téléchargement ebo
  • PDF Göttliche Intervention Ein heißer Fantasy-Liebesroman téléchargement
  • Lecture en ligne Ebook Insights into Longlivity Being Ageless
  • 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 01:22:55
Previous
Deletes a pet
Built with