My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Stereophonic by David Adjmi Will Butler
  • Download PDF The Associated Press Stylebook 2024-2026 by Associated Press
  • Read online Anathema Legacy by Nick Roberts
  • Pdf ePub Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nathan G
  • PDF EPUB Download Not Another Love Song by Julie Soto Full Book
  • epub download The Man Who Hacked the World A Ghostwriters Descent into Madness with John McAfee by A
  • PDF EPUB Download Thundercats Vol. 2 Roar by Declan Shalvey Drew Moss Full Book
  • Read online Relatos de la noche Tales of the Night by Uriel Reyes
  • PDF Download Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor E
  • download pdf The Comet by Joe Todd-Stanton
  • PDF Salvage by Denny Connolly
  • Download Pdf REVILE by Krissy Kovats
  • DOWNLOADS Una historia divertida by Emily Henry
  • PDF Kindle JoJo A-GoGo by Hirohiko Araki
  • PDF Lote by Shola von Reinhold
  • Online Read Ebook Pens Down Swords Up Throw Your Studies to the Wind Volume 1 by Mao Nishiura Maro
  • Read pdf All the Captive Girls by Linda Hurtado Bond
  • Russia and Ukraine Entangled Histories Diverging States by Maria Popova Oxana Shevel on Iphone New
  • PDF EPUB Download Jaghatai Khan Warhawk of Chogoris by Chris Wraight Full Book
  • DOWNLOAD PDF EPUB A Wolf in Sheeps Clothing A Wolf in Sheeps ClothingTell Me Your Secrets... by Jo
  • PDF Download Intertwined From Insects to Icebergs by Michael Gross
  • PDF Resident Evil Infinite Darkness - The Beginning The Graphic Novel by TOKYOPOP Keith R. A. DeCa
  • PDF EPUB Download Early Bird by Karen Winters Schwartz Full Book
  • PDF Kindle Captain America The Shield of Sam Wilson by Sheree Renée Thomas Jesse J. Holland M. Ky
  • White Liar by Tomo Serizawa on Audiobook New
  • PDF The Painters Daughters A Novel by Emily Howes
  • PDF EPUB Download Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Rich
  • PDF Dune Exposures by Josh Brolin Greig Fraser
  • DOWNLOADS Sito An American Teenager and the City that Failed Him by Laurence Ralph
  • DOWNLOADS As Long as the Lemon Trees Grow by Zoulfa Katouh
  • PDF Kindle The Roman Army of the Middle Empire AD 180-284 Weapons Organization and Equipment by G
  • PDF Kindle The Riveter A Novel by Jack Wang
  • Read online Making Call of Duty Modern Warfare by Andy McVittie
  • Pdf ePub Code Name Arc Angel The Demise of The Devil by Bruce Jarvis download ebook
  • Pdf ePub Deck the Halls and His Christmas Bride by Arlene James Dana Corbit download ebook
  • PDF DOWNLOAD The Machine Stops by E. M. Forster Micheal Smith on Iphone
  • Read Pdf The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid French
  • PDF EPUB Download Beach Read by Emily Henry Full Book
  • Download PDF Confessions of a Forty-Something Fk Up A Novel by Alexandra Potter
  • Read online Human Acts by Han Kang Deborah Smith
  • DOWNLOAD PDF EPUB Children of Anguish and Anarchy Gleißendes Herz Der US-Bestseller auf Deutsch by
  • Download Pdf To Sicily with Love by Jennifer Probst
  • Cross-Checked by Julia Connors on Ipad
  • epub download The Green Witchs Guide to Herbal Magick A Handbook of Green Hearthcraft and Plant-Base
  • DOWNLOADS The Full Catastrophe All I Ever Wanted Everything I Feared by Casey Mulligan Walsh
  • PDF Kindle Money Lies and God Inside the Movement to Destroy American Democracy by Katherine Stew
  • Pdf ePub The Spirit of Hope by Byung-Chul Han Daniel Steuer download ebook
  • Masons Pediatric Sedation Outside of the Operating Room A Multispecialty International Collaboration
  • PDF Kindle Danes Mark by Lora Leigh
  • PDF Download Sunrise Nights by Jeff Zentner Brittany Cavallaro
  • 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 21:58:05
Previous
Find pet by ID
Next
Update an existing pet
Built with