My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Why Its OK to Be Amoral by Ronald de Sousa Full Book
  • PDF EPUB Download The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle Full
  • Mirabelle and the Baby Dragons by Harriet Muncaster on Audiobook New
  • Read online The Bones Beneath My Skin by TJ Klune
  • PDF EPUB Download The Very Hungry Caterpillars Animal Colors by Eric Carle Full Book
  • Pdf ePub The Ranchers Legacy and The Texans Secret Daughter by Jessica Keller Jolene Navarro downl
  • Batman Resurrection by John Jackson Miller on Ipad
  • Read pdf Crook Manifesto A Novel by Colson Whitehead
  • Uncomfortable Conversations with a Jew by Emmanuel Acho Noa Tishby on Ipad
  • epub download Bury Our Bones in the Midnight Soil by V. E. Schwab
  • PDF Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • Lightfall Book One of The Everlands by Ed Crocker on Ipad
  • Read online God of Malice Deluxe Edition by Rina Kent
  • The Most Heretical Last Boss Queen From Villainess to Savior Light Novel Vol. 8 by Tenichi Suzunosu
  • Read online The Epic A Very Short Introduction by Anthony Welch
  • Online Read Ebook The Witch of the Forests Guide to Folklore Magick Connect to the wisdom of our eld
  • DOWNLOAD PDF EPUB Cast Aoi by Torajirou Sanagi
  • PDF DOWNLOAD Christmaker A Life of John the Baptist by James F. McGrath on Iphone
  • PDF The Perfect Concubine by Michelle Styles
  • Read Pdf A Dark and Hollow Star by Ashley Shuttleworth
  • DOWNLOADS Homecoming A Downeast Novel by Marie Force
  • Download Pdf Springtime Sunshine A Novel by Debbie Macomber
  • PDF Dinghai Fusheng Records Novel Vol. 1 Special Edition by Fei Tian Ye Xiang Qian Er Bai
  • Read online Celestial Fates by S.L. Morales
  • Yarrick The Omnibus by David Annandale on Ipad
  • Download Pdf Discovering Daniel Finding Our Hope in Gods Prophetic Plan Amid Global Chaos by Amir Ts
  • The Life Cycle of a CEO The Myths and Truths of How Leaders Succeed by Claudius A Hildebrand Robert
  • Read Pdf The Ultimate Science Cookbook for Kids Over 75 Recipes Science Experiments for Kids A S
  • PDF Kindle The Final Wish of Mr. Murray McBride A Novel by Joe Siple
  • pdf download Well Always Have Summer by Jenny Han
  • pdf download X-MEN EPIC COLLECTION FATAL ATTRACTIONS by Scott Lobdell Marvel Various John Romita J
  • Gris Artbook by Nomada Studio on Ipad
  • Those Beyond the Wall A Novel by Micaiah Johnson on Iphone New Format
  • DOWNLOAD PDF EPUB Twilight Deluxe Collectors Edition by Stephenie Meyer
  • download pdf The Boyfriend by Freida McFadden
  • Read Pdf His Enemys Italian Surrender by Sharon Kendrick
  • Read Pdf A Bride for Christmas by Jill Kemerer Brenda Minton
  • pdf download Instinct An Animal Rescuers Anthology by Jim Butcher Faith Hunter Patricia Briggs
  • epub download these heavy lungs we breathe with by K. S. Whittaker
  • Read Pdf En la mente del niño El cerebro en sus primeros años by Tiziana Cotrufo
  • PDF EPUB Download The Road to Love Hearts in the Highlands by Linda Ford Ruth Axtell Morren Full B
  • The Hidden Laws of Chess Mastering Pawn Structures by Nick Maatman on Ipad
  • Online Read Ebook Margos Got Money Troubles Margo tiene problemas de dinero Spanish edition A Novel
  • PDF Ralph Lauren A Way of Living Home Design Inspiration by Ralph Lauren
  • download pdf Momo Arashima Duels the Queen of Death by Misa Sugiura
  • DOWNLOAD PDF EPUB A Soaring Season The Incredible Inspiring Story of the 2003-04 Saint Josephs Ha
  • epub download Jeramiahs Power by Betsy Rose Wells Felipe Echevarria
  • Online Read Ebook Mickey7 A Novel by
  • PDF EPUB Download Alex Cross Must Die A Thriller by James Patterson Full Book
  • Download 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
Modified at 2025-06-13 21:24:15
Previous
Find pet by ID
Next
Update an existing pet
Built with