My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Breathing Cure for Yoga Apply Science Behind Ancient Wisdom for Health and Well-Being with a For
  • PDF EPUB Download Of Beasts and Fowls by Pilar Adon Katie Whittemore Full Book
  • Read Pdf Prince of Montéz Pregnant Mistress by Sabrina Philips
  • Online Read Ebook The Way of Florida A Novel by Russell Persson
  • PDF DOWNLOAD Brimstone Deluxe Limited Edition by Callie Hart on Iphone
  • Download Pdf Dancing with Qubits - Second Edition Find out how quantum computing works and how you c
  • epub download The Wizard of Oz by L. Frank Baum William Wallace Denslow
  • Read pdf On the Art and Craft of Doing Science by Kenneth Catania
  • Read Pdf The Fragrant Flower Blooms With Dignity 1 by Saka Mikami
  • epub download Rich Girl Caretaker 1 by Sakura Miwabe Yuusaku Sakaishi
  • PDF Treasury of the True Dharma Eye Dogens Shobogenzo Eight-Volume Set by Dogen Dogen Carl Bielef
  • DOWNLOADS Hungers Bite by Taylor Robin
  • DOWNLOADS The Fine Art of Erections by Gruenholtz
  • DOWNLOADS Venice and the Ottoman Empire A Tale of Art Culture and Exchange by Stefano Carboni
  • Spirits in Flowers Oracle Deck Includes 52 cards and a 128-page illustrated book by Gillian Kemp on
  • Read pdf Black Holes The Key to Understanding the Universe by Brian Cox Jeff Forshaw
  • PDF EPUB Download Project Hail Mary by Andy Weir Full Book
  • Online Read Ebook The Complete Harrow County by Cullen Bunn Tyler Crook
  • DOWNLOAD PDF EPUB MILES MORALES SPIDER-MAN BY CODY ZIGLAR VOL. 5 - BLOOD HUNT by Cody Ziglar Curt
  • Pdf ePub Equipped to Pray Prophetic Intercession by Kathy Dorrell download ebook
  • Download Pdf Slow Down The Degrowth Manifesto by KOHEI SAITO Brian Bergstrom
  • Blackmailed into the Marriage Bed by Melanie Milburne on Ipad
  • Online Read Ebook Embracing Beauty Serene Spaces for Living by Beth Webb
  • The Warriors Bride Alliance by Denise Lynn on Ipad
  • Download Pdf Growing Up Farley A Chris Farley Story by Kevin Farley Chris Farley Frank Marraffino
  • Read Pdf The City and Its Uncertain Walls A Novel by Haruki Murakami Philip Gabriel
  • PDF EPUB Download Falling for the Single Dad by Lisa Carter Full Book
  • Read pdf Seasparrow by Kristin Cashore
  • Read Pdf Unleashing Oppenheimer Inside Christopher Nolans Explosive Atomic-Age Thriller by Jada Yu
  • PDF EPUB Download Daisy Haites by Jessa Hastings Full Book
  • Read online Missing Baby Doe by B. J. Daniels
  • download pdf The Complete Developer Master the Full Stack with TypeScript React Next.js MongoDB
  • PDF EPUB Download Atlas of Perfumed Botany by Jean-Claude Ellena Karin Doering-Froger Erik Butler
  • PDF Kindle Thucydides A Very Short Introduction by Jennifer T. Roberts
  • Online Read Ebook On Loverose Lane by Samantha Young
  • PDF DOWNLOAD Black Clover Vol. 36 by Yuki Tabata on Iphone
  • More or Less Maddy A Novel by Lisa Genova on Ipad
  • Other Rivers A Chinese Education by Peter Hessler 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