My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Lost Girls and Love Hotels A Novel by Catherine Hanrahan on Iphone
  • Pdf ePub Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube download e
  • DOWNLOAD PDF EPUB Waste Wars The Wild Afterlife of Your Trash by Alexander Clapp
  • Filthy Rich Vampires Three Queens by Geneva Lee on Ipad
  • Art of Invincible Season 1 by Marc Sumerak Robert Kirkman on Audiobook New
  • Read Pdf Gantz Omnibus Volume 4 by Hiroya Oku Matthew Johnson
  • DOWNLOADS Desert Nightmare PIGGY Original Graphic Novel 2 by Vannotes Malu Menezes
  • PDF DEN Volume 5 The Price of Memories by Richard Corben
  • DOWNLOADS Un lugar feliz by Emily Henry
  • pdf download Decadence by Soph Tang
  • download pdf Patience Esther An Edwardian Romance by SW Searle
  • PDF EPUB Download Pure Excess Capitalism and the Commodity by Todd McGowan Full Book
  • pdf download The Isis Thesis A Study Decoding 870 Ancient Egyptian Signs by Judy Kay King
  • Download Pdf Todd Hido Intimate Distance Revised and Expanded Edition Over Thirty Years of Photograp
  • What to Do When You Get Dumped by Suzy Hopkins Hallie Bateman on Audiobook New
  • Download Pdf Love Off the Record by Samantha Markum
  • download pdf Her Honorable Enemy by Mary Davis
  • Read Pdf Marshmallow Mountain by M a Wardell A J Truman
  • DOWNLOAD PDF EPUB His Best Friends Girl by Christine Rimmer
  • download pdf Sick Houses Haunted Homes and the Architecture of Dread by Leila Taylor
  • PDF Download Betas Alpha Daughter by K. L. Roulo
  • Snail in Space by Rachel Bright Nadia Shireen on Audiobook New
  • DOWNLOADS Redemption Ranch by Leann Harris
  • Todo está jodido by Mark Manson on Iphone New Format
  • PDF The Favorites A Novel by Layne Fargo
  • Online Read Ebook Japanese Joinery by Dorian Bracht
  • Download PDF Father I Dont Want This Marriage Volume 2 by Hong Heesu Roal Yuri
  • Read Pdf The Machine Stops by E. M. Forster Micheal Smith
  • PDF DOWNLOAD A Childs Christmas Wish by Erica Vetsch on Iphone
  • Online Read Ebook Red Team Blues A Martin Hench Novel by Cory Doctorow
  • PDF Download Bride in Training by Gail Gaymer Martin
  • epub download Walking Otherward Forty Meditations on Following Jesus Path of Other-centered Co-suff
  • DOWNLOADS One Message Remains by Premee Mohamed
  • Read pdf Serotonin A Novel by Michel Houellebecq Shaun Whiteside
  • PDF EPUB Download Deep Resilience A four-step journey to unshakable inner strength by Melli OBrien F
  • DOWNLOADS Wind and Truth by Brandon Sanderson
  • epub download How We Sold Our Future The Failure to Fight Climate Change by Jens Beckert Ray Cunnin
  • Distance A Dark Mafia Romance by Luna Mason on Iphone New Format
  • Game of Thrones House of the Dragon Season 2 Inside the Dawn of the Targaryen Civil War by Gina Mc
  • The Twilight Saga Deluxe Hardcover Collection by Stephenie Meyer on Iphone New Format
  • PDF DOWNLOAD Trading Psychology For Dummies by Roland Ullrich on Iphone
  • Chokepoints American Power in the Age of Economic Warfare by Edward Fishman on Iphone New Format
  • Court of the Vampire Queen by Katee Robert on Ipad
  • Online Read Ebook You Are The Brand The 8-Step Blueprint to Showcase Your Unique Expertise and Build
  • Ya no quedan junglas adonde regresar There Are No Jungles Left to Return To by Carlos Augusto Casa
  • Read pdf Fate Breaker by Victoria Aveyard
  • PDF EPUB Download Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buen
  • PDF Kindle Yuletide Redemption and The Pastors Christmas Courtship by Jill Kemerer Glynna Kaye
  • PDF Download Quicksilver by Callie Hart
  • Read pdf The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of Ira
  • 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-11 00:18:50
Previous
Find pet by ID
Next
Update an existing pet
Built with