My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Dream of the Bird Tattoo Poems and Sueï½itos by Juan J Morales on Iphone New Format
  • PDF EPUB Download Sun Ssukgat The Korean Art of Self-Care Wellness Longevity by Michelle Jungmi
  • PDF In the Distance by Hernan Diaz
  • Choujin X Vol. 8 by Sui Ishida on Audiobook New
  • Download PDF From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • download pdf The Metamorphosis by Franz Kafka
  • PDF Download Phonic Books Get Out of the Game Decodable Books for Older Readers CVC Consonant Ble
  • Wild Berries by Julie Flett Earl N. Cook on Audiobook New
  • Pdf ePub The Complete Nonsense Books De-luxe Edition by Edward Lear download ebook
  • PDF EPUB Download A Holiday Match by Belle Calhoune Lois Richer Full Book
  • Richard Scarrys Bunnies A Classic Board Book for Babies and Toddlers by Richard Scarry on Iphone New
  • epub download KJV Armor of God Bible Childrens Bible Red Letter Comfort Print Holy Bible King Jam
  • The Mighty Red A Novel by Louise Erdrich on Ipad
  • PDF EPUB Download White Liar by Tomo Serizawa Full Book
  • PDF Kindle Mashle Magic and Muscles Vol. 17 by Hajime Komoto
  • download pdf Let Me Be Your Monster Dark MM Halloween Romance by West Greene
  • Seven Ghosts by Chris Priestley on Ipad
  • PDF Download Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • Read online Neighbor by Lisa Gardner
  • Notes on Surviving the Fire A Novel by Christine Murphy on Ipad
  • Read online A Fire in the Flesh by Jennifer L. Armentrout
  • epub download The Kabbalistic Tree by J. H. Chajes
  • Read Pdf From Prison to Paradise A Story of Radical Trust in Gods Divine Mercy by Kitty Cleveland
  • PDF DOWNLOAD The Wizard of Oz by L. Frank Baum William Wallace Denslow on Iphone
  • pdf download James ICC A Critical and Exegetical Commentary by Dale C. Allison Jr. Christopher M.
  • Go as a River by Shelley Read on Ipad
  • download pdf Perfect Buddy The Comic Manhwa Vol. 2 by Lash daki
  • DOWNLOAD PDF EPUB Wild and Wrangled A Rebel Blue Ranch Novel by Lyla Sage
  • PDF DOWNLOAD Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti on Iphon
  • Read pdf Magnolia Parks Into the Dark by Jessa Hastings
  • Pdf ePub The Black Curtain by Cornell Woolrich George Pelecanos download ebook
  • La Sociedad Secreta de Brujas Rebeldes The Very Secret Society of Irregular Witches by Sangu Manda
  • Read online Stranger Things Flight of Icarus by Caitlin Schneiderhan
  • Speaking of Crime The Language of Criminal Justice by Lawrence M. Solan Peter M. Tiersma Tammy Gal
  • epub download Handbook of Tyranny by Theo Deutinger
  • 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 Handbook of Tyranny by Theo Deutinger
Next
Add a new pet to the store
Built with