My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Land of the Living and the Dead by Shauna Lawless Full Book
  • DOWNLOADS Todd Hido Intimate Distance Revised and Expanded Edition Over Thirty Years of Photographs
  • Read Pdf Bacteria to AI Human Futures with our Nonhuman Symbionts by N. Katherine Hayles
  • Read online Let Us Descend A Novel by Jesmyn Ward
  • Read online Boy Vs. Beast 2 Rock Beast by Mac Park
  • DOWNLOADS Vagabondo by Paul Freeman
  • PDF Kindle The Boyhood of Cain by Michael Amherst
  • Download Pdf Indiscretion by VI Keeland
  • download pdf Promesas crueles - Ed. Coleccionista by Rebecca Ross
  • DOWNLOADS Brimstone Deluxe Limited Edition by Callie Hart
  • Read Pdf The Official Harry Potter Baking and Cookbook Collection by Joanna Farrow
  • Download PDF On Photography by Susan Sontag
  • Read pdf Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • PDF Download Queer by William S. Burroughs
  • Huda F Cares by Huda Fahmy on Audiobook New
  • Graticube The Game of Abundance by Deepak Chopra Sam Sokol Terry Torok on Iphone New Format
  • epub download Excavations A Novel by Kate Myers
  • PDF EPUB Download Grimoire NieR Revised Edition NieR Replicant ver.1.22474487139... The Complete G
  • PDF Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Konchog Gyalt
  • pdf download The Irresistible Urge to Fall for Your Enemy Book 1 of the Dearly Beloathed Duology by
  • pdf download All-American Ads of the 60s by Steven Heller Jim Heimann
  • PDF Kindle Lethal Reunion by Lacey Baker
  • DOWNLOAD PDF EPUB Cursebound A Novel by Saara El-Arifi
  • Read Pdf The Witchs Wardrobe Sew Your Own Witchcore Wear by Raechel Henderson
  • PDF EPUB Download An Introduction to Whitework Embroidery with Colour 10 stunning projects with reus
  • PDF DOWNLOAD The Ojanox I Scream in the Dark by Daemon Manx on Iphone
  • Read Pdf The King Arthur Baking Company Big Book of Bread 125 Recipes for Every Baker A Cookbook b
  • DOWNLOADS I Am the Cage by Allison Sweet Grant
  • DOWNLOADS Alter Ego 2 Noel June by Ana C. Sánchez
  • La guarida del diablo Nora Kelly 3 by Douglas Preston Lincoln Child Efrén del Valle Peñamil on Ipa
  • pdf download Digital Painting Made Simple Create Captivating Portraits in Clip Studio Paint Procrea
  • Read pdf Someone to Trust and Her Forbidden Amish Love by Patricia Davids Jocelyn McClay
  • Read Pdf 50 Great Stalks Hunting the Worlds Greatest Game Up Close by Craig Boddington
  • Read online The Cowboys Easter Surprise An Uplifting Inspirational Romance by Jill Kemerer
  • Japanese Joinery by Dorian Bracht on Audiobook New
  • How to Be a Better Drinker Cocktail Recipes and Boozy Etiquette by Hannah Chamberlain Tug Rice on I
  • Read Pdf The Parent Plan Part 3 by Paula Detmer Riggs
  • DOWNLOAD PDF EPUB The Otherwhere Post by Emily J. Taylor
  • Download PDF ROAR Revised Edition Match Your Food and Fitness to Your Unique Female Physiology for
  • Read online Volver la vista atrás by Juan Gabriel Vásquez
  • PDF DOWNLOAD Moby-Dick or The Whale by Herman Melville on Iphone
  • pdf download Woman Hating by Andrea Dworkin
  • PDF DOWNLOAD Show Dont Tell Stories by Curtis Sittenfeld on Iphone
  • Read Pdf The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of Ira
  • Read pdf Toiveiden lapset by Danielle Steel Kaisa Luntinen
  • PDF EPUB Download From Crook to Cook Platinum Recipes from Tha Boss Doggs Kitchen by Snoop Dogg Fu
  • Read Pdf Street Smart Chess by Axel Smith
  • PDF EPUB Download A Spell for Heartsickness A Cozy Romantasy by Alistair Reeves Full Book
  • Online Read Ebook Unleash Your Financial Superpowers How the First-Generation Wealthy Do It and How
  • Online Read Ebook Trans Technologies by Oliver L. Haimson
  • 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-07 23:57:50
Previous
Online Read Ebook Trans Technologies by Oliver L. Haimson
Next
Add a new pet to the store
Built with