My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Say Youll Remember Me by Abby Jimenez on Ipad
  • DOWNLOAD PDF EPUB La cabeza de mi padre My Fathers Head by Alma Delia Murillo
  • PDF EPUB Download Lincolns Last Card The Emancipation Proclamation as a Case of Command by Richard J
  • PDF Download Oathbound by Tracy Deonn
  • PDF Margaret Fuller Collected Writings LOA 388 by Margaret Fuller Noelle A. Baker Megan Marshall
  • Online Read Ebook The Perfect Mismatch A Novel by Debbie Macomber
  • download pdf OZ A Fantasy Role-Playing Setting by Andrew Kolb
  • PDF Kindle Billionaires Bargain by Maureen Child
  • Download PDF Rigor Unveiled A Video-Enhanced Flipbook to Promote Teacher Expertise in Relationship B
  • PDF Kindle What You Make of Me A Novel by Sophie Madeline Dess
  • Read online Shelterwood by Lisa Wingate
  • Ians Ultimate Gamble An African American Romance by Brenda Jackson on Iphone New Format
  • DOWNLOAD PDF EPUB SECRET WARS BATTLEWORLD OMNIBUS VOL. 1 JIM CHEUNG COVER by Marvel Various
  • Ill Have What Shes Having by Chelsea Handler on Ipad
  • A Childs Geography of the World by V M Hillyer on Iphone New Format
  • download pdf The New Romantic Garden by Jo Thompson
  • download pdf Basics of Biblical Hebrew Grammar Third Edition by Gary D. Pratico Miles V. Van Pelt
  • Holding The Reins by Paisley Hope on Iphone New Format
  • PDF Download Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School
  • pdf download Miriams Sisters Deborahs Daughters When women lead the way by Liz Crumlish
  • Online Read Ebook Helgoland Making Sense of the Quantum Revolution by Carlo Rovelli Erica Segre Si
  • Everyday Magic Rituals Spells Potions to Live Your Best Life by Semra Haksever Nes Vuckovic on Ip
  • PDF Old Gods New Enigmas Marxs Lost Theory by Mike Davis
  • PDF EPUB Download Status Royale Vol. 2 by Ru Xu Full Book
  • Online Read Ebook Missing Baby Doe by B. J. Daniels
  • DOWNLOAD PDF EPUB Love Letters from the Trail by Tif Marcelo
  • PDF Opening Repertoire The Ruy Lopez by Joshua Doknjas
  • Shes Just Like Me by Jamika Banks on Iphone New Format
  • PDF DOWNLOAD Gudetama The Official Cookbook Recipes for Living a Lazy Life by Sanrio Jenn Fujikaw
  • Pdf ePub The Peacemaker by Wanda E. Brunstetter download ebook
  • The Lost Passenger A Novel by Frances Quinn on Audiobook New
  • Online Read Ebook Shiver by Maggie Stiefvater
  • PDF EPUB Download A Time to Protect by Lois Richer Full Book
  • PDF EPUB Download Carmilla French edition by Joseph Sheridan Le Fanu Full Book
  • pdf download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • download pdf Star Wars Bestiary Vol. 1 Creatures of the Galaxy by S.T. Bende Iris Compiet
  • PDF EPUB Download The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the K
  • PDF EPUB Download The Gay Affair by Swain Full Book
  • download pdf Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos tie
  • download pdf The Librarians of Lisbon A WWII Story of Love and Espionage by Suzanne Nelson
  • PDF Kindle The Wok Recipes and Techniques by J. Kenji Lopez-Alt
  • DOWNLOADS AI 2041 Ten Visions for Our Future by Kai-Fu Lee Chen Qiufan
  • Read pdf Winnie-the-Pooh The Complete Collection of Stories and Poems Winnie-the-Pooh - Classic Ed
  • Rescue Tails On Precarious Peaks by StacyPlays on Ipad
  • DOWNLOADS After-Hours Proposal by Trish Morey
  • Read pdf DC Finest Supergirl The Girl of Steel by Otto Binder Jerry Siegel Jim Mooney
  • epub download Death Valley Summer by Brandon Wallace
  • The King Of The South 2 by Blake Karrington on Ipad
  • PDF DOWNLOAD One Day in October by Yair Agmon Oriya Mevorach on Iphone
  • epub download Structure and Synthesis The Anatomy of Practice by
  • 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-10 01:43:46
Previous
epub download Structure and Synthesis The Anatomy of Practice by
Next
Add a new pet to the store
Built with