My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • J.K. Lassers Your Income Tax 2025 Professional Edition by J.K. Lasser Institute on Iphone New Forma
  • Pdf ePub Everyone Is Lying An utterly gripping psychological thriller with a jaw-dropping twist by
  • PDF DOWNLOAD Carmilla French edition by Joseph Sheridan Le Fanu on Iphone
  • Download PDF Monsters Aliens and Holes in the Ground Deluxe Edition A Guide to Tabletop Roleplayi
  • PDF EPUB Download Pass the Monster Meat Milady 7 by Chika Mizube Kanata Hoshi Peperon Full Book
  • Minecraft Annual 2025 by Mojang AB Farshore on Ipad
  • PDF Download Keiichi Tanaami by KEIICHI TANAAMI ALESSIO ASCARI Hans Ulrich Obrist Carlo McCormi
  • DOWNLOAD PDF EPUB Goodnight Western Springs by Taylor Tomlinson Christine F. Maningo
  • DOWNLOADS Death by Boomers How the Worst Generation Destroyed the Planet but First a Child by Tim D
  • DOWNLOAD PDF EPUB Cool for the Summer by Dahlia Adler
  • Pdf ePub Scorpio Witch Unlock the Magic of Your Sun Sign by Ivo Dominguez Jr. Zoe Howe Alison Chi
  • Read Pdf The Hidden Queen Book Two of The Nightfall Saga by Peter V. Brett
  • Download Pdf Colorful Crochet Birds 19 Amigurumi Patterns to Create Feathered Friends by Ilaria Cali
  • Download Pdf Diary of a Wimpy Kid Book 12 by Jeff Kinney
  • Download Pdf Satans Affair by H. D. Carlton
  • The Darkest White A Mountain Legend and the Avalanche That Took Him by Eric Blehm on Ipad
  • The Desert Talon by Karin Lowachee on Audiobook New
  • Otherworldly Maidens Monster Girls from Another World by Mizone on Iphone New Format
  • The Imperial Uncle by Da Feng Gua Guo E. Danglars Jan Mitsuko Cash on Ipad
  • Download PDF Bonds of Hercules by Jasmine Mas
  • Read online A Guest in the House by Emily Carroll
  • PDF Download A Childs War by Patrick Walsh Prithvi Singh
  • DOWNLOADS Asterix Omnibus Vol. 13 by Jean-Yves Ferri Didier Conrad
  • PDF Download Magnolia Parks by Jessa Hastings
  • Pdf ePub Mis días en la librería Morisaki by Satoshi Yagisawa download ebook
  • DOWNLOADS One Happy Accident by Gary Simonds
  • Read online Disney Moana 2 The Junior Novelization by Elizabeth Rudnick
  • PDF DOWNLOAD Konosuba Gods Blessing on This Wonderful World Vol. 18 manga by Natsume Akatsuki Ma
  • Download Pdf Asking for a Friend by Ronnie Riley
  • PDF EPUB Download Name Her Holy by Aubrey Ennis Full Book
  • PDF EPUB Download Talula Had a Little Dog by Love Haze Full Book
  • DOWNLOAD PDF EPUB Witchcraft. The Library of Esoterica by Thunderwing Jessica Hundley Pam Grossm
  • DOWNLOADS Mated by Kerry Adrienne Sionna Fox Shari Mikels
  • Worthy How to Believe You Are Enough and Transform Your Life by Jamie Kern Lima on Iphone New Format
  • Read online Playboy by Constance Debre Holly James
  • 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-16 01:22:35
Previous
Read online Playboy by Constance Debre Holly James
Next
Add a new pet to the store
Built with