My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB The 8th Wonder of the World Compounding
  • TÉLÉCHARGEMENTS Noël au royaume dUfrington - Tome 2 Ce qui nous réunit
  • PDF LEclair de génie Café téléchargement
  • Lire en ligne La légende Alpine
  • Pdf ePub Assoiffés Tome 2 par Tracy Wolff Aylin Manço téléchargement ebook
  • Lecture en ligne Ebook Rhodes on the ice - Boston Bay Vikings 14
  • Télécharger Pdf The Brothers at Horseshoe Ranch
  • TÉLÉCHARGEMENTS Knowledge Management
  • téléchargement epub Pulphouse Fiction Magazine Issue 23 - Pulphouse 23
  • Lecture en ligne Ebook Beyond the Game
  • Lire en ligne Grand Manuel de phytothérapie
  • téléchargement pdf A Wishful Hope - Hope Ever After 15
  • Lire en ligne The Price of Peeking A Neighborly Spanking Story
  • PDF Grammaire et stylistique - Agrégation de Lettres par Bérengère Moricheau-Airaud Adrien Bresso
  • PDF Le soldat désaccordé téléchargement
  • Pdf ePub Pour un renouveau démocratique - Arguments pour une citoyenneté active par Philippe Brache
  • téléchargement pdf Comprendre le Front National
  • PDF A ta mort ce sera à moi téléchargement
  • TÉLÉCHARGEMENTS Mes Génies Tome 2
  • Lire en ligne Faites mieux Vers la Révolution citoyenne
  • Lecture en ligne Ebook Le Rosaire - Les vingt mystères revisités
  • PDF Carina - Le pouvoir de révéler ses secrets téléchargement
  • Télécharger Pdf 52 méthodes - Pratiques pour enseigner
  • Lire en ligne Les défis du salut dans lEglise catholique au Bénin - Le cas du phénomène Banamè
  • PDF Kindle Un pacte avec le roi elfe par Elise Kova Nenad Savic
  • Pdf ePub Cahiers de Douai Edition pédagogique par Arthur Rimbaud téléchargement ebook
  • téléchargement pdf Légendes et drames du rock
  • TÉLÉCHARGEMENTS Ms. Marvel
  • téléchargement pdf Çhibone
  • Télécharger Pdf Tu mas donné de la crasse et jen ai fait de lor
  • PDF Kindle Le corps noublie rien - Le cerveau lesprit et le corps dans la guérison du traumatisme
  • Lecture en ligne Ebook Grammaire japonaise systématique. Tome 2 Les expressions verbales et les exp
  • TÉLÉCHARGEMENTS Sauvetages ordinaires
  • PDF Kindle The Brothers at Horseshoe Ranch par J. S. Cooper
  • TÉLÉCHARGEMENTS Raven Tome 3
  • Lire en ligne Blood Orange
  • Télécharger Pdf Homo chaoticus - Révolution dans lévolution
  • téléchargement pdf Spelunking Underground Tennessee - Caves in The U.S.
  • télécharger pdf Poussière dOs
  • téléchargement pdf You Have the Power to Create Your Own World - Empowering Todays Christian Youth
  • Télécharger PDF Les Malloren Tome 6
  • Kindle One Right Answer Infinite Wrong Answers Why Humanity Is Addicted to Being Wrong - The Logos
  • PDF Kindle La véritable histoire de Hussein qui découvrit le tombeau de Toutankhamon par Nathalie L
  • PDF Derrière la nuit lusine par Robert Piccamiglio
  • PDF Kindle Quand lAfricain était lor noir de lEurope. LAfrique actrice ou victime de la traite des
  • télécharger pdf Indianas Traffic
  • Kindle The Adventures of Tom Sawyer téléchargement
  • TÉLÉCHARGEMENTS Le hoquet en pulpes
  • PDF Herausforderung schulische Inklusion - zwischen Anspruch und Realität par Margit S. Schiwarth-L
  • PDF Capacidades Empáticas e Psíquicas Um Guia de Sobrevivência para Pessoas Altamente Sensíveis. Me
  • 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-06 08:27:40
Previous
Deletes a pet
Built with