My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Last Stand of the Stone Fist A Songs of Chaos Novella by Michael R. Miller download ebook
  • epub download Phoo Action Deluxe Edition by Jamie Hewlett Matthew Wakeham
  • DOWNLOADS The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for your
  • Online Read Ebook Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranga
  • Pdf ePub Between the Pines by Amber Palmer download ebook
  • DOWNLOAD PDF EPUB Beyond Disruption Innovate and Achieve Growth without Displacing Industries Com
  • PDF Download The Most Notorious by Jaki Yamorichan
  • PDF EPUB Download Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki Full Book
  • Online Read Ebook Framed Environment Design by Marcos Mateu-Mestre
  • PDF Kindle Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda Stewart
  • Download PDF The Book of Animal Secrets Natures Lessons for a Long and Happy Life by David B. Agus
  • download pdf Game of Thrones House of the Dragon Season 2 Inside the Dawn of the Targaryen Civil
  • PDF EPUB Download InvestiGators Agents of S.U.I.T. Wild Ghost Chase by John Patrick Green Full Book
  • PDF Download Make Work Fair Data-Driven Design for Real Results by Iris Bohnet Siri Chilazi
  • Download PDF My Family and I A Mississippi Memoir by Adam Gussow
  • PDF DOWNLOAD El problema final by Arturo Pérez-Reverte on Iphone
  • Read Pdf Why Historically Black Colleges and Universities Matter 25 Years of Historical Research f
  • PDF EPUB Download Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos
  • pdf download The Frontier Lord Begins with Zero Subjects Volume 7 by Fuurou Kinta Hengtee Lim
  • download pdf Love is an Illusion - The Queen Vol. 1 by Fargo
  • Download Pdf Eyes on Gaza Witnessing Annihilation by Khaled A. Beydoun Mohammad Sabaaneh
  • Pdf ePub No Saint by Donna Alam download ebook
  • Download PDF Playground by Aron Beauregard
  • Last Trip to Salida by Anissa Lujan Peyton Bassett Madeline Dyer on Iphone New Format
  • PDF Download Inside the Tentacle Cave Manga Vol. 4 by Umetane Abi Fufukuro
  • Read Pdf Deadly Obsession by Katie Reus
  • Pdf ePub Making Pottery without a Kiln Happy Little Projects to Make for Your Home by Daniela Schmi
  • Learning Go An Idiomatic Approach to Real-World Go Programming by Jon Bodner on Iphone New Format
  • Read Pdf The Dawn of the Cursed Queen by Amber V Nicole
  • PDF Download Thursdays at Eight by Debbie Macomber
  • The Japanese Myths A Guide to Gods Heroes and Spirits by Joshua Frydman on Iphone New Format
  • DOWNLOAD PDF EPUB The Knight and the Moth by Rachel Gillig
  • Read pdf Just a Hint -- Clint by Lori Foster
  • Read pdf The Family Upstairs by Lisa Jewell
  • Read pdf Frankenstein Signature Classics by Mary Shelley
  • PDF EPUB Download The Landmark Xenophons Anabasis by Full Book
  • epub download JavaScript Essentials For Dummies by Paul McFedries
  • Read online How to Romanticize Your Life Joyful Tips and Advice to Elevate Every Day by Sophie Goldi
  • Read Pdf Luda A Novel by Grant Morrison
  • The Illustrated Field Guide to DMT Entities Machine Elves Tricksters Teachers and Other Interdime
  • Online Read Ebook Pitch Imperfect by Elise Alden
  • 2 000 Years of Christs Power Vol. 5 The Age of Enlightenment and Awakening by Nick Needham on Ipad
  • Pdf ePub Jamie McGuire Beautiful Series Boxed Set Beautiful Disaster Walking Disaster and A Beaut
  • DOWNLOADS Three Bags Full by Leonie Swann Anthea Bell A. J. Finn
  • Read online Budgerigars The Color Revolution by Don Burke
  • DOWNLOADS San Sebastian 1911 by Robert Irons Andy Soltis
  • Online Read Ebook The National Telepathy by Roque Larraquy Frank Wynne
  • Download PDF The Language of Remembering by Patrick Holloway
  • epub download Goodbye Overtime This Reincarnated Villainess Is Living for Her New Big Brother Volum
  • Download PDF Final Fantasy VII Remake Material Ultimania by
  • 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-12 23:28:40
Previous
Find pet by ID
Next
Update an existing pet
Built with