My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download The Woodpecker Method by Axel Smith Hans Tikkanen
  • Read Pdf Black Moon Prophecy 1 by GY
  • PDF Kindle Yata-Momo Part 1 by Harada
  • Download PDF Forget Me Not by Alyson Derrick
  • Read online Pomegranate A Novel by Helen Elaine Lee
  • DOWNLOADS The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David A.
  • PDF EPUB Download If Cats Disappeared from the World A Novel by Genki Kawamura Eric Selland Full
  • PDF EPUB Download Dream State A Novel by Eric Puchner Full Book
  • epub download Trauma-Aware Education Essential information and guidance for educators education sit
  • Bake With Brooki by Brooke Bellamy on Audiobook New
  • Download PDF When We Lied by Claire Contreras
  • PDF Geiger Volume 2 The Nuclear Knight by Geoff Johns Gary Frank Brad Anderson
  • Download Pdf Starfinder RPG Starfinder Enhanced by Kate Baker Michael Bramnik Jessica Catalan Joh
  • epub download Wagner Group - Private Military Company Volume 1 Establishment Purpose Profile and H
  • Read pdf The Songbird and the Heart of Stone by Carissa Broadbent
  • PDF Culpa mía My Fault by Mercedes Ron
  • PDF EPUB Download A Path of Life Through Faith and Reflection 31 Days of Devotion by Tynesa M Mosl
  • DOWNLOADS Something Like Fate A Novel by Amy Lea
  • The Veiled Kingdom by Holly Renee on Ipad
  • Tabers Cyclopedic Medical Dictionary by Donald Venes MD MSJ on Iphone New Format
  • Online Read Ebook The Princess and the Grilled Cheese Sandwich A Graphic Novel by Deya Muniz
  • PDF DOWNLOAD Detroit Become Human -Tokyo Stories- Vol. 2 manga by Quantic Quantic Dream John Nea
  • PDF DOWNLOAD Wolf Gone Wild Stay A Spell Book 1 by Juliette Cross on Iphone
  • PDF EPUB Download Why Does It Snow Weather with The Very Hungry Caterpillar by Eric Carle Full Boo
  • PDF DOWNLOAD Hell Mode Volume 8 by Hamuo Mo on Iphone
  • Pdf ePub Smithsonian Kids Young Explorers Oceans by Ruth Strother John Francis download ebook
  • DOWNLOAD PDF EPUB DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel
  • Read Pdf Lascivia. Libro 1 Lascivious Book 1 by Eva Muñoz
  • Read Pdf House of Flame and Shadow by Sarah J. Maas
  • epub download Gokurakugai Vol. 3 by Yuto Sano
  • Read Pdf Mavericks Life stories and lessons of historys most extraordinary misfits by Jenny Draper
  • DOWNLOADS Mathematics An Illustrated History of Numbers 100 Ponderables Revised and Updated by Tom J
  • Read Pdf Hands on Research for Artists Designers Educators by Harma Staal Jojanneke Gijsen Mir
  • PDF DOWNLOAD Sylvia Doe and the 100-Year Flood by Robert Beatty on Iphone
  • PDF EPUB Download Cartography. by Kenneth Field Full Book
  • Read online Boy From the Valleys My unexpected journey by Luke Evans
  • Read online Slow Down The Degrowth Manifesto by KOHEI SAITO Brian Bergstrom
  • PDF Download Anna O by Matthew Blake
  • Download Pdf Atlas of the Invisible Maps and Graphics That Will Change How You See the World by Jame
  • Download Pdf The Anaconda in the Chandelier Writings on China by Perry Link
  • DOWNLOAD PDF EPUB Wicked Darlings by Jordyn Taylor
  • PDF EPUB Download The Wanderlust Kitchen A spiritual guide to healing recipes from around the world
  • epub download The Game Masters Book of Instant Towns and Cities 160 unique villages towns settleme
  • PDF EPUB Download The Emperors Sword by Christian Cameron Full Book
  • A Father in the Making by Marta Perry Deb Kastner on Audiobook New
  • PDF Download Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos ti
  • Read Pdf Failure Frame I Became the Strongest and Annihilated Everything With Low-Level Spells Lig
  • PDF Sumud A New Palestinian Reader by Malu Halasa Jordan Elgrably
  • pdf download Stars of Chaos Sha Po Lang Novel Vol. 4 by Priest Eleven small jars
  • CLAMP Premium Collection Tokyo Babylon Vol. 6 by Clamp Amanda Haley 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