My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Short Game Mitsuru Adachis Baseball Short Story Collection by Mitsuru Adachi
  • pdf download Philosophy and Life Exploring the Great Questions of How to Live by A. C. Grayling
  • DOWNLOADS The Edge of Nowhere by William W Johnstone J A Johnstone
  • Read online Trapped in a Dating Sim The World of Otome Games is Tough for Mobs Light Novel Vol. 13 b
  • PDF The Girl Who Fell Beneath the Sea by
  • pdf download A Practical Guide to Digital Forensics Investigations Edition 2 by Darren Hayes
  • epub download The Ballad of Smallhope and Pennyroyal Meet your favourite new partners-in-crime in 20
  • PDF DOWNLOAD The Haunted Wood A History of Childhood Reading by Sam Leith on Iphone
  • pdf download Daughters of the Blue Moon by Millie Abecassis
  • PDF Kindle The Social Paradox Autonomy Connection and Why We Need Both to Find Happiness by Willi
  • PDF EPUB Download Dinner Tonight Simple Meals Full of Mediterranean Flavor by Meliz Berg Full Book
  • PDF DOWNLOAD Crook Manifesto A Novel by Colson Whitehead on Iphone
  • pdf download Max in the Land of Lies A Tale of World War II by Adam Gidwitz
  • The Apocalypse of the Birds 1 Enoch and the Jewish Revolt against Rome by Elena L Dugan on Ipad
  • Online Read Ebook Royal Scoundrel by Saxon James
  • download pdf The Story of Disney 100 Years of Wonder by John Baxter Bruce Steele Staff of the Wal
  • Online Read Ebook Witch and Mercenary Light Novel Vol. 1 by Chohokiteki Kaeru Kanase Bench
  • PDF Kindle The Formula How Rogues Geniuses and Speed Freaks Reengineered F1 into the Worlds Faste
  • Pdf ePub The Revolutionary Self Social Change and the Emergence of the Modern Individual 1770-1800
  • DOWNLOAD PDF EPUB Moanas Canoe Crew Disney Moana 2 by RH Disney Disney Storybook Art Team
  • Nikon Zf Pocket Guide Buttons Dials Settings Modes and Shooting Tips by Rocky Nook on Iphone New
  • Between Never and Forever by Shain Rose on Ipad
  • PDF Kindle Guy Bourdin Photofile by Gilles De Bure
  • The Daughters War by Christopher Buehlman on Iphone New Format
  • PDF Kindle The Twilight Saga Deluxe Hardcover Collection by Stephenie Meyer
  • PDF DOWNLOAD Lonely Planet Experience Andalucia by Anna Kaminski Fiona Flores Watson Isabella No
  • Online Read Ebook Delusions and Grandeur Dreamers of the New West by Mark Sundeen
  • Read pdf Goodbye Overtime This Reincarnated Villainess Is Living for Her New Big Brother Volume 3
  • Read Pdf Accomplice to the Villain by Hannah Nicole Maehrer
  • PDF Kindle NIV Lectio Bible A simple ancient way to read the library of Scripture Cloth over Boar
  • PDF EPUB Download A Mystery of Mysteries The Death and Life of Edgar Allan Poe by Mark Dawidziak Ful
  • Download PDF The Japanese Myths A Guide to Gods Heroes and Spirits by Joshua Frydman
  • PDF Delicious in Dungeon World Guide The Adventurers Bible by Ryoko Kui
  • DOWNLOAD PDF EPUB The Astrology Dictionary Cosmic Knowledge from A to Z by Donna Woodwell
  • PDF Kindle The Marshals Mission by Anna Zogg
  • PDF Download Framed Drawing Techniques Mastering Ballpoint Pen Graphite Pencil and Digital Tools
  • pdf download How to Romanticize Your Life Joyful Tips and Advice to Elevate Every Day by Sophie Gold
  • 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
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-13 01:38:20
Previous
Find pet by ID
Next
Update an existing pet
Built with