My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download King of Wrath by Ana Huang
  • pdf download Second Punic War in Iberia 220-206 BC From Hannibal at the Tagus to the Battle of Ilipa
  • Every Monday Mabel by Jashar Awan on Audiobook New
  • DOWNLOADS Royal Fiancée Required by Kali Anthony
  • Online Read Ebook Our Sweet Violet The third book in the Flower Girls collection from Britains best-
  • epub download Albert Can Cook How To Cook Viral Recipes by Albert Niazhvinski
  • DOWNLOAD PDF EPUB Butter A Novel of Food and Murder by Asako Yuzuki Polly Barton
  • epub download 3 Doughs 60 Recipes Focaccia Pizza Sandwich Bread - Easy-to-master Doughs and Delic
  • Online Read Ebook Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • Pdf ePub A Crown So Silver by Lyra Selene download ebook
  • Lincolns Last Card The Emancipation Proclamation as a Case of Command by Richard J. Ellis on Audiobo
  • DOWNLOAD PDF EPUB Everything We Never Said by Sloan Harlow
  • The Researchers First Murder A New Cains Jawbone Puzzle by John Finnemore on Iphone New Format
  • PDF Download Our Hideous Progeny A Novel by C.E. McGill
  • Download PDF Stop Lying to Yourself 101 Hard Truths to Help You Change Your Life by Simon Gilham
  • PDF EPUB Download Dinghai Fusheng Records Novel Vol. 1 Special Edition by Fei Tian Ye Xiang Qian Er
  • PDF EPUB Download Evil in Me by Brom Full Book
  • Pdf ePub Yana Toboso Artworks Black Butler 4 by Yana Toboso Tomo Kimura download ebook
  • Pdf ePub Keeping His Promise An Uplifting Inspirational Romance by Linda Goodnight download ebook
  • Online Read Ebook Faefever by Karen Marie Moning
  • PDF DOWNLOAD Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Richard D
  • PDF EPUB Download Sick Houses Haunted Homes and the Architecture of Dread by Leila Taylor Full Boo
  • PDF EPUB Download Fearless by Lauren Roberts Full Book
  • pdf download Street Fighter Swimsuit Special Collection by UDON Various
  • Read pdf The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of Ira
  • Pdf ePub Andrzej Sapkowskis The Witcher The Edge of the World by Andrzej Sapkowski Magdalena Salik
  • Heaven Sent and His Hometown Girl by Jillian Hart on Iphone New Format
  • Download PDF Wolf Act by AJ Romriell
  • PDF Download The Party Line by Carolyn Brown
  • Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexis Morgan Amie Denma
  • DOWNLOADS Third Millennium Thinking Creating Sense in a World of Nonsense by Saul Perlmutter PhD Jo
  • Online Read Ebook Earn It Unconventional Strategies for Brave Marketers by Steve Pratt
  • The Grand Scheme of Things A Novel by Warona Jay on Ipad
  • Download PDF I Hear the Sunspot Four Seasons Volume 2 by Yuki Fumino Stephen Kohler
  • PDF Irreducible Consciousness Life Computers and Human Nature by Federico Faggin
  • Bloom by Delilah S. Dawson on Iphone New Format
  • PDF Download Chain Gang All Stars A Novel by Nana Kwame Adjei-Brenyah
  • PDF Kindle Medaka Kuroiwa Is Impervious to My Charms Vol. 10 by Ran Kuze
  • Read online Absolute Transmetropolitan Vol. 3 2025 Edition by Warren Ellis Darick Robertson
  • Drawn Together Studio DB Architecture and Interiors by Britt Zunino Damian Zunino Tim McKeough Ji
  • Download Pdf Winning Over the Wrangler Falling for the Rancher Father by Linda Ford
  • Download Pdf The Cost of Fear Why Most Safety Advice Is Sexist and How We Can Stop Gender-Based Viol
  • PDF EPUB Download People of Means A Novel by Nancy Johnson Full Book
  • PDF DOWNLOAD Unleash Your Financial Superpowers How the First-Generation Wealthy Do It and How You
  • Read online The Bones Beneath My Skin by TJ Klune
  • DOWNLOAD PDF EPUB Royal Scoundrel by Saxon James
  • pdf download Seeds of Shadow and Soil by Edgar J Wilde
  • PDF DOWNLOAD Wake Up and Open Your Eyes by Clay Chapman on Iphone
  • PDF EPUB Download Memorys Legion The Complete Expanse Story Collection by James S. A. Corey Full Boo
  • 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-10 00:28:15
Previous
Find pet by ID
Next
Update an existing pet
Built with