My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Under the Bramble Arch by Corinne Boyer
  • Pdf ePub At the Bottom of the Garden A Novel by Camilla Bruce download ebook
  • PDF EPUB Download Dragon Age Tevinter Nights by Patrick Weekes Full Book
  • pdf download Wild Berries by Julie Flett Earl N. Cook
  • PDF EPUB Download When the Sky Burned October 8 1871 by Liz Tolsma Full Book
  • Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan on Iphone New Format
  • epub download The Underworld Series Rise of the King Volume Two by RJ Kane
  • pdf download Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley
  • Read Pdf Strongmen Mussolini to the Present by Ruth Ben-Ghiat
  • Download PDF The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi
  • DOWNLOADS Montana Unbranded by Nadia Nichols
  • DOWNLOAD PDF EPUB Esquire The Handbook of Mens Style A Guide to Looking Good by Esquire Michael B
  • Sigil Witchery Oracle 60 Cards for Drawing Magic by Laura Tempest Zakroff on Iphone New Format
  • epub download Disposable Americas Contempt for the Underclass by Sarah Jones
  • epub download Bonded in Death by J. D. Robb
  • DOWNLOAD PDF EPUB Unforgivable An Abusive Priest and the Church That Sent Him Abroad by Kevin Lewi
  • Pdf ePub Stargrave Hope Eternal by Joseph A McCullough Biagio DAlessandro download ebook
  • Online Read Ebook Homebody by Theo Parish
  • PDF DOWNLOAD Mastering the Mental Game of Trading Harnessing the power of the inner self to fuel t
  • Under the Same Stars by Libba Bray on Audiobook New
  • PDF EPUB Download Guarding the Witness by Laura Scott Heather Woodhaven Full Book
  • epub download Dreamers Nightmare The Dragon Prince Graphic Novel 4 by Nicole Andelfinger Felia Hana
  • pdf download SUPER HXEROS Vol. 7 by Ryoma Kitada
  • PDF EPUB Download DC Ultimate Character Guide New Edition by DK Full Book
  • PDF Happy Place by Emily Henry
  • Read Pdf Choujin X Vol. 8 by Sui Ishida
  • DOWNLOADS Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley Pe
  • DOWNLOADS Alien Covenant Davids Drawings by Dane Hallett Matt Hatton
  • Online Read Ebook Normal People A Novel by Sally Rooney
  • pdf download Ballparks and Baseball Sticker Logbook Track Your Trips to Every Major Baseball Ballpa
  • Online Read Ebook A Magical Girl Retires A Novel by Park Seolyeon Anton Hur
  • PDF EPUB Download Hidden History of Walt Disney World by Foxx Nolte Full Book
  • The Voices of Adriana by Elvira Navarro Christina MacSweeney on Audiobook New
  • Read online The Edge of Nowhere by William W Johnstone J A Johnstone
  • Being Lolita A Memoir by Alisson Wood on Audiobook New
  • PDF Texas Cinderella and Would-Be Wilderness Wife by Winnie Griggs Regina Scott
  • epub download Bob Dylan Mixing up the Medicine by Mark Davidson Parker Fishel
  • Pdf ePub ULTRAMAN THE MYSTERY OF ULTRASEVEN by Kyle Higgins Mat Groom Davide Tinto Marvel Variou
  • Read Pdf Vow of Revenge A Novel by P. Rayne
  • PDF EPUB Download Free Agents How Evolution Gave Us Free Will by Kevin J. Mitchell Full Book
  • PDF The Sensitive Patients Healing Guide Top Experts Offer New Insights and Treatments for Environm
  • Read Pdf Toi Te Mana An Indigenous History of Maori Art by Deidre Brown Ngarino Ellis Jonathan M
  • DOWNLOAD PDF EPUB The Making of Baron Haversmere by Carol Arens
  • PDF EPUB Download My Friends A Novel by Hisham Matar Full Book
  • Just for the Summer by Abby Jimenez on Iphone New Format
  • Read Pdf Dead by Daylight The Legion by Nadia Shammas Dillon Snook
  • pdf download Thrum by Meg Smitherman
  • PDF Kindle The Kaggle Workbook Self-learning exercises and valuable insights for Kaggle data scienc
  • PDF EPUB Download CompTIA Security SY0-701 Cert Guide by Lewis Heuermann Full Book
  • PDF EPUB Download Short Game Mitsuru Adachis Baseball Short Story Collection by Mitsuru Adachi Ful
  • 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 01:23:45
Previous
Find pet by ID
Next
Update an existing pet
Built with