My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Oddballs The Graphic Novel by James Rallison Ethan Banville
  • Pdf ePub Give Me Liberty A Revised History of the American Revolution by Gilbert Shelton Ted Richa
  • Pdf ePub Unhumans The Secret History of Communist Revolutions and How to Crush Them by Jack Posobie
  • PDF Download Character Design Quarterly 8 by 3dtotal Publishing
  • Download Pdf Midnights by Greig Beck
  • epub download Despite the Best Intentions How Racial Inequality Thrives in Good Schools 2nd Edition
  • DOWNLOADS The War on Men Why Society Hates Them and Why We Need Them by Owen Strachan
  • PDF EPUB Download My Hero Academia Vol. 40 by Kohei Horikoshi Full Book
  • Princeton Review TOEFL iBT Prep with Audio Listening Tracks 2022 Practice Test Audio Strategies
  • Pdf ePub What If Jesus Was Serious about Justice A Visual Guide to the Good News of Gods Judgment a
  • PDF Download Life in Three Dimensions How Curiosity Exploration and Experience Make a Fuller Be
  • pdf download Mastering Palo Alto Networks - Second Edition Secure your infrastructure and apply best
  • epub download The Art of Octopath Traveler 2016-2020 by Square Enix NAOKI NAOKI
  • Pdf ePub Reversing Alzheimers The New Toolkit to Improve Cognition and Protect Brain Health by Heat
  • Pdf ePub Lets Go Home Baby Puppy by Carolina Buzio download ebook
  • pdf download Glow of the Everflame A Novel by Penn Cole
  • PDF DOWNLOAD After Lives On Biography and the Mysteries of the Human Heart by Megan Marshall on Ip
  • PDF EPUB Download The Red Badge of Courage Collectors Edition Laminated Hardback with Jacket An Ep
  • Our Migrant Souls A Meditation on Race and the Meanings and Myths of by Héctor Tobar on Ipad
  • DOWNLOAD PDF EPUB The Courage Gap 5 Steps to Braver Action by Margie Warrell PhD
  • PDF DOWNLOAD Birthday Girl by Penelope Douglas on Iphone
  • Read Pdf Under the Same Stars by Libba Bray
  • epub download DOCTOR WHO MONSTROUS BEAUTY TP by Jacqueline Rayner Scott Gray Dan Abnett Gareth Ro
  • Online Read Ebook DK Top 10 Marrakech by DK Travel
  • Pdf ePub The Letters I Will Never Send poems to read to write and to share by Isabella Dorta down
  • PDF Download La muerte contada por un sapiens a un neandertal Death as Told by a Sapiens to a Ne
  • Read Pdf The Giza Death Star Revisited An Updated Revision of the Weapon Hypothesis of the Great P
  • Dark Harvest by Orna OReilly on Audiobook New
  • DOWNLOAD PDF EPUB A Load of Old Balls The QI History of Sport by James Harkin Anna Ptaszynski
  • Critical Role The Chronicles of Exandria The Mighty Nein by Critical Role Taliesin Jaffe Matthew M
  • pdf download Out of Circulation A Village Library Mystery 11 by Elizabeth Spann Craig
  • Download Pdf Quien bien te quiere te hará feliz El método revolucionario que transformará tu relació
  • PDF Download BLADE VOL. 1 MOTHER OF EVIL by Bryan Hill Elena Casagrande Valentina Pinti
  • PDF EPUB Download The Stopover by T L Swan Full Book
  • DOWNLOAD PDF EPUB KinnPorsche Novel Vol. 2 by Daemi Avaritia Billy Balibally
  • download pdf Intarsia Knits 12 Colourful Knitwear Designs to Make Your Own by Anna Husemann
  • Read Pdf Fat Loss Habits The No Bullsht Guide to Losing Weight by Ben Carpenter
  • Download PDF My Dear Detective Mitsukos Case Files Vol. 2 by Natsumi Ito
  • Pdf ePub Static Shadows of Dakota by Evan Narcisse Vita Ayala Charles Iii Stewart Nikolas Draper
  • Online Read Ebook When Dawn Rises by Jalen Noel
  • DOWNLOAD PDF EPUB Encanto Nightmares and Sueños by Alex Segura
  • PDF DOWNLOAD The Golden Enclaves A Novel by Naomi Novik on Iphone
  • PDF Kindle Nocturnes for the King of Naples by Edmund White Garth Greenwell
  • Mr. X A Novel by Peter Straub on Audiobook New
  • PDF Kindle Viewer Discretion Advised 2 Forbidden Desires by Yuuki Iwasaki
  • Pdf ePub Summer Gets to Work American Girl Girl of the Year 2025 by Clare Hutton Maike Plenzke dow
  • PDF Download Graph Algorithms the Fun Way Powerful Algorithms Decoded Not Oversimplified by Jerem
  • DOWNLOAD PDF EPUB 1984 75th Anniversary by George Orwell Dolen Perkins-Valdez Sandra Newman
  • PDF Kindle Saving the Magic Kingdom A Novel by Jeff Dixon
  • PDF DOWNLOAD The Bell Jar by Sylvia Plath on Iphone
  • 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-04 21:34:20
Previous
PDF DOWNLOAD The Bell Jar by Sylvia Plath on Iphone
Next
Add a new pet to the store
Built with