My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf The Battle for Kyiv The Fight for Ukraines Capital by Christopher A Lawrence
  • Read Pdf Sable Peak by Devney Perry
  • Read pdf Lets Buy the Land and Cultivate It in a Different World Manga Vol. 7 by Rokujuuyon Okazaw
  • pdf download Shungite Protection Healing and Detoxification by Regina Martino
  • PDF EPUB Download Basics of Biblical Hebrew Grammar Third Edition by Gary D. Pratico Miles V. Van
  • Download PDF Franz Kafka The Drawings by Andreas Kilcher Pavel Schmidt Judith Butler Kurt Beals
  • The Traitor by Anthony Ryan on Iphone New Format
  • PDF EPUB Download Better Than Nonna Modernised Italian Recipes by Danilo Cortellini Full Book
  • Download Pdf More than a Married Couple but Not Lovers Volume 2 by Yuki Kanamaru
  • PDF Portfolio by Mark Schultz
  • PDF Download USMLE Step 2 CK Lecture Notes 2024-2025 5-Book Clinical Review by Kaplan Medical
  • DOWNLOAD PDF EPUB The Lumberjacks Bride by Jean Kincaid
  • Download Pdf LankyBox Epic Adventure by Lankybox Alex Lopez
  • PDF Kindle Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda Stewart
  • PDF The Housemaid by Freida McFadden
  • Winning Over the Wrangler Falling for the Rancher Father by Linda Ford on Ipad
  • PDF EPUB Download Missing Person Alice The Finder Mysteries by Simon Mason Full Book
  • DOWNLOAD PDF EPUB The Matchmakers Match by Jessica Nelson
  • Download PDF The Party Line by Carolyn Brown
  • epub download X-MEN HEIR OF APOCALYPSE by Steve Foxe Netho Diaz Ron Lim
  • Musashi An Epic Novel of the Samurai Era by Eiji Yoshikawa Charles Terry on Iphone New Format
  • Download PDF The Gift of a Child by Laura Abbot
  • Download Pdf No Rest for the Wicked by Kresley Cole
  • Read online Fairy Tale Tarot by Lisa Hunt
  • Kent State Four Dead in Ohio by Derf Backderf on Ipad
  • Download Pdf Silent Protector by Barbara Phinney
  • Poor Things Movie Tie-in A Novel by Alasdair Gray on Iphone New Format
  • PDF Download A Map to the Door of No Return Notes to Belonging by Dionne Brand Saidiya Hartman
  • Pdf ePub Zegaajimo Indigenous Horror Fiction by Kateri Akiwenzie-Damm Nathan Adler download ebook
  • Download PDF Fall of Ruin and Wrath by Jennifer L. Armentrout
  • Read Pdf Las dos amigas Un recitativo INÉDITO Recitatif by Toni Morrison
  • Family of Her Dreams by Keli Gwyn on Ipad
  • PDF EPUB Download A Short History of Trans Misogyny by Jules Gill-Peterson Full Book
  • Read online Shakespeares First Folio All The Plays A Childrens Edition Special Limited Edition by Wi
  • download pdf The Skull Throne Book Four of The Demon Cycle by Peter V. Brett
  • 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-10 02:03:10
Previous
download pdf The Skull Throne Book Four of The Demon Cycle by Peter V. Brett
Next
Add a new pet to the store
Built with