My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Xcrawl Classics Reference Booklet by Brendan LaSalle Doug Kovacs
  • PDF Kindle Roman Soldier vs Dacian Warrior Dacian Wars AD 85-106 by Murray Dahm Giuseppe Rava
  • DOWNLOAD PDF EPUB The World Atlas of Whisky 3rd edition More than 500 distilleries profiled and 48
  • Download PDF Averted Vision by BW Moran
  • PDF DOWNLOAD Garlic and the Vampire by Bree Paulsen on Iphone
  • Human Acts by Han Kang Deborah Smith on Ipad
  • Read online Animal Crossing by Kelsey Lewin
  • Pdf ePub Disney Fairies 4 in 1 Vol. 2 by Paola Mulazzi The Disney Comics Group Augusto Macchetto
  • A Monsoon Rising The Hurricane Wars Book 2 by Thea Guanzon on Audiobook New
  • PDF Putins Wars From Chechnya to Ukraine by Mark Galeotti
  • Read Pdf No Holds Barred by Callie Croix
  • DOWNLOADS Death of the Author by Nnedi Okorafor
  • Download Pdf My Noisy Roommate The Roof Over My Head Comes With Monsters and a Hottie 2 by Kaho Ozak
  • DC Versus Marvel The Amalgam Age Omnibus by Peter David Dan Jurgens Mark Waid Dave Gibbons Vario
  • Read pdf The Kaggle Workbook Self-learning exercises and valuable insights for Kaggle data science
  • Download Pdf The Door-to-Door Bookstore A Novel by Carsten Henn
  • epub download God of Ruin A Dark College Romance by Rina Kent
  • DOWNLOADS Get Better at Anything 12 Maxims for Mastery by Scott H. Young
  • DOWNLOADS Greubel Forsey The Art of Invention by Michael Clerizo
  • Download Pdf The Sun Sister A Novel by Lucinda Riley
  • Read pdf Starting Over in Starshine Cove A perfect feel-good romantic comedy to escape with by Deb
  • epub download Dial M for Ménage by Emily Ryan-Davis
  • The National Parks Travelers Companion A Journal Featuring Bucket Lists Writing Prompts and Passpo
  • Make Change That Lasts BW Illustrations 9 Simple Ways to Break Free from the Habits That Hold You Ba
  • Download PDF The Monsters Know What Theyre Doing Combat Tactics for Dungeon Masters by Keith Ammann
  • PDF Kindle Big Name Fan by Ruthie Knox Annie Mare
  • PDF DOWNLOAD Macbeth A Norton Critical Edition by William Shakespeare Robert S. Miola on Iphone
  • Read online The Ruthless Fae King - Die Chroniken von Avalier 3 Die TikTok-Romantasy-Sensation Ein e
  • A History of Dinosaurs in 50 Fossils by Paul M. Barrett on Iphone New Format
  • epub download Beas Bad Day by Tom Percival
  • epub download The Glass Scientists Volume One by S. H. Cotugno
  • PDF EPUB Download This Is Why We Lied Will Trent Thriller 12 by Karin Slaughter Full Book
  • PDF EPUB Download The Art of Insight How Great Visualization Designers Think by Alberto Cairo Full B
  • Read online It Begins with You The 9 Hard Truths About Love That Will Change Your Life by Jillian Tu
  • PDF Download A Wolf in Sheeps Clothing A Wolf in Sheeps ClothingTell Me Your Secrets... by Joan Jo
  • PDF Kindle Even Though Were Adults Vol. 10 by Takako Shimura
  • PDF Kindle Heal Your Living The Joy of Mindfulness Sustainability Minimalism and Wellness by You
  • PDF EPUB Download Masons Pediatric Sedation Outside of the Operating Room A Multispecialty Internati
  • DOWNLOADS The Ancient Art of Tasseography How to Read Tea Leaves and Coffee Grounds by Kylie Holmes
  • PDF DOWNLOAD The Bullish Case for Bitcoin by Vijay Boyapati Michael J Saylor on Iphone
  • Download Pdf The Mountain Mans Valentine Baby by Mia Brody
  • Online Read Ebook If the Villainess and Villain Met and Fell in Love Vol. 3 light novel by Harunado
  • Download Pdf Cashing Out Win the Wealth Game by Walking Away by Julien Saunders Kiersten Saunders
  • PDF EPUB Download Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori Full Book
  • pdf download The Metabolism Makeover Workbook by Megan Hansen RDN
  • Online Read Ebook Memorys Legion The Complete Expanse Story Collection by James S. A. Corey
  • Lonely Planet Spain by Isabella Noble Isabel Albiston Alexis Averbuck Federica Bocco Jamie Ditar
  • PDF Little Women Signature Classics by Louisa May Alcott
  • DOWNLOAD PDF EPUB Palestine in a World on Fire by Katherine Natanel Ilan Pappé
  • Online Read Ebook Last Bench by Ram Halady
  • 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 00:08:31
Previous
Find pet by ID
Next
Update an existing pet
Built with