My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • télécharger pdf Deutschland Dämmerung - Vom Ende einer Hochkultur
  • téléchargement pdf Plus grand que le ciel
  • Télécharger Pdf On la trouvait plutôt jolie
  • TÉLÉCHARGER PDF EPUB Steve Jobs The Visionary Innovator of Silicon Valley
  • PDF Kindle Goddess Energy Liberate the Divine Feminine in You Radiate Magnetic Confidence and Emb
  • Lecture en ligne Ebook Hanna The Job Quitter
  • téléchargement epub The Surrender of Seona MacKai - Seonas Story MacKai Brides Book Three - MacKai
  • téléchargement pdf Studien zur Geschichte - Altertum - Mittelalter - Neuzeit
  • PDF Spelunking Underground Tennessee - Caves in The U.S. téléchargement
  • Kindle Quelques solitudes téléchargement
  • téléchargement pdf Bad for me - Tome 1 Le premier roman dAnita Rigins
  • PDF Equality and Diversity Companies under challenge téléchargement
  • TÉLÉCHARGER PDF EPUB Bonbon Noir
  • téléchargement pdf Dune main déliée - Pratique dune nouvelle équitation à la française contribution
  • téléchargement pdf From Jerk to Perk - The Me to We Reverse Harem Romances 3
  • Lire en ligne Chien 51
  • TÉLÉCHARGER PDF EPUB Votre peau me dit tout de vous
  • Télécharger Pdf 3 kg 320 47 cm
  • Télécharger Pdf Amys Betrayal - Gemstone Massacre Series 2
  • Télécharger PDF Zeroism
  • PDF Extinctions - Intégrale saison 1 téléchargement
  • Télécharger Pdf Alice and Meg - Girls Trip - Fallen Lords M.C. 13
  • Kindle An Emotional Dictionary - Real Words for How You Feel from Angst to Zwodder téléchargement
  • TÉLÉCHARGER PDF EPUB Beast The Weirdest Fairy Tale Ever
  • Pdf ePub Kariana Dragon Queen - The Fated Tales Series 3 par téléchargement ebook
  • PDF The Boat House Café - First Light 1 téléchargement
  • Télécharger Pdf Quand sort la recluse
  • Kindle La physiocratie et la Suisse - Etudes sur la correspondance du marquis de Mirabeau et Marc C
  • Pdf ePub Cowboy Devils Embrace - Motley Crewd Shifters 1 par C.D. Gorri téléchargement ebook
  • Lire en ligne Through The Eyes Only
  • TÉLÉCHARGER PDF EPUB Toxic Pretty Boy
  • téléchargement pdf Muhammad lultime joyau de la prophétie - Le nectar cacheté
  • Lecture en ligne Ebook La jeune fille aux silences
  • Kindle Cher connard téléchargement
  • télécharger pdf The Dis-Graced - Beguiling a Billionaire 5
  • Lire en ligne Les favorites de Charles VII
  • télécharger pdf Le guide de la musculation au naturel
  • téléchargement pdf Salon de Beauté
  • Lire en ligne Lord Difficult - Maitlands Rogues 3
  • Télécharger PDF You with a View - Une romance estivale
  • Télécharger PDF La Centurie - Poèmes amoureux de lInde ancienne
  • téléchargement pdf The Male Lead Is Mine Vol. 3 - The Male Lead Is Mine 3
  • PDF Taken Claimed In The Zombie Apocolypse Monster Erotica Romance - Her Monster Mate Romance 5 t
  • TÉLÉCHARGER PDF EPUB Souls Within Doors
  • téléchargement pdf Pack mensuel Black Rose - 10 romans septembre 2024
  • Pdf ePub For A Healthy Life 124 Recommendations From Experts par PAYİDAR BİLGE téléchargement ebook
  • PDF La grande aventure - Patrimoine culturel immatériel de Guadeloupe par Steve Gadet
  • téléchargement pdf À la découverte du Véganisme - Parcours et Réflexions
  • Lire en ligne Qui es-tu
  • Lire en ligne Scrooged - Deepwood Mountain Holiday Specials
  • 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}
pet
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-13 23:34:55
Previous
Lire en ligne Scrooged - Deepwood Mountain Holiday Specials
Next
Add a new pet to the store
Built with