My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • David Kibbes Power of Style A Guided Journey to Help You Discover Your Authentic Style by David Kibb
  • Download Pdf When Rivers Dance Like Promises Book 1 - 2nd Edition by Nekesa Sepiwe
  • A Murder Most French by Colleen Cambridge on Ipad
  • PDF EPUB Download Cousins in the Time of Magic by Emma Otheguy Poly Bernatene Full Book
  • download pdf How Not to Chaperone a Lady A Steamy Historical Romance Book by Virginia Heath
  • Read pdf Now It All Makes Sense How An ADHD Diagnosis Brought Clarity To My Life by Alex Partridge
  • Download Pdf A Mavericks Road Home by Catherine Mann
  • Pdf ePub They Call Me No Sam by Drew Daywalt Mike Lowery download ebook
  • Online Read Ebook The Message by Ta-Nehisi Coates
  • Download PDF Son of Southtown My Life Between Two Worlds by Sonny Sandoval Jon Foreman
  • Ride It Out by Jenna Jarvis on Audiobook New
  • Read online The Art of The Creator Designs of Futures Past by James Mottram
  • PDF DOWNLOAD How to Build a Motorcycle A Nut-and-Bolt Guide to Customizing Your Bike by Laurence K
  • PDF EPUB Download An Unexpected Amish Family by Patricia Davids Jocelyn McClay Full Book
  • PDF Download Secret of the Anointing by Kathryn Krick
  • PDF EPUB Download The Surrogate by Penelope Ward Full Book
  • Online Read Ebook It Begins With Me Why Self Esteem Matters by Dana Hammond
  • Everyone Is Lying An utterly gripping psychological thriller with a jaw-dropping twist by Holly Down
  • PDF Kindle Alcanza el mejor sexo de tu vida en 31 días Amor. Amistad. Diversión by Sheila Wray Greg
  • DOWNLOAD PDF EPUB Cat People A Comic Collection by Hannah Hillam
  • download pdf Legendary en español Caraval 2 - Ed. Coleccionista by Stephanie Garber
  • PDF DOWNLOAD Uzaki-chan Wants to Hang Out Vol. 12 by Take on Iphone
  • Pdf ePub Penitence A Novel by Kristin Koval download ebook
  • PDF EPUB Download Natural Poisons and Venoms Plant Toxins Alkaloids and Lectins by Eberhard Teusch
  • PDF EPUB Download New York Times Games Crossword Clever for the Consistent Solver 200 Medium Crosswo
  • PDF EPUB Download Hunting Adeline Te encontraré by H.D CARLTON Full Book
  • PDF Exordia by Seth Dickinson
  • Pdf ePub The Painters Daughters A Novel by Emily Howes download ebook
  • Pdf ePub The Art of The Lord of the Rings The War of the Rohirrim by Daniel Falconer download ebook
  • pdf download Marked by Masks and Secrets by Maggie Sunseri
  • PDF Kindle The Kaggle Workbook Self-learning exercises and valuable insights for Kaggle data scienc
  • epub download Dahlia in Bloom Crafting a Fresh Start With Magical Tools Volume 8 by Hisaya Amagishi
  • download pdf The Netanyahus An Account of a Minor and Ultimately Even Negligible Episode in the His
  • Download Pdf El dique The Levee by Michael McDowell Ph.D
  • epub download Plus-Sized Elf Second Helping Vol. 2 by Synecdoche
  • Narwhals Sweet Tooth A Narwhal and Jelly Book 9 by Ben Clanton on Audiobook New
  • epub download The Marigold Trail by Stefani Tanner
  • Credence by Penelope Douglas 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-08 02:43:55
Previous
Find pet by ID
Next
Update an existing pet
Built with