My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook The Parasitic Mind How Infectious Ideas Are Killing Common Sense by Gad Saad
  • Nakamura-san the Uninvited Gyaru Vol. 2 by Sachiko Orihara on Ipad
  • Download PDF Jojo vs. Middle School by Joy McCullough Veeda Bybee
  • Online Read Ebook The Apocalypse of the Birds 1 Enoch and the Jewish Revolt against Rome by Elena L
  • PDF Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • Pdf ePub Chip War The Fight for the Worlds Most Critical Technology by Chris Miller download ebook
  • DOWNLOADS Arctic Wild A Spicy Gay Age Gap Romance by Annabeth Albert
  • PDF Kindle Everything I Need to Know I Learned from RPGs A players handbook for the game of life by
  • PDF EPUB Download The Exiles Cookbook Medieval Gastronomic Treasures from al-Andalus and North Afr
  • pdf download The Echoes A Novel by Evie Wyld
  • Read online Looking for You A Novel by Alexander McCall Smith
  • DOWNLOAD PDF EPUB The Narrative Brain The Stories Our Neurons Tell by Fritz Alwin Breithaupt Ph.D.
  • Download PDF DD Monster Manual 2024 by Wizards of the Coast
  • Read online Sins Poison of the Heart by Haifaa Younis
  • PDF She Gets the Girl by Rachael Lippincott Alyson Derrick
  • People Pleaser Breaking Free from the Burden of Imaginary Expectations by Jinger Vuolo Julie Lyles
  • Download PDF First Aid for the USMLE Step 1 2025 by Connie Qiu Anup Chalise Panagiotis Kaparalioti
  • Whos Afraid of Gender by Judith Butler on Iphone New Format
  • Old Gods New Enigmas Marxs Lost Theory by Mike Davis on Iphone New Format
  • Read pdf Queen Charlotte Before the Bridgertons came the love story that changed the ton... by Jul
  • PDF EPUB Download Violeta Spanish Edition by Isabel Allende Full Book
  • PDF EPUB Download Follow the River by CE Ricci Full Book
  • PDF DOWNLOAD Soiled Dove by April Timms on Iphone
  • Read online Tegan and Sara Junior High by Tegan Quin Sara Quin Tillie Walden
  • Read Pdf Eros at Nadir by Mike Resnick
  • PDF Download Seasparrow by Kristin Cashore
  • DOWNLOADS None of the Answers Racing Through Life in Reverse by Jeff Swaney
  • pdf download Hacia cero Novela policiaca y de misterio Towards Zero A Mystery and Detective Novel
  • The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newport on Ipad
  • Pdf ePub USN PT Boat vs IJN Destroyer Tokyo Express 1942-43 by Mark Stille Edouard A. Groult downl
  • Download PDF The Notorious Scarlett and Browne by Jonathan Stroud
  • Download PDF Fiancée No More The Forsaken Lady the Prince and Their Make-Believe Love Volume 3 by
  • Online Read Ebook Tilda Is Visible A Novel by Jane Tara
  • Lost Oracle by Fiona Horne Veronica Collins on Audiobook New
  • DOWNLOADS The Broken Whistle A Deep State Run Amok by Pedro Israel Orta
  • pdf download Rick Steins Simple Suppers by Rick Stein
  • PDF EPUB Download Superhabits The Universal System for a Successful Life by Andrew V. Abela Full Boo
  • Download Pdf Squirrel Girl Universe A Marvel Heroines Novel by Tristan Palmgren
  • The Peasant King by Tessa Afshar on Ipad
  • Download Pdf La Vie de Guinevere by Paula Lafferty
  • PDF Drawing People 100 Prompts Projects and Playful Exercises by Viktorija Semjonova
  • Read pdf Chokepoints American Power in the Age of Economic Warfare by Edward Fishman
  • pdf download Klara and the Sun by Kazuo Ishiguro
  • Pdf ePub Countering Chinas Great Game A Strategy for American Dominance by Michael Scott Sobolik do
  • Untouchable by Mike Lawson on Audiobook New
  • DOWNLOADS Hearing The Call by Nekesa Sepiwe
  • PDF EPUB Download Return of the Forbidden Tycoon by Penny Jordan Full Book
  • Gut Check Unleash the Power of Your Microbiome to Reverse Disease and Transform Your Mental Physica
  • DOWNLOADS The Otherwhere Post by Emily J. Taylor
  • Read Pdf The Counting House by Gary Sernovitz
  • 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-12 00:33:01
Previous
Read Pdf The Counting House by Gary Sernovitz
Next
Add a new pet to the store
Built with