My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Hangman A Novel by Maya Binyam
  • Read pdf The Apothecary Diaries Volume 3 Light Novel by Natsu Hyuuga Touko Shino
  • Read online The Body at the Roman Baths A gripping and charming cozy crime novel by Kate Hardy
  • PDF Kindle Redemption Ranch by Leann Harris
  • PDF EPUB Download Just Beyond the Light Making Peace with the Wars Inside Our Head by D. Randall Bly
  • Doctor Who Eden Rebellion by Abi Falase on Ipad
  • Sick Houses Haunted Homes and the Architecture of Dread by Leila Taylor on Audiobook New
  • Summerhaven Collectors Edition by Tiffany Odekirk on Ipad
  • Download Pdf The Metabarons Second Cycle Finale by Alejandro Jodorowsky Pete Woods Jerry Frissen
  • Download Pdf After the Storm by G. D. Wright
  • PDF PRINCE2 Study Guide 2017 Update by David Hinde
  • Read online Sketched Out Artistic Sketchbooks and Journals Unveiled by Viction
  • Online Read Ebook Sacred by C. X. Myers Katrina Haring Jones Zenith
  • DOWNLOADS His Wyoming Baby Blessing and Her Last Chance Cowboy by Jill Kemerer Tina Radcliffe
  • pdf download A Political Theology for the Us-Mexico Borderlands by Bryan M Ellrod
  • The Twins Bodyguard by Veronica Forand on Ipad
  • Read pdf The Intruders by Louise Jensen
  • Read pdf The Rust Programming Language 2nd Edition by Steve Klabnik Carol Nichols
  • One Little Tadpole Exploring Nature for Curious Kids by Molly Littleboy Jacob Souva on Ipad
  • download pdf Desire Pandora Vol. 4 by Akira Hizuki
  • DOWNLOAD PDF EPUB The Baby Swap An addictive and unputdownable psychological thriller with a heart
  • PDF Green Wood Carving How to Make Beautiful Objects from Unseasoned Wood by Harald Lamon
  • download pdf All the Lovers in the Night by Mieko Kawakami Sam Bett David Boyd
  • PDF The Art of The Lord of the Rings The War of the Rohirrim by Daniel Falconer
  • Read online An Angel for Dry Creek by Janet Tronstad
  • SANCTIFY Volume 3 by GODSSTATION on Ipad
  • Download PDF The Poppy War Collectors Edition A Novel by R. F. Kuang JungShan
  • DOWNLOADS Foster by Claire Keegan
  • DOWNLOAD PDF EPUB The JOLT Effect How High Performers Overcome Customer Indecision by Matthew Dixo
  • PDF Kindle Plus-Sized Elf Second Helping Vol. 4 by Synecdoche
  • epub download Tentación 1 Temptation Book 1 by Karla Cipriano
  • PDF Download A CHRISTMAS TRAGEDY by Agatha Christie The Gunston Trust
  • epub download Formula 1 Technical Analysis 2016 2018 by Giorgio Piola
  • DOWNLOADS USN PT Boat vs IJN Destroyer Tokyo Express 1942-43 by Mark Stille Edouard A. Groult
  • download pdf Death of a Master Chef A Brittany Mystery by Jean-Luc Bannalec
  • 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-09 01:18:45
Previous
download pdf Death of a Master Chef A Brittany Mystery by Jean-Luc Bannalec
Next
Add a new pet to the store
Built with