My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Such Sweet Thunder A Novel by Vincent O. Carter Jesse McCarthy
  • PDF Dive 1 The Discovery by Gordon Korman
  • PDF DOWNLOAD The Hundredth Voice by Caitlin Like on Iphone
  • DOWNLOAD PDF EPUB Alas de hierro Empíreo 2 Edición coleccionista enriquecida y limitada Iron Fla
  • Online Read Ebook My Hero Academia Vol. 40 by Kohei Horikoshi
  • Dragonlance Chronicles by Margaret Weis Tracy Hickman on Iphone New Format
  • Read pdf I Want to Escape from Princess Lessons Manga Vol. 1 by Izumi Sawano Uri Sugata Miru Yum
  • download pdf Kaiju No. 8 Exclusive on the Third Division by Naoya Matsumoto Keiji Ando
  • PDF DOWNLOAD Survival Gardening Grow Your Own Emergency Food Supply from Seed to Root Cellar by S
  • PDF Kindle Lennys Big Climb by Mark Chappel
  • pdf download Guarding the Mountain Mans Secret by Misty M Beller
  • DOWNLOADS The Bad Guys in the Serpent and the Beast The Bad Guys 19 by Aaron Blabey
  • PDF EPUB Download The Play Briar U 3 by Elle Kennedy Full Book
  • Read Pdf Ghostbusters by Nancy Holder Katie Dippold Paul Feig
  • DOWNLOADS Skys End by Marc J Gregson
  • Read Pdf The Good Girl by Sb Rogue
  • download pdf After Lives On Biography and the Mysteries of the Human Heart by Megan Marshall
  • Online Read Ebook The Love Lyric by Kristina Forest
  • Download Pdf The Jack Smith Report Final Report on Efforts to Interfere with the Lawful Transfer of
  • DOWNLOAD PDF EPUB CompTIA Data Study Guide Exam DA0-001 by Mike Chapple Sharif Nijim
  • DOWNLOADS Sweet Potato Soul Vegan Vibes 100 Soulful Plant-Based Recipes for Healthy Everyday Meals A
  • Read online Bookshops Bonedust by Travis Baldree
  • Download PDF Kitten Ninja Braver Than Ever by Colleen AF Venable Marcie Colleen Ellen Stubbings
  • Read Pdf One-Punch Man Vol. 29 by ONE Yusuke Murata
  • epub download Lackadaisy Essentials by Tracy J. Butler
  • Read pdf Mathematical Methods and Physical Insights An Integrated Approach by Alec J. Schramm
  • Download Pdf Graph Algorithms the Fun Way Powerful Algorithms Decoded Not Oversimplified by Jeremy
  • PDF EPUB Download Light Chaser by Cheryl Babirad Full Book
  • DOWNLOAD PDF EPUB The Lost Rainforests of Britain by Guy Shrubsole
  • Aria of the Beech Forest Vol. 2 by Yugiri Aika Yumi Tanaka on Iphone New Format
  • Online Read Ebook Losing the Garden The Story of a Marriage a Suicide and a New Life of Self-Disco
  • PDF Download Exes Foes by Amanda Woody
  • Download PDF Halo Meridian Divide by Cassandra Rose Clarke
  • PDF EPUB Download Counting the Cost by Jill Duggar Derick Dillard Craig Borlase Full Book
  • PDF Download The Boy You Always Wanted by Michelle Quach
  • Online Read Ebook Whotopia The Ultimate Guide to the Whoniverse by Jonathan Morris Simon Guerrier
  • epub download CAPTAIN AMERICA EPIC COLLECTION THE SUPERIA STRATAGEM NEW PRINTING by Mark Gruenwald
  • epub download The Violent Take It by Force The Christian Movement That Is Threatening Our Democracy
  • Read pdf Cocktales 3 tales 3 eras 3 bars by Chantz Perkins
  • PDF Download When Religion Hurts You Healing from Religious Trauma and the Impact of High-Control
  • Read online Yeonnam-Dongs Smiley Laundromat A Novel by Kim Jiyun
  • pdf download Brandon Sandersons White Sand Omnibus by Brandon Sanderson Rik Hoskin Isaac Stewart
  • PDF EPUB Download Wander in the Dark by Jumata Emill Full Book
  • download pdf Alphabetical Diaries by Sheila Heti
  • PDF DOWNLOAD Quien bien te quiere te hará feliz El método revolucionario que transformará tu relac
  • PDF Download Mihi Ever After Home Sweet Home by Tae Keller Geraldine Rodríguez
  • Online Read Ebook El hombre más rico de Babilonia The Richest Man in Babylon by George S. Clason
  • PDF Kindle Madame Sorels Lodger by Tracy Wise
  • Online Read Ebook The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the K
  • Pdf ePub The Story Collector by Evie Woods download ebook
  • 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