My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis Keith G
  • PDF Hungerstone by Kat Dunn
  • PDF EPUB Download The Art of DreamWorks Kung Fu Panda 4 by Tracey Miller-Zarneke James Hong Full Bo
  • Sticky Lovers by Navier Haruka 2T on Iphone New Format
  • epub download The Cruel Prince Collectors Edition by Holly Black
  • pdf download A Girls Guide To Car Repair by Marie Hathaway
  • The Last One at the Wedding A Novel by Jason Rekulak on Ipad
  • Read pdf Italians Pregnant Mistress by Carol Marinelli
  • Download Pdf The Hellgate The Search for the Ancient Botanical to Save Humankind by Christopher Paul
  • Pdf ePub Feigin and Cherrys Textbook of Pediatric Infectious Diseases 2-Volume Set by James Cherry
  • When God Made You Jamirs Story Meet Jamir Gods Chosen One by Tawanda Jupiter on Ipad
  • download pdf The DBT Skills Daily Journal 10 Minutes a Day to Soothe Your Emotions with Dialectical
  • DOWNLOADS Trigun Maximum Deluxe Edition Volume 4 by Yasuhiro Nightow Yasuhiro Nifghtow Justin Burn
  • pdf download Were So Blessed Forty Days of Devotions and Activities for the Whole Family by CAIN Ja
  • PDF EPUB Download The Katharina Code by Jïrn Lier Horst Full Book
  • PDF Kindle Crimson Climb by E. K. Johnston
  • Download Pdf The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for y
  • PDF Download Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru
  • epub download The Tower A Novel by Flora Carr
  • Read pdf Weird Ireland An Unofficial Guide to the Island by Brinsley McNamara
  • PDF Kindle The Theory of Everything Else A Voyage Into the World of the Weird by Dan Schreiber
  • epub download Break Point A Spicy Second Chance Sports Romance by Yahrah St. John
  • pdf download A Trap for Cinderella by Sébastien Japrisot Helen Weaver
  • PDF EPUB Download Tony Tans Asian Cooking Class by Tony Tan Full Book
  • Pdf ePub On Thin Ice by Jessica Kim download ebook
  • DOWNLOAD PDF EPUB Ever Mine by Laura Pavlov
  • PDF DOWNLOAD Cree en los sueños y ellos te crearán Believe in Dreams and They Will Create You b
  • PDF DOWNLOAD Frank Millers Ronin Rising Manga Edition by Frank Miller Philip Tan Daniel Henrique
  • Download Pdf My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • PDF EPUB Download Every Single Secret by Christina Dodd Full Book
  • Online Read Ebook Frontier Courtship Hideaway Home by Valerie Hansen Hannah Alexander
  • PDF EPUB Download Language City The Fight to Preserve Endangered Mother Tongues in New York by Ross
  • DOWNLOADS The Dare by Harley Laroux
  • PDF DOWNLOAD And the Chicken Bawkd A story about finding your unique by Randy Mott Lynde Mott on
  • Pdf ePub Twilight Out of Focus 6 Long Take Part 2 by Jyanome download ebook
  • 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-10 02:33:30
Previous
Find pet by ID
Next
Update an existing pet
Built with