My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Things We Lost in the Fire by Mariana Enriquez Megan McDowell
  • PDF Download House of Crimson Curses A Steamy Vampire Fantasy Romance by Ruby Roe
  • pdf download The Adventures Of King Sugarman King Sugarmans Sweet Adventure by Jamie Knight
  • Jardín de las delicias El by José Luis de Villar Iglesias on Audiobook New
  • Blue Skies A Novel by T. C. Boyle on Audiobook New
  • Online Read Ebook Quicksilver by Callie Hart
  • Victory Harben Tales from the Void Edgar Rice Burroughs Universe by Christopher Paul Carey Geary Gr
  • Download PDF El niño que perdió la guerra The Boy That Lost the War by Julia Navarro
  • Download PDF Builders of a Nation by Haifaa Younis
  • Read Pdf Today Tonight Tomorrow by Rachel Lynn Solomon
  • PDF Download Ribbon Dance by Sharon Lee Steve Miller
  • Pdf ePub Brimstone Deluxe Limited Edition by Callie Hart download ebook
  • Skeleton Crew Stories by Stephen King on Ipad
  • pdf download Death by Deception by Tracy Gardner
  • PDF Download Clown in a Cornfield by Adam Cesare
  • download pdf Lightlark Book 1 by Alex Aster
  • Read online Heart Breath Mind Conquer Stress Build Resilience and Perform at Your Peak by Leah Lag
  • Read pdf The Art and Making of Hogwarts Legacy Exploring the Unwritten Wizarding World by Insight
  • Download PDF MARVEL STUDIOS DEADPOOL WOLVERINE THE ART OF THE MOVIE SLIPCASE by Jess Harrold
  • Mother Love Murder in a Small Town by L.R. Wright on Iphone New Format
  • When I Arrived at the Castle by E.M. Carroll on Ipad
  • download pdf Cleat Cute A Novel by Meryl Wilsner
  • Read pdf Dick Tracy Valentines Day Special by Alex Segura Michael Moreci Craig Cermak
  • Pdf ePub Diversity Equity and Inclusion in Veterinary Medicine by Kemba Marshall download ebook
  • pdf download Catching a Hacker by Maggie Wells
  • DOWNLOADS Safe Haven Investing for Financial Storms by Mark Spitznagel
  • DOWNLOADS True Love Fades Away When the Contract Ends - One Star in the Night Sky Light Novel by Kos
  • pdf download The Good Girl by Sb Rogue
  • PDF Kindle Finding Hayes by Laura Pavlov
  • Read Pdf Blue Sky Through the Window of a Moving Car Comics for Beautiful Awful and Ordinary Days
  • Online Read Ebook Witch Life in a Micro Room Vol. 4 by Akitaka Abby Lehrke
  • download pdf Sharing Body Heat by Lexie Davis
  • Online Read Ebook Pathfinder Adventure Path Abomination Vaults 5e by James Jacobs Vanessa Hoskins
  • DOWNLOAD PDF EPUB Sun Bird The Amazing Journey of the Arctic Tern by Lindsay Moore
  • Download Pdf The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David
  • Barrier Narrative by lubna A. Safi on Audiobook New
  • pdf download The Time Changers Tarot Reading for Yourself Your Community and Your World with the W
  • epub download Star Wars The Mask of Fear by Alexander Freed
  • DOWNLOAD PDF EPUB Chicken Soup for the Soul Laughters Always the Best Medicine 101 Feel-Good Stori
  • 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}
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 11:08:15
Previous
DOWNLOAD PDF EPUB Chicken Soup for the Soul Laughters Always the Best Medicine 101 Feel-Good Stori
Next
Add a new pet to the store
Built with