My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download El gato que venía del cielo The Guest Cat by Takashi Hiraide
  • Online Read Ebook Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • Read pdf Star Wars The High Republic The Lightsaber Collection by Daniel Wallace Lukasz Liszko R
  • download pdf The Last One Out of Town Turn Out the Lights The Epic 1975 Foxcroft Academy Basketball
  • PDF ICD-10-CM 2025 the Complete Official Codebook by American Medical Association
  • Online Read Ebook Celestial Elysium Girls by Stefan Soell
  • epub download Infinite Cosmos Visions From the James Webb Space Telescope by Ethan Siegel Brian Gre
  • Read Pdf The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David A
  • Pdf ePub Decolonizing Palestine The Land The People The Bible by Mitri Raheb download ebook
  • Read Pdf Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Joseph
  • Download PDF Starting Point 1979-1996 by Hayao Miyazaki
  • Knightmare Arcanist by Shami Stovall on Iphone New Format
  • PDF Three Bags Full by Leonie Swann Anthea Bell A. J. Finn
  • Pdf ePub Broken Hearts And Toxic Traits I am The Problem by Dionisio Burgos Louis Morales download
  • Download PDF Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by Julia
  • Read Pdf Creep A Love Story by Emma van Straaten
  • PDF Kindle Big Fan A Modern Romance by Alexandra Romanoff
  • PDF DOWNLOAD Her Honorable Enemy by Mary Davis on Iphone
  • The Strange Case of Jane O. A Novel by Karen Thompson Walker on Iphone New Format
  • epub download The Housemaid La empleada by Freida McFadden
  • PDF EPUB Download New York Times Games Classic Crossword Puzzles Red and White 100 Puzzles Edited
  • DOWNLOADS Dinner at Our Place Recipes for Gathering by Our Place Shiza Shahid
  • PDF Imposible decir adiós We Do Not Part by Han Kang
  • Bone Pendant Girls by Terry S. Friedman on Audiobook New
  • DOWNLOAD PDF EPUB Your Hidden Genius The Science-Backed Strategy to Uncovering and Harnessing Your
  • pdf download Open Wide A Cookbook for Friends by benny blanco Jess Damuck
  • PDF Zodiac Academy 2 Ruthless Fae by Caroline Peckham Susanne Valenti
  • The Daughters War by Christopher Buehlman on Ipad
  • Pdf ePub Kingpin A Joe DeMarco Thriller by Mike Lawson download ebook
  • PDF Kindle A Season of Love by Kim Watters
  • Read Pdf Pocket Radiation Oncology 2e by CHAD TANG MD AHSAN FAROOQI
  • pdf download David Hamilton Twenty Five Years of an Artist by David Hamilton
  • Read Pdf Khitan and Mongol Imperial Women in the Chinese Imagination Ming Fantasies about Conquest
  • PDF EPUB Download First Aid for the USMLE Step 1 2025 by Connie Qiu Anup Chalise Panagiotis Kapa
  • pdf download J.K. Lassers Your Income Tax 2025 Professional Edition by J.K. Lasser Institute
  • Read Pdf The Dimensions of Paradise Sacred Geometry Ancient Science and the Heavenly Order on Ea
  • The Otaku in 2200 A.D. Part 2 by Chousuke Nagashima on Ipad
  • 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-13 01:23:01
Previous
Find pet by ID
Next
Update an existing pet
Built with