My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Holly A Belladonna Novella by Adalyn Grace download ebook
  • Milky Way by Muriel Jensen on Ipad
  • PDF DOWNLOAD Renouncing The Mob by Derek Alan on Iphone
  • PDF DOWNLOAD Yarichin Bitch Club Vol. 4 by on Iphone
  • PDF EPUB Download Talk to Strangers The Yes Theory Story by Matt Dahlia Derin Emre Full Book
  • More Tales from Fur After Dark by Eric W Schwartz on Iphone New Format
  • PDF Download Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • Online Read Ebook Overwatch Declassified - An Official History by Seanan McGuire
  • DOWNLOADS The Songbird and the Heart of Stone by Carissa Broadbent
  • Online Read Ebook The Cul-de-sac by Christopher Null
  • PDF Download Renouncing The Mob by Derek Alan
  • Online Read Ebook Bloodguard by Cecy Robson
  • Read pdf Blood and Oil Mohammed bin Salmans Ruthless Quest for Global Power by Bradley Hope Justi
  • Download PDF His Convenient Royal Bride by Cara Colter
  • download pdf Mafia Takedown The Incredible True Story of the FBI Agent Who Devastated the New York
  • pdf download 50 Great Stalks Hunting the Worlds Greatest Game Up Close by Craig Boddington
  • You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by Shauna Britten
  • PDF DOWNLOAD Too Close to Home by Lynette Eason on Iphone
  • PDF All You Need Is Love The Beatles in Their Own Words Unpublished Unvarnished and Told by The B
  • PDF DOWNLOAD Deep Cuts A Novel by Holly Brickley on Iphone
  • Download PDF Dark Heir by C. S. Pacat
  • Download Pdf The Mafia Nanny A WEBTOON Unscrolled Graphic Novel by SH00 Violet Matter
  • DOWNLOAD PDF EPUB Promchanted by Morgan Matson
  • PDF EPUB Download Averted Vision by BW Moran Full Book
  • All New Square Foot Gardening 4th Edition The Worlds Most Popular Growing Method to Harvest MORE Fo
  • DOWNLOADS A Flicker in the Dark A Novel by
  • DOWNLOAD PDF EPUB The ACT Workbook for Kids Fun Activities to Help You Deal with Worry Sadness a
  • PDF Download For Love of a Dog by Janice Carter
  • PDF From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • PDF The Perfection Trap Embracing the Power of Good Enough by Thomas Curran
  • pdf download Lucy Undying A Dracula Novel by Kiersten White
  • DOWNLOAD PDF EPUB I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical
  • Kingdom of Shadows by Barbara Erskine on Audiobook New
  • pdf download Zora the Snow Dragon Dragon Girls 15 by Maddy Mara
  • Download Pdf Judge Dredd A Better World by Rob Williams Arthur Wyatt Henry Flint Boo Cook Jake L
  • When She Unravels by Gabrielle Sands on Audiobook New
  • 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-12 01:43:21
Previous
Find pet by ID
Next
Update an existing pet
Built with