My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Cursed Princess Club Volume Three A WEBTOON Unscrolled Graphic Novel by LambCat
  • Download PDF Faefever by Karen Marie Moning
  • Mi primer libro de criaturas fantásticas Bedtime Book of Magical Creatures by Stephen Krensky on Ipa
  • Stacked The Art of the Perfect Sandwich by Owen Han on Audiobook New
  • DOWNLOAD PDF EPUB When the Naughty Step Makes Things Worse The Art and Science of Low Demand Paren
  • DOWNLOAD PDF EPUB Grow a New Brain How Spirit and Power Plants Can Protect and Upgrade Your Brain
  • Read pdf Hürtgen Forest 1944 1 The US First Armys Route to the Rhine by Michael McNally Darren Ta
  • Download PDF Purposeful Practice for Poker The Modern Approach to Studying Poker by Dr. Patricia Car
  • DOWNLOAD PDF EPUB Smithsonian Kids Young Explorers Oceans by Ruth Strother John Francis
  • Download PDF Baseball Card Price Guide 47 by Beckett Media
  • Read pdf My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • Download PDF Wellness A novel by Nathan Hill
  • pdf download Dune Exposures by Josh Brolin Greig Fraser
  • Read online Hitorijime My Hero 15 by Memeco Arii
  • Download Pdf The Only Constant A Guide to Embracing Change and Leading an Authentic Life by Najwa Ze
  • PDF EPUB Download A Dragon of Black Glass by James Rollins Full Book
  • download pdf Lights Out An Into Darkness Novel by Navessa Allen
  • Online Read Ebook MockTales 50 Literary Mocktails Inspired by Classic Works Banned Books and More
  • Download PDF Redeemer Gods Lovingkindness in the Book of Ruth--A 6-Week Bible Study with Video Acces
  • Download PDF The Mistletoe Mystery A Maid Novella by Nita Prose
  • Drawing the Female Figure A Guide for Manga Hentai and Comic Book Artists by on Ipad
  • PDF EPUB Download The Other Significant Others Reimagining Life with Friendship at the Center by R
  • Read online Claiming His Brothers Baby by Helen Lacey
  • Judge Dredd A Better World by Rob Williams Arthur Wyatt Henry Flint Boo Cook Jake Lynch on Ipad
  • DOWNLOADS Pods by Shawn Winchell
  • Games Untold by Jennifer Lynn Barnes on Iphone New Format
  • Download Pdf On the Origin of Time Stephen Hawkings Final Theory by Thomas Hertog
  • Download Pdf When the Moon Hatched A Novel by Sarah A. Parker
  • epub download Ya no quedan junglas adonde regresar There Are No Jungles Left to Return To by Carlo
  • PDF Download How Not to Chaperone a Lady A Steamy Historical Romance Book by Virginia Heath
  • A Ghost of Caribou A Novel of Suspense by Alice Henderson on Audiobook New
  • epub download The House Divided Sunni Shia and the Making of the Middle East by Barnaby Rogerson
  • PDF EPUB Download Dangerous Amish Inheritance and Hidden in Amish Country by Debby Giusti Dana R.
  • PDF EPUB Download Bath Time Fish by Adam Gamble Mark Jasper Full Book
  • epub download Thus Spoke Zarathustra A Book for Everyone and No One by Friedrich Nietzsche
  • 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-08 00:38:01
Previous
Find pet by ID
Next
Update an existing pet
Built with