My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement epub Ultramarins
  • TÉLÉCHARGER PDF EPUB Compass - T02 - Lueurs de lEst
  • télécharger pdf How to Identify a Friend - The Power of the Mind 1
  • TÉLÉCHARGEMENTS Les Femmes de nos vies
  • téléchargement pdf Messalina Tome 2
  • PDF Les moteurs agricoles et industriels de nos anciens - 1860-1960 téléchargement
  • Lecture en ligne Ebook The White Darkness
  • TÉLÉCHARGER PDF EPUB Affiches de sports dhiver
  • PDF Paul Virginie par Bernardin de Saint-Pierre
  • Lire en ligne Fleur de sang
  • télécharger pdf Cómo Hablar de Manera Efectiva
  • téléchargement pdf Leadership Alchemy
  • téléchargement epub Attraction is not a Choice The Boxset
  • PDF Kindle Les fantômes de Gaunt par Dan Abnett
  • PDF Maux damour Tome 3 téléchargement
  • téléchargement epub Origami japonais
  • télécharger pdf La chute de la maison Mélenchon
  • Lecture en ligne Ebook Les pros du fumoir - Viandes poissons légumes fruits
  • PDF On se casse Les meilleurs spots à Prague téléchargement
  • PDF Kindle Life is Chaos and All is Well par
  • TÉLÉCHARGEMENTS Chaos and Gunfire
  • PDF The Baby His Secretary Carries The Italians Pregnant Enemy - The Baby His Secretary Carries B
  • Kindle Et si demain tout sinversait téléchargement
  • Pdf ePub How to Raise Financially Intelligent Kids Staying Debt-Free or Becoming Capitalists - Fina
  • PDF Kindle Skye Doe Tome 3 par Simone L. Pennyworth
  • PDF Kindle October 7 Turning Tides in the Middle East par Austin Baas
  • PDF Pulphouse Fiction Magazine Issue 23 - Pulphouse 23 par Dean Wesley Smith Annie Reed Nina Kir
  • TÉLÉCHARGER PDF EPUB Joe Abercrombie - LIntégrale
  • PDF Kindle Le théâtre iranien en transition - Les oeuvres de Bahram Beyzaie par Mona Emad Gérard L
  • PDF The Bones of the Earth - The Dark Age 1 téléchargement
  • Lire en ligne The Brave Heart Sparrow
  • télécharger pdf Dances and Character Pieces - Piano
  • téléchargement pdf Herausforderung schulische Inklusion - zwischen Anspruch und Realität
  • PDF Tu mas donné de la crasse et jen ai fait de lor téléchargement
  • Lire en ligne G-Men Anthology
  • 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 12:17:40
Previous
Lire en ligne G-Men Anthology
Next
Add a new pet to the store
Built with