My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Lujuria. Libro 1 Lust Pleasurable Sins by Eva Muñoz
  • Read online Three Act Tragedy A Hercule Poirot Mystery The Official Authorized Edition by Agatha Chr
  • epub download Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru
  • Download Pdf The Winner by C.J. Parsons
  • download pdf The Outlaw Noble Salt A Novel by Amy Harmon
  • PDF EPUB Download The Time Machine by H. G. Wells Full Book
  • DOWNLOADS Haiku Americana by Lawrence Eyre
  • Download Pdf World of Warcraft Rise of the Horde Lord of the Clans The Illustrated Novels by Christ
  • The Great T. Rex Escape DC Batman Batwheels by Golden Books on Iphone New Format
  • PDF EPUB Download Juniper Mae Knight of Tykotech City by Sarah Soh Full Book
  • DOWNLOAD PDF EPUB Dip My Brain in Joy A Life with Neil Innes The Official Biography by Yvonne Inne
  • DOWNLOADS Her Secret Twins by Janette Foreman
  • Read Pdf It Begins With Me Why Self Esteem Matters by Dana Hammond
  • epub download The Gift of a Child by Laura Abbot
  • Read online The Land of the Living A Novel by Timothy Crellin
  • PDF Kindle Gravewater Lake A Thriller by A.M. Strong Sonya Sargent
  • Read pdf Unbreakable The Instant Sunday Times Bestseller Reading this is like watching an OSulliva
  • Read Pdf One-Night Crush by Mia Heintzelman
  • pdf download Holly A Belladonna Novella by Adalyn Grace
  • Read Pdf Captain America The Shield of Sam Wilson by Sheree Renée Thomas Jesse J. Holland M. Kyo
  • DOWNLOAD PDF EPUB Knife River A Novel by Justine Champine
  • PDF Kindle Dessert Person Recipes and Guidance for Baking with Confidence by Claire Saffitz
  • A Fire in the Flesh by Jennifer L. Armentrout on Audiobook New
  • Online Read Ebook Finding Radical Wholeness The Integral Path to Unity Growth and Delight by Ken W
  • Read pdf Battle Mountain by C. J. Box
  • PDF Download Wooing the Witch Queen by Stephanie Burgis
  • pdf download Leadership Theory and Practice by Peter G Northouse
  • Read Pdf A Fire in the Flesh by Jennifer L. Armentrout
  • Online Read Ebook Babs the Butterfly A Tale of Kindness and Courage- Transforming from Bystander to
  • PDF The Vietnam War A Military History by Geoffrey Wawro
  • PDF The Day God Saw Me as Black by D. Danyelle Thomas
  • DOWNLOADS Hip-Hop Is History by Questlove Ben Greenman
  • PDF DOWNLOAD Theory Practice A Novel by Michelle de Kretser on Iphone
  • epub download Modern Mandarin Chinese Grammar A Practical Guide by Claudia Ross Jing-heng Sheng Ma
  • Read Pdf The Complete Nonsense Books De-luxe Edition by Edward Lear
  • PDF Kindle Her Motherhood Wish by Keli Gwyn
  • 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-15 10:43:01
Previous
Find pet by ID
Next
Update an existing pet
Built with