My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • At the Bottom of the Garden A Novel by Camilla Bruce on Audiobook New
  • DOWNLOADS The Wide Wide Sea Imperial Ambition First Contact and the Fateful Final Voyage of Captain
  • The Odyssey Penguin Classics Deluxe Edition by Homer on Ipad
  • Pdf ePub Post-Europe by Yuk Hui download ebook
  • Pdf ePub Luther First of the Fallen by Gav Thorpe download ebook
  • Read Pdf Supersonic A Novel by Thomas Kohnstamm
  • DOWNLOAD PDF EPUB Reading Nature The Evolution of American Nature Writing by John Seibert Farnswor
  • epub download Maya Natasha A Novel by Elyse Durham
  • PDF Kindle Brimstone Deluxe Limited Edition by Callie Hart
  • PDF EPUB Download Batman Superman Worlds Finest Vol. 5 Secret Origins by Mark Waid Travis Moore Ful
  • Bad Therapy Why the Kids Arent Growing Up by Abigail Shrier on Iphone New Format
  • PDF EPUB Download Stomp Kick Love Vol. 1 by Sumi Ichiya Sarah Burch Full Book
  • PDF DOWNLOAD Religion Is Not Done with You Or the Hidden Power of Religion on Race Maps Bodies
  • Keeping 13 by Chloe Walsh on Audiobook New
  • Download PDF Estuche Archivo de las tormentas The Stormlight Archive Boxed Set The Way of Kings W
  • Death in Daylesford by Kerry Greenwood on Iphone New Format
  • Download Pdf Whos Afraid of Gender by Judith Butler
  • PDF DOWNLOAD The Peacemaker by Wanda E. Brunstetter on Iphone
  • epub download The Essentialism Planner A 90-Day Guide to Accomplishing More by Doing Less by Greg Mc
  • DOWNLOAD PDF EPUB Cruel Seduction Dark Olympus 5 by Katee Robert
  • pdf download Nether Station by Kevin J. Anderson
  • pdf download My Hateful Man Light Novel by Yuu Nagira Rikako Kasai
  • Download PDF A Convenient Christmas Bride and The Ranchers Christmas Proposal by Rhonda Gibson Sher
  • Read pdf The Beloved by J. R. Ward
  • Download Pdf The Hunting Moon by Susan Dennard
  • PDF EPUB Download Rooms of Wonder Step Inside This Magical Coloring Book by Johanna Basford Full Boo
  • PDF Kindle Coloring is Better with Friends Official Coloring Book by Scholastic
  • A Heros Redemption by Carolyne Aarsen Belle Calhoune on Ipad
  • Download PDF Chachagoma Illustration Works by Chachagoma
  • PDF Social Science A Very Short Introduction by Alexander Betts
  • DOWNLOADS An Illustrated Treasury of Swedish Folk and Fairy Tales by John Bauer
  • Pdf ePub The Language of Remembering by Patrick Holloway download ebook
  • Read pdf The Fishwife Cookbook Delightful Tinned Fish Recipes for Every Occasion by Becca Millstei
  • PDF Say Its Forever by A.L. Jackson
  • epub download The Ghost Orchid by Jonathan Kellerman
  • 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
epub download The Ghost Orchid by Jonathan Kellerman
Next
Add a new pet to the store
Built with