My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Ohio - La Belle Rivière T01 par Fred Duval Brada téléchargement ebook
  • Lecture en ligne Ebook My teacher bastard
  • PDF Gâteaux de mamie par Larousse Camille Antoine Martin Balme Fabrice Besse
  • Télécharger PDF Faire chanter la Vierge
  • téléchargement epub Tuesday May
  • Télécharger Pdf Fall of the house of X Tome 1
  • télécharger pdf Psychologie sociale
  • TÉLÉCHARGEMENTS The Raptor of the Highlands - The Sylvan Chronicles 3
  • Télécharger PDF A Magical Christmas of Wonderland A Childrens Story Book
  • TÉLÉCHARGEMENTS The Power of Self-Control
  • télécharger pdf Mythologie du .12
  • Pdf ePub Préparation physique - Lindividualisation au service de la performance par Jason Feugray t
  • TÉLÉCHARGER PDF EPUB Archie a du flair
  • TÉLÉCHARGEMENTS Bel-Ami
  • Lire en ligne Money Mindset Exploring the Psychology of Wealth
  • Lire en ligne 14-14 version dyslexique
  • PDF Réussis ton Bac de français 1re générale téléchargement
  • Lire en ligne Breaking the Ice
  • téléchargement pdf Mercator - 12e éd. - Tout le marketing à lère digitale
  • Kindle The Secluded Queen - Legacy of an Armored Queen 1 téléchargement
  • TÉLÉCHARGEMENTS Lessons for Living - What Only Adversity Can Teach You
  • TÉLÉCHARGEMENTS Bodacious Ursula and the Phone Call from Hell
  • téléchargement pdf Die falsche Energiewende - Die fatalen Fehler der deutschen Energiepolitik
  • téléchargement epub Ingleside Reviews Path to Wellness Your Guide to a Healthy Lifestyle - Ingleside
  • Télécharger Pdf Le jour et lheure
  • téléchargement pdf Le Premier Empire au Portugal 1807-1811 - Honneur et déclin
  • Télécharger Pdf Constructing Tomorrow The Art of Lifelong Growth
  • télécharger pdf Instincts insoupçonnés - La recluse Tome 2
  • TÉLÉCHARGEMENTS Ophélia et les abysses Tome 2
  • Lire en ligne Les Langues Fourchues Sont Amusantes - Une Touche de Feu de Dragon 1
  • PDF Crimes délits et vies brisées - Les combats dune avocate éprise de justice téléchargement
  • PDF Flush par Virginia Woolf Catherine Bernard
  • PDF The Interview Masters Customer Service Manager - The Interview Masters téléchargement
  • téléchargement epub In the Afterwards
  • PDF Kindle Parlez anglais en 6 mois pas en 10 ans - La méthode anti-scolaire pour débloquer votr
  • Télécharger Pdf Larnaque des nouveaux pères - Enquête sur une révolution manquée
  • Télécharger PDF Balloon Theater Short Stories and Personal Essays
  • téléchargement epub Inconditionnelles
  • PDF Moon Magic par K. Ascher
  • Lecture en ligne Ebook 732 The Battle of Tours - Epic Battles of History
  • PDF Les nouveaux seigneurs téléchargement
  • TÉLÉCHARGEMENTS Le savoir-faire du frigoriste - Formation des techniciens du froid commercial
  • TÉLÉCHARGEMENTS Astronomie astrophysique
  • TÉLÉCHARGEMENTS Mooie schoft
  • Télécharger Pdf Mythologie nordique pour débutants Découvrez les mythes et légendes passionnants et
  • Télécharger Pdf La méthode de lecture 100 syllabique Larousse - Idéal pour apprendre à lire Dès 5
  • Kindle Chroniques euréliennes téléchargement
  • Lecture en ligne Ebook Bel-Ami
  • télécharger pdf Le roseau brisé
  • Lecture en ligne Ebook Le moine qui vendit sa Ferrari
  • 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 23:02:15
Previous
Lecture en ligne Ebook Le moine qui vendit sa Ferrari
Next
Add a new pet to the store
Built with