My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement pdf Lîle des damnés
  • télécharger pdf Comment peut-on être français
  • TÉLÉCHARGER PDF EPUB Microsoft Outlook
  • Lire en ligne Lart den faire juste assez - Doser ses efforts sans sépuiser
  • Lecture en ligne Ebook Le jugement de leau
  • Télécharger Pdf Finale
  • télécharger pdf The Legend of Vanquishing Immortals and Demons - The Legend of Vanquishing Immortal
  • Lire en ligne Homo chaoticus - Révolution dans lévolution
  • Télécharger Pdf Stupeur et Tremblements
  • Lire en ligne 100 Interesting Facts for Curious Kids
  • Télécharger PDF Lady Susan
  • Lire en ligne Minecraft Le guide de construction kawaï - Un guide non officiel
  • PDF Les chroniques de Virgin River Tomes 5 et 6 téléchargement
  • PDF Kindle Le français parlons-en par Boualem Sansal
  • Pdf ePub La couleur des choses par Martin Panchaud téléchargement ebook
  • Pdf ePub Zombillénium Tome 6 par Arthur de Pins téléchargement ebook
  • Lecture en ligne Ebook Changing Room Desires Her Secret Plan with Two
  • PDF Breaking the Ice téléchargement
  • Lecture en ligne Ebook The Players Obsession - Maine Megalodons Football Series 2
  • Télécharger PDF La fille au parapluie rouge et autres histoires courtes
  • Lire en ligne The Clusion Wars The Apocalyptic Clash Between Liberal Inclusion and Conservative Exc
  • téléchargement pdf Potential Code Winning Strategies to Maximize Your Talent
  • Télécharger Pdf Le maître du passé
  • PDF Lagoon Eyes téléchargement
  • Télécharger PDF The Hunger Games Tome 1
  • Télécharger PDF Europas schönste Orte - Ein Reisebericht
  • Télécharger PDF Compass - T02 - Lueurs de lEst
  • téléchargement epub Votre peau me dit tout de vous
  • Lecture en ligne Ebook The Dark Deliverance - Immortals of East Greenwich Trilogy 3
  • Lire en ligne Un pacte avec le roi elfe
  • téléchargement pdf Coloc beau arrogant célèbre
  • Lecture en ligne Ebook Nuit
  • Lire en ligne Après elle
  • PDF Hell I Love Everybody The Essential James Tate - Poems téléchargement
  • téléchargement pdf Devils wolf Tome 1
  • Télécharger Pdf Lempire colonial français en Afrique - Métropole et colonies sociétés coloniales
  • Télécharger PDF Lart à la manière de Paul Gauguin - Sables - Etui avec 5 tableaux 1 stylet en bois
  • télécharger pdf Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôl
  • Télécharger PDF Los inútiles cazadores de fantasmas
  • PDF Kindle For the Love of Winter Volume Two par Leah Miles Sara J. Walker Vickey Wollan C.L. Ha
  • PDF Kindle Le Journal du capitaine Wentworth par Amanda Grange Claire Allouch Anne-Claire Payet
  • télécharger pdf Beyond my Wounds I Am Witness of Gods Power - Beyond my Wounds
  • Kindle Les coquelicots téléchargement
  • Kindle Dolorès ou Le ventre des chiens téléchargement
  • PDF LHéritage fossile par Philippe Valette
  • PDF Kindle Die Hüter von Ceanlocheigh par Alexandra Bogott-Vilimovsky
  • Pdf ePub Lonely Wolf par Aurore Payelle téléchargement ebook
  • Lire en ligne Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His Inno
  • Télécharger Pdf Lhéritage fossile
  • Pdf ePub Lanatomie du scénario - Comment devenir un scénariste hors pair par John Truby télécharge
  • 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

Find pet by ID

GET
/pet/{petId}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/1'
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"
    }
}

Request

Path Params
petId
string 
required
pet ID
Example:
1

Responses

🟢200OK
application/json
Body
code
integer 
required
status code
>= 0<= 0
data
object (Pet) 
required
pet details
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠404Record not found
🟠400Invalid input
Modified at 2025-06-14 21:43:50
Previous
Pdf ePub Lanatomie du scénario - Comment devenir un scénariste hors pair par John Truby télécharge
Next
Add a new pet to the store
Built with