My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Supernatural Agency - Ghost Reaper 3 par Jessica Samuels téléchargement ebook
  • PDF Les gardiens de la raison - Enquête sur la désinformation scientifique téléchargement
  • PDF Nous traverserons des orages - 2 volumes par Anne-Laure Bondoux
  • TÉLÉCHARGER PDF EPUB Les deux Congo dans lhistoire de la lutte de libération de lAngola
  • Lire en ligne The Vampires Obsession - The Moretti Blood Brothers 12
  • Télécharger Pdf Karma and Happiness Strategies to Create a Positive Balance
  • Lire en ligne Google Bard for Business
  • PDF Fake Wedding Date - The Trouble with Weddings 2 téléchargement
  • TÉLÉCHARGER PDF EPUB Sands and Sparrow
  • TÉLÉCHARGEMENTS Le mal joli
  • Pdf ePub Meeting with my Mate - Monster Erotica Short Stories par Lilith Leana téléchargement ebook
  • PDF The Shadowed Foe Deaths Dragon Book 3 - Deaths Dragon 3 téléchargement
  • TÉLÉCHARGEMENTS La Primera vez de Stephania Ella lo es todo para Richard incluso si aún no lo sabe
  • Lire en ligne Mother of Madness
  • PDF Jai marché sur lécume du ciel téléchargement
  • TÉLÉCHARGER PDF EPUB The Trophy Wifes User Guide
  • Pdf ePub Le bal masqué de Théodore Reinach par Sophie Rabau téléchargement ebook
  • téléchargement pdf How To Get Off The Hamster Wheel
  • PDF Zinovij Narozniak - Lexilé venu dUkraine par Lubomir Hosejko
  • Lire en ligne La fourmi de lombre
  • TÉLÉCHARGEMENTS Bien lire et aimer lire - La méthode phonétique et gestuelle créee par Suzanne Borel
  • TÉLÉCHARGEMENTS De toi à moi with love Tome 3
  • Télécharger PDF Shattered Reflections Simones Journey to Self-Discovery
  • PDF Kindle Skye Doe Tome 3 par Simone L. Pennyworth
  • télécharger pdf Amoureuse dun sportif
  • télécharger pdf La légende Alpine
  • téléchargement pdf Encyclopédie pratique de la chasse
  • PDF Kindle All I Want For Christmas - Cinderellas Billion-Dollar Christmas The Missing Manhattan He
  • TÉLÉCHARGER PDF EPUB Rory Costas Tome 3
  • téléchargement epub Unter der Asche Ein Weg von der Dunkelheit ins Licht
  • télécharger pdf Garfield poids lourd Tome 25
  • TÉLÉCHARGER PDF EPUB Le grand livre de la charcuterie - Terrines saucisses pâtés en croûte
  • téléchargement epub I Want To Be A Successful Entrepreneur. Qualities In The Profile Of An Entrepren
  • PDF Alpha Academy Tome 4 par Leia Stone Raye Wagner
  • PDF Kindle Guarding Your Heart par BGodInspired
  • TÉLÉCHARGER PDF EPUB An Affair at Christmastide - Mary and Bright series 1
  • téléchargement pdf The Legacy of Bata The Journey of a Footwear Empire
  • TÉLÉCHARGEMENTS The Traveler - Love Hurts
  • PDF Landon Shay Tome 1 téléchargement
  • PDF Kindle Protegida Por El Ranchero par Vesta Romero
  • 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-04 00:34:01
Previous
Deletes a pet
Built with