My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Heureux les fêlés car ils laissent passer la lumière
  • TÉLÉCHARGEMENTS Le rire philosophe
  • Lecture en ligne Ebook Le hoquet en pulpes
  • PDF Kindle La face cachée du Dalaï-Lama par Maxime Vivas
  • TÉLÉCHARGER PDF EPUB Commando Club Curve 15 - Crowns of Chaos MC Series
  • TÉLÉCHARGEMENTS Français 4e 3e 800 mots pour réussir - Vocabulaire
  • télécharger pdf Ich werde meinen Chef fertigmachen
  • Pdf ePub Nas Margens do Atlântico par José Leon Machado téléchargement ebook
  • TÉLÉCHARGEMENTS Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle
  • téléchargement epub Les califes maudits Tome 2
  • Kindle Gods Rest For Tired Christians téléchargement
  • Télécharger Pdf The Traveler - Love Hurts
  • PDF Kindle Guerres et Dragons T02 - LEscadrille Lafayette par Nicolas Jarry David Courtois Lucio
  • Lecture en ligne Ebook A Ceo For Christmas - An Unexpected Christmas Baby The Daycare Chronicles T
  • Lire en ligne Quest-ce que lemprise - Comprendre les mécanismes de prédation sen prémunir en sor
  • Lecture en ligne Ebook Dr Stone Tome 1
  • télécharger pdf Metamorfosi - o Lasino doro
  • télécharger pdf Les Renegades Tome 3
  • PDF For the Love of Winter Volume Two par Leah Miles Sara J. Walker Vickey Wollan C.L. Hart Eri
  • télécharger pdf Corniche Kennedy
  • Lire en ligne Million Dollar Death
  • Télécharger PDF Cinderellas Billion-Dollar Invitation
  • PDF Histoire des galeries dart du XIXe siècle à nos jours téléchargement
  • TÉLÉCHARGEMENTS Champion le cerveau
  • PDF Kindle Je my mets dans 5 minutes... par Robin Tyonnel
  • téléchargement pdf La physiocratie et la Suisse - Etudes sur la correspondance du marquis de Mirabea
  • PDF Herbier - 100 dessins à colorier téléchargement
  • Télécharger PDF Bioénergie - Approche bioénergétique des phénomènes cosmotelluriques des ondes élec
  • PDF Monica Rambeau - Photon par Roger Stern Kelly Sue DeConnick Christopher Sebela
  • téléchargement epub Kit Davenport - Lintégrale
  • Télécharger Pdf Croissant amoureux
  • PDF Lidole téléchargement
  • Kindle She Looked Good in Pearls - Danny Diamond Erotic Mysteries 1.3 téléchargement
  • TÉLÉCHARGER PDF EPUB Assoiffés Tome 5
  • Télécharger PDF Petit Futé Hautes-Pyrénées
  • téléchargement pdf A Wishful Hope - Hope Ever After 15
  • téléchargement epub Star Wars - La Haute République
  • PDF Animal Farm par George Orwell
  • TÉLÉCHARGER PDF EPUB Sapphic Christmas Two Spicy Holiday Romances
  • PDF Last Customer A Shoe Store Fantasy téléchargement
  • téléchargement epub Le petit programme pour améliorer lattention les compétences sociales la gesti
  • Télécharger Pdf Whispers of Rohingya
  • PDF Récits du Demi-loup - LIntégrale téléchargement
  • PDF Kindle Guide du Routard Tokyo-Kyoto et ses environs 2019 - Osaka Hiroshima et les villes imp
  • PDF Pépé Malin - Tome 6 - 7 dun coup téléchargement
  • TÉLÉCHARGEMENTS Origin A Prequel to Beacon - The Hero of Heartland - The Hero of Heartland 0
  • PDF Kindle Huhito Fables Vol.14 - Fables 14 par
  • Lire en ligne Low Season in St Tropez
  • télécharger pdf The Interview Masters Product Owner
  • PDF Memories of Lucinda Eco 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

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-07 21:53:20
Previous
PDF Memories of Lucinda Eco téléchargement
Next
Add a new pet to the store
Built with