My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Honey Lemon Soda Vol. 7 by Mayu Murata on Iphone
  • PDF Download The Diary of a Young Girl The Definitive Edition by Anne Frank Otto M. Frank Mirjam
  • DOWNLOADS High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves
  • PDF EPUB Download Danes Mark by Lora Leigh Full Book
  • Online Read Ebook Throne of Secrets by Kerri Maniscalco
  • PDF Kindle Relaxed Coastal Style by Sally Denning
  • PDF Kindle Princeton Review AP Statistics Prep 20th Edition 5 Practice Tests Complete Content Rev
  • PDF EPUB Download The Ax by Donald E. Westlake Full Book
  • PDF EPUB Download Harriet Tubman Military Scout and Tenacious Visionary From Her Roots in Ghana to
  • Read online Ill Always Be With You by Monica Murphy
  • PDF Download The Electric State by Simon Stalenhag
  • epub download Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage
  • DOWNLOADS Cold Nights Warm Hearts by Nora Roberts
  • PDF EPUB Download Effortless Make It Easier to Do What Matters Most by Greg McKeown Full Book
  • PDF Kindle The Survivor Wants to Die at the End by Adam Silvera
  • PDF EPUB Download Only One Touch Heiße Friends-to-Lovers Eishockey Romance by Natasha Madison Steph
  • download pdf Ava and Maya the Fairy Dragon by Medha Bhaskar Madhuri Lakkapragada Vanii Suki
  • Read online The Literary Taylor Swift Songwriting and Intertextuality by Betsy Winakur Tontiplaphol
  • Dork Diaries Books 13-15 Boxed Set Dork Diaries 13 Dork Diaries 14 Dork Diaries 15 by Rachel Renée R
  • Read Pdf James Joyce A Life by Gabrielle Carey
  • DOWNLOAD PDF EPUB Teen Titans Raven by Kami Garcia Gabriel Picolo
  • Download Pdf Junie A Novel by Erin Crosby Eckstine
  • Read online The Do-Over by Lynn Painter
  • Trading Psychology For Dummies by Roland Ullrich on Ipad
  • Exes Foes by Amanda Woody on Iphone New Format
  • PDF Kindle The Untold Story of Milk Revised and Updated The History Politics and Science of Natur
  • PDF DOWNLOAD Dracones Loqui by Ravynne Phelan on Iphone
  • Pdf ePub The Wolf Tree by Laura McCluskey download ebook
  • Read pdf In the Absence of Men by Philippe Besson Frank Wynne
  • pdf download The Art of Clear Thinking A Stealth Fighter Pilots Timeless Rules for Making Tough Deci
  • pdf download Manual of Biogenic House Sections Materials and Carbon by Paul Lewis Marc Tsurumaki D
  • La Casa Neville 2 No quieras nada vil Novela histórica The Neville House 2 A Historical Novel by F
  • Pdf ePub With All Her Heart An Amish Calling Novel by Kelly Irvin download ebook
  • PDF EPUB Download Forgive Why Should I and How Can I by Timothy Keller Full Book
  • PDF EPUB Download Three Kinds of Lucky by Kim Harrison Full Book
  • download pdf Bad Seed by Sharon Sala
  • PDF Kindle Troubled A Memoir of Foster Care Family and Social Class by Rob Henderson
  • DOWNLOADS The Likeness of Things Unlike A Poetics of Incommensurability by Sharon Cameron
  • DOWNLOADS With Open Ears 60 Reflections on the Wonder of Sound from a Woman Born Blind by Karen Wing
  • Download Pdf Private Equity A Memoir by Carrie Sun
  • download pdf Down the Drain by Julia Fox
  • epub download Good Nature Why Seeing Smelling Hearing and Touching Plants is Good for Our Health
  • Heaven and Hell by Jón Kalman Stefánsson Philip Roughton on Ipad
  • Finding Your Balance A Workbook for Mental Emotional and Physical Wellness by Ebone Brown on Iphon
  • Download PDF Mastering Quantum Mechanics Essentials Theory and Applications by Barton Zwiebach
  • Read pdf The Flash by Mark Waid Omnibus Vol. 2 by Mark Waid Mike Wieringo
  • PDF DOWNLOAD Ballad of Sword and Wine Qiang Jin Jiu Novel Vol. 3 by Tang Jiu Qing St on Iphone
  • Read pdf Konbini Cult recipes stories and adventures from Japans iconic convenience stores by Bre
  • PDF EPUB Download Joel Meyerowitz A Question of Color by Joel Meyerowitz Robert Shore Full Book
  • Game of Thrones House of the Dragon Season 2 Inside the Dawn of the Targaryen Civil War by Gina Mc
  • 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