My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Deck the Halls and His Christmas Bride by Arlene James Dana Corbit
  • epub download Powerless Special Edition by Elsie Silver
  • pdf download It Begins With Me Why Self Esteem Matters by Dana Hammond
  • pdf download Our Hideous Progeny A Novel by C.E. McGill
  • DOWNLOADS The Home Café Creative Recipes for Espresso Matcha Tea and Coffee Drinks by Asia Lui Cha
  • Download PDF Manifest 7 Steps to Living Your Best Life by Roxie Nafousi
  • pdf download Joan Mitchell Paints a Symphony La Grande Vallée Suite by Lisa Rogers Stacy Innerst
  • PDF My Sweet Orange Tree by Jose Mauro de Vasconcelos
  • PDF Barrier Narrative by lubna A. Safi
  • The Books of The Minor Prophets The Twelve The Passion Translation by Brian Simmons on Audiobook New
  • Read pdf My Friends by Hisham Matar
  • PDF EPUB Download Phonic Books Get Out of the Game Decodable Books for Older Readers CVC Consonant
  • PDF DOWNLOAD Wings of Fire The Official How to Draw by Tui T. Sutherland Brianna C. Walsh on Ipho
  • PDF Kindle The Comet by Joe Todd-Stanton
  • Online Read Ebook Chalk Wars Pommel Clock and the Incredulous Cost of Integrity by Patrick Sinclair
  • Local Capacity Building and Health Systems Strengthening in Developing Countries. by Zelalem Attlee
  • PDF Download A History of Ancient Rome in Twelve Coins by Gareth Harney
  • Pdf ePub Reading Nature The Evolution of American Nature Writing by John Seibert Farnsworth downloa
  • PDF EPUB Download The Many Lives Loves of Hazel Lavery by Lois Cahall Full Book
  • Download Pdf Sea of Stars The Concept Art of Bryce Kho by Bryce Kho
  • download pdf Just a Hint -- Clint by Lori Foster
  • PDF Kindle Waste Land A World in Permanent Crisis by Robert D. Kaplan
  • epub download War Hour by Lauren Loscig
  • download pdf Right-Wing Women by Andrea Dworkin Moira Donegan
  • download pdf Before You Discard Me I Shall Have My Way With You Manga Vol. 2 by Takako Midori Sel
  • PDF EPUB Download The Great Architects of Mars Evidence for the Lost Civilizations on the Red Planet
  • download pdf Listen to Your Heart by Irene Brand
  • PDF DOWNLOAD Surrounded by Liars How to Stop Half-Truths Deception and Gaslighting from Ruining
  • Everyone Is Lying An utterly gripping psychological thriller with a jaw-dropping twist by Holly Down
  • PDF Its Me Two Catwad 2 by Jim Benton
  • Online Read Ebook The Barn The Secret History of a Murder in Mississippi by Wright Thompson
  • DOWNLOAD PDF EPUB Kagurabachi Vol. 2 by Takeru Hokazono
  • The Roommate Pact A Novel by Allison Ashley on Audiobook New
  • PDF Kindle Soul Eater The Perfect Edition 17 by Atsushi Ohkubo
  • The Devils Atlas An Explorers Guide to Heavens Hells and Afterworlds by Edward Brooke-Hitching on A
  • DOWNLOAD PDF EPUB Exquisite Corpse by Poppy Z. Brite
  • PDF DOWNLOAD Todd Hido Intimate Distance Revised and Expanded Edition Over Thirty Years of Photogr
  • DOWNLOADS Better Than Revenge by Kasie West
  • Read Pdf Fated Winds and Promising Seas A tender-hearted tale of forging fates fantastic creature
  • PDF DOWNLOAD Three Grumpy Groomsmen by Emma Foxx on Iphone
  • Pdf ePub Whos Afraid of Gender by Judith Butler download ebook
  • Read online AWS Certified SysOps Administrator - Associate SOA-C02 Exam Cram by Marko Sluga Richard
  • PDF DOWNLOAD Power Girl Vol.2 More Than a Crush by Leah Williams Eduardo Pansica on Iphone
  • Download PDF Strange Pictures A Novel by Uketsu Jim Rion
  • Drawing People 100 Prompts Projects and Playful Exercises by Viktorija Semjonova on Iphone New Form
  • Pdf ePub Debt-Free Art Degree Foundations in Drawing The Affordable Way to Learn Professional Skill
  • Pdf ePub The Bones Beneath My Skin by TJ Klune download ebook
  • The Origins of Judaism An Archaeological-Historical Reappraisal by Yonatan Adler on Ipad
  • PDF Kindle Code Noir Fictions by Canisia Lubrin Christina Sharpe
  • Online Read Ebook Oaths and Omissions Deluxe Edition by Sav R. Miller
  • 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 01:34:20
Previous
Find pet by ID
Next
Update an existing pet
Built with