My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Only Rainbows by Karen C McCord
  • PDF EPUB Download She Professed Herself Pupil of the Wise Man Light Novel Vol. 12 by Ryusen Hirots
  • Online Read Ebook Parrots Over Puerto Rico by Susan L. Roth Cindy Trumbore
  • Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson on Iphone New Format
  • Read Pdf Lost Girls and Love Hotels A Novel by Catherine Hanrahan
  • PDF Download Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kirrene
  • Brain Games - Puzzles for Mom More Than 170 Puzzles to Brighten Moms Day by Publications Internation
  • PDF EPUB Download Doctor Who 73 Yards by Scott Handcock Full Book
  • Pdf ePub Tintinallis Emergency Medicine Examination and Board Review Edition 3 by Susan Promes do
  • epub download Victory Harben Tales from the Void Edgar Rice Burroughs Universe by Christopher Paul C
  • Pdf ePub David Hamilton Twenty Five Years of an Artist by David Hamilton download ebook
  • PDF Kindle After Annie by Anna Quindlen
  • PDF DOWNLOAD 3D Scroll Saw Projects 35 Fun Compound-Cut Projects More Than 150 Patterns by Diana
  • Download Pdf Her Holiday Protector and Holiday on the Run by Lenora Worth Laura Scott
  • How to Suffer Outside A Beginners Guide to Hiking and Backpacking by Diana Helmuth Latasha Dunston
  • Read online The Amish Nurses Suitor and The Nannys Amish Family by Carrie Lighte Patricia Johns
  • PDF EPUB Download Sharp Sports Betting by Stanford Wong Full Book
  • The Woman by the Lake by Kristen Ashley on Ipad
  • PDF Download The Dictators Last Night by Yasmina Khadra Howard Curtis
  • PDF Arctic Sun A Grumpy Sunshine MM Romance by Annabeth Albert
  • Read pdf The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze
  • DOWNLOAD PDF EPUB Out On a Limb by Karen M Henderson
  • 52 Weeks of Easy Knits Beautiful Patterns for Year-Round Knitting by Laine on Audiobook New
  • Read online Far Sector DC Compact Comics Edition by N. K. Jemisin Jamal Campbell
  • Read Pdf Massive by John Trefry
  • PDF Kindle Deck the Halls and His Christmas Bride by Arlene James Dana Corbit
  • PDF The Restless Wave A Novel of the United States Navy by James Stavridis USN
  • Download PDF Jack Whitten Notes from the Woodshed by Katy Siegel Jack Whitten
  • Online Read Ebook Enemy Feminisms TERFs Policewomen and Girlbosses Against Liberation by Sophie Le
  • Read Pdf The Margraves Daughter the Enemy Prince Volume 1 by An Ogura
  • Read online Gilded Wings by Jaymin Eve
  • download pdf Eidolon The Auric Hammer by Marc Collins
  • Lucky Me A Memoir of Changing the Odds by Rich Paul Jesse Washington LeBron James on Ipad
  • PDF EPUB Download Pokémon Crochet Bring your favorite Pokémon to life with 20 cute crochet pattern
  • Read pdf Bingsu for Two by Sujin Witherspoon
  • 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-14 01:24:40
Previous
Find pet by ID
Next
Update an existing pet
Built with