My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download The Founders The Story of Paypal and the Entrepreneurs Who Shaped Silicon Valley by Ji
  • PDF DOWNLOAD Fate Kaleid Liner Prisma Illya The Complete Manga Collection by Hiroshi Hiroyama Typ
  • Read pdf Blues in Stereo The Early Works of Langston Hughes by Langston Hughes Danez Smith
  • PDF Download The King Arthur Baking Company Big Book of Bread 125 Recipes for Every Baker A Cookbo
  • Download PDF Too Late to Awaken What Lies Ahead When There Is No Future by Slavoj Zizek
  • Read pdf Fantastic Beasts The Secrets of Dumbledore - The Complete Screenplay Fantastic Beasts Bo
  • PDF EPUB Download On Screen Off Again by Caitlin Cross Full Book
  • download pdf Heart of the Shadow King by Sylvia Mercedes
  • Download PDF Bodega Bakes Recipes for Sweets and Treats Inspired by My Corner Store by Paola Velez
  • PDF DOWNLOAD Wolf Act by AJ Romriell on Iphone
  • Download Pdf Someone to Trust and Her Forbidden Amish Love by Patricia Davids Jocelyn McClay
  • Read Pdf Winters Gifts by Ben Aaronovitch
  • download pdf Toxicity to Triumph Navigating Work with Emotional Intelligence and a Growth Mindset b
  • PDF Kindle Practical Julia A Hands-On Introduction for Scientific Minds by Lee Phillips
  • PDF Pagan America The Decline of Christianity and the Dark Age to Come by John Daniel Davidson
  • PDF Darius by J. R. Ward
  • epub download The Fourth Consort A Novel by Edward Ashton
  • Hate Me but Let Me Stay Vol. 2 by Hijiki on Iphone New Format
  • Online Read Ebook The Enemys Daughter by Anne Blankman
  • DOWNLOADS Little Chunkies Baby Animals With Adorable Animals to Touch and Discover by DK
  • The Art of Lies of P by NEOWIZ ROUND8 Studio on Audiobook New
  • Online Read Ebook The Winner by C.J. Parsons
  • Read Pdf Pursued by Death by Gunnar Staalesen Don Bartlett
  • PDF DOWNLOAD Avatar Legends The RPG Core Book by Sharang Biswas Elizabeth Chaipraditkul on Iphone
  • Pdf ePub The Cowboys Dream Family A Clean and Uplifting Romance by Jennifer Brown download ebook
  • Read pdf Take My Hand by Ruth Scofield
  • Pdf ePub Lenswoman in Love a novel of the 1960s 70s by Kim R Gottlieb Walker download ebook
  • Space to Grow Unlocking the Final Economic Frontier by Matthew Weinzierl Brendan Rosseau on Audiobo
  • pdf download Starting Over in Starshine Cove A perfect feel-good romantic comedy to escape with by D
  • Online Read Ebook Futures Edge by Gareth L. Powell
  • Pdf ePub Rick Riordan Presents A Touch of Blood by Sajni Patel download ebook
  • Download PDF The Warrior Poet Way A Guide to Living Free and Dying Well by John Lovell
  • DOWNLOAD PDF EPUB Yana Toboso Artworks Black Butler 4 by Yana Toboso Tomo Kimura
  • pdf download The Gift of a Child by Laura Abbot
  • Read Pdf Hometown Reunion by Lisa Carter
  • Read pdf Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola
  • Download PDF Beas Bad Day by Tom Percival
  • Read online World of Warcraft Grimoire of the Shadowlands and Beyond by Sean Copeland Steve Danuser
  • Read Pdf Amish Country Hideout by Mary Alford Alison Stone
  • Download Pdf Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with H
  • PDF Kindle Bloodfever by Karen Marie Moning
  • Wyoming Promises by Kerri Mountain on Ipad
  • Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Richard Dixon on Audiobo
  • Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell K. B. Whitake
  • Online Read Ebook Twilight Out of Focus 6 Long Take Part 2 by Jyanome
  • PDF Kindle Dulce Wars Underground Alien Bases and the Battle for Planet Earth by Branton
  • DOWNLOADS She Gets the Girl by Rachael Lippincott Alyson Derrick
  • Controlling Contagion Epidemics and Institutions from the Black Death to Covid by Sheilagh Ogilvie o
  • PDF Kindle JoyFull Cook Effortlessly Eat Freely Live Radiantly A Cookbook by Radhi Devlukia-Shett
  • PDF Away by Megan E. Freeman
  • 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
Previous
Find pet by ID
Next
Update an existing pet
Built with