My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement pdf Gamification in Education Leveling Up Learning Experiences
  • Télécharger PDF Conan o Bárbaro Terceira Parte - Conan o Bárbaro 3
  • TÉLÉCHARGEMENTS The Angel in the Woods
  • Télécharger PDF The Ultimate Sneaker Book
  • TÉLÉCHARGEMENTS Carina - Le pouvoir de révéler ses secrets
  • Lire en ligne Huhito Fables Vol.19 - Fables 19
  • téléchargement pdf The Guardians Embrace - Bloodmates 2
  • PDF Lannuel de la chasse téléchargement
  • PDF Phantom Road T01 téléchargement
  • Lire en ligne Sire Gauvain et le Chevalier vert - Spécial CM2 6e
  • PDF La cuisinière des Kennedy par Valérie Paturaud
  • PDF Til Death - Ricci Crime Family 2 téléchargement
  • PDF La méthode simple pour se libérer des écrans - Comment échapper à laddiction aux smartphones o
  • TÉLÉCHARGER PDF EPUB Ecrire sa vie
  • Télécharger Pdf Lord Difficult - Maitlands Rogues 3
  • Pdf ePub Phoenix Rising par Lee Gray téléchargement ebook
  • téléchargement pdf Dead Calm - Arcane Souls World Grave Talker 3
  • TÉLÉCHARGER PDF EPUB Réussir ses investissements dans les produits structurés - Comprendre le fonc
  • Kindle En finir avec la peur - Le livre pour se soigner de ses peurs et angoisses téléchargement
  • Lecture en ligne Ebook Book 1 The Pleasure Room - Secrets of the Mansion Exploring Desire and Contro
  • PDF One Right Answer Infinite Wrong Answers Why Humanity Is Addicted to Being Wrong - The Logos Se
  • TÉLÉCHARGER PDF EPUB Propre comme à lhôtel - La méthode pour un intérieur 5 étoiles
  • Télécharger Pdf Laventure des statistiques en sciences humaines
  • télécharger pdf Der Drachenkuss Ein heißer Fantasy-Liebesroman
  • PDF Harley-Davidson - Une collection iconique par Charlie Lecach Bernard Canonne
  • PDF Das passive Online Kurs Business - Finanzielle Freiheit mit eigenen Online Kursen auf Autopilot
  • Lecture en ligne Ebook Kingdom of Power - Kingdom of Fairytales 50
  • téléchargement pdf İtaatkar Öğrenci ve diğer hikayeler - Hakimiyet ve erotik boyun eğme 8
  • Télécharger PDF La mort de la IIIe République - 10 mai-10 juillet 1940 de la défaite au coup dÉtat
  • Lire en ligne Seelen der Erde - Enya
  • PDF You Slay me - Dragon Sept Series 1 par Katie MacAlister
  • PDF Doing What Matters - The Power of Purposeful Productivity téléchargement
  • téléchargement epub Gods and Monsters Tome 1
  • téléchargement epub La jeune fille aux silences
  • Télécharger PDF Salvo mi corazon todo esta bien
  • 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-11 01:53:15
Previous
Télécharger PDF Salvo mi corazon todo esta bien
Next
Add a new pet to the store
Built with