My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook The Crash by Freida McFadden
  • Download Pdf It Takes More Than a Pretty Face to Fall in Love Vol. 1 by Karin Anzai
  • PDF Download Brimstone Deluxe Limited Edition by Callie Hart
  • PDF Download El enigma de la habitacion 622 The Enigma in Room 622 by Joel Dicker
  • DOWNLOADS Rozando el cielo En el hockey y el amor todo vale Mile High by Liz Tomforde
  • Upstairs Downstairs Baby by Cat Schield on Iphone New Format
  • epub download The Reappearance of Rachel Price by Holly Jackson
  • PDF Download Doctor Who The Legends of River Song by Various
  • Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson on Iphone New Forma
  • PDF EPUB Download Midnight Ruin Dark Olympus 6 by Katee Robert Full Book
  • pdf download The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by Ran
  • PDF EPUB Download Imposible decir adiós We Do Not Part by Han Kang Full Book
  • DOWNLOADS Black Wolf A Novel by Juan Gómez-Jurado
  • Online Read Ebook The Killing of Gaza Reports on a Catastrophe by Gideon Levy
  • DOWNLOAD PDF EPUB Heartstopper 5 A Graphic Novel by Alice Oseman
  • pdf download Lobster and other things Im learning to love by Hollie McNish
  • DOWNLOAD PDF EPUB The Art of Overwatch Volume 2 by Matt Burns
  • Read pdf Big Bike Little Bike by Kellie DuBay Gillis Jacob Souva
  • PDF EPUB Download Vagabondo by Paul Freeman Full Book
  • DOWNLOAD PDF EPUB The Diaries of Franz Kafka by Franz Kafka Ross Benjamin
  • pdf download The New Art of Coffee From Morning Cup to Caffeine Cocktail by Ryan Castelaz Kevin Miy
  • pdf download Total War Warhammer - The Art of the Games by Paul Davies
  • Online Read Ebook Wes Lang The Black Paintings by Wes Lang Wallace Ludel James Fox
  • Read pdf Perilous Refuge by Kathleen Tailer
  • Pdf ePub Lenswoman in Love a novel of the 1960s 70s by Kim R Gottlieb Walker download ebook
  • PDF Kindle When the Moon Hatched A Novel by Sarah A. Parker
  • Read online Pierre Hermés Vegan Pastry by Pierre Hermé
  • DOWNLOAD PDF EPUB Bonds of Hercules by Jasmine Mas
  • Pdf ePub I Love You So Much Its Killing Us Both A Novel by Mariah Stovall download ebook
  • PDF DOWNLOAD The Anaconda in the Chandelier Writings on China by Perry Link on Iphone
  • Download Pdf The Shape of What Remains by Lisa C Taylor
  • DOWNLOADS The Stolen Queen A Novel by Fiona Davis
  • Download Pdf The Kings Hidden Heir by Sharon Kendrick
  • Read pdf A Sense of Arrival by Kevin Adonis Browne
  • The Instruments of Darkness Charlie Parker Thriller 21 by John Connolly on Ipad
  • download pdf Salt Hank A Five Napkin Situation A Cookbook by Henry Laporte
  • pdf download Mostly What God Does is Love You by Savannah Guthrie Morgan Huff
  • Pdf ePub The Forgive for Good Recovery Workbook Overcome Addiction Heal Your Past and Find Peace
  • Bonded in Death by J. D. Robb on Audiobook New
  • PDF EPUB Download Shelterwood by Lisa Wingate Full Book
  • A Last Supper of Queer Apostles Selected Essays by Pedro Lemebel Gwendolyn Harper on Audiobook New
  • Pdf ePub Lethal Reunion by Lacey Baker download ebook
  • DOWNLOAD PDF EPUB The National Parks Travelers Companion A Journal Featuring Bucket Lists Writing
  • DOWNLOAD PDF EPUB Even the Worm Will Turn by Hailey Piper
  • Download PDF Constellations by Kelsi Montgomery
  • Read pdf Say Youll Remember Me by Abby Jimenez
  • Pdf ePub Made To Order Robots and Revolution by John Chu Jonathan Strahan Daryl Gregory Rich Lar
  • download pdf Hidetaka Tenjins Artistry of Macross Macross frontier Films Macross Delta Archives b
  • pdf download The Adventures Of King Sugarman King Sugarmans Sweet Adventure by Jamie Knight
  • Read pdf Star Trek Lower Decks-Warp Your Own Way by Ryan North Chris Fenoglio
  • 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-07 23:38:25
Previous
Find pet by ID
Next
Update an existing pet
Built with