My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Only in Darkness by Brenda Stanley Full Book
  • Download PDF Rodeo Reunion by Shannon Taylor Vannatter
  • PDF EPUB Download Silver Throat by Siri Pettersen Tara Chace Full Book
  • PDF EPUB Download One Minute More by Robert Rotenberg Full Book
  • Online Read Ebook The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol.
  • epub download Harry Potter Books 1-3 Boxed Set MinaLima Editions by J. K. Rowling MinaLima Design
  • epub download Never Pay the First Bill And Other Ways to Fight the Health Care System and Win by Mar
  • Read pdf The Perfect Sacrifice by Abbi Gore Spivey
  • PDF DOWNLOAD The End of August A Novel by Yu Miri Morgan Giles on Iphone
  • pdf download Early Bird by Karen Winters Schwartz
  • Pdf ePub Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mathis Chr
  • Download PDF Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell
  • Mistletoe Redemption by Janet Tronstad Allie Pleiter on Iphone New Format
  • Words from Hell Unearthing the darkest secrets of English etymology by Jess Zafarris on Iphone New F
  • Read online Jonesy Complete Collection by Sam Humphries Caitlin Rose Boyle
  • pdf download Black Tights Wide by Yom
  • The Art of Marvels Spider-Man 2 Deluxe Edition by Insomniac Games on Ipad
  • Pdf ePub The Shape of What Remains by Lisa C Taylor download ebook
  • Download PDF Radical Respect How to Work Together Better by Kim Scott
  • PDF Kindle Dont Want You Like a Best Friend A Novel by Emma R. Alban
  • Wild Roses and Pretenders Vol. 2 by Kamoburger on Iphone New Format
  • Download Pdf The Retirement Puzzle Book Activities and Games to Keep Your Mind Active by Summersdale
  • Confessions of a Gay Priest A Memoir of Sex Love Abuse and Scandal in the Catholic Seminary by To
  • Download Pdf Conclave by Robert Harris
  • Read pdf Palabra de ladrones Vow of Thieves by MARY PEARSON
  • PDF EPUB Download The Amish Widows New Love by Liz Tolsma Full Book
  • PDF EPUB Download Losing Sight by Tati Richardson Full Book
  • PDF EPUB Download Short Stories in Japanese for Intermediate Learners Read for pleasure at your leve
  • How to Make a Few Billion Dollars by Brad Jacobs on Audiobook New
  • Read online The Art of Mac Malware Volume 2 Detecting Malicious Software by Patrick Wardle
  • The Curious Vanishing of Beatrice Willoughby by G. Z. Schmidt on Audiobook New
  • PDF Stereophonic by David Adjmi Will Butler
  • PDF Download As Long as the Lemon Trees Grow by Zoulfa Katouh
  • PDF Kindle A Certain Scientific Railgun Vol. 19 by Kazuma Kamachi Motoi Fuyukawa
  • PDF EPUB Download Bottle and the Badge A Cops Journey from Addiction to Atonement by McCarthy Barn
  • 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