My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf You Were Experienced I Was Not Our Dating Story 5th Date Light Novel by Makiko Nagaoka
  • PDF Disney Moana 2 Big Golden Book by Golden Books Disney Storybook Art Team
  • DOWNLOAD PDF EPUB The Woofmore on Thin Ice The Woofmore 3 by Donna Gephart Lori Haskins Houran J
  • PDF EPUB Download Intermediate Chess Puzzles 500 Practice Exercises to Take Your Game to the Next
  • Read online A Bride for Christmas by Jill Kemerer Brenda Minton
  • PDF The Brightness Between Us by Eliot Schrefer
  • Read pdf Off the Grid Christmas by Mary Ellen Porter
  • PDF EPUB Download The Grand Biocentric Design How Life Creates Reality by Robert Lanza Matej Pavs
  • PDF Kindle The Artists Guide to Sketching The Classic Book about Making Art on Location by James Gu
  • Frank Millers Ronin Rising Collectors Edition by Frank Miller Philip Tan Daniel Henriques on Ipad
  • The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle on Iphone New Format
  • Read Pdf Bottle and the Badge A Cops Journey from Addiction to Atonement by McCarthy Barnes
  • PDF DOWNLOAD An Unexpected Amish Family by Patricia Davids Jocelyn McClay on Iphone
  • Read pdf Heart of the Shadow King by Sylvia Mercedes
  • The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinbach on Ipad
  • All or Nothing The Authorized Story of Steve Marriott by Simon Spence on Ipad
  • Download Pdf Collecting Laurel and Hardy Autographs Posters Toys Dolls Games Trading Cards Com
  • Download Pdf Rocky Mountain Daddy and Her Colorado Cowboy by Lois Richer Mindy Obenhaus
  • Read online The Soldiers Surprise Family by Jolene Navarro
  • epub download The Ultimate Guide to Carp Fishing by Joseph Earl-Wright
  • Download Pdf Glamstrology Discover Your Signature Style with Astrology by Michael Herkes Theresa Re
  • DOWNLOAD PDF EPUB Under the Bramble Arch by Corinne Boyer
  • Read pdf Laid-Back Camp Vol. 16 by Afro Amber Tamosaitis
  • Read Pdf Cybersecurity For Dummies by Joseph Steinberg
  • pdf download The Barn The Secret History of a Murder in Mississippi by Wright Thompson
  • download pdf The Sketchbook of Loish Art in progress by Lois van Baarle 3dtotal Publishing
  • Read Pdf Botanical Dreams Oracle by Lynn Araujo Catrin Welz-Stein
  • PDF EPUB Download Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenche
  • PDF X-Men The Art and Making of The Animated Series by Eric Lewald Julia Lewald
  • PDF EPUB Download Strange Beasts by Susan J. Morris Full Book
  • Read online How to Paint Transparent Watercolour Flowers by Olga Koelsch
  • Tomo-chan is a Girl Volumes 4-6 Omnibus Edition by Fumita Yanagida on Audiobook New
  • Online Read Ebook Winter by Ali Smith
  • PDF The Rainbow Diet A Guidebook to the Science and Art of Colorful Foods for Health and Well-Being
  • Read pdf The Millionaires Factory The Inside Story of How Macquarie Bank Became a Global Giant by
  • epub download The Big Fat Middle School Math Workbook 600 Math Practice Exercises by Workman Publish
  • A Witchs Guide to Fetch Work Rituals Spells Practices by Blake Malliway on Audiobook New
  • 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-08 23:48:01
Previous
Find pet by ID
Next
Update an existing pet
Built with