My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Grandmaster of Demonic Cultivation Mo Dao Zu Shi Manhua Vol. 4 by Mo Xiang Tong Xiu Luo
  • Download PDF Fly Me to the Moon Vol. 27 by Kenjiro Hata
  • PDF DOWNLOAD One-Night Crush by Mia Heintzelman on Iphone
  • PDF EPUB Download A Map to the Door of No Return Notes to Belonging by Dionne Brand Saidiya Hartm
  • Victoria of Many Faces Vol. 1 manga by Syuu Andria McKnight Komo Ushino Nanna Fujimi on Audioboo
  • DOWNLOAD PDF EPUB Classroom of the Elite Year 2 Light Novel Vol. 5 by Syougo Kinugasa Tomoseshuns
  • PDF EPUB Download Zora the Snow Dragon Dragon Girls 15 by Maddy Mara Full Book
  • epub download The Rider by Tim Krabbe
  • pdf download Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos tiem
  • pdf download Pokémon Crochet Bring your favorite Pokémon to life with 20 cute crochet patterns by Sa
  • PDF Kindle Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori
  • PDF EPUB Download Highway to Hell The Armageddon Chronicles 2015-2024 by Scott Ritter Full Book
  • Download Pdf Godzilla The Official Cookbook by Kayce Baker
  • pdf download For Keeps by Marta Perry
  • DOWNLOAD PDF EPUB My Possessive Alpha Twins For Mate by Veejay
  • Download Pdf The MANIAC by Benjamín Labatut
  • MockTales 50 Literary Mocktails Inspired by Classic Works Banned Books and More Alcohol-Free Drink
  • Read pdf Hearing The Call by Nekesa Sepiwe
  • Read pdf Spy x Family Family Portrait by Aya Yajima Tatsuya Endo
  • PDF DOWNLOAD Pete the Cat and the Wright Brothers by James Dean Kimberly Dean on Iphone
  • Download PDF The New Brazilian Mediascape Television Production in the Digital Streaming Age by Eli
  • The Cowboy Father and Frontier Father by Linda Ford Dorothy Clark on Ipad
  • PDF Download The Emperors Sword by Christian Cameron
  • Read online Summer in the City by Alex Aster
  • PDF Trouble Dog From Shelter Dog to Conservation Hero by Carol A. Foote Larry Day
  • Stop Lying to Yourself 101 Hard Truths to Help You Change Your Life by Simon Gilham on Audiobook New
  • The Minimalist-ish Journal Buy Less Live Better and Find Joy in What You Already Have by Christina
  • The Quiet Storm A Historical and Cultural Analysis of the Power Passion and Pain of RB Groups by A
  • PDF EPUB Download Franz Kafka The Drawings by Andreas Kilcher Pavel Schmidt Judith Butler Kurt
  • PDF DOWNLOAD Handbook of Tyranny by Theo Deutinger on Iphone
  • PDF Easy Learning German Dictionary Trusted support for learning by Collins
  • The Matchmakers Match by Jessica Nelson on Audiobook New
  • pdf download Winters Gifts by Ben Aaronovitch
  • PDF Kindle Murder by Degrees A Mystery by Ritu Mukerji
  • Download Pdf The Coworker by Freida McFadden
  • epub download The Housemaid by Freida McFadden
  • Read Pdf Mysticism by Simon Critchley
  • pdf download Tarot for Love Relationships How to read the cards to nurture your heart soul by Jane
  • PDF Download The Art of War Other Classics of Eastern Philosophy by Sun Tzu Lao-Tzu Confucius
  • download pdf Ill Always Be With You by Monica Murphy
  • PDF 2054 A Novel by Elliot Ackerman James Stavridis USN
  • Download Pdf Night Angel Nemesis by Brent Weeks
  • Download PDF Hirayasumi Vol. 3 by Keigo Shinzo
  • download pdf Laozis Dao De Jing A New Interpretation for a Transformative Time by Laozi Ken Liu
  • Online Read Ebook Every Single Secret by Christina Dodd
  • download pdf Plant Protein 80 quick and delicious high-protein vegan recipes packed with healthy wh
  • DOWNLOAD PDF EPUB The Warren Buffett Way 30th Anniversary Edition by Robert G. Hagstrom Peter Ly
  • Download Pdf The Roots of Goodness Zen Master Dogens Teaching on the Eight Qualities of a Great Pers
  • Pdf ePub Spectregraph by James Tynion IV Christian Ward download ebook
  • PDF DOWNLOAD A Murder Most French by Colleen Cambridge on Iphone
  • 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