My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Icons of Mens Style by Josh Sims
  • Story of Taylor Swift by Lindsey Sagar on Audiobook New
  • Read pdf Stop Thief Anarchism and Philosophy by Catherine Malabou Carolyn Shread
  • PDF Kindle Makeup to Breakup My Life In and Out of Kiss by Peter Criss
  • PDF Kindle Eclipse by Wilder Poetry
  • epub download Kama-Sutra Una postura para cada dia by DK
  • download pdf Makeup is Not Just Magic A Manga Guide to Cosmetics and Skin Care by Ikumi Rotta
  • PDF DOWNLOAD Just the Good Stuff No-BS Secrets to Success No Matter What Life Throws at You by Jim
  • PDF Kindle Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • Read pdf Bonded in Death by J. D. Robb
  • PDF Rebel Moon Wolf Ex Nihilo Cosmology Technology by Peter Aperlo
  • Read online Before the Tavern 100 Character Concepts for Tabletop Role-Playing Games by Gus Rachels
  • Simply the Best A Chicago Stars Novel by Susan Elizabeth Phillips on Ipad
  • PDF Download Tearmoon Empire Volume 12 by Nozomu Mochitsuki Gilse Madeleine Willette
  • Heart Breath Mind Conquer Stress Build Resilience and Perform at Your Peak by Leah Lagos on Ipad
  • Read pdf Sugar Apple Fairy Tale Vol. 4 manga by Aki YozoranoUdon Miri Mikawa Nicole Wilder
  • DOWNLOADS Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • DOWNLOADS The Museum Heist A Mystery Agency Puzzle Book by Henry Lewis
  • DOWNLOADS The Dark Ascension Series The Wishless Ones by Hafsah Faizal
  • Daisy Haites by Jessa Hastings on Ipad
  • Download PDF The Baby Swap An addictive and unputdownable psychological thriller with a heart-stoppi
  • download pdf Iced Out by CE Ricci
  • epub download Angel Answers Pocket Oracle Cards A 44-Card Deck and Guidebook by Radleigh Valentine
  • pdf download Diver by Lewis Buzbee
  • PDF Early Bird by Karen Winters Schwartz
  • Whispers of the Heart by Ruth Scofield on Iphone New Format
  • PDF EPUB Download Missed Connections by Justin Deubel Full Book
  • PDF EPUB Download Looking for You A Novel by Alexander McCall Smith Full Book
  • DOWNLOADS Not in Love by Ali Hazelwood
  • Online Read Ebook The Secret of Secrets by Dan Brown
  • Read Pdf Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson
  • Metro Girl An Alexandra Barnaby Adventure by Janet Evanovich on Audiobook New
  • Pdf ePub Harry Potter and the Goblet of Fire The Illustrated Edition by J. K. Rowling Jim Kay down
  • pdf download La Metamorfosis by Franz Kafka
  • PDF DOWNLOAD Phenomena The Golden City of Eyes Phenomena Book 1 by Brian Michael Bendis Andre Lim
  • Tristan and Lancelot A Tale of Two Knights by James Persichetti L.S. Biehler on Ipad
  • download pdf Teenage Mutant Ninja Turtles Saturday Morning Adventures Vol. 4 by Erik Burnham Dan
  • 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-09 02:01:50
Previous
Find pet by ID
Next
Update an existing pet
Built with