My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Her Christmas Fantasy The Winter Bride by Penny Jordan Lynne Graham download ebook
  • download pdf Darkfever by Karen Marie Moning
  • pdf download The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • download pdf The Powerless Reckless Collection by Lauren Roberts
  • PDF Download The Glass Girl by Kathleen Glasgow
  • DOWNLOAD PDF EPUB Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda
  • DOWNLOADS Brother Brontë A Novel by Fernando A. Flores
  • Pdf ePub Daybreak A Novel by Matt Gallagher download ebook
  • pdf download A Ghost of Caribou A Novel of Suspense by Alice Henderson
  • PDF Download Lobster and other things Im learning to love by Hollie McNish
  • Download Pdf Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • Pdf ePub Learn WinUI 3 - Second Edition Leverage WinUI and the Windows App SDK to create modern Win
  • Pdf ePub The Scarlet Papers by Matthew Richardson download ebook
  • Online Read Ebook Prompt Engineering for Generative AI Future-Proof Inputs for Reliable AI Outputs b
  • If Cats Disappeared from the World A Novel by Genki Kawamura Eric Selland on Ipad
  • pdf download Three Kinds of Lucky by Kim Harrison
  • Online Read Ebook An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • Learn AI-Assisted Python Programming Second Edition by Leo Porter Daniel Zingaro on Iphone New For
  • PDF Download Piranesi by Susanna Clarke
  • PDF Kindle Destined for the Cowboy by Justine Davis
  • Brimstone Deluxe Limited Edition by Callie Hart on Ipad
  • Read pdf Galway Confidential A Jack Taylor Novel by Ken Bruen
  • PDF DOWNLOAD The Magic in this Other World is Too Far Behind Volume 10 by Gamei Hitsuji Yuunagi
  • download pdf Play Along by Liz Tomforde
  • Download PDF Star Wars Dawn of the Jedi Into the Void by Tim Lebbon
  • Download Pdf The Christmas Target and Hidden in Shadows by Shirlee McCoy Hope White
  • PDF Silver Throat by Siri Pettersen Tara Chace
  • PDF Download Albert Can Cook How To Cook Viral Recipes by Albert Niazhvinski
  • epub download Christmas Texas Style by Tina Leonard Leah Vale Linda Warren
  • DOWNLOADS Malaparte A Biography by Maurizio Serra Stephen Twilley
  • Read pdf Youve Got Mail The Perils of Pigeon Post - Fei Ge Jiao You Xu Jin Shen Novel Vol. 1 by Bl
  • PDF EPUB Download Meghan and Harry The Real Story Persecutors or Victims Updated edition by Lady Col
  • pdf download Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • PDF Download Kaibyo The Supernatural Cats of Japan by
  • Download Pdf Brimstone Deluxe Limited Edition by Callie Hart
  • Read online Bucks Step-by-Step Medical Coding 2024 Edition by Elsevier
  • PDF Metal from Heaven by august clarke
  • Online Read Ebook A Social Cognition Perspective of the Psychology of Religion by Luke Galen Donald
  • download pdf Mirror Mirror by Christina Nolte
  • PDF Kindle DD Dungeon Masters Guide 2024 by Wizards of the Coast
  • Read Pdf Starting Over in Starshine Cove A perfect feel-good romantic comedy to escape with by Deb
  • Download PDF Too Close to Home by Lynette Eason
  • PDF DOWNLOAD Shikimoris Not Just a Cutie 19 by Keigo Maki on Iphone
  • pdf download Devil You Know by Harmony West
  • pdf download Wisdom Stories of Tibet Tales of Magic Adventure and Bravery by Laura Burges Lama Ch
  • download pdf Lore Olympus Volume Three by Rachel Smythe
  • DOWNLOADS 50 Projects for Building Your Backyard Homestead Updated Edition A Hands-On Step-By-Step
  • Things I Wish I Told My Mother The Perfect Mother-Daughter Book Club Read by Susan Patterson Susan
  • DOWNLOAD PDF EPUB Are you there little Bunny by Sam Taplin Emily Dove
  • The Girls of the Glimmer Factory A Novel by Jennifer Coburn on Audiobook New
  • 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-07 23:33:15
Previous
Find pet by ID
Next
Update an existing pet
Built with