My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Agir et penser comme un chat - Libre calme curieux observateur confiant tenace prudent é
  • Kindle Wild Chance téléchargement
  • Kindle The Naughty List téléchargement
  • Kindle Pour lIran téléchargement
  • TÉLÉCHARGER PDF EPUB Utiliser le livre dans la médiation scientifique - Guide pratique à lusage de
  • TÉLÉCHARGER PDF EPUB Claimed by the Billionaires - The Billionaire Rites Series 3
  • PDF Kindle Ryan - Outdoor Alphas 7 par Jaycee Wolfe
  • TÉLÉCHARGER PDF EPUB Creating Your Best Life A Self-Help Blueprint
  • Pdf ePub LEdda - Récits de mythologie nordique par Sturluson Snorri téléchargement ebook
  • TÉLÉCHARGER PDF EPUB La faiseuse de rois Tome 1
  • PDF Kindle The Betrayal - The Hunted 2 par J L Tong
  • téléchargement epub Finies les fautes - Les 101 règles de français que vous noublierez plus jamais
  • Télécharger Pdf Pack mensuel Black Rose - 10 romans 1 Gratuit Août 2024
  • PDF Les moteurs agricoles et industriels de nos anciens - 1860-1960 par Bernard Gibert
  • TÉLÉCHARGEMENTS Origin A Prequel to Beacon - The Hero of Heartland - The Hero of Heartland 0
  • PDF Madame téléchargement
  • TÉLÉCHARGEMENTS Some Lovely Plays by Paul Richards
  • PDF الهوية القلقة téléchargement
  • Télécharger PDF Poulpy crochet - Coffret avec 1 crochet de 4mm 1 aiguille à laine 3 pelotes de fil
  • Pdf ePub La dépression au féminin - Démystifier comprendre guérir par Docteur Lucie Joly Docteur
  • Pdf ePub La chute de la maison Mélenchon par Thomas Guénolé téléchargement ebook
  • Télécharger PDF Lagoon Eyes
  • Lecture en ligne Ebook Blood of Starlight - The Starborn Trilogy 1
  • PDF Kindle La mythologie grecque - Un poster inclus par Guillaume Diana
  • téléchargement epub Athéna Tome 05 - Tempête dans les bandelettes
  • Télécharger Pdf La philo en mode serial thinker
  • PDF Tales of Cherithy - Tome 1 - Le voyage de Koru téléchargement
  • TÉLÉCHARGEMENTS Full Moon Games The Complete Trilogy
  • TÉLÉCHARGER PDF EPUB Domhan Thios Tome 4
  • Lecture en ligne Ebook 100 Interesting Facts for Curious Kids
  • PDF Kindle Money Mindset Exploring the Psychology of Wealth par
  • PDF Cruels Garçons perdus Tome 4 téléchargement
  • téléchargement pdf Salem - Fallen Ravens MC 1
  • TÉLÉCHARGER PDF EPUB Reflection Poetry
  • Télécharger PDF Rebel Hearts The Unruly Romance
  • télécharger pdf Rivals In Pink Lipstick
  • télécharger pdf Animal Farm
  • téléchargement epub চনদরগরসথ Chondrogrostho
  • PDF Sangs Eternels Forever Lintégrale 3 tomes - Saga bit lit Coffret 2 Univers Sangs Eternels téléc
  • TÉLÉCHARGEMENTS Assoiffés - Tome 9 Adorés
  • Pdf ePub La liberté - Le courage dêtre soi-même par Osho téléchargement ebook
  • TÉLÉCHARGER PDF EPUB The Path Unveiled
  • TÉLÉCHARGER PDF EPUB Esqueletos no Armário - Memórias do Filho de um Pastor.- 2º. Edição. Domingo
  • Pdf ePub Le marchand déponges par Edmond Baudoin Fred Vargas téléchargement ebook
  • Lire en ligne Le petit programme pour améliorer lattention les compétences sociales la gestion ém
  • Lire en ligne Campus drivers Tome 2
  • Télécharger Pdf Lusure dun monde - Une traversée de lIran
  • Télécharger PDF Clean As You Go
  • Pdf ePub Lécole au Québec par Brigitte Caulier Andrée Dufour Thérèse Hamel téléchargement ebook
  • Télécharger Pdf The Jungle Book
  • 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