My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Hot Singles in Your Area by Jordan Shiveley
  • 10x Is Easier Than 2x How World-Class Entrepreneurs Achieve More by Doing Less by Dan Sullivan Benj
  • PDF DOWNLOAD The Classic Tale of Peter Rabbit The Deluxe Pop-Up Edition Interactive Fun With Peter
  • Read pdf End of August A Novel by Paige Dinneny
  • PDF EPUB Download Beyond Painting by Max Ernst Full Book
  • Online Read Ebook Love After Midnight A Novel by Sister Souljah
  • PDF EPUB Download Communication Systems Engineering with GNU Radio A Hands-on Approach by Jean-Mic
  • The Reincarnation of the Strongest Exorcist in Another World Volume 3 by Kiichi Kosuzu Yuunagi Jar
  • DOWNLOAD PDF EPUB Caring for Your Baby and Young Child 8th Edition Birth to Age 5 by American Aca
  • Online Read Ebook Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos
  • DOCTOR WHO MONSTROUS BEAUTY TP by Jacqueline Rayner Scott Gray Dan Abnett Gareth Roberts Colin A
  • PDF Crocheted Bees Bugs Butterflies by Vanessa Mooncie
  • PDF DOWNLOAD Punk 57 by Penelope Douglas on Iphone
  • Read Pdf Bordeaux The Smart Travellers Wine Guide by Georgie Hindle
  • Download PDF Reset How to Change Whats Not Working by Dan Heath
  • pdf download Her Own Rules Dangerous to Know by Barbara Taylor Bradford Barbara Taylor Bradford
  • Read online Ballad of Sword and Wine Qiang Jin Jiu Novel Vol. 1 by Tang Jiu Qing St
  • Pdf ePub Relaxed Coastal Style by Sally Denning download ebook
  • PDF DOWNLOAD The Survivor Wants to Die at the End by Adam Silvera on Iphone
  • Plus-Sized Elf Second Helping Vol. 3 by Synecdoche on Iphone New Format
  • So I Lied A Thriller by Chelsea Ichaso on Iphone New Format
  • Read pdf Never Pay the First Bill And Other Ways to Fight the Health Care System and Win by Marsha
  • epub download Hal by Amanda Berlind
  • Download Pdf Credence by Penelope Douglas
  • DOWNLOAD PDF EPUB Beneath the Trees Where Nobody Sees by Patrick Horvath
  • PDF EPUB Download Playground A Novel by Richard Powers Full Book
  • pdf download Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • Read pdf Survival Gardening Grow Your Own Emergency Food Supply from Seed to Root Cellar by Sam C
  • Read Pdf Quality by Design A Clinical Microsystems Approach Edition 2 by Marjorie M. Godfrey Ti
  • PDF EPUB Download Secret Vendetta A Dark Revenge Romance by Kathy Lockheart Full Book
  • Dark Harvest by Orna OReilly on Audiobook New
  • DOWNLOAD PDF EPUB These Deadly Prophecies by Andrea Tang
  • PDF EPUB Download The English Problem A Novel by Beena Kamlani Full Book
  • PDF DOWNLOAD Vinland Saga Deluxe 5 by Makoto Yukimura on Iphone
  • The Story Collector by Evie Woods on Audiobook New
  • 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

Add a new pet to the store

POST
/pet
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/pet' \
--data-urlencode 'name=Hello Kitty' \
--data-urlencode 'status=sold'
Response Response 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

Body Params application/x-www-form-urlencoded
name
string 
required
Pet Name
Example:
Hello Kitty
status
string 
required
Pet Sales Status
Example:
sold

Responses

🟢201OK
application/json
Body
code
integer 
required
>= 0<= 0
data
object (Pet) 
required
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
Previous
Find pet by ID
Next
Update an existing pet
Built with