My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Wisteria by Adalyn Grace
  • Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis D.C. on Ipad
  • DOWNLOAD PDF EPUB Remembering Peasants A Personal History of a Vanished World by Patrick Joyce
  • PDF EPUB Download Culpa tuya Your Fault by Mercedes Ron Full Book
  • Download Pdf Gris Artbook by Nomada Studio
  • Read Pdf Once Smitten Twice Shy by Chloe Liese
  • PDF DOWNLOAD The Court of the Caliphate of al-Andalus Four Years in Umayyad Córdoba by Eduardo Man
  • Read Pdf Seasons of War Skulduggery Pleasant Book 13 by Derek Landy
  • PDF EPUB Download The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlings
  • PDF DOWNLOAD A Rovers Story by Jasmine Warga on Iphone
  • epub download Angels Before Man by rafael nicolás
  • Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein on Ipad
  • PDF Dare I Say It Everything I Wish Id Known About Menopause by Naomi Watts Mary Claire Haver MD
  • Read Pdf The Last Days of Good People by A.T. Sayre
  • Read Pdf The Unveiled Tarot An 80-Card Deck and Guidebook by Jesse Lonergan Mike Mignola
  • PDF EPUB Download The Breakthrough Code A Story About Living A Life Without Limits by Full Book
  • PDF Yuletide Hearts and Reunited at Christmas by Ruth Logan Herne Belle Calhoune
  • Read pdf Its All Love Reflections for Your Heart Soul by Jenna Ortega
  • The Last American Heiresses by Stephen Greco on Ipad
  • epub download Star Wars Bestiary Vol. 1 Creatures of the Galaxy by S.T. Bende Iris Compiet
  • DOWNLOADS Lead Like You Mean It Lessons on Integrity and Purpose from the C-Suite by Laysha Ward
  • From the Belly of a Blue Whale by B. Z. Rose on Audiobook New
  • Online Read Ebook Sallys Lament A Twisted Tale by Mari Mancusi
  • pdf download Bad Therapy Why the Kids Arent Growing Up by Abigail Shrier
  • pdf download Detroit Become Human -Tokyo Stories- Vol. 2 manga by Quantic Quantic Dream John Neal
  • Read online Nothing Here Worth Dying For Task Force Lion in Iraq by Seth William Bell Folsom
  • DOWNLOAD PDF EPUB Our Strange Endeavors by Riley Andrews
  • PDF When Culture Hates You Persevering for the Common Good as Christians in a Hostile Public Square
  • PDF Download Jame Bond 007 Your Cold Cold Heart by Garth Ennis Stephen Radney-MacFarland Rapha
  • Read Pdf All the Parts We Exile by Roza Nozari
  • DOWNLOAD PDF EPUB The Winner by C.J. Parsons
  • Andrzej Sapkowskis The Witcher The Edge of the World by Andrzej Sapkowski Magdalena Salik Tommaso
  • pdf download Im a Behemoth an S-Ranked Monster but Mistaken for a Cat I Live as an Elf Girls Pet
  • Street Smart Chess by Axel Smith on Iphone New Format
  • Read pdf Oscar Wars A History of Hollywood in Gold Sweat and Tears by Michael Schulman
  • PDF Download Narconomics How to Run a Drug Cartel by Tom Wainwright
  • PDF EPUB Download The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano
  • 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-09 00:19:30
Previous
PDF EPUB Download The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano
Next
Add a new pet to the store
Built with