My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Caledonian Road A Novel by Andrew OHagan
  • Online Read Ebook The Illustrated Field Guide to DMT Entities Machine Elves Tricksters Teachers a
  • Download Pdf Next The Power of Reinvention in Life and Work by Joanne Lipman
  • Pdf ePub The Hurricane Wars A Novel by Thea Guanzon download ebook
  • Plus-Sized Elf Second Helping Vol. 4 by Synecdoche on Iphone New Format
  • PDF Kindle A Good Girls Guide to Murder by Holly Jackson
  • PDF EPUB Download Im in Love with the Villainess Shes so Cheeky for a Commoner Light Novel Vol. 3
  • DOWNLOAD PDF EPUB A Time to Protect by Lois Richer
  • Download PDF Playground by Aron Beauregard
  • The Wildest Things A Novel by Andrea Hannah on Audiobook New
  • PDF Kindle Halo Empty Throne by Jeremy Patenaude
  • PDF Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell K. B. Wh
  • Read online The Adventures of Sherlock Holmes by Arthur Conan Doyle
  • It Takes More Than a Pretty Face to Fall in Love Vol. 1 by Karin Anzai on Audiobook New
  • House of Huawei The Secret History of Chinas Most Powerful Company by Eva Dou on Audiobook New
  • PDF EPUB Download The Villainess Turns the Hourglass Vol. 6 by Antstudio Full Book
  • PDF EPUB Download Barbie The Celebration of an Icon by Massimiliano Capella Sylvia Adrian Notini
  • DOWNLOADS The Marriage Wish Gods Gift by Dee Henderson
  • Operación Kerman by Sama Helalli on Ipad
  • DOWNLOAD PDF EPUB Pokémon Scarlet Violet Vol. 1 by Hidenori Kusaka Satoshi Yamamoto
  • download pdf The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • Online Read Ebook Medaka Kuroiwa Is Impervious to My Charms Vol. 10 by Ran Kuze
  • Read Pdf Long Island by Colm Tóibín
  • Read Pdf Wyoming Promises by Kerri Mountain
  • PDF EPUB Download The Cycle Confronting the Pain of Periods and PMDD by Shalene Gupta Full Book
  • PDF EPUB Download Gokurakugai Vol. 3 by Yuto Sano Full Book
  • The Unexpected Family Man A Clean and Uplifting Romance by Alexis Morgan on Ipad
  • Read online Times Convert by Deborah Harkness
  • PDF DOWNLOAD Princeton Review Digital SAT Premium Prep 2025 5 Full-Length Practice Tests 2 in Boo
  • DOWNLOAD PDF EPUB Sapiens A Graphic History Volume 3 The Masters of History by Yuval Noah Harari
  • Online Read Ebook Culpa mía My Fault by Mercedes Ron
  • Cartridges of the World 17th Edition The Essential Guide to Cartridges for Shooters and Reloaders b
  • download pdf Bad Dreams in the Night by Adam Ellis
  • Pdf ePub I Know Silly A book about feeling silly shy and embarrassed by Lindsay N. Giroux Alicia
  • download pdf Unlocking the Keto Code The Revolutionary New Science of Keto That Offers More Benefit
  • Hildegard von Bingen A Journey into the Images by Hildegard von Bingen Sara Salvadori on Iphone New
  • pdf download The Wrong Dog by Carol Lea Benjamin
  • DOWNLOAD PDF EPUB The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • epub download I Cross-Dressed for the IRL Meetup 3 by Kurano
  • pdf download Quicksilver by Callie Hart
  • pdf download Rhythms of Love You Sang to MeBeats of My Heart by Beverly Jenkins Elaine Overton
  • A Father in the Making by Marta Perry Deb Kastner on Iphone New Format
  • Online Read Ebook Love Advice From the Great Duke of Hell Volume One A Webtoon Unscrolled Graphic No
  • PDF DOWNLOAD An Accidental Hero by Loree Lough on Iphone
  • The Time Machine by H. G. Wells on Iphone New Format
  • PDF EPUB Download The Best Horror of the Year Volume Sixteen by Ellen Datlow Full Book
  • Online Read Ebook Mountain Upside Down by Sara Ryan
  • Read Pdf Les Normaux A Graphic Novel by Janine Janssen S. Al Sabado
  • Read online The Strange Case of Jane O. A Novel by Karen Thompson Walker
  • Download Pdf Margos Got Money Troubles Margo tiene problemas de dinero Spanish edition A Novel by R
  • 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