My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Susannah Erwin on Ip
  • PDF DOWNLOAD Wren Martin Ruins It All by Amanda DeWitt on Iphone
  • Final Cut by Charles Burns on Ipad
  • PDF EPUB Download Parachute Kids A Graphic Novel by Betty C. Tang Full Book
  • DOWNLOADS Dead By Dusk by Eleanor Hill
  • PDF EPUB Download The Art of Memory Collecting 15 Scrapbook Collage Trinket and Zine Projects For
  • Online Read Ebook Playgirl The Official History of a Cult Magazine by Playgirl Magazine
  • PDF EPUB Download Batman Superman Worlds Finest Vol. 5 Secret Origins by Mark Waid Travis Moore Ful
  • DOWNLOADS Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Barri Fl
  • epub download Something in the Walls A Novel by Daisy Pearce
  • Download Pdf The Age of Collage Vol. 3 Contemporary Collage in Modern Art by gestalten Dennis Busch
  • Online Read Ebook Story of Taylor Swift by Lindsey Sagar
  • pdf download Simple Strategies A Model-Based Guide to Solving Complex Problems by John Allen
  • download pdf Death by Boomers How the Worst Generation Destroyed the Planet but First a Child by T
  • The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol. 1 by Xue Shan Fei
  • Read Pdf Table for 51 Lessons Learned from Sharing Meals Across America by Shari Leid
  • Download Pdf Assassins Creed Atlas by
  • Read pdf The Adventures Of King Sugarman King Sugarmans Sweet Adventure by Jamie Knight
  • epub download Treasure Coast A Crime Thriller by James Foley
  • Download Pdf The Medici Return by Steve Berry
  • epub download FROM HURT TO HOPE by Precious Karo
  • Pdf ePub Thinking through Graphic Design History Challenging the canon by Aggie Toppins download eb
  • PDF Runescape The Fall of Hallowvale by Robbie MacNiven
  • PDF EPUB Download Validation How the Skill Set That Revolutionized Psychology Will Transform Your Re
  • PDF Eelfish a Rock Roll King by Liz Salton
  • Online Read Ebook Exam Ref AZ-900 Microsoft Azure Fundamentals by Jim Cheshire
  • pdf download Gannibal Vol 3 by Masaaki Ninomiya
  • Online Read Ebook A Little Gaelic Kingdom by Tim Robinson
  • Killing Me Souffl A Bakeshop Mystery by Ellie Alexander on Audiobook New
  • Download PDF Through Fiery Trials A Novel in the Safehold Series by David Weber
  • The Alphas Son - SPECIAL EDITION by Penny Jessup on Audiobook New
  • Pdf ePub Sex When You Dont Feel Like It The Truth about Mismatched Libido and Rediscovering Desire
  • pdf download Ilium A Novel by Lea Carpenter
  • PDF EPUB Download Batman Knightfall Omnibus Vol. 2 Knightquest 2025 Edition by Chuck Dixon Michae
  • Read online Teenage Mutant Ninja Turtles Saturday Morning Adventures Vol. 4 by Erik Burnham Dan Sc
  • Download Pdf The Coven Special Edition by Harper L. Woods
  • 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-13 03:07:45
Previous
Find pet by ID
Next
Update an existing pet
Built with