My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS The Strange House Manga Vol. 2 by Uketsu Kyo Ayano
  • PDF EPUB Download Cold Case Murder Mystery by Nicole Helm Full Book
  • Finding Jupiter by Kelis Rowe on Audiobook New
  • DOWNLOAD PDF EPUB The Psychology of the Armenian Genocide by George Green
  • Amish Reckoning by Jocelyn McClay on Ipad
  • pdf download United States Currency by Kenneth E. Bressett Q David Bowers Patrick Perez
  • Read Pdf Jamsetji Tata Powerful learnings for corporate success by Harish Bhat R Gopalakrishnan
  • PDF EPUB Download Sugar Apple Fairy Tale Vol. 4 manga by Aki YozoranoUdon Miri Mikawa Nicole Wil
  • Harlequin Intrigue March 2025 - Box Set 2 of 2 by Nicole Helm Maggie Wells Janice Kay Johnson on I
  • Download Pdf Mighty Marvel Calendar Book A Visual History The Marvel Comics Calendar Book 1975-1981
  • PDF Its Getting Hot in Here A Novel by Jane Costello
  • pdf download My Possessive Alpha Twins For Mate by Veejay
  • Read Pdf Long Island by Colm Tóibín
  • Read online Never Planned on You A Novel by Lindsay Hameroff
  • PDF Download Swing by Audrey Meeker Sarah Davidson
  • Read pdf The Legend of Sally Jones Graphic Novel by Jakob Wegelius Peter Graves
  • Download PDF Strength and Valor by Mary Ellen Porter Becky Avella
  • My Wandering Warrior Existence by Nagata Kabi on Audiobook New
  • PDF Download The Fourth Consort A Novel by Edward Ashton
  • Download PDF Cultivando una relación íntima con Dios Spanish Edition Experimente y disfrute sus bene
  • Oaths and Omissions Deluxe Edition by Sav R. Miller on Audiobook New
  • DOWNLOADS Monster Hunter Memoirs Saints by Larry Correia John Ringo
  • download pdf Godzilla x Kong The New Empire - The Official Movie Novelization by Greg Keyes
  • Salvage by Denny Connolly on Audiobook New
  • Read pdf Pride and Prejudice by Jane Austen Henry Hitchings Hugh Thomas
  • epub download Murder Road by Simone St. James
  • Online Read Ebook The 32 Unbreakable Laws of Money and Success Transform Your Life and Unlock Your U
  • Online Read Ebook One Day Everyone Will Have Always Been Against This by Omar El Akkad
  • PDF EPUB Download Hidden Angels A completely addictive and pulse-pounding crime thriller by Caroly
  • PDF DOWNLOAD Doctor Who The Official Guide by Doctor Who on Iphone
  • Pdf ePub Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School Stud
  • epub download Fashion School in a Book Design Journal The Practical Workbook for Collection Developm
  • Read pdf A Mystery of Mysteries The Death and Life of Edgar Allan Poe by Mark Dawidziak
  • Futures Edge by Gareth L. Powell on Ipad
  • Sound the Gong by Joan He on Iphone New Format
  • 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 02:44:40
Previous
Find pet by ID
Next
Update an existing pet
Built with