My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Mind Games by Nora Roberts
  • epub download Three Act Tragedy A Hercule Poirot Mystery The Official Authorized Edition by Agatha C
  • Read pdf The Bones Beneath My Skin by TJ Klune
  • Download PDF El médico The Physician by Noah Gordon
  • Read Pdf Birthday Girl by Penelope Douglas
  • PDF DOWNLOAD New Moons Phases of Healing by r.h. Sin on Iphone
  • Download Pdf A Day at the Post Office by Theonesse Cheon
  • Pdf ePub Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis downl
  • A Trap for Cinderella by Sébastien Japrisot Helen Weaver on Iphone New Format
  • Read pdf El peligro de estar cuerda by Rosa Montero
  • A Night in the Lonesome October A Novel by Roger Zelazny on Iphone New Format
  • PDF Kindle Murder on the Cornish Coast Completely addictive British cozy crime mystery by Helena Di
  • Cute Fantasy Art Class Mystical Anime Besties - Learn to Draw over 50 Charming Characters by Naomi L
  • PDF Download While the Duke Was Sleeping by Samara Parish
  • PDF Download A Disaster of Our Own Making How the West Lost Ukraine by Brandon J. Weichert
  • PDF Download Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridl
  • PDF Atlas of Brutalist Architecture by Phaidon Editors
  • Online Read Ebook LankyBox Epic Adventure by Lankybox Alex Lopez
  • Online Read Ebook Beyond Painting by Max Ernst
  • Read online We Are Made of Stars A Novel by Rochelle B. Weinstein
  • PDF EPUB Download Killing Stalking Deluxe Edition Vol. 8 by Koogi Full Book
  • DOWNLOADS The Reappearance of Rachel Price by Holly Jackson
  • Read Pdf Daughters of the Blue Moon by Millie Abecassis
  • Miriams Sisters Deborahs Daughters When women lead the way by Liz Crumlish on Audiobook New
  • A Wolf in Sheeps Clothing A Wolf in Sheeps ClothingTell Me Your Secrets... by Joan Johnston on Iphon
  • PDF DOWNLOAD Her Holiday Protector and Holiday on the Run by Lenora Worth Laura Scott on Iphone
  • PDF Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larmon Alfred Pacq
  • DOWNLOADS Drawing Basics and Beyond Transform Observation into Imagination by Sorie Kim
  • download pdf When Nightmares Come An Investigative Wargame of Supernatural Horror by Patrick Todoro
  • PDF The Birth Partner Sixth Revised Edition A Complete Guide to Childbirth for Dads Partners Dou
  • Online Read Ebook The Dead We Honor by William W. Johnstone J. A. Johnstone
  • PDF DOWNLOAD Shikimoris Not Just a Cutie 18 by Keigo Maki on Iphone
  • Online Read Ebook Left on Rancho A Novel by Francesco Paola
  • Download PDF The Book of Practical Witchcraft A Compendium of Spells Rituals and Occult Knowledge b
  • Download PDF A Kitchen Witchs Culinary Oracle Deck Gain Daily Insight and Bring Magic to Your Meals
  • epub download Echoes from Forgotten Mountains Tibet in War and Peace by Jamyang Norbu
  • Surrounded by Liars How to Stop Half-Truths Deception and Gaslighting from Ruining Your Life by Th
  • Read Pdf The Edge of Nowhere by William W Johnstone J A Johnstone
  • Five Years After A John Matherson Novel by William R. Forstchen on Ipad
  • PDF EPUB Download La Vie de Guinevere by Paula Lafferty Full Book
  • PDF Disney Twisted-Wonderland The Official Art Book by Square Enix
  • Download PDF Two Weddings and a Murder by Alyssa Maxwell
  • DOWNLOAD PDF EPUB Journey of Hope by Debbie Kaufman
  • DOWNLOADS Philosophy 2e Asking Questions Seeking Answers by Stephen Stich Thomas Donaldson
  • epub download Empires End Aftermath Star Wars by Chuck Wendig
  • Download PDF An Accidental Hero by Loree Lough
  • PDF The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of Iraq by S
  • Download Pdf Jeff Buckley His Own Voice by Mary Guibert David Browne
  • download pdf DD Dungeon Masters Guide 2024 by Wizards of the Coast
  • Read Pdf A Home of Her Own by Keli Gwyn
  • 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-11 22:08:40
Previous
Read Pdf A Home of Her Own by Keli Gwyn
Next
Add a new pet to the store
Built with