My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Yojimbot Volume 1 Metal Silence by Sylvain Repos Noiry
  • Download Pdf Lucia and the Loom Weaving Her Way to Happiness Volume 3 by Hisaya Amagishi Esora Amai
  • DOWNLOADS The Hebridean Baker The Scottish Cookbook by Coinneach MacLeod
  • PDF Kindle All the Dangerous Things by Stacy Willingham
  • pdf download Cozy Christmas Coloring Book for Adults and Kids by Coco Wyo
  • PDF DOWNLOAD Encanto Nightmares and Sueños by Alex Segura on Iphone
  • PDF EPUB Download Stanley Kubricks The Shining by J. W. Rinzler M M Lee Unkrich Full Book
  • DOWNLOADS One Message Remains by Premee Mohamed
  • Baba Yagas Book of Witchcraft Slavic Magic from the Witch of the Woods by Madame Pamita on Audiobook
  • Download PDF The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • Pdf ePub Essentials Vol. 1 Bill Sienkiewicz Premiere Edition by Luke Arnold Chris Doc Wyatt downlo
  • PDF EPUB Download On Loverose Lane by Samantha Young Full Book
  • PDF DOWNLOAD Wargaming Campaigns by Henry Hyde on Iphone
  • Pdf ePub First Words An interactive book with tracks to trace and flaps to lift by Patricia Hegart
  • PDF Pathfinder Adventure Path Abomination Vaults 5e by James Jacobs Vanessa Hoskins Stephen Radne
  • epub download Murder in an Irish Garden by Carlene OConnor
  • Recupera tu mente reconquista tu vida by Marian Rojas Estapé on Ipad
  • PDF Kindle Drawing the Female Figure A Guide for Manga Hentai and Comic Book Artists by
  • Retreat A Novel by Krysten Ritter on Audiobook New
  • DOWNLOADS Persuasion by Jane Austen
  • PDF EPUB Download El hombre iluminado The Sunlit Man by Brandon Sanderson Full Book
  • pdf download Mountain Upside Down by Sara Ryan
  • Their Mistletoe Matchmakers by Keli Gwyn on Ipad
  • Online Read Ebook Social Security Medicare Government Pensions Get the Most Out of Your Retirement
  • PDF DOWNLOAD The Kitty-Catwalk by Melody Mews Ellen Stubbings on Iphone
  • PDF Kindle My Midlife Magic Daze by Jennifer L. Hart
  • PDF DOWNLOAD Asking for a Friend by Ronnie Riley on Iphone
  • pdf download Throne of Glass Box Set by Sarah J. Maas
  • Read Pdf Pandys Bad Day Gabbys Dollhouse Scholastic Reader Level 1 4 by Gabrielle Reyes
  • DOWNLOADS The Cursed Writer by Holly Hepburn
  • DOWNLOADS Alter Ego 2 Noel June by Ana C. Sánchez
  • epub download Clarion Call by Cayla Fay
  • Brother Brontë A Novel by Fernando A. Flores on Audiobook New
  • PDF EPUB Download My Boyfriend is a Dog Vol. 2 by kadiro Full Book
  • Peerless Novel Vol. 3 by Meng Xi Shi Me.Mimo on Ipad
  • Fourth Wing by Rebecca Yarros on Ipad
  • Online Read Ebook Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis
  • download pdf Un año con Dios al amanecer 365 devocionales para vivir el Padre Nuestro Awak e in t
  • Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson on Iphone New Format
  • DOWNLOADS Secure Love Create a Relationship That Lasts a Lifetime by Julie Menanno
  • PDF EPUB Download Earth Grids The Secret Patterns of Gaias Sacred Sites by Hugh Newman Full Book
  • PDF Download Destined for the Cowboy by Justine Davis
  • Read Pdf An Education in Malice by S. T. Gibson
  • DOWNLOAD PDF EPUB Never Flinch A Novel by Stephen King
  • PDF Download Dragon and Chameleon 02 by RYO ISHIYAMA
  • pdf download Mr. Whisper A Thriller by Andrew Mayne
  • Ink Nest Poetry - A Literary Magazine by Evelyn Hoyt on Ipad
  • PDF EPUB Download Not About a Boy by Myah Hollis Full Book
  • PDF Pete the Cat Rocks On Includes Over 30 Stickers by James Dean Kimberly Dean
  • DOWNLOADS Desified Delicious Recipes for Ramadan Eid Every Day by Zaynah Din
  • 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
DOWNLOADS Desified Delicious Recipes for Ramadan Eid Every Day by Zaynah Din
Next
Add a new pet to the store
Built with