My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Twin Threat Christmas by Rachelle McCalla
  • PDF DOWNLOAD Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor E
  • pdf download Catching a Hacker by Maggie Wells
  • Download PDF Yeonnam-Dongs Smiley Laundromat A Novel by Kim Jiyun
  • DOWNLOADS The Last Road Trip by Jennifer Klepper
  • PDF DOWNLOAD El niño que perdió la guerra The Boy That Lost the War by Julia Navarro on Iphone
  • PDF GLEEM by Freddy Carrasco
  • Download PDF The Magical Revolution of the Reincarnated Princess and the Genius Young Lady Vol. 6 n
  • download pdf Ethics Issues In Contemporary Nursing by Margaret A Burkhardt PhD FNP AHN-BC Alvit
  • PDF Download elle Life Lessons and Learning to Trust Yourself by Elle Macpherson
  • PDF EPUB Download Money Lies and God Inside the Movement to Destroy American Democracy by Kather
  • download pdf Mangal II Stories and Recipes by Ferhat and Sertac Dirik Action Bronson
  • Read online Donde viven las musas Land of Muses by Marianela Dos Santos
  • pdf download The Real Economy History and Theory by Jonathan Levy
  • Brutalism by Achille Mbembe on Audiobook New
  • PDF DOWNLOAD Sword Art Online Ordinal Scale Vol. 1 manga by IsII Stephen Paul abec on Iphone
  • Download PDF Peculiar Baking A Practical Guide to Strange Confections by Nikk Alcaraz
  • Ride It Out by Jenna Jarvis on Iphone New Format
  • pdf download Piñata A Novel by Leopoldo Gout
  • How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorable art by Bobb
  • Online Read Ebook The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle
  • Online Read Ebook Farewell My Odin Vol.1 by Chihiro Yoshioka
  • DOWNLOAD PDF EPUB Cryptids Creatures Critters A Manual of Monsters Mythos from Around the World
  • A Theory of Dreaming Deluxe Limited Edition by Ava Reid on Ipad
  • Pdf ePub Star Wars The Mask of Fear by Alexander Freed download ebook
  • Say Its Forever by A.L. Jackson on Iphone New Format
  • Resident Evil Infinite Darkness - The Beginning The Graphic Novel by TOKYOPOP Keith R. A. DeCandido
  • Read online Seeds of Shadow and Soil by Edgar J Wilde
  • PDF EPUB Download Back After This A Novel by Linda Holmes Full Book
  • Read online Estuche Archivo de las tormentas The Stormlight Archive Boxed Set The Way of Kings Wo
  • Download Pdf Bunburry - Episode 13-15 A Cosy Mystery Compilation by Helena Marchmont
  • PDF Download Opening Repertoire - Queens Gambit Accepted by Nicolas Yap
  • download pdf The Lumberjacks Bride by Jean Kincaid
  • Online Read Ebook The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • Read online Enemy of All Mankind A True Story of Piracy Power and Historys First Global Manhunt by
  • Online Read Ebook Kairos by Jenny Erpenbeck Michael Hofmann
  • PDF Download In Pursuit of Revolutionary Love Precarity Power Communities by Joy James
  • PDF DOWNLOAD Sis Dont Settle How to Stay Smart in Matters of the Heart by Faith Jenkins on Iphone
  • download pdf Bride Wanted by Renee Andrews
  • PDF EPUB Download The Spirit of Hope by Byung-Chul Han Daniel Steuer Full Book
  • Pdf ePub Discovering Daniel Finding Our Hope in Gods Prophetic Plan Amid Global Chaos by Amir Tsarf
  • PDF Kindle The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for yo
  • pdf download Silent Protector by Barbara Phinney
  • Read pdf Losing Sight by Tati Richardson
  • Download Pdf We Are Made of Stars A Novel by Rochelle B. Weinstein
  • PDF Download Her Motherhood Wish by Keli Gwyn
  • Armageddon What the Bible Really Says about the End by Bart D. Ehrman on Ipad
  • PDF EPUB Download Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kir
  • DOWNLOAD PDF EPUB Creating Your Own Economy A Guide to Financial Freedom and Generous Living by Da
  • PDF Download Once Upon a Workday Encouraging Tales of Resilience by Elizabeth Pich Jonathan Kunz
  • 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-07 23:48:10
Previous
Find pet by ID
Next
Update an existing pet
Built with