My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Im a Fan A Novel by Sheena Patel download ebook
  • PDF EPUB Download A Proposal Worth Millions by Sophie Pembroke Full Book
  • Download Pdf A Witchs Guide to Fetch Work Rituals Spells Practices by Blake Malliway
  • PDF Kindle Shangri-La Frontier 15 by Ryosuke Fuji Katarina
  • PDF EPUB Download The Official Agatha Christie Puzzle Book Put your detective skills to the ultima
  • Captive on the High Seas by Christina Rich on Ipad
  • Read online Get Scalable The Operating System Your Business Needs To Run and Scale Without You by Ry
  • Charles Dowdings Skills For Growing Sowing Spacing Planting Picking Watering and More by on Iph
  • Read online Margos Got Money Troubles Margo tiene problemas de dinero Spanish edition A Novel by Ru
  • DOWNLOADS The Lede Dispatches from a Life in the Press by Calvin Trillin
  • PDF DOWNLOAD The Natural Soapmaking Handbook Easy Recipes and Techniques for Beautiful Soaps from
  • PDF AI First Human Always Embracing a New Mindset for the Era of Superintelligence by Sandy Carter
  • epub download Angels Inferno by William Hjortsberg
  • PDF DOWNLOAD The First Night with the Duke Volume 6 by Hwang DoTol Teava MSG on Iphone
  • DOWNLOADS Blue Lock Volume 17 by Muneyuki Kaneshiro Yusuke Nomura
  • PDF Download Swordheart by T. Kingfisher
  • You Have Not Yet Heard Your Favourite Song How Streaming Changes Music by Glenn McDonald on Iphone N
  • Father Joseph Fessio S.J. California Blackrobe by Cornelius Michael Buckley S.J. on Iphone New Form
  • Online Read Ebook Everything I Need to Know I Learned from RPGs A players handbook for the game of l
  • Read online Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • The Art of Dragon Age The Veilguard Deluxe Edition by Bioware on Iphone New Format
  • Pdf ePub How to Make a Few Billion Dollars by Brad Jacobs download ebook
  • PDF Download The Boyhood of Cain by Michael Amherst
  • Thundercats Vol. 2 Roar by Declan Shalvey Drew Moss on Iphone New Format
  • Pdf ePub Data Mesh Delivering Data-Driven Value at Scale by download ebook
  • PDF EPUB Download The Disney Villains Cookbook by Disney Books Full Book
  • Read online Lonely Planet Pocket Bilbao San Sebastian by Isabel Albiston
  • PDF EPUB Download Kingmakers Graduation Deluxe Edition by Sophie Lark Full Book
  • PDF EPUB Download Is She Really Going Out with Him by Sophie Cousens Full Book
  • Online Read Ebook Robert Kuok A Memoir by Andrew Tanzer
  • Pdf ePub The Demons Bargain by Katee Robert download ebook
  • Read pdf Witch Life in a Micro Room Vol. 4 by Akitaka Abby Lehrke
  • DOWNLOAD PDF EPUB The Four Steps by Cam Locke
  • PDF Kindle Midnight Black by Mark Greaney
  • DOWNLOAD PDF EPUB His Best Friends Girl by Christine Rimmer
  • DOWNLOADS The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • Online Read Ebook The Girl Most Likely To A Novel by Julie Tieu
  • Max Greenes Big Dream by Casey Hutchison on Audiobook New
  • DOWNLOADS Murder in an Irish Garden by Carlene OConnor
  • Download PDF Preserving the Japanese Way Traditions of Salting Fermenting and Pickling for the Mod
  • Read online The Story of Disney 100 Years of Wonder by John Baxter Bruce Steele Staff of the Walt
  • download pdf The Whole Time by Catherine Bybee
  • PDF The Full Catastrophe All I Ever Wanted Everything I Feared by Casey Mulligan Walsh
  • Pdf ePub The Art of Dragon Age The Veilguard Deluxe Edition by Bioware download ebook
  • Online Read Ebook Steven Weinberg A Life in Physics by Steven Weinberg
  • PDF Eternal Night of Lockwood Adventure for ZWEIHANDER RPG by James Introcaso Daniel D. Fox Dejan
  • PDF Download ROLL OVER AND DIE I Will Fight for an Ordinary Life with My Love and Cursed Sword Man
  • A Childs War by Patrick Walsh Prithvi Singh on Audiobook New
  • Pdf ePub Unraveling Your Relationship with Money Ditch Your Money Trauma So You Can Live an Abundan
  • Online Read Ebook Let This Grieving Soul Retire Volume 6 Light Novel by Tsukikage Chyko Grant U
  • 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 21:27:40
Previous
Online Read Ebook Let This Grieving Soul Retire Volume 6 Light Novel by Tsukikage Chyko Grant U
Next
Add a new pet to the store
Built with