My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Strength and Valor by Mary Ellen Porter Becky Avella
  • PDF EPUB Download A Side Dish of Death by T. C. Lotempio Full Book
  • Read pdf Behind You by Mike Omer
  • PDF EPUB Download TSF Monogatari by Shindo L Full Book
  • PDF Kindle More or Less Maddy A Novel by Lisa Genova
  • Read online Últimos días en Berlín Novela histórica Last Days in Berlin A Historical Novel by Palo
  • Online Read Ebook Nuclear War A Scenario by Annie Jacobsen
  • Read online The Art of Mixology Mocktails by Parragon
  • pdf download Risky by Aurora Rose Reynolds
  • Read Pdf Mike Meyers CompTIA A Core 2 Certification Passport Exam 220-1102 by Ron Gilster Mike Me
  • PDF Download Batman Resurrection by John Jackson Miller
  • Download Pdf Cadaver exquisito Premio Clarin 2017 Tender is the Flesh by Agustina Bazterrica
  • Download PDF The DOSE Effect Optimize Your Brain and Body by Boosting Your Dopamine Oxytocin Serot
  • Read Pdf Who Am I Psychological Exercises to Develop Self-understanding by The School of Life Ala
  • Royal Rescue by Tammy Johnson on Iphone New Format
  • Read Pdf Dawning1 by Ice K Alex Michaela M Jack
  • DOWNLOAD PDF EPUB Swedish Lagom Finding Joy in Just Enough by Kortney Yasenka Karen Johnson Yasen
  • Download Pdf All Fours by Miranda July
  • Stamped from the Beginning A Graphic History of Racist Ideas in America by Ibram X. Kendi Joel Chri
  • PDF EPUB Download What They Didnt Teach You In Photo School What you actually need to know to succ
  • PDF EPUB Download Mushroom Pharmacy A Practical Guide to Psychedelic Mushrooms by Stacey Simmons MA
  • Tabers Cyclopedic Medical Dictionary by Donald Venes MD MSJ on Audiobook New
  • Read pdf CSB Scripture Notebook Revelation Jen Wilkin Special Edition Eternal King Everlasting
  • Download Pdf The Ranchers Baby Surprise and The Cowboys Unexpected Baby by Kat Brookes Stephanie De
  • Read pdf My Possessive Alpha Twins For Mate by Veejay
  • Read pdf Chokepoint Capitalism How Big Tech and Big Content Captured Creative Labor Markets and Ho
  • epub download The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S
  • Read online Meetings With Remarkable Animals by Martin Clunes
  • DOWNLOAD PDF EPUB An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Bro
  • Pdf ePub The Immortal by S. R. Finch download ebook
  • The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlings Harry Potter Book
  • Teen Titans Starfire by Kami Garcia Gabriel Picolo on Audiobook New
  • Pdf ePub Her Motherhood Wish by Keli Gwyn download ebook
  • DOWNLOAD PDF EPUB A Bride for Christmas by Jill Kemerer Brenda Minton
  • Pdf ePub Modern Lager Beer Techniques Processes and Recipes by Jack Hendler Joe Connolly downloa
  • 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:48:35
Previous
Pdf ePub Modern Lager Beer Techniques Processes and Recipes by Jack Hendler Joe Connolly downloa
Next
Add a new pet to the store
Built with