My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement pdf Los inútiles cazadores de fantasmas
  • Télécharger PDF Taken Claimed In The Zombie Apocolypse Monster Erotica Romance - Her Monster Mate R
  • Télécharger PDF La délicatesse
  • Lire en ligne Lart de perdre
  • téléchargement epub Une famille si ordinaire
  • Télécharger Pdf Igniting Curiosity Cultivating a Love of Learning in Every Student
  • TÉLÉCHARGER PDF EPUB Map of an Old Heart - Uncollected Anthology Mystical Maps
  • Pdf ePub La Bible pour mon baptême par Karine-Marie Amiot Hengjing Zang téléchargement ebook
  • PDF Kindle The Punisher Lintégrale par Mike Baron Mary Jo Duffy Klaus Janson Whilce Portacio
  • TÉLÉCHARGER PDF EPUB Departe de Acasă Aproape de Inimă
  • Télécharger Pdf The Keepers Time
  • PDF Lhomme au corbeau - Masahisa Fukase téléchargement
  • PDF Fire Meet Gasoline - Une dark romance explosive par Kentin Jarno
  • PDF Rhâa Lovely téléchargement
  • TÉLÉCHARGER PDF EPUB Le grand livre de la prophétie des Andes - La prophétie des Andes suivi de L
  • Pdf ePub Paseo Salvaje par Shaw Hart téléchargement ebook
  • Pdf ePub Cherry Locked - The Dark Desire 1 par téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Stories of Resilience Journeys of Hope and Growth Turning Points of Transform
  • Lecture en ligne Ebook Vivre avec Picasso
  • télécharger pdf Le manufacturier
  • Kindle Ce que dit Lucie téléchargement
  • téléchargement pdf Stranger Things Expanded Edition
  • PDF Kindle Angels Among Us - Veronicas Adventures 4 par veronica esagui
  • PDF Féminisation Tome 2 téléchargement
  • PDF Friends Central Perk - Le livre de cuisine officiel par Kara Mickelson Julien Di Giacomo Cam
  • PDF Kindle Les carmélites de Compiègne - Martyres de la révolution par Olivier Malcurat Marie Malc
  • TÉLÉCHARGEMENTS Bleus sont les étés - Suivi de Le Coeur va où vont les rivières
  • Télécharger PDF Defeating Jihadist Terrorism
  • téléchargement pdf My teacher bastard
  • Pdf ePub Seek - How Curiosity Can Transform Your Life and Change the World par Scott Shigeoka téléc
  • Télécharger PDF Fatal woman
  • PDF Lady - High Hills University téléchargement
  • PDF La petite valise des émotions - Avec 15 grands stickers 1 décor à compléter livret de 16 page
  • Lire en ligne Les silences des pères
  • téléchargement epub Je pense mieux - Vivre heureux avec un cerveau bouillonnant cest possible
  • Télécharger Pdf Ms. Binitarianism Wins Flash Fiction
  • 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-06 12:41:55
Previous
Deletes a pet
Built with