My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Today Tonight Tomorrow by Rachel Lynn Solomon
  • Download PDF Rental House A Novel by Weike Wang
  • epub download Cast Aoi by Torajirou Sanagi
  • download pdf Smart Girl A First-Gen Origin Story by Latonya Rease Miles
  • Download Pdf Mothmeister Sinister and Spiritual Post-Mortem Fairy Tales by Mothmeister
  • PDF The Whole Time by Catherine Bybee
  • You Love Me by Caroline Kepnes on Audiobook New
  • Read Pdf Who Can Afford to Be Critical An Inquiry into What We Cant Do Alone as Designers and in
  • Download Pdf Lets Eat Italy Everything You Want to Know About Your Favorite Cuisine by François-Régi
  • DOWNLOAD PDF EPUB Operative Techniques in Orthopaedic Surgical Oncology by Martin M. Malawer Jame
  • Retreat A Novel by Krysten Ritter on Iphone New Format
  • Online Read Ebook Quiero morir pero quiero comer tteokbokki by Baek Sehee
  • Read online Disrupting the Game From the Bronx to the Top of Nintendo by Reggie Fils-Aimé
  • Online Read Ebook Protecting Her Daughter by Lynette Eason
  • Ink Nest Poetry - A Literary Magazine by Evelyn Hoyt on Ipad
  • PDF EPUB Download La novia gitana The Gypsy Bride by Carmen Mola Full Book
  • PDF EPUB Download Projections A Novel by S. E. Porter Full Book
  • epub download A Fright to Remember Monster High School Spirits 1 by Mattel Adrianna Cuevas
  • PDF Kindle The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki
  • Download Pdf Machine Learning for Physics and Astronomy by Viviana Acquaviva
  • Kingmakers Graduation Deluxe Edition by Sophie Lark on Ipad
  • PDF Tying the Knot with an Amagami Sister 8 by Marcey Naito
  • PDF DOWNLOAD Rojo blanco y sangre azul Red White Royal Blue by Casey McQuiston on Iphone
  • PDF The Sun of Knowledge Shams al-Maarif An Arabic Grimoire in Selected Translation by
  • PDF DOWNLOAD James ICC A Critical and Exegetical Commentary by Dale C. Allison Jr. Christopher M
  • Pdf ePub The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze download ebook
  • epub download The Half of It by Madison Beer
  • Out On a Limb by Karen M Henderson on Audiobook New
  • pdf download Dog Man Official Sticker Book by Scholastic
  • epub download Educating for Equity and Excellence Enacting Culturally Responsive Teaching by Geneva
  • Download PDF Spirits Adopted A Daisy Gumm Majesty Mystery Book 20 Historical Cozy Mystery by Alice
  • download pdf Accidental One-Night Baby by Julia James
  • Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by Julia Murray on Aud
  • PDF EPUB Download SECRET WARS BATTLEWORLD OMNIBUS VOL. 1 JIM CHEUNG COVER by Marvel Various Full Boo
  • PDF EPUB Download People Pleaser Breaking Free from the Burden of Imaginary Expectations by Jinger
  • pdf download The Music of What Happens by Bill Konigsberg
  • download pdf Bonds of Hercules by Jasmine Mas
  • Online Read Ebook Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson
  • Pdf ePub Daily Lessons to be studied during the month of Ramadan by Abd-al-aziz Ibn Abdullah Al-raj
  • 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-14 22:27:30
Previous
Find pet by ID
Next
Update an existing pet
Built with