My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Endangered Species by Charles E. Gannon
  • Online Read Ebook The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 b
  • DOWNLOAD PDF EPUB Starfinder RPG Ports of Call by Kate Baker Brian Bauman Jessica Catalan John
  • PDF DOWNLOAD Her Christmas Fantasy The Winter Bride by Penny Jordan Lynne Graham on Iphone
  • The Rialto in Richmond The Money War Between the States Other Mysteries of the Civil War by Joseph
  • Download PDF The Chapter A Segmented History from Antiquity to the Twenty-First Century by Nicholas
  • epub download Tarot for Practical People by Alice Mastroleo
  • Pride and Prejudice by Jane Austen on Audiobook New
  • download pdf A Heros Promise by Lee Tobin McClain Kathryn Springer
  • DOWNLOAD PDF EPUB High Density High Mountain Trackers HMT 2G 3 by Freya Barker
  • Download Pdf The Fox and the Falcon Deluxe Edition by Piper CJ
  • Purposeful Practice for Poker The Modern Approach to Studying Poker by Dr. Patricia Cardner Gareth
  • PDF EPUB Download Drawing the Female Figure A Guide for Manga Hentai and Comic Book Artists by Ful
  • Bosss Heir Demand by Jackie Ashenden on Audiobook New
  • Download PDF The 5 Love Languages Workbook by Gary Chapman
  • DOWNLOADS Impulse Rembrandt Teacher Strategist Bestseller by Jan Nicolaisen Stefan Weppelmann
  • Superman The Definitive History by Edward Gross Robert Greenberger on Ipad
  • House of Psychotic Women Expanded Edition An Autobiographical Topography of Female Neurosis in Horro
  • Pdf ePub The Demons Bargain by Katee Robert download ebook
  • PDF EPUB Download Cold as Hell A Havens Rock Novel by Kelley Armstrong Full Book
  • PDF EPUB Download Wargaming Campaigns by Henry Hyde Full Book
  • Online Read Ebook The Home Café Creative Recipes for Espresso Matcha Tea and Coffee Drinks by Asia
  • Read online Duchess in the Attic Volume 3 by Mori Huyuko Aoi Yasuyuki Syuri piyo
  • PDF Before We Forget Kindness by Toshikazu Kawaguchi
  • PDF EPUB Download Gestalt Language Processing Supporting Autistic and Neurodivergent Children with
  • Download PDF Over The Limit by K. Bromberg
  • pdf download Project Censoreds State of the Free Press 2025 by Mickey Huff Andy Lee Roth Mnar Adle
  • download pdf Merrills Pocket Guide to Radiography by Jeannean Hall Rollins MRC BSRT
  • Download Pdf Les Normaux A Graphic Novel by Janine Janssen S. Al Sabado
  • DOWNLOAD PDF EPUB The Queering of the American Child How a New School Religious Cult Poisons the M
  • download pdf Cry of the Wild Eight Animals Under Siege by Charles Foster
  • Read online The End of the World Is Just the Beginning Mapping the Collapse of Globalization by Pete
  • Online Read Ebook A Shining by Jon Fosse Damion Searls
  • PDF A Psalm for the Wild-Built by Becky Chambers
  • Pdf ePub Innocence and Seduction The Art of Dan DeCarlo Expanded Edition by Bill Morrison download
  • PDF Watching the River Run A Photographic Journey Down the Youghiogheny by Tim Palmer
  • Deep Cuts A Novel by Holly Brickley on Iphone New Format
  • PDF EPUB Download The Comet by Joe Todd-Stanton Full Book
  • Pdf ePub Clive Cusslers The Devils Sea by Dirk Cussler download ebook
  • epub download Hidden Legacy by Lynn Huggins Blackburn
  • PDF EPUB Download My Two Elaines Learning Coping and Surviving as an Alzheimers Caregiver by Mar
  • Read pdf When God Made You Jamirs Story Meet Jamir Gods Chosen One by Tawanda Jupiter
  • epub download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • Read pdf House of Huawei The Secret History of Chinas Most Powerful Company by Eva Dou
  • PDF EPUB Download The Art of War by Sun Tzu Full Book
  • Pdf ePub El peligro de estar cuerda by Rosa Montero download ebook
  • DOWNLOADS Pornography Men Possessing Women by Andrea Dworkin
  • Read pdf What Happens at the Beach. by Rachael Stewart
  • epub download A Cure for the Vet by Ann Roth Julie Benson
  • PDF Kindle Love is an Illusion - The Queen Vol. 2 by Fargo
  • 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-13 23:12:30
Previous
PDF Kindle Love is an Illusion - The Queen Vol. 2 by Fargo
Next
Add a new pet to the store
Built with