My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Dungeons Dragons Worlds Realms Adventures from Greyhawk to Faerûn and Beyond by Adam
  • PDF EPUB Download Bellas Journey by Victoria A Farias Lucia Benito Full Book
  • The Murder After the Night Before by Katy Brent on Audiobook New
  • epub download A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob
  • PDF EPUB Download Emily Wildes Encyclopaedia of Faeries Emily Wilde by Heather Fawcett Full Book
  • Read online How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorable
  • Read Pdf Scorpio Witch Unlock the Magic of Your Sun Sign by Ivo Dominguez Jr. Zoe Howe Alison Ch
  • PDF EPUB Download The Cold Start Problem How to Start and Scale Network Effects by Full Book
  • Download PDF Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kirrene
  • pdf download King of Wrath by Ana Huang
  • download pdf The Weaver and the Witch Queen by Genevieve Gornichec
  • epub download A Tiny Piece of Blue A Novel by Charlotte Whitney
  • Read pdf Sip Me Baby One More Time Cocktails Inspired by Pop Musics Iconic Women by Ashley Gibso
  • Download Pdf Disney Fairies 4 in 1 Vol. 2 by Paola Mulazzi The Disney Comics Group Augusto Macchet
  • Xcrawl Classics Reference Booklet by Brendan LaSalle Doug Kovacs on Ipad
  • Pdf ePub The Art of Sam Yang by Sam Yang 3dtotal Publishing download ebook
  • pdf download Bonds of Hercules by Jasmine Mas
  • Online Read Ebook Darkfever by Karen Marie Moning
  • epub download Moving Targets by Lynn Shannon Heather Woodhaven
  • Before We Forget Kindness by Toshikazu Kawaguchi on Audiobook New
  • Are You There God Its Me In Menopause An Unfiltered Honest Guide to Midlife Hormones Health and
  • Pdf ePub Sallys Lament A Twisted Tale by Mari Mancusi download ebook
  • download pdf Sword Catcher by Cassandra Clare
  • Read online The Sunbearer Trials by Aiden Thomas
  • DOWNLOAD PDF EPUB Miriams Sisters Deborahs Daughters When women lead the way by Liz Crumlish
  • Read pdf CTS Certified Technology Specialist Exam Guide Third Edition by AVIXA Inc. Andy Ciddor
  • pdf download The Priory of the Orange Tree by Samantha Shannon
  • Online Read Ebook Bellas Journey by Victoria A Farias Lucia Benito
  • PDF DOWNLOAD The Real Economy History and Theory by Jonathan Levy on Iphone
  • DOWNLOADS Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis Keith Gif
  • The Discerning Gentlemans Guide A Historical Romance by Virginia Heath on Ipad
  • PDF EPUB Download Tokyo Alien Bros. Vol. 1 by Keigo Shinzo Full Book
  • Read Pdf Violet Promises by Marie Johnston
  • DOWNLOAD PDF EPUB Swift and Saddled A Rebel Blue Ranch Novel by Lyla Sage
  • download pdf The Abundant Life Journal A 30-Week Devotional for Mindfulness and Restoration by Anh
  • The Dialogues Conversations about the Nature of the Universe by Clifford V. Johnson Frank Wilczek o
  • Download Pdf James ICC A Critical and Exegetical Commentary by Dale C. Allison Jr. Christopher M.
  • epub download Victory to Defeat The British Army 1918-40 by Richard Dannatt Robert Lyman
  • DOWNLOAD PDF EPUB Marinos The ICU Book Print eBook with Multimedia by Paul Marino
  • PDF Kindle I Hope This Finds You Well A Novel by Natalie Sue
  • epub download The Darkness Outside Us by Eliot Schrefer
  • PDF We Three Queens by Rhys Bowen
  • PDF Desserts for Stressed People A Secret Identity Romantic Comedy by Letizia Lorini
  • Online Read Ebook A Tempest of Tea by Hafsah Faizal
  • DOWNLOADS In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles
  • Sophies World A Novel About the History of Philosophy 30th Anniversary Edition by Jostein Gaarder P
  • Pdf ePub Italians Pregnant Mistress by Carol Marinelli download ebook
  • PDF Download The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • Download PDF Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • Download Pdf Michael S. Smith Classic by Design by Michael S. Smith ANDREW FERREN Shonda Rhimes
  • 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 21:02:55
Previous
Find pet by ID
Next
Update an existing pet
Built with