My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF I Used to Have a Plan But Life Had Other Ideas by Alessandra Olanow
  • Read online In Focus Auras Your Personal Guide by Joylina Goodings
  • epub download Inside the Tentacle Cave Manga Vol. 1 by Umetane Abi Fufukuro
  • Read online The Boyhood of Cain by Michael Amherst
  • Looking for You A Novel by Alexander McCall Smith on Ipad
  • download pdf Counterfeit Courtship by Christina Miller
  • Read online Solo Leveling The Novel Omnibus novel by Chugong Dubu J. Torres Hye Young Im
  • Read Pdf Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley P
  • Read pdf Thrum by Meg Smitherman
  • Read Pdf Binding 13 by Chloe Walsh
  • PDF EPUB Download Pornography Men Possessing Women by Andrea Dworkin Full Book
  • pdf download His Enemys Italian Surrender by Sharon Kendrick
  • PDF The Vikings Bride by Darlene Mindrup
  • DOWNLOADS Bone Pendant Girls by Terry S. Friedman
  • epub download Inherit Your Freedom Break Generational Curses and Reclaim the Future God Has for You
  • Read Pdf The Roots of Goodness Zen Master Dogens Teaching on the Eight Qualities of a Great Person
  • Read pdf The Love Wager by Lynn Painter
  • Pdf ePub Zatanna The Ripper Volume Two by Sarah Dealy Syro download ebook
  • DOWNLOADS 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparaiso V
  • Read Pdf Eyes on Gaza Witnessing Annihilation by Khaled A. Beydoun Mohammad Sabaaneh
  • Online Read Ebook The Hypocrite A Novel by Jo Hamya
  • PDF EPUB Download Sophies World A Novel About the History of Philosophy 30th Anniversary Edition b
  • Pdf ePub Unforgivable An Abusive Priest and the Church That Sent Him Abroad by Kevin Lewis ONeill d
  • Download Pdf Imposible decir adiós We Do Not Part by Han Kang
  • The Fox and the Falcon Deluxe Edition by Piper CJ on Audiobook New
  • Pdf ePub Hills of Shivers and Shadows by Pam Godwin download ebook
  • Spy x Family Vol. 10 by Tatsuya Endo on Iphone New Format
  • Download Pdf Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru
  • DOWNLOADS The Landmark Xenophons Anabasis by
  • Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Changing Times by Nancy H
  • Read online Follow Her Heart by Marta Perry
  • Online Read Ebook Bear Bottom by Stuart Gibbs
  • Read pdf The Sentinel by Lee Child Andrew Child
  • PDF DOWNLOAD The Bones Beneath My Skin by TJ Klune on Iphone
  • More Tales of Pirx the Pilot by Stanislaw Lem on Iphone New Format
  • PDF A Dragon of Black Glass by James Rollins
  • Pdf ePub A Ghost of Caribou A Novel of Suspense by Alice Henderson download ebook
  • Read online Kakegurui Twin Vol. 14 by Homura Kawamoto Kei Saiki Kevin Gifford
  • The Housemaid La empleada by Freida McFadden on Iphone New Format
  • DOWNLOAD PDF EPUB Lonely Planet Sicily 10 by Nicola Williams Sara Mostaccio Cristian Bonetto
  • Read pdf Post-work What It Is Why It Matters and How We Get There by Helen Hester Will Stronge
  • 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
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-16 03:07:46
Previous
Find pet by ID
Next
Update an existing pet
Built with