My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Be Fruitful and Multiply - 3 3 par P O Isen téléchargement ebook
  • Lecture en ligne Ebook Publicidad con razones - Marketing Directo 3
  • PDF Ghosts of the Crusade - Parisian Ghosts 2 téléchargement
  • téléchargement epub Linterview - Savoir interroger et écouter pour mieux rendre compte
  • TÉLÉCHARGEMENTS Patschlachenphilosophien - Gedichte und Texte
  • PDF Its Beginning to Look a Lot Like Christmas A Novella téléchargement
  • PDF Cursed Inheritance par KAROL MOORE
  • Pdf ePub Lécologisation du travail social - Les établissements sociaux à lépreuve du changement cli
  • TÉLÉCHARGER PDF EPUB Meine süßeste Besessenheit - Billionaire Bossholes 2
  • PDF DSCG 4 Comptabilité et audit - Fiches de révision 2022 2023 téléchargement
  • PDF Kindle Haunted Ever After par Jen DeLuca
  • PDF Le grand livre du Pilates - 124 exercices en pas à pas pour une pratique régulière et progressi
  • Lecture en ligne Ebook The Phantasmagoria Volume 1
  • TÉLÉCHARGER PDF EPUB Huhito Fábulas-Versión española Vol.22 - Fábulas-Versión española 22
  • Pdf ePub Lintelligence artificielle pour les nuls par John-Paul Mueller Luca Massaron téléchargeme
  • TÉLÉCHARGER PDF EPUB Empower Your Self-Esteem Nurture Your Self-Worth Build Emotional Resilience
  • téléchargement pdf Et toujours les Forêts
  • PDF Au coeur du 7 octobre - Témoignages par
  • Kindle Le Courage des innocents téléchargement
  • TÉLÉCHARGER PDF EPUB Le jour où... Tome 1
  • Lire en ligne My Copy Cat
  • télécharger pdf Owls Lesson
  • Télécharger PDF Heartstopper - Tome 5 - le roman graphique phénomène adapté sur Netflix
  • téléchargement pdf Campus drivers Tome 2
  • Télécharger Pdf Spirited Away - Souls Redeemed 1
  • TÉLÉCHARGEMENTS A Love Like Wildfire
  • téléchargement epub Knockemout Tome 3
  • Kindle As A Man Thinketh téléchargement
  • Pdf ePub Olivias Prison - Love and Vampires 2 par Rhiannon Futch téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Die Schöpfung. So könnte es gewesen sein.
  • Lecture en ligne Ebook How To Actually Get Rich With AI
  • Pdf ePub Après la démocratie par Emmanuel Todd téléchargement ebook
  • Lire en ligne Molière - Que diable allait-il faire dans cette galère
  • TÉLÉCHARGEMENTS 10 Mindsets to Embrace For Teenage Success Happiness and A Determined Path in Life
  • Télécharger PDF Lord Baltimore Intégrale volume 1
  • 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-15 23:48:25
Previous
Télécharger PDF Lord Baltimore Intégrale volume 1
Next
Add a new pet to the store
Built with