My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf The Art of Lies of P by NEOWIZ ROUND8 Studio
  • Magical Love A Romantasy Coloring Book Ethereal Romantic Fantasy Scenes to Color by Echo Chernik on
  • Pdf ePub Blood on Satans Claw or The Devils Skin by Robert Wynne-Simmons Richard Wells download e
  • epub download Word Search Challenge 100 Puzzles to do anywhere anytime by Roland Hall
  • Read Pdf Surrounded by Liars How to Stop Half-Truths Deception and Gaslighting from Ruining Your
  • Read Pdf Might as Well Cheat I Got Transported to Another World Where I Can Live My Wildest Dreams
  • PDF EPUB Download Alice in Borderland Vol. 1 by Haro Aso Full Book
  • El barco de los muertos Magnus Chase y los dioses de Asgard 3 by Rick Riordan on Ipad
  • Read pdf Swamp Thing by Mark Millar and Phil Hester Omnibus by Mark Millar Phil Hester
  • PDF EPUB Download The Trial A New Translation Based on the Restored Text by Franz Kafka Idris Par
  • DOWNLOAD PDF EPUB Brave Buzzy Bee by Rima Fakih Slaiby Theresa AlHayek Angela Li
  • Pride and Prejudice in Space by Alexis Lampley on Audiobook New
  • Never Enough From Barista to Billionaire by Andrew Wilkinson on Iphone New Format
  • pdf download The Penguin Vol 2 All Bad Things by Tom King Rafael De Latorre
  • Pdf ePub Death Valley Summer by Brandon Wallace download ebook
  • PDF Brian by Jeremy Cooper
  • PDF Kindle Animal Crossing by Kelsey Lewin
  • Read Pdf Murdle Jr. Curious Crimes for Curious Minds Solve Your Way Through 40 Puzzle Mysteries by
  • download pdf Powerless by Lauren Roberts
  • Quan Tao by Ryan Buchanan on Iphone New Format
  • All Fours by Miranda July on Ipad
  • The Villainess Turns the Hourglass Vol. 6 by Antstudio on Audiobook New
  • PDF EPUB Download Chastity and the Soul You Are Holy Ground by Ronald Rolheiser Full Book
  • Online Read Ebook The Mighty Red A Novel by Louise Erdrich
  • PDF The Real Madrid Revolution How the Worlds Most Successful Club Is Changing the Game-for Their T
  • PDF EPUB Download That Time I Got Reincarnated as a Slime Volume 20 manga by Fuse Taiki Kawakami
  • epub download Original Sins The Miseducation of Black and Native Children and the Construction of Am
  • download pdf Checkmate Vol. 1 by TAN
  • PDF Kindle Accidental Fiancee by Mary Moore
  • epub download What to Do When You Feel Broken How to Let Go of Negative Patterns Heal Your Relation
  • pdf download So You Want To Be A Game Master Everything You Need to Start Your Tabletop Adventure fo
  • Smithsonian Passport by Smithsonian Institution on Audiobook New
  • Read online Who Owns This Sentence A History of Copyrights and Wrongs by David Bellos Alexandre Mon
  • Pdf ePub Santa Barbara At Home in Paradise by Douglas Woods Matt Walla Marc Appleton M. Brian Ti
  • Read online A Promise for His Daughter by Danielle Thorne
  • PDF EPUB Download Re-Living My Life with a Boyfriend Who Doesnt Remember Me Manga Vol. 1 by Eiko Mut
  • PDF EPUB Download Star Wars The Rise and Fall of the Galactic Empire by Chris Kempshall Full Book
  • Read online The Art of Apex Legends by
  • Online Read Ebook Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • Pdf ePub Curiosity The Story of a Mars Rover by Markus Motum download ebook
  • PDF DOWNLOAD Presidents at War How World War II Shaped a Generation of Presidents from Eisenhower
  • pdf download I Am Money by Julia Cook Garrett Gunderson Josh Cleland
  • PDF DOWNLOAD Living Design The Writings of Clara Porset by Clara Porset Zoë Ryan Valentina Sarmi
  • DOWNLOAD PDF EPUB Nada de esto es verdad None of This Is True by Lisa Jewell
  • Read online Digital Painting Made Simple Create Captivating Portraits in Clip Studio Paint Procreat
  • PDF Kindle Song of the Sea The Graphic Novel by Tomm Moore Samuel Sattin
  • Read online The Pale Flesh of Wood A Novel by Elizabeth A. Tucker
  • Read Pdf The Winter Soldier Cold Front by Mackenzi Lee
  • DOWNLOAD PDF EPUB Jungle Juice Vol. 6 by Hyeong Hyeong Eun JUDER AH Cho
  • pdf download A fúria by Alex Michaelides Adriano Scandolara
  • 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-15 08:22:05
Previous
pdf download A fúria by Alex Michaelides Adriano Scandolara
Next
Add a new pet to the store
Built with