My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Flower Color Theory by Darroch Putnam Michael Putnam
  • The Dryad Storm by Laurie Forest on Iphone New Format
  • epub download The Five Phases of Mixing by Jermaine sound. Wav Evans
  • PDF Kindle The YouTube Formula How Anyone Can Unlock the Algorithm to Drive Views Build an Audienc
  • Download PDF The Favorites A Novel by Layne Fargo
  • The Dangers in My Heart Vol. 10 by Norio Sakurai on Audiobook New
  • PDF EPUB Download Relentless Mercy A Sermonic Commentary on Jonah by John M Burris Full Book
  • Pdf ePub George Yeo Musings - Series One by George Yong-boon Yeo Tai Ho Woon download ebook
  • Online Read Ebook Chronosis by Reza Negarestani Keith Tilford
  • PDF EPUB Download No One Rides For Free Absolute Chaos by Judith Sonnet Otis Bateman Danielle Ye
  • pdf download Sticker Jigsaw The Wonderful Wizard of Oz by L. Frank Baum Odd Dot Dinara Mirtalipova
  • Pdf ePub AP Calculus Premium 2025 Prep Book with 12 Practice Tests Comprehensive Review Online P
  • pdf download Lonely Castle in the Mirror Manga Vol. 5 by Mizuki Tsujimura Tomo Taketomi
  • Out On a Limb by Karen M Henderson on Iphone New Format
  • epub download House of Crimson Curses A Steamy Vampire Fantasy Romance by Ruby Roe
  • DOWNLOAD PDF EPUB Yuletide Hearts and Reunited at Christmas by Ruth Logan Herne Belle Calhoune
  • Read pdf Un café en el fin del mundo by John Strelecky
  • Read online Karahan Tepe Civilization of the Anunnaki and the Cosmic Origins of the Serpent of Eden
  • pdf download My Inconvenient Duke A Difficult Dukes Novel by Loretta Chase
  • PDF Download Made for More by Chloe Ito Ward Gael Abary
  • La vegetariana The Vegetarian by Han Kang on Audiobook New
  • PDF EPUB Download Battle Angel Alita Mars Chronicle Volume 10 by Yukito Kishiro Full Book
  • DOWNLOADS Omniscient Readers Viewpoint Vol. 2 by Sleepy-C UMI Hye Young Im J. Torres
  • Pdf ePub The Girl Most Likely To A Novel by Julie Tieu download ebook
  • Online Read Ebook I Know Silly A book about feeling silly shy and embarrassed by Lindsay N. Giroux
  • Ill Have What Shes Having by Chelsea Handler on Iphone New Format
  • epub download Ali.the Well-Guarded Secret Figures of the First Master in Shii Spirituality by Mohamm
  • PDF Download Titans Vol. 2 The Dark-Winged Queen by Tom Taylor Lucas Meyer
  • Read Pdf Mobile Suit Gundam Thunderbolt Vol. 20 by Yasuo Ohtagaki Hajime Yatate Yoshiyuki Tomin
  • The Girl I Like Forgot Her Glasses 08 by Koume Fujichika on Audiobook New
  • PDF Download Greenteeth by Molly ONeill
  • Download PDF Nothing to Hide 2. Young Men from Slovakia by Phil Dlab
  • 100 Cups of Joy With Our Heavenly Father Learning How To Have Emmanuel Moments Each Day by Shannon M
  • Read pdf Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • Download PDF Birthday Party Demon by Wendy Dalrymple
  • 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
Previous
Download PDF Birthday Party Demon by Wendy Dalrymple
Next
Add a new pet to the store
Built with