My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley
  • Download PDF Cursebound A Novel by Saara El-Arifi
  • When Digz the Dog Met Zurl the Squirrel A Short Tale About a Short Tail by Chris Pine Chuck Groenin
  • Read Pdf Virulence Book Two of the Bioluminescence Trilogy by Toni Duarte
  • Where Children Sleep by James Mollison on Audiobook New
  • PDF Kindle Minecraft Mega Bite-Size Builds Over 20 Incredible Mini Projects by Mojang AB
  • pdf download Rhythms of Love You Sang to MeBeats of My Heart by Beverly Jenkins Elaine Overton
  • PDF Kindle Private Membership Associations PMA The Power of being in the Private by Josh Barnett
  • Download PDF The Alchemist of Monsters and Mayhem An Accidental Alchemist Mystery by Gigi Pandian
  • Pdf ePub Bride by Ali Hazelwood download ebook
  • Download Pdf The Crash by Freida McFadden
  • Online Read Ebook Ama Como si Nunca te Hubieran Herido Esperanza sanidad y el poder de un corazon s
  • The Drowning Machine and Other Obsessions by Emma E Murray on Ipad
  • pdf download When God Speaks by Hunter Leonard William Meany
  • pdf download Threat of Exposure A Thrilling Suspense Novel by Lynette Eason
  • Online Read Ebook The 500 Years of Indigenous Resistance Comic Book Revised and Expanded by Gord Hil
  • PDF EPUB Download Crocheted Bees Bugs Butterflies by Vanessa Mooncie Full Book
  • Read online Dessert Person Recipes and Guidance for Baking with Confidence by Claire Saffitz
  • PDF Kindle Cleat Cute A Novel by Meryl Wilsner
  • The Youngest One in the Room by Dayna Adelman on Ipad
  • pdf download Spirits Adopted A Daisy Gumm Majesty Mystery Book 20 Historical Cozy Mystery by Alice
  • Download PDF Black Wolf A Novel by Juan Gómez-Jurado
  • PDF Kindle Oceans of Fate Peace and Peril Aboard the Steamship Empress of Asia by Dan Black James
  • download pdf The Mighty Quinns Tristan by Kate Hoffmann
  • Download PDF Logos that Last How to Create Iconic Visual Branding by Allan Peters
  • A Short History of the Roman Mass by Uwe Michael Lang on Iphone New Format
  • In the Foothills of the Himalayas by Sarah Hussain on Iphone New Format
  • Read online Why I Dyed My Hair Purple and Other Unorthodox Stories by Kori Morgan
  • Read online Destined to Bloom 100 Days of Transformation by Shelita White - Russ
  • PDF DOWNLOAD Meet Shai Gilgeous-Alexander Oklahoma City Thunder Superstar by Margaret J. Goldstein
  • PDF DOWNLOAD Cook Like a Real Italian Super Sexy and Simple Recipes from Cooking with Bello by Ang
  • Online Read Ebook Blood Of My Heart by Ariel Dawn
  • pdf download KILL THE DOG The First Book on Screenwriting to Tell You the Truth by Paul Guyot
  • PDF Download Looking at Women Looking at War A War and Justice Diary by Victoria Amelina Margaret
  • Now Youre Mine A Dark Stalker Romance by Morgan Bridges on Iphone New Format
  • Download Pdf Bridesmaid for Hire by Meghan Quinn
  • 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 23:33:05
Previous
Find pet by ID
Next
Update an existing pet
Built with