My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Post-Europe by Yuk Hui download ebook
  • Metallica All the Songs The story behind every track by Benoit Clerc on Ipad
  • DOWNLOADS I Heard That Song Before A Novel by Mary Higgins Clark
  • DOWNLOAD PDF EPUB Relationship Road Map Step-by-Step Directions to Finding Your Spouse by Stephen
  • PDF EPUB Download Marvel Comics For Dummies by Troy Brownfield Full Book
  • PDF Kindle Designing and Prototyping Interfaces with Figma Learn essential UX UI design principles
  • download pdf Ultra-Processed People The Science Behind Food That Isnt Food by Chris van Tulleken
  • download pdf What If YOU Are the Answer And 26 Other Questions That Just Might Change Your Life by
  • Online Read Ebook The Crash by Freida McFadden
  • PDF EPUB Download The Hunger Games by Suzanne Collins Full Book
  • Download PDF To All the Boys Ive Loved Before Special Keepsake Edition by Jenny Han
  • epub download Microsoft Excel VBA and Macros Office 2021 and Microsoft 365 by Bill Jelen Tracy Syrs
  • PDF Kindle Koreaworld A Cookbook by Deuki Hong Matt Rodbard
  • Download Pdf This Poison Heart by Kalynn Bayron
  • pdf download Mukden 1905 Russia and Japans Battle for Manchuria by John Valitutto Johnny Shumate
  • Pdf ePub CompTIA CySA Study Guide Exam CS0-003 by Mike Chapple David Seidl download ebook
  • Download Pdf Every Precious and Fragile Thing A Novel by Barbara Davis
  • All Is Found A Frozen Anthology by Disney Books on Iphone New Format
  • Read online The Monocle Travel Guide to London Updated Version by Monocle
  • Download PDF Smaller Sister by Maggie Edkins Willis
  • PDF Crack-Up Capitalism Market Radicals and the Dream of a World Without Democracy by Quinn Slobodi
  • PDF EPUB Download A Shadow in the Ember by Jennifer L. Armentrout Full Book
  • Download Pdf CLAMP Premium Collection Tokyo Babylon Vol. 6 by Clamp Amanda Haley
  • pdf download Star Wars Inquisitor Rise of the Red Blade by Delilah S. Dawson
  • Warriors Changing Skies 1 The Elders Quest by Erin Hunter on Ipad
  • Wilderness Hostage by Janice Kay Johnson on Audiobook New
  • Read online Moonbound A Novel by Robin Sloan
  • Pdf ePub A Crack in Everything How Black Holes Came in from the Cold and Took Cosmic Centre Stage b
  • Read online The Bones Beneath My Skin by TJ Klune
  • DOWNLOADS Microdosing for Health Healing and Enhanced Performance by James Fadiman PhD Jordan Gru
  • pdf download Threshold to Valley Forge The Six Days of the Gulph Mills Encampment by Sheilah D. Vanc
  • pdf download The Fast Track Inside the Surging Business of Womens Sports by Jane McManus
  • Download PDF A Cold Dose of Murder by Emily George
  • PDF Kindle Lolly Willowes Or The Loving Huntsman by Sylvia Townsend Warner Mona Awad
  • Season of Hope by Virginia Carmichael on Iphone New Format
  • PDF EPUB Download World on the Brink How America Can Beat China in the Race for the Twenty-First C
  • Online Read Ebook Covenant Vol. 2 by LySandra Vuong
  • DOWNLOADS Official Wings of Fire Coloring Book Media tie-in by Brianna C. Walsh Tui T. Sutherland
  • Pdf ePub Gwelf The Survival Guide by Larry MacDougall download ebook
  • DOWNLOAD PDF EPUB The Stain by Rikki Ducornet
  • Download PDF Scarred Collectors Edition by Emily McIntire
  • PDF EPUB Download Piñata A Novel by Leopoldo Gout Full Book
  • Read Pdf PAWS Hazel Has Her Hands Full A Graphic Novel by Nathan Fairbairn Michele Assarasakorn
  • PDF Download Between the Moon and Her Night by Jaclyn Kot
  • PDF EPUB Download The Bones Beneath My Skin by TJ Klune Full Book
  • PDF The Art of Mac Malware Volume 2 Detecting Malicious Software by Patrick Wardle
  • PDF Mavericks Life stories and lessons of historys most extraordinary misfits by Jenny Draper
  • PDF DOWNLOAD This Is How You Lose the Time War by Amal El-Mohtar Max Gladstone on Iphone
  • La mujer de arriba The Wife Upstairs by Freida McFadden on Iphone New Format
  • pdf download Poo Pile on the Prairie by Amy Hevron
  • 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
Previous
pdf download Poo Pile on the Prairie by Amy Hevron
Next
Add a new pet to the store
Built with