My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Hommage à La Loiseleux mon arrière-grand-mère par Jean-Philippe Hardy téléchargement eboo
  • PDF Kindle Lintelligence artificielle pour les nuls par John-Paul Mueller Luca Massaron
  • téléchargement pdf Les Dieux déchus Tome 2
  • télécharger pdf The Wizards Revenge
  • Kindle Leadership Challenge - Tome 1 Les leaders du futur téléchargement
  • Télécharger Pdf Dithmarscher Jakobsweg - Jakobspilgern mit Hund auf der Westküstenroute der Via Jutl
  • TÉLÉCHARGEMENTS Quand lAfricain était lor noir de lEurope. LAfrique actrice ou victime de la traite
  • PDF Un monde plus-que-parfait par Emmanuel Brault
  • PDF Kindle Guide du Routard Colombie 2023 24 par
  • PDF Le grand livre des animaux en danger par Zoo de la Flèche
  • PDF Kindle Love Me par Elizabella Harlow Rose
  • PDF Kindle Chasing Ava - The Bachelors of Shell Cove 1 par Siera London
  • téléchargement pdf Sous le visage dun ange - Roman
  • TÉLÉCHARGEMENTS Beaucoup damour et quelques cendres
  • PDF Whesra téléchargement
  • Télécharger Pdf Michel Foucault - Histoire de folie
  • télécharger pdf Good Love - The Ballinger Sisters 3
  • PDF Full Moon Games The Complete Trilogy par Lindsey R. Loucks
  • Pdf ePub Une journée dIvan Denissovitch par Alexandre Soljénitsyne téléchargement ebook
  • PDF Entends-tu le fracas de mon coeur par Malissia Soudoyer
  • Télécharger Pdf Quand lAfricain était lor noir de lEurope. LAfrique actrice ou victime de la traite
  • TÉLÉCHARGEMENTS Le baron perché
  • Télécharger PDF Unlocking Profit Potential Mastering Time-Released CPA Strategies
  • PDF Christmas Stories Omnibus téléchargement
  • Kindle Young Pirates The Red Raven téléchargement
  • Télécharger Pdf Hanna The Job Quitter
  • téléchargement epub Play it Again
  • PDF Kindle Dans les pas de Valeria par Elisabet Benavent
  • PDF Como evitar la pérdida de memoria. - Nuevos Horizontes 1 par Max Becerra
  • téléchargement epub Conard County Killer In The Storm
  • Pdf ePub Le mythe tenace de la folk society en histoire du quebec par Jacques Rouillard téléchargem
  • téléchargement epub A lombre de Winnicott
  • téléchargement pdf The Bake Off
  • téléchargement pdf Vannali - The Lissae Series 7
  • télécharger pdf Creating Your Best Life A Self-Help Blueprint
  • téléchargement epub Lombre pâle
  • PDF Sessuyer les fesses... tout un art téléchargement
  • télécharger pdf Petit Cahier dexercices de pleine conscience
  • Télécharger PDF The Paris MBA
  • TÉLÉCHARGER PDF EPUB Ghosts of Christmas Present - Seavy Village
  • téléchargement pdf Fortune de France Tome 2
  • PDF Kindle Le porteur de mort Tome 5 par Angel Arekin
  • PDF Dont blame me love made me crazy Tome 1 téléchargement
  • TÉLÉCHARGER PDF EPUB Mythologie du .12
  • téléchargement epub La physiocratie et la Suisse - Etudes sur la correspondance du marquis de Mirabe
  • Kindle Le rêve du jaguar téléchargement
  • Kindle Constructing Tomorrow The Art of Lifelong Growth téléchargement
  • téléchargement pdf Verlassene Mütter verlassene Töchter - Handbuch für eine Versöhnung
  • télécharger pdf 1 2 3 défoule-toi - Pack en 3 volumes La rentrée les vacances dautomne Noël
  • TÉLÉCHARGEMENTS Commando Club Curve 15 - Crowns of Chaos MC Series
  • 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-09 22:38:15
Previous
TÉLÉCHARGEMENTS Commando Club Curve 15 - Crowns of Chaos MC Series
Next
Add a new pet to the store
Built with