My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Joy of Believing by Madeleine Delbrel
  • Cambridge Guide to Schema Therapy by Robert N. Brockman Susan Simpson Christopher Hayes Remco van
  • download pdf Broken Hearts And Toxic Traits I am The Problem by Dionisio Burgos Louis Morales
  • download pdf Never Lie by Freida McFadden
  • Read online Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • PDF Download Not About a Boy by Myah Hollis
  • DOWNLOAD PDF EPUB How We Sold Our Future The Failure to Fight Climate Change by Jens Beckert Ray
  • PDF EPUB Download Loca by Alejandro Heredia Full Book
  • Online Read Ebook Hilo Book 11 The Great Space Iguana A Graphic Novel by Judd Winick
  • PDF DOWNLOAD One-Night Crush by Mia Heintzelman on Iphone
  • Read pdf Woman Hating by Andrea Dworkin
  • pdf download Learn AI-assisted Python Programming With GitHub Copilot and ChatGPT by Leo Porter Dan
  • PDF Download Stanley Kubricks The Shining by J. W. Rinzler M M Lee Unkrich
  • DOWNLOAD PDF EPUB The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Stev
  • PDF DOWNLOAD Find My Daughter A totally addictive and gripping serial killer thriller by Jennifer
  • Read online Concerning My Daughter A Novel by Kim Hye-jin Jamie Chang
  • PDF Kindle Feigin and Cherrys Textbook of Pediatric Infectious Diseases 2-Volume Set by James Cherr
  • Pdf ePub How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorable a
  • PDF Kindle The Whole Time by Catherine Bybee
  • Read Pdf Little Rot A Novel by Akwaeke Emezi
  • Download Pdf Shark Girl by Kate Beaton
  • Joshua Weissman Texture Over Taste by Joshua Weissman on Ipad
  • Racing the Clouds by Sydney Dunlap on Iphone New Format
  • Pdf ePub Hunting the Falcon Henry VIII Anne Boleyn and the Marriage That Shook Europe by John Guy
  • Download Pdf How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorabl
  • pdf download Bookshops Bonedust Deluxe Edition by Travis Baldree
  • pdf download The Language of Remembering by Patrick Holloway
  • epub download Little Tarts 1 X Pastry Recipe 60 X Fillings by Meike Schaling
  • How to Piss Off Men 106 Things to Say to Shatter the Male Ego by Kyle Prue on Ipad
  • Download PDF Famous Last Words A Novel by Gillian McAllister
  • DOWNLOAD PDF EPUB Montecore by Luis Cervantes Duran Windfield Gustavo Machado
  • Online Read Ebook The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings
  • Download PDF Slow Dance A Novel by Rainbow Rowell
  • PDF Final Fantasy VII Remake Traces of Two Pasts Novel by Kazushige Nojima
  • DOWNLOADS The Perfect Weapon War Sabotage and Fear in the Cyber Age by David E. Sanger
  • Wonders of the Heart by Ruth Scofield on Ipad
  • Download PDF The Hidden Girl and Other Stories by Ken Liu
  • Pdf ePub Throbbing Gristle An Endless Discontent by Ian Trowell download ebook
  • Pdf ePub Adolescence Boy it by Aya Sakyou Yuzuki N download ebook
  • More or Less Maddy A Novel by Lisa Genova on Iphone New Format
  • epub download The Shonen Jump Guide to Making Manga by Weekly Shonen Jump Editorial Department
  • Online Read Ebook The Mindful Self-Compassion Workbook A Proven Way to Accept Yourself Build Inner
  • PDF EPUB Download Bi The Hidden Culture History and Science of Bisexuality by Julia Shaw Full Book
  • Download PDF The Amalfi Curse by Sarah Penner
  • pdf download Taylor Swift and the Philosophy of Re-recording The Art of Taylors Versions by Brandon
  • Read online Warriors Changing Skies 1 The Elders Quest by Erin Hunter
  • Read online Miriams Sisters Deborahs Daughters When women lead the way by Liz Crumlish
  • download pdf Introduction to Magic Volume III Realizations of the Absolute Individual by Julius Ev
  • Download Pdf The Nanny Share An addictive twisty and gripping psychological thriller by Emily Shine
  • Online Read Ebook Millionaire Habits How to Achieve Financial Independence Retire Early and Make a
  • 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