My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Star Wars The High Republic Escape from Valo by Daniel José Older Alyssa Wong Petur Anto
  • PDF EPUB Download Rat City Overcrowding and Urban Derangement in the Rodent Universes of John B. C
  • Read online Grind Like a Grandmaster How to Keep Pressing until Your Opponent Cracks by Magnus Carls
  • Download PDF Are you there little Bunny by Sam Taplin Emily Dove
  • download pdf Pierced Ink by Dani René
  • PDF EPUB Download No Place Left to Hide by Megan Lally Full Book
  • PDF Kindle Let My People Laugh Greatest Jewish Jokes of All Time by Salvador Litvak
  • PDF EPUB Download Sins Poison of the Heart by Haifaa Younis Full Book
  • download pdf Barry the boys The CIA the Mob and Americas Secret History by Daniel Hopsicker
  • Download PDF Orlando A Norton Critical Edition by Virginia Woolf Madelyn Detloff
  • Pdf ePub George R. R. Martin Presents Wild Cards House Rules  A Novel in Stories by George R. R. Ma
  • Download Pdf Treasure Coast A Crime Thriller by James Foley
  • Read Pdf Beyond Darning Creative mending techniques by Hikaru Noguchi
  • download pdf The Brothers Karamazov A New Translation by Michael R. Katz by Fyodor Dostoevsky Mich
  • Download PDF Small in the City by Sydney Smith
  • Read online The Nightingale Deluxe Edition A Novel by Kristin Hannah
  • download pdf The Kings Weapon by Neena Laskowski
  • Pdf ePub The House of Awadh A Hidden Tragedy by Aletta André Abhimanyu Kumar download ebook
  • epub download Waste Wars The Wild Afterlife of Your Trash by Alexander Clapp
  • Mega-Sized Tarot Disney Villains Tarot Deck and Guidebook by Insight Editions Minerva Siegel on Ipa
  • PDF EPUB Download Pitcher Us by Mollie Goins Full Book
  • Read online You Could Do Damage by K.C. Mills
  • Read online The Girl Who Fell Beneath the Sea by
  • PDF Kindle The Gwendy Trilogy Bind-Up Gwendys Button Box Gwendys Magic Feather Gwendys Final Task
  • pdf download Punching the Air by
  • epub download Tell Me What You Did A Novel by Carter Wilson
  • Lore by Alexandra Bracken on Iphone New Format
  • PDF Jonesy Complete Collection by Sam Humphries Caitlin Rose Boyle
  • PDF EPUB Download The Ranchers Legacy and The Texans Secret Daughter by Jessica Keller Jolene Navar
  • PDF EPUB Download Burn After Writing by Sharon Jones Full Book
  • Orisha Volume 1 With Great Power by Huzayfa Umar Saturday AM on Audiobook New
  • Online Read Ebook A Western Christmas Homecoming by Lynna Banning Lauri Robinson Kathryn Albright
  • Read online One of Us Is Lying Series Paperback Boxed Set One of Us Is Lying One of Us Is Next One o
  • Read online A Husband for Christmas by Gail Gaymer Martin
  • PDF A Broken Peoples Playlist Stories from Songs by Chimeka Garricks
  • PDF Sugar Apple Fairy Tale Vol. 4 manga by Aki YozoranoUdon Miri Mikawa Nicole Wilder
  • pdf download Sip with Tea by LaTasha Hunt
  • Pdf ePub The Overactive Mind Turning Anxiety into Strength by Andrew Espinosa download ebook
  • Read Pdf Gothikana by RuNyx
  • epub download Monotone Blue by Nagabe
  • DOWNLOAD PDF EPUB Everyone Is Lying An utterly gripping psychological thriller with a jaw-dropping
  • PDF EPUB Download Oh The Poles Youll Climb Celebrating LineMen and the Kids Who Keep Them Going b
  • download pdf Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • Read online Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti
  • download pdf On Ruben Slikk A Manifesto on the Purpose of Art and the Value of Transgression by Cal
  • Download PDF Aftermarket Afterlife by Seanan McGuire
  • DOWNLOADS Three Grumpy Groomsmen by Emma Foxx
  • pdf download The Witch of the Forests Guide to Folklore Magick Connect to the wisdom of our elders.
  • Download PDF Redeeming 6 Spanish Edition by Chloe Walsh
  • Online Read Ebook Follow Her Heart by Marta Perry
  • 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-11 22:28:02
Previous
Find pet by ID
Next
Update an existing pet
Built with