My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Rick Kotanis 400 Million Dollar Summer by Waka T. Brown Full Book
  • download pdf Arctic Wild A Spicy Gay Age Gap Romance by Annabeth Albert
  • PDF DOWNLOAD The Will of the Many by James Islington on Iphone
  • download pdf Marvel Studios 100 Objects Iconic Artifacts from the MCU by Tracey Miller-Zarneke
  • Fleabag The Scriptures by Phoebe Waller-Bridge on Iphone New Format
  • PDF DOWNLOAD Learning Microsoft Power BI Transforming Data into Insights by Jeremey Arnold on Ipho
  • Read online Choujin X Vol. 8 by Sui Ishida
  • PDF Download Tome of Beasts 3 5E by Jeff Lee Richard Green Sarah Madsen Kelly Pawlik
  • Download Pdf Dinosaur Roar by Paul Stickland Henrietta Stickland
  • PDF DOWNLOAD Scrappy Little Nobody by Anna Kendrick on Iphone
  • PDF DOWNLOAD Looking for You A Novel by Alexander McCall Smith on Iphone
  • Behavior Breakthrough 12 Skills to Transform Behavior at Home and in the Classroom by Bailey Payne
  • Read pdf DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel
  • DOWNLOAD PDF EPUB Bottle and the Badge A Cops Journey from Addiction to Atonement by McCarthy Barn
  • Ayakashi Triangle Vol. 13 by Kentaro Yabuki on Audiobook New
  • If I Go Missing by Leslie Wolfe on Iphone New Format
  • download pdf Dragon Age Tevinter Nights by Patrick Weekes
  • PDF EPUB Download FAKE Fake Money Fake Teachers Fake Assets How Lies Are Making the Poor and Middl
  • download pdf Pattern Breakers Why Some Start-Ups Change the Future by Mike Maples Jr Peter Ziebelm
  • pdf download The Undead Fox of Deadwood Forest by Aubrey Hartman
  • epub download Times Comprehensive Atlas of the World by Times UK
  • pdf download Love Letters to a Serial Killer by Tasha Coryell
  • Download PDF This American Ex-Wife How I Ended My Marriage and Started My Life by Lyz Lenz
  • PDF Two-Headed Doctor Listening For Ghosts in Dr. Johns Gris-Gris by David Toop
  • Online Read Ebook The Case of Wagner Twilight of the Idols The Antichrist Ecce Homo Dionysus
  • Read pdf Too Close to Home by Lynette Eason
  • Pdf ePub What Happens at the Beach. by Rachael Stewart download ebook
  • Michael Vey 8 The Parasite by Richard Paul Evans on Audiobook New
  • download pdf The Ranchers Baby Surprise and The Cowboys Unexpected Baby by Kat Brookes Stephanie D
  • DOWNLOAD PDF EPUB The Demon in the Ekur Angels Demons Plasmas Patristics and Pyramids by Josep
  • PDF EPUB Download The Prophets of Doom by Neema Parvini Full Book
  • Read online Tarot for Love Relationships How to read the cards to nurture your heart soul by Jane
  • The Great Awakening Our Prophesized Transformation and the Attainment of Embodied Enlightenment by M
  • PDF Kindle Make Your Home Among Strangers A Novel by Jennine Capo Crucet
  • Download PDF Monstrilio by Gerardo Sámano Córdova
  • Read Pdf Those Beyond the Wall A Novel by Micaiah Johnson
  • Read pdf Endangered Species by Charles E. Gannon
  • The Flowers of Buffoonery by Osamu Dazai Sam Bett on Audiobook New
  • Download Pdf Blue Fox Arm Assembly Internals and Reverse Engineering by Maria Markstedter
  • Love Inspired Suspense March 2025 - Box Set 2 of 2 by Terri Reed Kellie VanHorn Susan Gee Heino on
  • download pdf The Crack at the Heart of Everything by Fiona Fenn
  • PDF Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis
  • download pdf The Strange Case of Jane O. A Novel by Karen Thompson Walker
  • PDF EPUB Download The Museum of Other People From Colonial Acquisitions to Cosmopolitan Exhibitions
  • pdf download Who Can Afford to Be Critical An Inquiry into What We Cant Do Alone as Designers and
  • The Stoic Path to Wealth Ancient Wisdom for Enduring Prosperity by Darius Foroux on Audiobook New
  • PDF Download Double Lives by Mary Monroe
  • DOWNLOAD PDF EPUB Only You Can Love Me by Carolyn Miller
  • Download PDF Masters of Uncertainty The Navy SEAL Way to Turn Stress into Success for You and Your T
  • Pdf ePub Belladonna by Adalyn Grace 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
Modified at 2025-06-06 22:13:50
Previous
Find pet by ID
Next
Update an existing pet
Built with