My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download A Tale of the Secret Saint Manga Vol. 8 by Touya Mahito Aobe Chibi Full Book
  • DOWNLOAD PDF EPUB The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlin
  • Download PDF Essential Rogue Trooper The Traitor General by Gerry Finley-Day Gordon Rennie Cam Ken
  • Read Pdf Chasing Shadows Cyber Espionage Subversion and the Global Fight for Democracy by Ronald
  • download pdf Silver Fox by Kayla Grosse
  • PDF Download The Magic Hours The Films and Hidden Life of Terrence Malick by John Bleasdale
  • epub download Swallowed by Meg Smitherman
  • PDF Download Our Biggest Fight Reclaiming Liberty Humanity and Dignity in the Digital Age by Fra
  • Sinister MMM Romance by West Greene on Ipad
  • PDF Alchemy of Secrets by Stephanie Garber
  • PDF Download Go A Kidds Guide to Graphic Design by Chip Kidd
  • The Reincarnation of the Strongest Exorcist in Another World Volume 3 by Kiichi Kosuzu Yuunagi Jar
  • PDF Rozando el cielo En el hockey y el amor todo vale Mile High by Liz Tomforde
  • Marrs Guitars by Johnny Marr on Audiobook New
  • pdf download Art of Invincible Season 1 by Marc Sumerak Robert Kirkman
  • Talk to Me Lessons from a Family Forged by History by Rich Benjamin on Audiobook New
  • Read online RoomMate A Twisted Psychological Thriller from a Female Serial Killers POV by Chad Olsha
  • PDF EPUB Download Alien Covenant Davids Drawings by Dane Hallett Matt Hatton Full Book
  • DOWNLOAD PDF EPUB The Peasant King by Tessa Afshar
  • Read online George R. R. Martins A Game of Thrones 5-Book Boxed Set A Game of Thrones A Clash of K
  • DOWNLOAD PDF EPUB The Lost Rainforests of Britain by Guy Shrubsole
  • PDF Download Reversing Alzheimers The New Toolkit to Improve Cognition and Protect Brain Health by
  • Online Read Ebook Like A Boss Best Wishes 4 by Sarah Mlynowski Hena Khan Jennifer Bricking
  • DOWNLOADS The World Almanac 2025 Word Search 175 Large-Print Puzzles by World Almanac Diego Jourdan
  • PDF Download The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talking Ab
  • PDF Download Out en español by Natsuo Kirino
  • Download Pdf Outbride Beauty and the Beasts Vol. 7 by Tohko Tsukinaga
  • PDF EPUB Download Rich Routines Simple Habits That Enrich Every Area of Your Life by Steve Houghton
  • DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN on Ipad
  • DOWNLOAD PDF EPUB Michelle Yeoh A Little Golden Book Biography by Angela Song Irene Chan
  • Download Pdf Battleship Commander The Life of Vice Admiral Willis A. Lee Jr. by Paul Stillwell
  • Read online Exes Foes by Amanda Woody
  • Download PDF Encanto Nightmares and Sueños by Alex Segura
  • Download Pdf The Forever Dog Surprising New Science to Help Your Canine Companion Live Younger Heal
  • PDF DOWNLOAD Discovering Daniel Finding Our Hope in Gods Prophetic Plan Amid Global Chaos by Amir
  • Download PDF Steps A Guide to Transforming Your Life When Willpower Isnt Enough by John Ortberg Joh
  • PDF Kindle Neuroanatomy through Clinical Cases by Hal Blumenfeld
  • Good Material by Dolly Alderton on Iphone New Format
  • The Birth Partner Sixth Revised Edition A Complete Guide to Childbirth for Dads Partners Doulas
  • PDF EPUB Download Wild West Village Not a Memoir Unless I Win an Oscar Die Tragically or Score a
  • Read online My Sister Took My Fiancé and Now Im Being Courted by a Beastly Prince Manga Vol. 3 by Yu
  • PDF The Poorly Made and Other Things A Story Collection by Sam Rebelein
  • Read pdf The Secret of the Caves The Hardy Boys Book 7 by Franklin W. Dixon
  • PDF EPUB Download Configurations of Time Imagining Other Temporalities in the Artist Residency by An
  • PDF Oh Miriam Stories From An Extraordinary Life by Miriam Margolyes
  • PDF DOWNLOAD The Ends of Things A Novel by Sandra Chwialkowska on Iphone
  • PDF Fearless by Lauren Roberts
  • Pdf ePub Pizza Dreams Do Come True by Cam Higgins Allison Steinfeld download ebook
  • pdf download The Good Retirement Guide 2025 Everything You Need to Know about Health Property Inve
  • epub download Throw Away the Suit Together Vol. 3 by Keyyang
  • 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
Previous
Find pet by ID
Next
Update an existing pet
Built with