My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Old Gods New Enigmas Marxs Lost Theory by Mike Davis download ebook
  • Family of Her Dreams by Keli Gwyn on Ipad
  • Read Pdf Understanding Palestine Israel by Phyllis Bennis Omar Baddar
  • DOWNLOAD PDF EPUB On Arrows Essays in British Architecture and Its Environments by Laurent Stalder
  • PDF Wicked The Life and Times of the Wicked Witch of the West by Gregory Maguire
  • Read online Asadora Vol. 8 by Naoki Urasawa
  • PDF I Got Abducted by Aliens and Now Im Trapped in a Rom-Com by Kimberly Lemming
  • PDF EPUB Download Mirror Mirror by Christina Nolte Full Book
  • Read pdf Come My Fanatics A Journey into the World of Electric Wizard by Dan Franklin
  • Read online DD Dungeon Masters Guide 2024 by Wizards of the Coast
  • epub download Pathfinder RPG Guns Gears Remastered P2 by Michael Sayre Mark Seifter Logan Bonner
  • Download PDF You Are Fatally Invited A Novel by Ande Pliego
  • Kairos by Jenny Erpenbeck Michael Hofmann on Audiobook New
  • Download PDF We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson
  • PDF EPUB Download The First Girl by Claire McGowan Full Book
  • Read pdf The Extraterrestrial Species Almanac The Ultimate Guide to Greys Reptilians Hybrids an
  • Read pdf The Dragonet Prophecy Limited Edition Wings of Fire Book One by Tui T. Sutherland
  • PDF DOWNLOAD Fate Kaleid Liner Prisma Illya The Complete Manga Collection by Hiroshi Hiroyama Typ
  • Read pdf Return to the Isle of the Lost The Graphic Novel by Melissa de la Cruz Robert Venditti
  • Download PDF Were So Blessed Forty Days of Devotions and Activities for the Whole Family by CAIN Ja
  • Download Pdf La invención de todas las cosas The Invention of All Things by Jorge Volpi
  • pdf download The Pool by Hannah Tunnicliffe
  • DOWNLOADS The Official Heartstopper Coloring Book by Alice Oseman
  • PDF EPUB Download Season of Fire by Cidney Mayes Full Book
  • Download PDF Parachute Kids A Graphic Novel by Betty C. Tang
  • Game of Thrones The Costumes the official book from Season 1 to Season 8 by Michele Clapton Gina M
  • The Dukes Only Desire by Anna Harrington on Audiobook New
  • pdf download Deck the Halls and His Christmas Bride by Arlene James Dana Corbit
  • PDF DOWNLOAD The Diaries of Franz Kafka by Franz Kafka Ross Benjamin on Iphone
  • PDF DOWNLOAD Girlmode by Magdalene Visaggio Paulina Ganucheau on Iphone
  • PDF DOWNLOAD The Official Yellowstone Bar Book 75 Cocktails to Enjoy after the Works Done by Lex T
  • Read pdf La novia gitana The Gypsy Bride by Carmen Mola
  • Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Kendrick Kim La
  • The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze on Audiobook New
  • PDF DOWNLOAD The Strange Case of Jane O. A Novel by Karen Thompson Walker on Iphone
  • 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 22:48:15
Previous
Find pet by ID
Next
Update an existing pet
Built with