My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Til Death - Ricci Crime Family 2
  • téléchargement epub Nevernight Tome 3
  • PDF Kindle 100 grammes de bien-être - A faire infuser dans votre quotidien par Kankyo Tannier Lise
  • Lire en ligne Lettre dune inconnue
  • Kindle Harley-Davidson - Une collection iconique téléchargement
  • Lire en ligne La Martingale référentiel de fiches médicales pour lEDN - Gynécologie-Obstétrique
  • PDF Fresh Horses A queer equestrian lit story - Second Joy 1 téléchargement
  • PDF Und das Hirn wirbelt immer weiter wie im Hamsterrad - Wie man als Mutter eines ADHS-Kindes fest
  • Télécharger PDF The Power of Self-Control
  • PDF Potential Code Winning Strategies to Maximize Your Talent par
  • téléchargement epub The Devils Sons Tome 4
  • Télécharger PDF The Hunchback of Notre-Dame
  • PDF Tenir debout par Mélissa Da Costa
  • PDF Kindle Conan de Barbaar Elfde Deel - Conan de Barbaar 11 par Erika Sanders
  • TÉLÉCHARGER PDF EPUB Heart of darkness
  • télécharger pdf Le deuxième tireur
  • Kindle Black Devils Tome 2 téléchargement
  • TÉLÉCHARGEMENTS Chien 51
  • Lire en ligne Дороже крыльев
  • PDF LAVC une histoire de femmes - Tout ce que vous devez savoir pour l éviter téléchargement
  • Télécharger Pdf Léquation
  • PDF The Bones of the Earth - The Dark Age 1 par Scott Bury
  • Pdf ePub Réseau de séduction et de pouvoir des beautés délite - Réseau de séduction et de pouvoir d
  • téléchargement epub Reading Scholars Zoo Animals - Reading Scholars
  • PDF Kindle Un monde presque parfait par Laurent Gounelle
  • TÉLÉCHARGEMENTS Démolition
  • PDF Satan is Targeting Mans Free Will - Bible Studies 17 par Leslie Rendell
  • Télécharger Pdf Tai-Chi - Die Hände - Wir denken weil wir Hände haben
  • télécharger pdf Les silences des pères
  • PDF La Vague téléchargement
  • TÉLÉCHARGER PDF EPUB Humanitude - Comprendre la vieillesse prendre soin des Hommes vieux
  • téléchargement pdf Bad for me Tome 2
  • Lire en ligne Les meilleurs gâteaux de mamie
  • Télécharger PDF Kit Morris Tome 1
  • PDF Kindle The Legend of Vanquishing Immortals and Demons - The Legend of Vanquishing Immortals and
  • TÉLÉCHARGEMENTS Margaret Ogola The River and the Source A Complete Guide - A Guide Book to Margaret
  • Lire en ligne Java Spring - Le socle technique des applications Jakarta EE
  • PDF La réunification des deux Corées par Joël Pommerat
  • PDF Kindle Empowering Leaders - NAVIGATING CULTURE COMMUNICATION AND AI ETHICS IN NEGOTIATION par
  • Pdf ePub Journal dun AssaSynth Tome 3 par Martha Wells téléchargement ebook
  • télécharger pdf Detached - The Mystic Chronicles 1
  • PDF Fit werden für den Deutsch-Test für Berufssprachkurse DTB B2 Sprechen 1-3 par Jan Mundhenk
  • Lecture en ligne Ebook Cómo Hablar de Manera Efectiva
  • TÉLÉCHARGER PDF EPUB Bioénergie - Approche bioénergétique des phénomènes cosmotelluriques des ond
  • Lire en ligne Whesra
  • Lire en ligne Conjurations Tome 1
  • Lire en ligne Jane Eyre Rochesters Nacherzählung
  • téléchargement epub Réussir le Linguaskill Business en 25 étapes - Méthodologie astuces exercices
  • PDF La reine aux yeux de lune par Wilfried NSondé
  • PDF La bible officielle du test TOEIC - Le meilleur tout-en-un pour réussir téléchargement
  • 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
Previous
Deletes a pet
Built with