My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Fondements délectronique - Circuits composants et applications par Thomas Floyd David M
  • téléchargement pdf EmpowerHER
  • Lire en ligne A Summer Hike - Granny Tales 16
  • télécharger pdf Mon programme ikigai
  • Télécharger PDF The Cultivated Teacher Cultivating a Teaching Philosophy for Flourishing Learners
  • Lecture en ligne Ebook Lorsque mes défunts se manifestent
  • Kindle Et ça jen fais quoi - Les 15 ingrédients fétiches du Viking du ménage et tous leurs usages
  • PDF Gens des nuages téléchargement
  • téléchargement pdf La méthode de lecture 100 syllabique Larousse - Idéal pour apprendre à lire Dè
  • TÉLÉCHARGEMENTS Taylor Swift 125 Facts You Need to Know - Facts You Need to Know
  • Lecture en ligne Ebook Der große böse Boss Miteinander - The-Werewolves-of-Wall-Street-Serie 4
  • TÉLÉCHARGEMENTS LOracle des contrats dâmes - Comprendre et débloquer vos relations amoureuses
  • Kindle La cuisine expliquée - Tous niveaux du CAP au BTS téléchargement
  • Télécharger Pdf Naître médium - Clairvoyance chemin dâme rencontres initiatiques voyages chamaniq
  • PDF Mistletoe Miracle - Beneath the Mistletoe téléchargement
  • Pdf ePub Indian Sex Story 5 Indian Bhabhi Public Sex Story - Indian Erotica Stories 5 par télécha
  • Lire en ligne Jai marché sur lécume du ciel
  • télécharger pdf Grand Manuel de phytothérapie
  • Pdf ePub Ligne de fuite. 2 3 Perdre corps par Sylvain Savarin Robert Cullen téléchargement ebook
  • Télécharger Pdf Les gardiens de la raison - Enquête sur la désinformation scientifique
  • Télécharger PDF Le gardien de Téhéran
  • Télécharger PDF AMP Un camino a la felicidad
  • TÉLÉCHARGER PDF EPUB Dream World
  • TÉLÉCHARGEMENTS Kanji et Kana - Manuel et lexique des 2141 caractères officiels de lécriture japona
  • télécharger pdf Le cercle blanc Tome 1
  • Pdf ePub Cahier de Douai par Arthur Rimbaud téléchargement ebook
  • Lire en ligne White Christmas - Coming Home For Christmas 2
  • TÉLÉCHARGER PDF EPUB The Most Wonderful Crime of the Year - A Novel
  • Télécharger PDF Les Enchantés - Chronique dun majordome
  • PDF Kindle Kids and money Fast track your kids for a practical life par Jordan Rivers
  • Pdf ePub Banana Man Peeling and Revealing - Life in the Tropics 3 par Clyde S. Stephens télécharg
  • Lire en ligne Le rugissant
  • Lecture en ligne Ebook Bomb X Tome 2
  • TÉLÉCHARGEMENTS Les moteurs agricoles et industriels de nos anciens - 1860-1960
  • télécharger pdf Une nuit particulière
  • TÉLÉCHARGER PDF EPUB Coeur prisonnier
  • téléchargement epub Star Wars Docteur Aphra Tome 1
  • Lecture en ligne Ebook Un conservatisme à la carte en Russie
  • PDF Cuidado Compasivo Transitando Por La Demencia par L.E. Summers
  • Télécharger Pdf Un conservatisme à la carte en Russie
  • Kindle Campus drivers Tome 2 téléchargement
  • Lire en ligne The Pearl that Lies in the Sea A Story a Covenant
  • Télécharger PDF Ich möchte mal weg Taubblindheit hält mich nicht auf - Ein Taubblinder pilgert auf
  • PDF Verity par Colleen Hoover Pauline Vidal
  • PDF Lencre du courage par
  • télécharger pdf Troublemaker - Tome 2
  • PDF Watchers - Tome 1 par
  • Lire en ligne A Ghostly Affair - Diamonds of London 7
  • TÉLÉCHARGEMENTS ABC DALF C1 C2
  • Pdf ePub Le trésor de lîle au Crâne par Bastien Lebaudy Julien Alvarez Paul Streto 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