My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Paranoia The Most Beloved Family in Crime Fiction by James Patterson James O. Born on Audiobook New
  • PDF Download The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • Intertwined From Insects to Icebergs by Michael Gross on Ipad
  • PDF EPUB Download Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson
  • pdf download Checkmate Vol. 1 by TAN
  • Online Read Ebook The Dawn of Yangchen Avatar The Last Airbender Chronicles of the Avatar Book 3 by
  • Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti on Audiobook New
  • Musashi An Epic Novel of the Samurai Era by Eiji Yoshikawa Charles Terry on Audiobook New
  • PDF Download Minecraft Mobspotters Encyclopedia The Ultimate Guide to the Mobs of Minecraft by Moj
  • PDF My Midlife Magic Daze by Jennifer L. Hart
  • PDF DOWNLOAD The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle on Iphon
  • Download PDF A Promise of Peridot by Kate Golden
  • Pdf ePub I Cross-Dressed for the IRL Meetup 3 by Kurano download ebook
  • PDF EPUB Download A Fly on the Wall by Kalman Stein Full Book
  • Relinquished Realms by Joaquïn Baldwin on Audiobook New
  • DOWNLOADS Disney Twisted-Wonderland The Official Art Book by Square Enix
  • Kill Switch Devils Night 3 by Penelope Douglas on Audiobook New
  • The Girl Most Likely To A Novel by Julie Tieu on Ipad
  • DOWNLOADS A Slash of Emerald by Patrice McDonough
  • Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki on Audiobook New
  • Read online Draw Like a Mangaka The Complete Beginners Guide to Learning to Draw Manga by Marcel Kuh
  • Pdf ePub Cher Part One The Memoir by Cher download ebook
  • PDF EPUB Download The Ballad of Songbirds and Snakes by Suzanne Collins Full Book
  • Download Pdf Star-Spangled Jesus Leaving Christian Nationalism and Finding A True Faith by April Ajo
  • PDF Download Lonely Planet Greece 16 by Alexis Averbuck Rebecca Hall Paula Hardy Helen Iatrou
  • DOWNLOADS The Wager A Tale of Shipwreck Mutiny and Murder 2023 BN Author of the Year by David Grann
  • Read pdf Harry Potter Watercolor Magic 32 Step-by-Step Enchanting Projects Harry Potter Crafts Gi
  • Download PDF La vida breve Edición conmemorativa de la RAE y la ASALE A Brief Life by Juan Carlos
  • Pdf ePub Sharing Body Heat by Lexie Davis download ebook
  • Download Pdf Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis D.C.
  • PDF EPUB Download Oddballs The Graphic Novel by James Rallison Ethan Banville Full Book
  • PDF When Rivers Dance Like Promises Book 1 - 2nd Edition by Nekesa Sepiwe
  • When God Speaks by Hunter Leonard William Meany on Audiobook New
  • PDF Kindle David Buschs Sony Alpha a6700 ILCE-6700 Guide to Digital Photography by David D. Busch
  • Download Pdf Early Bird by Karen Winters Schwartz
  • PDF Trono de monstruos The Throne of Broken Gods by Amber V. Nicole
  • PDF EPUB Download Who Am I Psychological Exercises to Develop Self-understanding by The School of Li
  • 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-13 02:48:20
Previous
PDF EPUB Download Who Am I Psychological Exercises to Develop Self-understanding by The School of Li
Next
Add a new pet to the store
Built with