My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Victoria Stitch Dark and Sparkling by Harriet Muncaster
  • PDF David Hamilton Twenty Five Years of an Artist by David Hamilton
  • PDF Download How to Disappear and Live Off the Grid A CIA Insiders Guide by John Kiriakou
  • DOWNLOADS Secure Love Create a Relationship That Lasts a Lifetime by Julie Menanno
  • PDF EPUB Download Toxicity to Triumph Navigating Work with Emotional Intelligence and a Growth Minds
  • Read online Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Alex Aster
  • PDF EPUB Download Never Planned on You A Novel by Lindsay Hameroff Full Book
  • Online Read Ebook Anathema by Keri Lake Julie Belfield
  • Read Pdf The Innkeepers Wife by Lynn A. Coleman
  • Pdf ePub Everyone Is Lying An utterly gripping psychological thriller with a jaw-dropping twist by
  • Read online Hes Not My Type by Meghan Quinn
  • Cook Like a Real Italian Super Sexy and Simple Recipes from Cooking with Bello by Angelo Coassin on
  • pdf download Travis Barker AUS NZ SA MX by Travis Barker Daniel Rojas Clemente Ruiz
  • PDF David Buschs Nikon Z9 Z8 Guide to Digital Still Photography by David D. Busch
  • PDF DOWNLOAD Shangri-La Frontier 15 by Ryosuke Fuji Katarina on Iphone
  • PDF EPUB Download The 48 Laws of Power Special Power Edition by Robert Greene Joost Elffers Full Bo
  • Download Pdf Code Name Arc Angel The Demise of The Devil by Bruce Jarvis
  • PDF EPUB Download The Naturalist Society by Carrie Vaughn Full Book
  • Read online Garts Thought Awesome Edition by Gart Octavius Riot
  • Download Pdf Untouchable by Mike Lawson
  • epub download Ballparks and Baseball Sticker Logbook Track Your Trips to Every Major Baseball Ballp
  • The War of the Worlds by H. G. Wells on Iphone New Format
  • download pdf Lunar New Year Love Story by Gene Luen Yang LeUyen Pham
  • PDF Download Karahan Tepe Civilization of the Anunnaki and the Cosmic Origins of the Serpent of Ed
  • PDF Kindle Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti
  • PDF Kindle Safe Haven Investing for Financial Storms by Mark Spitznagel
  • PDF EPUB Download Crumble A Graphic Novel by Meredith McClaren Andrea Bell Full Book
  • Download PDF The Little Book of Chanel by Lagerfeld The Story of the Iconic Fashion Designer by Emma
  • Read online Wings of Starlight by Allison Saft
  • PDF Download Make Change That Lasts BW Illustrations 9 Simple Ways to Break Free from the Habits T
  • download pdf Albert Can Cook How To Cook Viral Recipes by Albert Niazhvinski
  • DOWNLOADS Designing Brand Identity A Comprehensive Guide to the World of Brands and Branding by Alin
  • DOWNLOAD PDF EPUB David Buschs Nikon Zf Guide to Digital Photography by David D. Busch
  • Download PDF Eat the World A Collection of Poems by Marina Diamandis
  • Perfect Organism An Alien Isolation Companion by Andy Kelly on Audiobook New
  • PDF EPUB Download The Marriage Wish Gods Gift by Dee Henderson Full Book
  • Succession Season One The Complete Scripts by Jesse Armstrong on Ipad
  • PDF Kindle The Worlds Finest Assassin Gets Reincarnated in Another World as an Aristocrat Vol. 7 m
  • DOWNLOADS Stranded for the Holidays by Lisa Carter
  • PDF DOWNLOAD Doctor Who The Eaters of Light Target Collection by Rona Munro on Iphone
  • download pdf Dreamers Nightmare The Dragon Prince Graphic Novel 4 by Nicole Andelfinger Felia Hana
  • The Scarlet Papers by Matthew Richardson on Audiobook New
  • Download Pdf Last Patient of the Night An AJ Docker Thriller by Gary Gerlacher
  • Online Read Ebook Murder in an Irish Garden by Carlene OConnor
  • Read pdf Re-Living My Life with a Boyfriend Who Doesnt Remember Me Manga Vol. 1 by Eiko Mutsuhana
  • Download Pdf Orlando A Norton Critical Edition by Virginia Woolf Madelyn Detloff
  • DOWNLOADS Spring Blooms by Dori Elys Fiona Dulieu
  • The Wizard of Oz by L. Frank Baum Lemn Sissay on Audiobook New
  • PDF Kindle Cyberpunk 2077 The Complete Official Guide by Piggyback
  • Fluentish Language Learning Planner Journal by Jo Franco on Audiobook New
  • 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-13 22:03:10
Previous
Find pet by ID
Next
Update an existing pet
Built with