My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Ryan McGinley Yearbook by Ryan McGinley
  • PDF Kindle The Kew Book of Drawing Flora and Fauna 20 stunning step-by-step tutorials by Joy-Louise
  • PDF EPUB Download How to Build a Fashion Icon Notes on Confidence from the Worlds Only Image Archite
  • Read Pdf Rick Steves Belgium Bruges Brussels Antwerp Ghent by Rick Steves Gene Openshaw
  • Pdf ePub Platform Engineering A Guide for Technical Product and People Leaders by Camille Fournie
  • PDF Kindle How Not to Chaperone a Lady A Steamy Historical Romance Book by Virginia Heath
  • Download PDF Designing Better Maps A Guide for GIS Users by Cynthia A Brewer
  • DOWNLOADS The Holiday Visitor by Tara Taylor Quinn
  • PDF The Worst Journey in the World Volume 1 Making Our Easting Down The Graphic Novel by Sarah Air
  • DOWNLOADS A Time to Protect by Lois Richer
  • PDF DOWNLOAD Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Bar
  • DOWNLOADS The Slain Divine by David Dalglish
  • Online Read Ebook Threshold to Valley Forge The Six Days of the Gulph Mills Encampment by Sheilah D.
  • download pdf Dryfire Fundamental Shooting Techniques for Training at Home by Ben Stoeger Andreas Y
  • download pdf Treasure Coast A Crime Thriller by James Foley
  • Download Pdf Chez Bob by Bob Shea
  • Download PDF Nothing Serious A Novel by Emily J. Smith
  • download pdf The Rules in Practice 2025-2028 The guide to the rules of sailing around the racecours
  • PDF Download Torn by Carian Cole
  • PDF Download A Shadow in the Ember by Jennifer L. Armentrout
  • The Mistress The Renowned A Hades and Persephone Retelling by Alexis Rune Jeanette Rose on Audiobo
  • Download PDF Pathfinder Lost Omens Highhelm P2 by Dan Cascone Caryn DiMarco Dana Ebert Sen H.H.S.
  • Shangri-La Frontier 15 by Ryosuke Fuji Katarina on Ipad
  • download pdf Bloom of the Flower Dragon Dragon Masters 21 by Tracey West Graham Howells
  • A Chance to Heal by Vannetta Chapman Rebecca Kertz on Audiobook New
  • Pdf ePub Thats Not My Name by Megan Lally download ebook
  • PDF EPUB Download Imperfect Solidarities by Aruna DSouza Full Book
  • epub download Deep Resilience A four-step journey to unshakable inner strength by Melli OBrien
  • pdf download We Are Made of Stars A Novel by Rochelle B. Weinstein
  • DOWNLOAD PDF EPUB 2034 A Novel of the Next World War by Elliot Ackerman Admiral James Stavridis U
  • PDF Kindle The Parent Plan Part 2 by Paula Detmer Riggs
  • Read Pdf Marvel What If...Loki Was Worthy A Loki Valkyrie Story by Madeleine Roux
  • Geneva A Novel by Richard Armitage on Ipad
  • Download PDF Money Shot by Christa Faust
  • PDF Kindle Birth Canal by Dias Novita Wuri
  • PDF Kindle The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • PDF Kindle Mistletoe Daddy and The Cowboys Christmas Baby by Deb Kastner Carolyne Aarsen
  • PDF EPUB Download A Condition Called Love 10 by Megumi Morino Full Book
  • PDF DOWNLOAD Saxophone Colossus The Life and Music of Sonny Rollins by Aidan Levy on Iphone
  • PDF Kindle The Family Across the Street by Nicole Trope
  • Read online Dragon and Chameleon 02 by RYO ISHIYAMA
  • Online Read Ebook KinnPorsche Novel Vol. 1 by Daemi Avaritia Billy Balibally Tamtam
  • PDF EPUB Download Last Stand of the Stone Fist A Songs of Chaos Novella by Michael R. Miller Full
  • PDF EPUB Download Disturbing the Dead A Rip Through Time Novel by Kelley Armstrong Full Book
  • PDF Kindle Casualties of Truth by Lauren Francis-Sharma
  • Download PDF Magus of the Library 7 by Mitsu Izumi
  • PDF EPUB Download The Books of Clash Volume 3 Legendary Legends of Legendarious Achievery by Gene Lu
  • Read Pdf Slow Productivity The Lost Art of Accomplishment Without Burnout by Cal Newport
  • Read pdf Romancing the Schoolteacher by Mary Davis
  • Read online Pagan America The Decline of Christianity and the Dark Age to Come by John Daniel Davids
  • 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-08 23:13:15
Previous
Read online Pagan America The Decline of Christianity and the Dark Age to Come by John Daniel Davids
Next
Add a new pet to the store
Built with