My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • télécharger pdf The Dis-Graced - Beguiling a Billionaire 5
  • Lecture en ligne Ebook Emet
  • Télécharger PDF Lalchimiste
  • Télécharger Pdf Guide du Routard Naples 2023 24
  • PDF Evergreen World Famous Faces Part-2 téléchargement
  • téléchargement pdf Witch and God Tome 3
  • Télécharger Pdf Le rêve du jaguar
  • Pdf ePub Borderline Tome 1 par Joyce Kitten téléchargement ebook
  • Pdf ePub Satan is Targeting Mans Free Will - Bible Studies 17 par Leslie Rendell téléchargement eb
  • Télécharger Pdf The Mason Dixon Line
  • Télécharger Pdf Simplissime - Light - Le livre de cuisine light le facile du monde
  • Télécharger Pdf Goddess of Air - Kingdom of Fairytales 48
  • Télécharger Pdf The Jungle Book
  • téléchargement pdf Oliver Twist
  • PDF Doing What Matters - The Power of Purposeful Productivity par
  • PDF Kindle ScrewBall - The Washington Rockets Series 2 par Jamie Spicer
  • PDF Kindle Les jours parfaits par Jacobo Bergareche Maïra Muchnik
  • TÉLÉCHARGER PDF EPUB La chute de la maison Mélenchon
  • Pdf ePub Epreuve dentretien CRPE CAPES CAPEPS CAPET CAPLP CACPE - Motivation et projection pa
  • télécharger pdf Quappelle-t-on philosopher - Latelier dHannah Arendt
  • PDF The Rockstar - Silver Spoon MC 5 téléchargement
  • PDF My Forbidden Billionaire Enemies to Lovers Romance - Blue Sky Empire 2 téléchargement
  • téléchargement pdf Journal dun écrivain
  • TÉLÉCHARGEMENTS Désolation
  • Lire en ligne The Family Connection Understanding Dynamics and Strengthening Ties
  • télécharger pdf Balloon Theater Short Stories and Personal Essays
  • télécharger pdf Her Mistress Teaches Him How To Do It Sordid Liaisons 2 BDSM Age Gap Voyeur Humili
  • téléchargement epub Thomas Hardy The Complete Novels - Far From The Madding Crowd The Return of the
  • PDF File dans ta chambre - Offrez des limites éducatives à vos enfants téléchargement
  • TÉLÉCHARGER PDF EPUB DAEU options A et B - Tout-en-un
  • Télécharger Pdf Toutes les personnes
  • Kindle La Bible pour mon baptême téléchargement
  • télécharger pdf Ecoute ton corps - Version homme
  • PDF Les vertus de léchec téléchargement
  • télécharger pdf Le jugement de leau
  • Télécharger Pdf La femme est un islamiste comme les autres
  • Télécharger PDF Part Of His Royal World
  • Lire en ligne Der Aggro Code
  • Lecture en ligne Ebook The Light of Ramadan - Muslims 1
  • Lire en ligne Chi une vie de chat Tome 1
  • Lecture en ligne Ebook Instincts insoupçonnés - La recluse Tome 2
  • PDF Stärke deine Dankbarkeit Dein Mangeldenken überwinden und mit der Freude am Leben und der Kraft
  • TÉLÉCHARGEMENTS Open World Spawn - ZPOCALYPTO - A World of GAMELAND Series 14
  • téléchargement pdf Fire Meet Gasoline - Une dark romance explosive
  • TÉLÉCHARGEMENTS La république des voraces
  • TÉLÉCHARGEMENTS The Uncrowned King - The Blood Prince 2
  • télécharger pdf Danger Street
  • Pdf ePub Dune main déliée - Pratique dune nouvelle équitation à la française contribution à la lib
  • téléchargement epub Wanderlust Exploring the World One Journey at a Time
  • TÉLÉCHARGER PDF EPUB Manekineko Japonais - Langue et culture niveau 2 - intermédiaire
  • 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-12 21:01:55
Previous
TÉLÉCHARGER PDF EPUB Manekineko Japonais - Langue et culture niveau 2 - intermédiaire
Next
Add a new pet to the store
Built with