My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download One Little Piggy by Annie Simpson Scott Barker
  • Read Pdf Race to the Frozen North The Matthew Henson Story by Catherine Johnson
  • Read pdf PART - Student Workbook for Modern Dental Assisting by Debbie S. Robinson CDA MS
  • DOWNLOAD PDF EPUB Just Beyond the Light Making Peace with the Wars Inside Our Head by D. Randall B
  • PDF No Rest for the Wicked by Kresley Cole
  • Download Pdf Creating Your Own Economy A Guide to Financial Freedom and Generous Living by Dave Mart
  • Online Read Ebook Talk to Strangers The Yes Theory Story by Matt Dahlia Derin Emre
  • PDF EPUB Download The Most Heretical Last Boss Queen From Villainess to Savior Light Novel Vol. 8 by
  • Read online Spirited Away Film Comic All-in-One Edition by Hayao Miyazaki
  • pdf download The Too-Perfect Saint Tossed Aside by My Fiancé and Sold to Another Kingdom Manga Vol.
  • PDF Renouncing The Mob by Derek Alan
  • epub download Rescue on the Farm An Uplifting Inspirational Romance by Allie Pleiter
  • The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of Iraq by Steve
  • Dirtbag Essays by Amber ALee Frost on Audiobook New
  • pdf download The Infinite Game by Simon Sinek
  • Woodpecker Method 2 by Axel Smith on Audiobook New
  • pdf download Family on the Range by Jessica Nelson
  • PDF Download History of the Quran Approaches and Explorations by F. Redhwan Karim
  • Social Science A Very Short Introduction by Alexander Betts on Ipad
  • Pdf ePub I.L. by Osamu Tezuka download ebook
  • Its Getting Hot in Here A Novel by Jane Costello on Ipad
  • PDF Download Beyond Darning Creative mending techniques by Hikaru Noguchi
  • BLADE VOL. 1 MOTHER OF EVIL by Bryan Hill Elena Casagrande Valentina Pinti on Audiobook New
  • PDF Download Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola
  • Microdosing with Amanita Muscaria Creativity Healing and Recovery with the Sacred Mushroom by Baba
  • Pdf ePub Everyday Shakespeare Lines for Life by Ben Crystal David Crystal download ebook
  • Read pdf Black or White Vol. 9 by Sachimo
  • PDF DOWNLOAD Go Tell the Bees That I Am Gone by on Iphone
  • Read online More than a Married Couple but Not Lovers Volume 2 by Yuki Kanamaru
  • PDF Download Neighbor by Lisa Gardner
  • Download Pdf Japanese Joinery by Dorian Bracht
  • PDF Download Dreaming Japanese by Marty Friedman Jon Wiederhorn
  • My Instant Death Ability Is So Overpowered No One in This Other World Stands a Chance Against Me V
  • PDF EPUB Download Dinosaurium Poster Book by Lily Murray Chris Wormell Full Book
  • Read online Piety and Personality The Temperaments of the Saints by Rosemary McGuire Berry
  • download pdf Villains Are Destined to Die Vol. 5 by Gwon Gyeoeul SUOL AH Cho David Odell
  • Read online Big Name Fan by Ruthie Knox Annie Mare
  • Read pdf Who Could Ever Love You A Family Memoir by Mary L. Trump
  • 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-09 22:28:25
Previous
Find pet by ID
Next
Update an existing pet
Built with