My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Titans Vol. 2 The Dark-Winged Queen by Tom Taylor Lucas Meyer
  • PDF EPUB Download Shoegaze by Ryan Pinkard Full Book
  • epub download Cowboy Christmas Rescue by Beth Cornelison Colleen Thompson
  • download pdf Smithsonian Passport by Smithsonian Institution
  • PDF Download The White House Physician A History from George Washington to Joe Biden 2d ed. by Lu
  • PDF Kindle Deify A Mythical Solo Role-Playing Game by Allyson DAntonio Maia Trewartha
  • PDF El diario de Tita Como agua para chocolate Titas Diary Like Water for Chocolate by Laura Esqu
  • The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki Yamori on Au
  • PDF Kindle I Know Silly A book about feeling silly shy and embarrassed by Lindsay N. Giroux Alic
  • download pdf The Pedestrian Volume 1 by Joey Esposito Sean Von Gorman
  • Read Pdf The Chronicles of DOOM Unraveling Raps Masked Iconoclast by S.H. Fernando Jr.
  • Summerhaven Collectors Edition by Tiffany Odekirk on Audiobook New
  • download pdf The Silver Bayonet The Carpathians Castle Fier by Joseph A. McCullough Brainbug Desig
  • download pdf Cooking with Monsters Book 2 Harm-to-Table by Jordan Alsaqa Vivian Truong
  • Online Read Ebook Carmilla French edition by Joseph Sheridan Le Fanu
  • PDF Download Brother Brontë A Novel by Fernando A. Flores
  • PDF EPUB Download Validation How the Skill Set That Revolutionized Psychology Will Transform Your
  • Download Pdf Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by Julia
  • PDF EPUB Download Life Hacks for a Little Alien by Alice Franklin Full Book
  • The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid French Eddie Jone
  • Halfway to Hell by William W. Johnstone J. A. Johnstone on Audiobook New
  • PDF Download Toxic Productivity Reclaim Your Time and Emotional Energy in a World That Always Dema
  • pdf download How Life Works A Users Guide to the New Biology by Philip Ball
  • epub download Jurassic Park The Ultimate Visual History by James Mottram Sam Neill Laura Dern Jef
  • PDF Mr. Whisper A Thriller by Andrew Mayne
  • pdf download Now It All Makes Sense How An ADHD Diagnosis Brought Clarity To My Life by Alex Partrid
  • Pdf ePub Ishura Vol. 8 by Keiso Kureta David Musto download ebook
  • Read online Hijacking Bitcoin The Hidden History of BTC by Roger Ver Steve Patterson Jeffrey Tucke
  • Online Read Ebook Elfemies to Lovers by Jennifer Chipman
  • Online Read Ebook Maya Natasha A Novel by Elyse Durham
  • download pdf The Kitty-Catwalk by Melody Mews Ellen Stubbings
  • All Is Found A Frozen Anthology by Disney Books on Iphone New Format
  • epub download Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage
  • pdf download Beyond Anxiety Curiosity Creativity and Finding Your Lifes Purpose by Martha Beck
  • Online Read Ebook House of Huawei The Secret History of Chinas Most Powerful Company by Eva Dou
  • Sylvanas World of Warcraft by Christie Golden on Ipad
  • Download PDF Wilderness Hostage by Janice Kay Johnson
  • download pdf Moments at Home Interior Inspiration for Every Room by Steve Cordony
  • Pdf ePub Thucydides A Very Short Introduction by Jennifer T. Roberts download ebook
  • Download Pdf The Strange Case of Jane O. A Novel by Karen Thompson Walker
  • Read online Theres No Such Thing as an Easy Job by Kikuko Tsumura
  • Where the Wild Things Were Boyhood and Permissive Parenting in Postwar America by Henry Jenkins on I
  • PDF Kindle Every Fall by Angela Douglas
  • PDF EPUB Download Sharon Tate Recollection by Debra Tate Full Book
  • DOWNLOADS The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki Ya
  • To Catch a Spy The Art of Counterintelligence by James M. Olson on Ipad
  • Read Pdf A Little Sluggers Guide to the Unwritten Rules of Baseball and Life by Patrick Renna Tom
  • Read online The Stopover by T L Swan
  • Download PDF Killer Story The Truth Behind True Crime Television by Claire St. Amant
  • Read pdf The Great God Pan by Arthur Machen
  • 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 23:58:15
Previous
Read pdf The Great God Pan by Arthur Machen
Next
Add a new pet to the store
Built with