My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf The Long Hair Handbook A How-To Guide for Long and Healthy Hair by Connie Kamilla
  • download pdf Cyberpunk 2077 The Complete Official Guide-Collectors Edition by Piggyback
  • Rhythm of War by Brandon Sanderson on Audiobook New
  • pdf download Disney Twisted-Wonderland Vol. 1 The Manga Book of Heartslabyul by Yana Toboso Wakana
  • Animal Farm by George Orwell on Audiobook New
  • DOWNLOADS 2 000 Years of Christs Power Vol. 5 The Age of Enlightenment and Awakening by Nick Needham
  • Download Pdf Grokking Algorithms Second Edition by Aditya Y Bhargava
  • Online Read Ebook Dark Rise by
  • DOWNLOADS The Shiunji Family Children Vol. 3 by Reiji Miyajima Reiji Yukino Kevin Gifford
  • Read Pdf Is This Anything by Jerry Seinfeld
  • Read online Ready or Not A Novel by Cara Bastone
  • DOWNLOAD PDF EPUB SANCTIFY Volume 3 by GODSSTATION
  • Online Read Ebook Maria Theresa Empress The Making of the Austrian Enlightenment by Richard Bassett
  • One Night with the Best Man by Amanda Berry on Audiobook New
  • Standing by the Wall The Collected Slough House Novellas by Mick Herron on Iphone New Format
  • PDF Kindle Between Never and Forever by Shain Rose
  • PDF EPUB Download Hidden Angels A completely addictive and pulse-pounding crime thriller by Caroly
  • Online Read Ebook Tell Me Lies A Novel by Carola Lovering
  • Download Pdf Blue Helmet My Year as a UN Peacekeeper in South Sudan by Edward H. Carpenter Apurba K
  • PDF La felicidad by Gabriel Rolón
  • Fang Si-Chis First Love Paradise A Novel by Yi-Han Lin Jenna Tang on Iphone New Format
  • epub download Reflections of an Invisible Duck by Geigan C. Locke
  • DOWNLOAD PDF EPUB Christian America and the Kingdom of God White Christian Nationalism from the Pu
  • Online Read Ebook King Diamond Abigail by Dan Watters Damien Worm Rantz Hoseley King Diamond Z2
  • PDF Kindle For Keeps by Marta Perry
  • PDF EPUB Download The House Divided Sunni Shia and the Making of the Middle East by Barnaby Roger
  • PDF Kindle Star Wars Bestiary Vol. 1 Creatures of the Galaxy by S.T. Bende Iris Compiet
  • Read Pdf Goodnight Western Springs by Taylor Tomlinson Christine F. Maningo
  • pdf download La primera mestiza Princess Francisca Pizarro - Spanish Edition by Carmen Sánchez-Risco
  • PDF Kindle Interior Chinatown by Charles Yu
  • download pdf Last Night at the Telegraph Club National Book Award Winner by
  • PDF EPUB Download Angels Before Man by rafael nicolás Full Book
  • Read online Witch and Mercenary Light Novel Vol. 1 by Chohokiteki Kaeru Kanase Bench
  • Arum and King Six Decades of Boxing Gold by Marty Corwin on Iphone New Format
  • Download PDF Secure Love Create a Relationship That Lasts a Lifetime by Julie Menanno
  • Read Pdf Follow Her Heart by Marta Perry
  • The Locked Door by Freida McFadden on Ipad
  • Download PDF Mufasa The Lion King Novelization by Disney Books
  • Online Read Ebook Kinky History A Rollicking Journey through Our Sexual Past Present and Future by
  • The Road to Freedom Economics and the Good Society by Joseph E. Stiglitz on Audiobook New
  • pdf download Hunting Adeline Te encontraré by H.D CARLTON
  • PDF DOWNLOAD Bellas Journey by Victoria A Farias Lucia Benito on Iphone
  • The 48 Laws of Power Special Power Edition by Robert Greene Joost Elffers on Ipad
  • Pdf ePub Bolsa o la vida La by Vicki Robin Joe Domínguez download ebook
  • Read pdf REITs For Dummies by Brad Thomas
  • PDF DOWNLOAD Wild Berries by Julie Flett Earl N. Cook on Iphone
  • Pdf ePub The Nativity Story by Juliet David Jo Parry download ebook
  • NSU Ro80 - The Complete Story by Martin Buckley on Audiobook New
  • Read Pdf Last Laughs by Elliott Erwitt
  • Read Pdf Money for Couples No More Stress. No More Fights. Just a 10-Step Plan to Create Your Rich
  • 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-06 09:18:15
Previous
Read Pdf Money for Couples No More Stress. No More Fights. Just a 10-Step Plan to Create Your Rich
Next
Add a new pet to the store
Built with