My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook Modern Libertarianism A Brief History of Classical Liberalism in the United States
  • Pdf ePub Bonds of Hercules by Jasmine Mas download ebook
  • PDF Kindle A Pickle for the Knowing Ones by Timothy Dexter
  • PDF Download Black Lagoon Vol. 13 by Rei Hiroe
  • Read pdf Liliths Cave Jewish Tales of the Supernatural by Howard Schwartz
  • PDF Be More Moo Deng The Unofficial Coloring Book by DK
  • Read Pdf Desde aquí a lo desconocido Memorias by Lisa Marie Presley Riley Keough M del Puerto Ba
  • PDF EPUB Download Firefly Planisphere Latitude 42 Degrees North by Robin Scagell Full Book
  • Building Modern CLI Applications in Go Develop next-level CLIs to improve user experience increase
  • PDF DOWNLOAD The Way I Used to Be Paperback Collection Boxed Set The Way I Used to Be The Way I Am
  • Pdf ePub Jane Austens Bookshelf A Rare Book Collectors Quest to Find the Women Writers Who Shaped a
  • Online Read Ebook Crush A Novel by Ada Calhoun
  • The Legend of Korra An Avatars Chronicle by Andrea Robinson Sora Medina on Ipad
  • Pdf ePub The Otherwhere Post by Emily J. Taylor download ebook
  • PDF Download Dangerous Amish Memories by Diane Burke Debby Giusti
  • pdf download Toiveiden lapset by Danielle Steel Kaisa Luntinen
  • Read online Play of Shadows by Sebastien de Castell
  • Super Beast 96 by Lawler on Ipad
  • PDF EPUB Download Im a Fan A Novel by Sheena Patel Full Book
  • Download PDF The Crimson Crown by Heather Walter
  • Marvel Comics For Dummies by Troy Brownfield on Iphone New Format
  • PDF Download Moving Targets by Lynn Shannon Heather Woodhaven
  • Read pdf Graphic Design For Everyone Understand the Building Blocks so You can Do It Yourself by C
  • PDF Download The Broposal by Sonora Reyes
  • PDF EPUB Download Horror Tarot Deck and Guidebook by Aria Gmitter Abigail Larson Minerva Siegel
  • DOWNLOADS Bromantic Puckboy by Eden Finley Saxon James
  • Download PDF Grokking Algorithms Second Edition by Aditya Y Bhargava
  • PDF Three Bags Full by Leonie Swann Anthea Bell A. J. Finn
  • pdf download Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru
  • epub download Pathfinder RPG Guns Gears Remastered Special Edition P2 by Michael Sayre Mark Seifte
  • PDF EPUB Download Treasure Coast A Crime Thriller by James Foley Full Book
  • PDF EPUB Download Twisted Ink A Why Choose Romance by A. M. Mccoy Full Book
  • Over The Limit by K. Bromberg on Iphone New Format
  • Pride and Prejudice by Jane Austen on Ipad
  • epub download Not Sure Who Needs to Hear This But . . . 100 Postcards with Beautiful Reminders for
  • PDF Download Out of the Cocoon The Journey to Becoming by Rosemary Esehagu
  • DOWNLOADS The Triathletes Training Bible The Worlds Most Comprehensive Training Guide 5th Edition b
  • 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-16 01:17:25
Previous
DOWNLOADS The Triathletes Training Bible The Worlds Most Comprehensive Training Guide 5th Edition b
Next
Add a new pet to the store
Built with