My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF La Geste dHamlet Evans téléchargement
  • télécharger pdf A Summer Hike - Granny Tales 16
  • TÉLÉCHARGER PDF EPUB Fairy Tail - 100 Years Quest T11
  • Télécharger Pdf The Jungle Book
  • Lecture en ligne Ebook Heureux les fêlés car ils laissent passer la lumière
  • Lecture en ligne Ebook Sweet sixteen
  • téléchargement epub Emotional intelligence
  • PDF Kindle The idea of you par
  • télécharger pdf Triste tigre
  • Pdf ePub The Uncrowned King - The Blood Prince 2 par Ayla Marie téléchargement ebook
  • télécharger pdf La coccinelle
  • TÉLÉCHARGER PDF EPUB Faeries Heart - Daughters of Elysium 2
  • PDF Iconic Icons Pictograms in Design Today par Jon Dowling
  • Pdf ePub Ryan - Outdoor Alphas 7 par Jaycee Wolfe téléchargement ebook
  • téléchargement pdf Knowledge Management
  • téléchargement epub LUltima Musa - RIP
  • TÉLÉCHARGEMENTS Medjugorje - I primi sette giorni
  • Télécharger Pdf Lécole des ombres - Fantasy young adult
  • Lecture en ligne Ebook Fleuves - Lextraordinaire voyage de leau
  • Télécharger Pdf No juegues con fuego - La Guerrera 1
  • TÉLÉCHARGER PDF EPUB Taken Claimed In The Zombie Apocolypse Monster Erotica Romance - Her Monster
  • Lecture en ligne Ebook Le succès par la pensée constructive
  • PDF Kindle Magnolia Parks T3 The Long Way Home - Magnolia Parks 3 par Jessa Hastings Fanny Gatibe
  • télécharger pdf Fatal woman
  • Kindle She Looked Good in Pearls - Danny Diamond Erotic Mysteries 1.3 téléchargement
  • Kindle The Adventures of Emma and Jane Fairfax téléchargement
  • Télécharger PDF Le journal dun poilu
  • PDF Assoiffés Tome 1 par Tracy Wolff Aylin Manço
  • PDF Découvrir Belle-Ile par le sentier côtier par Michel Damblant
  • Télécharger PDF Ceux qui ne peuvent pas mourir Tome 3
  • télécharger pdf Dr Vincent Kane The Demon Awakens - Dr Vincent Kane 1
  • PDF OVNI Sommes-nous en danger - Le livre noir de lufologie par Egon Kragel
  • PDF Kindle Fire Meet Gasoline - Une dark romance explosive par Kentin Jarno
  • téléchargement pdf Utiliser le livre dans la médiation scientifique - Guide pratique à lusage des pr
  • PDF LEau - Le Refuge des Héritiers 2 téléchargement
  • Pdf ePub La philo en mode serial thinker par Lev Fraenckel téléchargement ebook
  • PDF Les Méditerranéennes par Emmanuel Ruben
  • TÉLÉCHARGEMENTS Phantom Road T01
  • télécharger pdf Badenheim 1939
  • TÉLÉCHARGEMENTS Heitere Grammatik - Wie man mit Wörtern spielen kann
  • TÉLÉCHARGER PDF EPUB Ecos da Eternidade A Jornada no Reino Inabalável - FICÇÃO E VERDADES BÍBLICAS
  • TÉLÉCHARGER PDF EPUB Dans les geôles de Sibérie
  • Lecture en ligne Ebook Brash - Bombshells 1
  • Lecture en ligne Ebook Uncertain Endeavor - The Elopement Project 3
  • Kindle Le vieux qui voulait sauver le monde téléchargement
  • Pdf ePub Reconnaître cuisiner Champignons de France par Suzac téléchargement ebook
  • TÉLÉCHARGEMENTS Souls Within Doors
  • PDF Summer with the Single Dad - The Single Dads of San Camanez The Brew Brothers 2 téléchargement
  • téléchargement epub Les gars du Val Tome 2
  • TÉLÉCHARGER PDF EPUB Les dieux de Platon
  • 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