My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Same As It Ever Was A Novel by Claire Lombardo Full Book
  • Download Pdf I Want to Love You Till Your Dying Day 1 by Nachi Aono
  • PDF EPUB Download Where to Start A Survival Guide to Anxiety Depression and Other Mental Health Ch
  • pdf download Bea Mullins Takes a Shot by Emily Deibert
  • PDF Download The Divine Comedy Inferno Purgatorio Paradiso Penguin Classics Deluxe Edition by Da
  • Download PDF Hungerstone by Kat Dunn
  • Read pdf Fools Assassin Fitz and the Fool Trilogy 1 by Robin Hobb
  • Read pdf More Days at the Morisaki Bookshop A Novel by Satoshi Yagisawa Eric Ozawa
  • epub download Butterfly Swords by Jeannie Lin
  • The Japanese Myths A Guide to Gods Heroes and Spirits by Joshua Frydman on Iphone New Format
  • Online Read Ebook Beyond Art Fundamentals by 3dtotal Publishing
  • The Dimensions of Paradise Sacred Geometry Ancient Science and the Heavenly Order on Earth by John
  • pdf download Walt Disneys Uncle Scrooge The Diamond Jubilee Collection by Carl Barks
  • PDF Wyoming Promises by Kerri Mountain
  • pdf download The Final Wish of Mr. Murray McBride A Novel by Joe Siple
  • epub download The Stoic Path to Wealth Ancient Wisdom for Enduring Prosperity by Darius Foroux
  • The Warriors Bride Alliance by Denise Lynn on Audiobook New
  • PDF Download Democracy in Retrograde How to Make Changes Big and Small in Our Country and in Our L
  • Download PDF Outlive The Science and Art of Longevity by Peter Attia MD Bill Gifford
  • pdf download The Salmon Who Dared to Leap Higher by Ahn Do-hyun
  • PDF Download All the Parts We Exile by Roza Nozari
  • PDF Kindle Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nathan
  • Download PDF THE STAR SEEKERS Vol. 6 comic by HYBE TOMORROW X TOMORROW X TOGETHER
  • PDF An Unexpected Amish Family by Patricia Davids Jocelyn McClay
  • Pdf ePub Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban download ebo
  • PDF Build a Beautiful Business con Confianza Become Friends with Risk to Grow Scale and Impact An
  • PDF EPUB Download A Little Sluggers Guide to the Unwritten Rules of Baseball and Life by Patrick R
  • Someone Is Watching A Thrilling Suspense Novel by Amanda Stevens on Iphone New Format
  • PDF Download The Massacre at Paris By Christopher Marlowe by Mathew R. Martin
  • Download PDF Blood and Oil Mohammed bin Salmans Ruthless Quest for Global Power by Bradley Hope Jus
  • To Slip the Bonds of Earth A Riveting Mystery Based on a True History by Amanda Flower on Iphone New
  • Download Pdf Handbook of Children and Screens Digital Media Development and Well-Being from Birth
  • Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli on Iphone New Format
  • PDF 2024 2025 ASVAB For Dummies 7 Practice Tests Flashcards Videos Online by Angie Papple Johns
  • PDF Kindle Down to a Science by Kat Paige
  • Universal Monsters Creature From the Black Lagoon Lives by Dan Watters Ram V Matthew Roberts Dave
  • pdf download Sailor Moon Naoko Takeuchi Collection Manga Box Set 1 by Naoko Takeuchi
  • Read online Disney Moana 2 Big Golden Book by Golden Books Disney Storybook Art Team
  • pdf download The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Aliza Pres
  • 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 09:52:55
Previous
Find pet by ID
Next
Update an existing pet
Built with