My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Heroes Feast The Deck of Many Morsels 50 Cards for Conjuring Snacks Libations and Swe
  • The Complete Aaron Sans Erotica Collection Volumes 1-7 66 Stories about MILFs Gangbangs BDSM Fant
  • Fracture Japanese Graphic Design 1875-1975 by Ian Lynam Chris Palmieri Louise Rouse on Ipad
  • Pdf ePub Mythos Tarot Guidance from the Greek Gods 78 Gilded Cards and 128-Page Full-Color Guideboo
  • Atlas of Perfumed Botany by Jean-Claude Ellena Karin Doering-Froger Erik Butler on Audiobook New
  • Online Read Ebook Its Getting Hot in Here A Novel by Jane Costello
  • Pdf ePub Momo Arashima Duels the Queen of Death by Misa Sugiura download ebook
  • Read Pdf Sea of Thieves The Cookbook by Kayce Baker
  • Online Read Ebook Polar Bear Café Collectors Edition Vol. 4 by Aloha Higa
  • Download PDF The Real Madrid Revolution How the Worlds Most Successful Club Is Changing the Game-for
  • epub download Grimm and Grimmer Classic Fairy Tales Rebooted by Mark Russell Alicja Kocurek
  • PDF Kindle How to Romanticize Your Life Joyful Tips and Advice to Elevate Every Day by Sophie Goldi
  • Read Pdf Oshi No Ko Vol. 9 by Aka Akasaka Mengo Yokoyari Taylor Engel
  • DOWNLOADS Blood Test A Comedy by Charles Baxter
  • PDF Hercule Poirots Silent Night A Novel by Sophie Hannah
  • Read Pdf An Autobiography of Trauma A Healing Journey by Peter A. Levine
  • Spirited Away Film Comic All-in-One Edition by Hayao Miyazaki on Iphone New Format
  • epub download The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of
  • Read Pdf One Last Rainy Day by Kate Stewart
  • Online Read Ebook Wargaming Campaigns by Henry Hyde
  • Read Pdf The Hard Switch by Owen D. Pomery
  • Read Pdf Cold Case Murder Mystery by Nicole Helm
  • PDF DOWNLOAD Britannicas Encyclopedia Infographica 1 000s of Facts Figures-about Earth space an
  • download pdf Blue Lock Volume 17 by Muneyuki Kaneshiro Yusuke Nomura
  • Online Read Ebook Atelier Ryza 3 Official Visual Collection by Koei Tecmo Games Toridamono
  • Pdf ePub Reclaim the Street Street Photographys Moment by Stephen McLaren Matt Stuart download ebo
  • Online Read Ebook The Temporary Mrs. Marchetti by Melanie Milburne
  • DOWNLOAD PDF EPUB Atlas of Tolkien Deluxe Edition by David Day
  • PDF The Nighthouse Keeper by Lora Senf
  • DOWNLOAD PDF EPUB Love Leda by Mark Hyatt
  • PDF Kindle Rental House A Novel by Weike Wang
  • Download PDF The MANIAC by Benjamín Labatut
  • PDF EPUB Download The Art of Michael Fell by Andrew Wilton Full Book
  • download pdf Ours for Halloween A Dark Monster Romance Novella by Violet Taylor
  • Read online Journey of Hope by Debbie Kaufman
  • NIV Lectio Bible A simple ancient way to read the library of Scripture Cloth over Board The Practi
  • pdf download Close Your Eyes and Count to 10 A Novel by Lisa Unger
  • Download Pdf Alas de hierro Empíreo 2 by Rebecca Yarros
  • Download Pdf No Promises No Lies by Aj Wilding
  • download pdf Outer Banks Dead Break by Jay Coles
  • PDF EPUB Download House of Fury by Evelio Rosero Victor Meadowcroft Full Book
  • Download PDF The Art of Crying The Healing Power of Tears by Pepita Sandwich
  • DOWNLOAD PDF EPUB Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki
  • The Mortal Instruments The Graphic Novel Vol. 5 by Cassandra Clare Cassandra Jean on Iphone New Fo
  • Online Read Ebook Redemption Ranch by Leann Harris
  • DOWNLOADS Fate Kaleid Liner Prisma Illya The Complete Manga Collection by Hiroshi Hiroyama Type-Moo
  • DOWNLOAD PDF EPUB Rodeo Reunion by Shannon Taylor Vannatter
  • PDF Kindle Industrial Policy for the United States Winning the Competition for Good Jobs and High-V
  • Pdf ePub Rez Ball by Byron Graves download ebook
  • Read online Nothing to Hide 2. Young Men from Slovakia by Phil Dlab
  • 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